/* ═══════════════════════════════════════════════════════════════════
   WebWithYoann — Redesign v2
   Direction: dark raffiné, split hero, typographie équilibrée
   ═══════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  /* Palette: indigo-dark (pas noir pur = plus chaleureux) */
  --bg:          #0C0D14;
  --bg-surface:  #10111A;
  --bg-card:     #181921;
  --bg-card-h:   #1E1F2C;
  --text:        #E2E4EF;
  --text-muted:  #A0A3BF;
  --text-subtle: #6A6D88;
  --accent:      #E07040;
  --accent-h:    #C85E2C;
  --accent-dim:  rgba(224, 112, 64, 0.12);
  --green:       #3DBB8F;
  --border:      #1E2030;
  --border-l:    #282A3D;

  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-h: 68px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
iframe { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.15s var(--ease), box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.97); }

.btn--sm  { font-size: 0.84rem; padding: 8px 16px; }
.btn--lg  { font-size: 0.95rem; padding: 13px 26px; }
.btn--xl  { font-size: 1rem;    padding: 16px 36px; }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 16px rgba(224,112,64,0.25);
}
.btn--accent:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 24px rgba(224,112,64,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-l);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Section anatomy ───────────────────────────────────────────────── */
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ── Reveal animation ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────────────────────────────────
   NAVIGATION
   ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(12, 13, 20, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--accent); }

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
  font-weight: 400;
}
.nav__link:hover { color: var(--text); }

.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}

/* Mobile nav overlay */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(12,13,20,0.98);
  backdrop-filter: blur(20px);
  padding: 8px 28px 28px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-cta { margin-top: 20px; justify-content: center; }

/* ────────────────────────────────────────────────────────────────────
   HERO — SPLIT LAYOUT
   ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
}

/* Aurora blobs (Option A) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 15% 55%, rgba(224,112,64,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 75% 30%, rgba(100,80,200,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 35% 35% at 55% 75%, rgba(61,187,143,0.10) 0%, transparent 55%);
  pointer-events: none;
}
/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 80px;
}

/* ── LEFT: text content ─────────────────────────────────────────────── */
.hero__content { max-width: 520px; }

.hero__top-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--border-l);
  border-radius: 100px;
}

.hero__available {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--green);
  padding: 6px 12px 6px 10px;
  border: 1px solid rgba(61,187,143,0.25);
  border-radius: 100px;
  background: rgba(61,187,143,0.06);
}

.hero__available-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61,187,143,0.5);
  animation: pulse-green 2.5s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(61,187,143,0.55); }
  60%  { box-shadow: 0 0 0 7px rgba(61,187,143,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,187,143,0); }
}

.hero__note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-subtle);
  margin-bottom: 32px;
  margin-top: -20px;
}

.hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

.hero__headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__hl-light {
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  font-size: 0.78em;
  margin-bottom: 4px;
}

.hero__hl-bold {
  font-weight: 800;
  color: var(--text);
  display: block;
}

.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero__learn {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.hero__learn:hover { color: var(--text); }
.hero__learn .arrow { transition: transform 0.25s; }
.hero__learn:hover .arrow { transform: translateY(3px); }

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__trust span {
  font-size: 0.78rem;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* Typewriter word */
.hero__typewriter {
  color: var(--accent);
  font-weight: 500;
  transition: opacity 0.25s ease;
}

/* Annotation manuscrite */
.hero__annotation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: var(--text-subtle);
  white-space: nowrap;
  transform: rotate(-3deg);
  transform-origin: left center;
  opacity: 0.7;
  margin-bottom: 14px;
  margin-left: 6px;
}
.hero__annotation svg {
  transform: scaleX(-1) rotate(-20deg);
  flex-shrink: 0;
  color: var(--text-subtle);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  transform-origin: top;
  animation: scroll-reveal 2s ease-in-out infinite;
}

@keyframes scroll-reveal {
  0%   { transform: scaleY(0); opacity: 1; transform-origin: top; }
  50%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
  51%  { transform: scaleY(1); opacity: 1; transform-origin: bottom; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

.hero__scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-family: var(--font-head);
  font-weight: 500;
}

/* ── RIGHT: browser mockup ──────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -80px;
}

/* Photo Yoann dans le hero — bas droite de la section */
.hero__photo {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 420px;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(-6px 0px 30px rgba(0,0,0,0.5));
}

.browser-mock {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 24px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s var(--ease);
}
.browser-mock:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
}

.browser-mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.browser-mock__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.browser-mock__dots i {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-l);
}
.browser-mock__dots i:nth-child(1) { background: #FF5F57; }
.browser-mock__dots i:nth-child(2) { background: #FFBD2E; }
.browser-mock__dots i:nth-child(3) { background: #28C840; }

.browser-mock__url {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-mock__screen {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #fff;
}

.browser-mock__screen iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1280px;
  height: 960px;
  border: none;
  transform: scale(0.375);
  transform-origin: top left;
  pointer-events: none;
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-l);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  min-width: 170px;
  backdrop-filter: blur(8px);
}

.hero__badge strong {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 1px;
}
.hero__badge p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1;
}
.hero__badge-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero__badge--1 {
  bottom: -20px;
  left: -40px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero__badge--2 {
  top: 30px;
  right: -40px;
  z-index: 3;
  animation: float 4s ease-in-out 2s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ────────────────────────────────────────────────────────────────────
   PROCESS — timeline horizontale
   ─────────────────────────────────────────────────────────────────── */
.process {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}

.step {
  display: flex;
  flex-direction: column;
}

/* La tête contient [cercle] + [ligne extensible] */
.step__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step__num-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}

.step:hover .step__num-circle {
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* Ligne extensible entre les cercles — flex: 1 remplit l'espace */
.step__connector {
  flex: 1;
  height: 1px;
  background: var(--border-l);
  margin: 0 8px;
}

.step__num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.step__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 220px;
}

.process__cta { text-align: center; }

/* ────────────────────────────────────────────────────────────────────
   PORTFOLIO
   ─────────────────────────────────────────────────────────────────── */
.portfolio {
  padding: 120px 0;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: clip; /* clip les enfants transformés (iframes) */
  isolation: isolate;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.portfolio__card:hover {
  border-color: var(--border-l);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* iFrame preview */
.portfolio__preview {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  border-radius: 7px 7px 0 0;
}

.portfolio__preview iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1200px;
  height: 900px;
  border: none;
  transform: scale(0.30);
  transform-origin: top left;
  pointer-events: none;
}

/* Preview hover overlay */
.portfolio__preview::after {
  content: 'Voir le site →';
  position: absolute;
  inset: 0;
  background: rgba(12,13,20,0.65);
  backdrop-filter: blur(2px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.portfolio__card:hover .portfolio__preview::after { opacity: 1; }

.portfolio__info { padding: 20px 22px 22px; }

.portfolio__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.portfolio__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.portfolio__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.portfolio__link {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.portfolio__link:hover { gap: 10px; }

/* ────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ─────────────────────────────────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 36px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial:hover { border-color: var(--border-l); }

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 28px;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}

.testimonial__quote {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 12px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.testimonial__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.testimonial__role {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

/* ────────────────────────────────────────────────────────────────────
   ABOUT
   ─────────────────────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.about__text .section__title { margin-bottom: 20px; }

.about__bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 480px;
}

.about__text .btn { margin-top: 12px; }

.about__signature {
  font-family: 'Birthstone', cursive;
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.8;
  margin-top: 28px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.about__visual { display: flex; justify-content: flex-end; }

.about__photo-wrap {
  width: 280px;
  height: 360px;
  position: relative;
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
}

.about__initials {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(226, 228, 239, 0.06);
  user-select: none;
  position: relative;
  z-index: 1;
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 7px;
}

/* Decorative offset border */
.about__photo-wrap::after {
  content: '';
  position: absolute;
  top: 14px; right: -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--border-l);
  border-radius: 8px;
  z-index: -1;
}

/* ────────────────────────────────────────────────────────────────────
   CONTACT
   ─────────────────────────────────────────────────────────────────── */
.contact {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(224,112,64,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact__title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.contact__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 44px;
}

.contact__cta-wrap { margin-bottom: 28px; }

.contact__primary-cta {
  width: 100%;
  max-width: 340px;
  justify-content: center;
  border-radius: 6px;
}

.contact__or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px auto;
  max-width: 300px;
  color: var(--text-subtle);
  font-size: 0.82rem;
}
.contact__or::before,
.contact__or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact__secondary { display: flex; justify-content: center; }

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
  padding: 10px 0;
}
.contact__link:hover { color: var(--text); }

/* ────────────────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-surface);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.025em;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.footer__nav {
  display: flex;
  gap: 20px;
}
.footer__nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--text); }

.footer__legal {
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--text-subtle);
}
.footer__legal a {
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text-muted); }
.footer__legal span { opacity: 0.4; }

/* ────────────────────────────────────────────────────────────────────
   WHATSAPP FLOATING BUTTON
   ─────────────────────────────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ─────────────────────────────────────────────────────────────────── */

/* ── Large tablet ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__grid { gap: 40px; }
  .hero__badge--2 { right: -10px; }
  .hero__badge--1 { left: -10px; }
  .hero__photo { width: 320px; }
}

/* ── Tablet ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding: 60px 0 100px;
    gap: 52px;
  }
  .hero__content { max-width: 100%; }
  .hero__visual { margin-top: 0; }
  .hero__photo { width: 240px; right: 10px; }

  .browser-mock {
    max-width: 440px;
    margin: 0 auto;
    transform: none;
  }
  .browser-mock:hover { transform: none; }
  .hero__badge--1 { left: 0; bottom: 40px; }
  .hero__badge--2 { right: 0; top: 20px; }

  .hero__scroll-indicator { display: none; }

  .process__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .step__connector { display: none; }
  .step { padding: 0; }

  .portfolio__grid { grid-template-columns: 1fr 1fr; }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .about__bio { max-width: 100%; margin: 0 auto 18px; }
  .about__visual { justify-content: center; }
  .about__photo-wrap::after { display: none; }
  .about__signature { text-align: center; }
}

/* ── Mobile ─────────────────────────────────────────────────────────── */
@media (max-width: 680px) {
  :root { --nav-h: 60px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero__grid { padding: 40px 0 60px; gap: 40px; }
  .hero__headline { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero__top-badges { gap: 8px; }
  .hero__available { font-size: 0.65rem; padding: 5px 10px 5px 8px; }
  .hero__tag { font-size: 0.65rem; padding: 5px 10px 5px 8px; }
  .hero__photo { display: none; }
  .hero__badge { display: none; }
  .hero__scroll-indicator { display: none; }
  .hero__annotation { display: none; }
  .hero__actions { gap: 16px; }

  /* Process */
  .process { padding: 80px 0; }
  .process__steps { grid-template-columns: 1fr; gap: 24px; }
  .step__connector { display: none; }

  /* Portfolio */
  .portfolio { padding: 80px 0; }
  .portfolio__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonials { padding: 56px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { padding: 24px 24px; }

  /* About */
  .about { padding: 80px 0; }

  /* Contact */
  .contact { padding: 100px 0; }
  .contact__title { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Footer */
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer__legal { gap: 8px; }
  .section__title { margin-bottom: 28px; }
}

/* ── Small mobile ───────────────────────────────────────────────────── */
@media (max-width: 420px) {
  .hero__trust { gap: 10px; }
  .hero__trust span { font-size: 0.72rem; }
  .contact__title { font-size: 1.9rem; }
  .btn--xl { padding: 14px 24px; font-size: 0.95rem; }
  .about__photo-wrap { width: 220px; height: 290px; }
  .testimonial__quote { font-size: 0.9rem; }
}
