/* ============ DESIGN TOKENS ============ */
:root{
  --forest: #0E3B2E;
  --pine: #082922;
  --gold: #F0C43A;
  --cream: #F5F1E4;
  --olive: #E7E4C4;
  --ink: #16241D;
  --danger: #C1443A;

  --font-head: 'Bitter', Georgia, serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --wrap: 1180px;
  --ease: cubic-bezier(.22,.9,.32,1);
  --shadow-soft: 0 10px 30px rgba(8,41,34,.12);
  --shadow-hard: 0 4px 0 rgba(22,36,29,.9);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:76px; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family:var(--font-head); margin:0; line-height:1.1; }
p{ margin:0; }
button{ font:inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:20px; }

/* ============ REVEAL ON SCROLL ============ */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  will-change:transform,opacity;
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
.card-grid .reveal:nth-child(2){ transition-delay:.08s; }
.card-grid .reveal:nth-child(3){ transition-delay:.16s; }
.card-grid .reveal:nth-child(4){ transition-delay:.24s; }
.card-grid .reveal:nth-child(5){ transition-delay:.32s; }
.card-grid .reveal:nth-child(6){ transition-delay:.4s; }
.process-step:nth-child(2){ transition-delay:.08s; }
.process-step:nth-child(3){ transition-delay:.16s; }
.process-step:nth-child(4){ transition-delay:.24s; }
.pricing-track .reveal:nth-child(2){ transition-delay:.08s; }
.pricing-track .reveal:nth-child(3){ transition-delay:.16s; }
.pricing-track .reveal:nth-child(4){ transition-delay:.24s; }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--font-body); font-weight:700; font-size:.95rem;
  padding:.85em 1.5em; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.98); }
.btn-gold{ background:var(--gold); color:var(--ink); box-shadow:var(--shadow-hard); }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 6px 0 rgba(22,36,29,.9); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:currentColor; }
.btn-ghost:hover{ background:rgba(22,36,29,.06); }
.section--dark .btn-ghost, .section--forest .btn-ghost{ color:var(--cream); }
.btn-outline{ background:transparent; color:var(--forest); border-color:var(--forest); }
.btn-outline:hover{ background:var(--forest); color:var(--cream); }
.btn-lg{ padding:1em 1.9em; font-size:1.02rem; }
.btn-small{ padding:.55em 1.1em; font-size:.85rem; }
.btn-block{ width:100%; }

/* ============ STAMP (signature element) ============ */
.stamp{
  display:inline-flex; align-items:center; gap:.4em;
  font-family:var(--font-head); font-weight:800; text-transform:uppercase;
  letter-spacing:.03em; font-size:.78rem;
  padding:.55em 1.15em;
  border:3px solid var(--forest);
  border-radius:50% 45% 48% 44% / 44% 48% 42% 50%;
  color:var(--forest);
  position:relative;
  transform:rotate(-4deg);
  filter:url(#inkRough);
  background:rgba(240,196,58,.12);
}
.stamp::after{
  content:"";
  position:absolute; inset:4px;
  border:1px dashed currentColor;
  border-radius:inherit;
  opacity:.55;
}
.stamp--gold{ color:var(--forest); border-color:var(--forest); background:rgba(240,196,58,.22); }
.section--forest .stamp--gold, .section--dark .stamp--gold, .ai-section .stamp--gold{ color:var(--gold); border-color:var(--gold); background:rgba(240,196,58,.12); }
.stamp--ink{ color:var(--ink); border-color:var(--ink); background:rgba(22,36,29,.05); font-size:1rem; padding:.4em .55em; }
.stamp--small{ transform:rotate(-8deg); }
.stamp--corner{
  position:absolute; top:-18px; right:18px; font-size:.68rem; z-index:2;
  background:var(--gold); box-shadow:0 4px 10px rgba(8,41,34,.25);
}
.stamp--float{ animation:stampFloat 5s ease-in-out infinite; }
@keyframes stampFloat{ 0%,100%{ transform:rotate(-4deg) translateY(0); } 50%{ transform:rotate(-2deg) translateY(-5px); } }

/* ============ HEADER ============ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(245,241,228,.85);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled{ box-shadow:0 2px 18px rgba(8,41,34,.1); background:rgba(245,241,228,.96); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:64px; }

.logo{ display:flex; align-items:center; gap:.6em; font-family:var(--font-head); font-weight:800; }
.logo-mark{
  width:42px; height:auto; flex-shrink:0; display:block;
}
.logo-word{ font-size:1.02rem; color:var(--ink); }
.logo-word em{ font-style:normal; color:var(--forest); opacity:.65; }
.logo--footer .logo-word{ color:var(--cream); }
.logo--footer .logo-word em{ color:var(--gold); opacity:.8; }

.nav-desktop{ display:none; }
.hamburger{
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; cursor:pointer; padding:0;
}
.hamburger span{ display:block; height:2px; width:24px; background:var(--ink); margin-inline:auto; transition:transform .3s var(--ease), opacity .3s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-mobile{
  display:flex; flex-direction:column; gap:2px;
  position:fixed; top:64px; left:0; right:0;
  height:calc(100vh - 64px); height:calc(100dvh - 64px);
  background:var(--cream);
  overflow-y:auto;
  border-top:1px solid rgba(22,36,29,.08);
  opacity:0; visibility:hidden; transform:translateY(-10px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
  padding-bottom:32px;
}
.nav-mobile.open{
  opacity:1; visibility:visible; transform:translateY(0);
  transition:opacity .35s var(--ease), transform .35s var(--ease);
}
.nav-mobile a{
  padding:16px 20px; font-weight:600; font-size:1.05rem;
  border-bottom:1px solid rgba(22,36,29,.06);
  opacity:0; transform:translateX(-12px);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.nav-mobile.open a{ opacity:1; transform:translateX(0); }
.nav-mobile.open a:nth-child(1){ transition-delay:.05s; }
.nav-mobile.open a:nth-child(2){ transition-delay:.1s; }
.nav-mobile.open a:nth-child(3){ transition-delay:.15s; }
.nav-mobile.open a:nth-child(4){ transition-delay:.2s; }
.nav-mobile.open a:nth-child(5){ transition-delay:.25s; }
.nav-mobile.open a:nth-child(6){ transition-delay:.3s; border-bottom:none; margin:12px 20px 18px; }
.nav-mobile .btn{ display:inline-flex; }

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:120px 0 64px;
  background:linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
  overflow:hidden;
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(50px); opacity:.35; z-index:0;
  animation:drift 14s ease-in-out infinite;
}
.hero-blob--a{ width:280px; height:280px; background:var(--gold); top:-60px; right:-80px; }
.hero-blob--b{ width:220px; height:220px; background:var(--olive); bottom:-60px; left:-60px; animation-delay:-6s; }
@keyframes drift{ 0%,100%{ transform:translate(0,0) scale(1); } 50%{ transform:translate(20px,-24px) scale(1.08); } }

.hero-inner{ position:relative; z-index:1; display:flex; flex-direction:column; gap:40px; }
.hero-copy{ text-align:center; }
.hero-title{
  font-size:clamp(2.6rem,9vw,4.6rem);
  font-weight:800;
  margin:.5em 0 .35em;
  letter-spacing:-.01em;
}
.hero-title-strike{ position:relative; color:var(--danger); }
.ink-underline{ position:relative; display:inline-block; color:var(--forest); }
.ink-underline::after{
  content:""; position:absolute; left:-2%; right:-2%; bottom:.02em; height:.28em;
  background:var(--gold); z-index:-1; border-radius:2px;
  transform:skewX(-6deg) scaleX(0); transform-origin:left;
  animation:underlineIn 1s var(--ease) .5s forwards;
}
@keyframes underlineIn{ to{ transform:skewX(-6deg) scaleX(1); } }
.hero-sub{ font-size:clamp(1rem,3vw,1.2rem); color:rgba(22,36,29,.75); max-width:36em; margin-inline:auto; }
.hero-actions{ display:flex; flex-direction:column; gap:14px; margin-top:32px; align-items:stretch; }
.hero-actions .btn{ width:100%; }

.hero-art{ display:flex; justify-content:center; }
.hero-illustration{ width:100%; max-width:420px; height:auto; }
.art-shop{ animation:none; }
.art-path{ animation:dashMove 1.4s linear infinite; }
@keyframes dashMove{ to{ stroke-dashoffset:-30; } }
.art-phone{ animation:phoneFloat 5s ease-in-out infinite; transform-origin:center; }
@keyframes phoneFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.art-ping{ animation:pingPulse 2.2s ease-in-out infinite; transform-origin:452px 150px; }
@keyframes pingPulse{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.18); } }
.art-dot{ animation:dotBlink 3s ease-in-out infinite; }
.art-dot:nth-child(2){ animation-delay:.5s; }
.art-dot:nth-child(3){ animation-delay:1s; }
@keyframes dotBlink{ 0%,100%{ opacity:.3; } 50%{ opacity:1; } }
.art-sign{ animation:signGlow 3s ease-in-out infinite; }
@keyframes signGlow{ 0%,100%{ opacity:1; } 50%{ opacity:.6; } }

/* ============ TRUST BAR ============ */
.trust-bar{ background:var(--ink); overflow:hidden; padding:14px 0; }
.trust-track{ display:flex; width:max-content; animation:marquee 22s linear infinite; }
.trust-group{ display:flex; gap:36px; padding-right:36px; }
.trust-item{ display:flex; align-items:center; gap:8px; color:var(--cream); font-family:var(--font-mono); font-size:.78rem; letter-spacing:.02em; white-space:nowrap; }
.trust-item .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); display:inline-block; }
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* ============ SECTIONS ============ */
.section{ padding:72px 0; position:relative; }
.section--cream{ background:var(--cream); }
.section--forest{ background:var(--forest); color:var(--cream); }
.section--dark{ background:var(--pine); color:var(--cream); }

.eyebrow{
  font-family:var(--font-mono); text-transform:uppercase; letter-spacing:.12em;
  font-size:.74rem; color:var(--forest); opacity:.7; margin-bottom:10px;
}
.eyebrow--light{ color:var(--gold); opacity:.9; }
.section-title{ font-size:clamp(1.9rem,6vw,2.6rem); font-weight:800; margin-bottom:14px; }
.section-title--light{ color:var(--cream); }
.section-sub{ font-size:1.05rem; color:rgba(22,36,29,.7); max-width:38em; margin-bottom:36px; }
.section-sub--light{ color:rgba(245,241,228,.75); }

/* ============ CARD GRIDS ============ */
.card-grid{ display:grid; grid-template-columns:1fr; gap:20px; margin-top:32px; }

.who-card{
  background:var(--olive); border-radius:var(--radius); padding:28px 24px;
  position:relative; transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.who-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.who-num{ font-family:var(--font-mono); font-weight:700; color:var(--forest); opacity:.4; font-size:1.6rem; }
.who-card h3{ font-size:1.25rem; margin:10px 0 8px; }
.who-card p{ color:rgba(22,36,29,.75); line-height:1.5; }

.service-card{
  background:rgba(245,241,228,.06); border:1px solid rgba(245,241,228,.12);
  border-radius:var(--radius); padding:26px 22px;
  transition:transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.service-card:hover{ transform:translateY(-6px); background:rgba(245,241,228,.1); border-color:rgba(240,196,58,.4); }
.service-icon{
  width:46px; height:46px; border-radius:12px; background:rgba(240,196,58,.14);
  color:var(--gold); display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.service-icon svg{ width:24px; height:24px; }
.service-card h3{ font-size:1.15rem; margin-bottom:8px; color:var(--cream); }
.service-card p{ color:rgba(245,241,228,.7); font-size:.95rem; line-height:1.5; }

.why-card{ background:var(--olive); border-radius:var(--radius); padding:28px 24px; text-align:left; }
.why-card h3{ font-size:1.2rem; margin:14px 0 8px; }
.why-card p{ color:rgba(22,36,29,.75); line-height:1.5; }

/* ============ AI РЕЦЕПЦИОНИСТ ============ */
.ai-section{
  background:var(--pine);
  padding:96px 32px;
  position:relative;
  overflow:hidden;
  border-top:3px solid rgba(240,196,58,.6);
  border-bottom:3px solid rgba(240,196,58,.6);
}
.ai-blob{
  position:absolute; top:-110px; right:-110px;
  width:300px; height:300px; border-radius:50%;
  background:var(--forest); opacity:.5;
  filter:blur(70px);
  animation:aiBlobDrift 18s ease-in-out infinite;
  pointer-events:none;
}
@keyframes aiBlobDrift{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(20px,-20px) scale(1.05); }
}
.ai-container{ max-width:1080px; margin-inline:auto; position:relative; z-index:1; }
.ai-heading{
  text-align:center; color:var(--cream);
  font-size:clamp(1.6rem,4vw,2.2rem); font-weight:800; margin-bottom:56px;
}

.ai-content{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:52px; }
.ai-illustration{ position:relative; flex:1 1 260px; max-width:300px; min-width:0; margin-inline:auto; }
.ai-illustration-svg{ width:100%; height:auto; }
.stamp.ai-badge-overlay{
  position:absolute; top:-26px; left:-18px; z-index:2;
  font-size:1.05rem; padding:.6em 1.3em; transform:rotate(-9deg);
}

.ai-waves{ opacity:0; transition:opacity .4s ease; }
.ai-content[data-step="1"] .ai-waves{ opacity:1; }

.ai-phone{ transform:rotate(0deg); transform-origin:170px 170px; transform-box:fill-box; transition:transform .6s ease; }
.ai-content[data-step="2"] .ai-phone{ transform:rotate(-4deg); }

.ai-bubble{
  opacity:0; transform:translateY(18px) scale(.85);
  transform-origin:238px 70px; transform-box:fill-box;
  transition:opacity .6s cubic-bezier(.2,.8,.3,1.2), transform .6s cubic-bezier(.2,.8,.3,1.2);
}
.ai-content[data-step="2"] .ai-bubble{ opacity:1; transform:translateY(0) scale(1); }

.ai-text{ flex:1 1 380px; min-width:0; }
.ai-explain{
  font-size:1.05rem; line-height:1.6; color:rgba(245,241,228,.8);
  max-width:34em; margin-bottom:32px;
}

.ai-steps{ display:flex; flex-direction:column; gap:14px; }
.ai-step{
  display:flex; align-items:flex-start; gap:16px;
  opacity:.3; transform:translateX(-10px);
  transition:opacity .5s ease, transform .5s ease;
}
.ai-content[data-step="0"] .ai-step:nth-child(-n+1){ opacity:1; transform:translateX(0); }
.ai-content[data-step="1"] .ai-step:nth-child(-n+2){ opacity:1; transform:translateX(0); }
.ai-content[data-step="2"] .ai-step:nth-child(-n+3){ opacity:1; transform:translateX(0); }
.ai-step-num{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  border:3px solid var(--gold); display:flex; align-items:center; justify-content:center;
  font-family:'IBM Plex Mono', monospace; font-size:17px; color:var(--gold);
}
.ai-step h4{ font-family:var(--font-head); font-weight:700; font-size:16px; color:var(--cream); margin-bottom:2px; }
.ai-step p{ font-size:13.5px; color:rgba(245,241,228,.65); }

/* ============ PRICING ============ */
.pricing-track{
  display:flex; gap:18px; margin-top:24px;
  overflow-x:auto; scroll-snap-type:x mandatory; padding:24px 4px 12px;
  -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.pricing-track::-webkit-scrollbar{ display:none; }
.price-card{
  scroll-snap-align:center; flex:0 0 82%;
  background:var(--olive); border-radius:18px; padding:32px 26px;
  position:relative; transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card h3{ font-size:1.3rem; }
.price-desc{ color:rgba(22,36,29,.6); font-size:.9rem; margin:4px 0 18px; }
.price-num{ font-family:var(--font-mono); font-weight:700; font-size:2.6rem; margin-bottom:20px; display:flex; align-items:baseline; gap:2px; }
.price-num .cur{ font-size:1.4rem; }
.price-num .per{ font-size:.95rem; font-weight:400; opacity:.6; margin-left:2px; }
.price-num--quote{ font-size:1.3rem; }
.price-list{ margin-bottom:26px; display:flex; flex-direction:column; gap:10px; }
.price-list li{ padding-left:24px; position:relative; font-size:.94rem; line-height:1.4; }
.price-list li::before{ content:"✓"; position:absolute; left:0; color:var(--forest); font-weight:700; }
.price-card--featured{ background:var(--forest); color:var(--cream); box-shadow:0 20px 40px rgba(8,41,34,.25); transform:scale(1.02); }
.price-card--featured .price-desc{ color:rgba(245,241,228,.65); }
.price-card--featured .price-list li::before{ color:var(--gold); }
.price-card--quiet{ background:transparent; border:2px dashed rgba(22,36,29,.2); box-shadow:none; }
.price-card--quiet .price-desc{ opacity:.6; }

.pricing-dots{ display:flex; justify-content:center; gap:8px; margin-top:8px; }
.pricing-dots span{ width:7px; height:7px; border-radius:50%; background:rgba(22,36,29,.2); transition:background .3s, transform .3s; }
.pricing-dots span.active{ background:var(--forest); transform:scale(1.3); }

/* ============ PROCESS ============ */
.process-list{ display:flex; flex-direction:column; gap:0; margin-top:36px; counter-reset:step; }
.process-step{
  display:flex; gap:20px; align-items:flex-start; padding:26px 0;
  border-bottom:1px solid rgba(245,241,228,.12);
}
.process-step:last-child{ border-bottom:none; }
.process-index{
  font-family:var(--font-mono); font-weight:700; font-size:1.6rem; color:var(--gold); opacity:.85;
  min-width:52px;
}
.process-step h3{ font-size:1.2rem; margin-bottom:6px; color:var(--cream); }
.process-step p{ color:rgba(245,241,228,.7); line-height:1.5; }

/* ============ CONTACT ============ */
.contact-inner{ display:flex; flex-direction:column; gap:44px; }
.contact-copy .section-title{ margin-top:16px; }
.contact-facts{ display:flex; flex-direction:column; gap:10px; margin-top:24px; font-family:var(--font-body); font-size:.95rem; }
.contact-facts a:hover{ color:var(--gold); }
.contact-brand{ display:none; }

.contact-form{ background:rgba(245,241,228,.06); border:1px solid rgba(245,241,228,.14); border-radius:18px; padding:28px 22px; }
.form-row{ margin-bottom:18px; }
.form-row label{ display:block; font-family:var(--font-mono); font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; color:rgba(245,241,228,.7); }
.form-row input, .form-row textarea{
  width:100%; padding:.85em 1em; border-radius:10px; border:1px solid rgba(245,241,228,.2);
  background:rgba(245,241,228,.04); color:var(--cream); font-family:var(--font-body); font-size:1rem;
  transition:border-color .25s, background .25s;
}
.form-row input::placeholder, .form-row textarea::placeholder{ color:rgba(245,241,228,.35); }
.form-row input:focus, .form-row textarea:focus{ outline:none; border-color:var(--gold); background:rgba(245,241,228,.08); }
.form-row textarea{ resize:vertical; min-height:100px; }
.form-note{ margin-top:14px; text-align:center; font-size:.9rem; min-height:1.2em; color:var(--gold); }

/* ============ FOOTER ============ */
.site-footer{ background:var(--pine); color:rgba(245,241,228,.75); padding-top:56px; }
.footer-inner{ display:flex; flex-direction:column; gap:32px; padding-bottom:36px; }
.logo--footer .logo-word{ color:var(--cream); }
.footer-brand p{ margin-top:14px; max-width:30em; line-height:1.5; }
.footer-contact{ display:flex; flex-direction:column; gap:8px; font-family:var(--font-body); font-size:.9rem; }
.footer-contact a:hover{ color:var(--gold); }
.footer-bottom{ border-top:1px solid rgba(245,241,228,.1); padding:18px 20px; font-size:.8rem; text-align:center; }

/* ============ RESPONSIVE: TABLET+ ============ */
@media (min-width:700px){
  .card-grid--3{ grid-template-columns:repeat(2,1fr); }
  .hero-actions{ flex-direction:row; justify-content:center; }
  .hero-actions .btn{ width:auto; }
  .price-card{ flex:0 0 46%; }
  .contact-inner{ flex-direction:row; align-items:stretch; }
  .contact-copy{ flex:1; display:flex; flex-direction:column; align-items:flex-start; }
  .contact-form{ flex:1; }
  .contact-facts{ font-size:1.2rem; font-weight:700; }
  .contact-brand{ display:block; margin-top:auto; padding-top:32px; }
  .contact-brand p{ margin-top:10px; color:rgba(245,241,228,.65); font-size:.95rem; }
  .footer-inner{ display:none; }
  .site-footer{ padding-top:0; }
}

@media (min-width:960px){
  .nav-desktop{ display:flex; align-items:center; gap:30px; font-weight:600; font-size:.95rem; }
  .nav-desktop a:not(.btn){ position:relative; }
  .nav-desktop a:not(.btn)::after{
    content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold);
    transform:scaleX(0); transition:transform .3s var(--ease);
  }
  .nav-desktop a:not(.btn):hover::after{ transform:scaleX(1); }
  .hamburger, .nav-mobile{ display:none; }

  .hero{ padding:150px 0 90px; }
  .hero-inner{ flex-direction:row; align-items:center; text-align:left; gap:60px; }
  .hero-copy{ text-align:left; flex:1; }
  .hero-sub{ margin-inline:0; }
  .hero-actions{ justify-content:flex-start; }
  .hero-art{ flex:1; }

  .card-grid--3{ grid-template-columns:repeat(3,1fr); }
  .card-grid--services{ grid-template-columns:repeat(3,1fr); }

  .price-card{ flex:0 0 23.5%; }
  .pricing-track{ overflow:visible; }
  .pricing-dots{ display:none; }
  .price-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-soft); }
  .price-card--featured:hover{ transform:scale(1.02) translateY(-8px); }

  .process-list{ flex-direction:row; gap:24px; }
  .process-step{ flex-direction:column; border-bottom:none; padding:0; flex:1; gap:14px; }
  .process-step:not(:last-child)::after{
    content:""; position:absolute;
  }

  .footer-inner{ flex-direction:row; justify-content:space-between; align-items:flex-start; }
  .footer-brand{ flex:1; }
  .footer-contact{ flex:1; align-items:flex-end; }
}

@media (min-width:1200px){
  .hero-title{ font-size:5rem; }
}
