/* ==========================================================================
   TryLife Upholstery — Stylesheet
   Design language: premium craftsmanship. Deep navy + warm gold/tan,
   set against a linen-cream ground. Signature motif: a stitched seam —
   a dashed gold "thread" line that runs through the page the way a
   seam runs through upholstery, joining one section to the next.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* ---- brand palette (light theme) ---- */
  --navy-900:#0d1b2a;
  --navy-800:#122436;
  --navy-700:#16324f;
  --navy-600:#204468;
  --gold-700:#a97a35;
  --gold-500:#c1954f;
  --gold-400:#d3ab6b;
  --gold-300:#e3c088;
  --cream-50:#f7f2e7;
  --cream-100:#f1e9d8;
  --paper:#fffdf9;
  --charcoal:#221d1a;
  --ink-soft:#4a463f;
  --line:#e4d9c2;

  /* ---- semantic tokens ---- */
  --bg:var(--cream-50);
  --bg-elevated:var(--paper);
  --bg-sunken:var(--cream-100);
  --text:var(--charcoal);
  --text-muted:var(--ink-soft);
  --text-on-dark:#f4ede0;
  --text-on-dark-muted:#c7bda9;
  --accent:var(--gold-500);
  --accent-strong:var(--gold-700);
  --accent-soft:var(--gold-300);
  --surface-dark:var(--navy-900);
  --surface-dark-2:var(--navy-700);
  --border:var(--line);
  --thread:var(--gold-500);
  --shadow-soft:0 18px 40px -22px rgba(13,27,42,0.35);
  --shadow-card:0 10px 30px -18px rgba(13,27,42,0.28);
  --radius-lg:22px;
  --radius-md:14px;
  --radius-sm:8px;
  --wa-green:#25d366;

  --font-display:'Fraunces', ui-serif, Georgia, serif;
  --font-body:'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  color-scheme: light;
}

html[data-theme="dark"]{
  --bg:#0a141f;
  --bg-elevated:#101f30;
  --bg-sunken:#0d1b29;
  --text:#f1ebdd;
  --text-muted:#b9b0a0;
  --accent:var(--gold-400);
  --accent-strong:var(--gold-300);
  --accent-soft:#8a6a3a;
  --surface-dark:#050c14;
  --surface-dark-2:#0e2135;
  --border:#25384c;
  --thread:var(--gold-400);
  --shadow-soft:0 18px 44px -20px rgba(0,0,0,0.6);
  --shadow-card:0 12px 32px -18px rgba(0,0,0,0.55);
  color-scheme: dark;
}

/* ---------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  transition:background .35s ease, color .35s ease;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--text);
  margin:0 0 .5em;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-.01em;
}
p{line-height:1.65;color:var(--text-muted);margin:0 0 1em;}
.container{
  width:min(1180px, 92%);
  margin-inline:auto;
}
section{position:relative;}

::selection{background:var(--gold-300);color:var(--navy-900);}

:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px;
  border-radius:4px;
}

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

/* ---------- eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-strong);
  margin-bottom:1em;
}
.eyebrow::before{
  content:"";
  width:22px;height:1px;
  background:var(--accent);
}
.on-dark .eyebrow{color:var(--accent-soft);}
.on-dark .eyebrow::before{background:var(--accent-soft);}

/* ---------- buttons ---------- */
.btn{
  --btn-pad-y:.9rem;
  --btn-pad-x:1.6rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55em;
  padding:var(--btn-pad-y) var(--btn-pad-x);
  border-radius:999px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.02em;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}
.btn svg{width:1.1em;height:1.1em;flex:none;}

.btn-primary{
  background:linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color:#211505;
  box-shadow:0 12px 26px -12px rgba(169,122,53,.65);
}
.btn-primary:hover{box-shadow:0 16px 30px -12px rgba(169,122,53,.75);}

.btn-whatsapp{
  background:var(--wa-green);
  color:#fff;
  box-shadow:0 12px 26px -12px rgba(37,211,102,.55);
}

.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:var(--text);
}
.on-dark .btn-outline{color:var(--text-on-dark); border-color:rgba(244,237,224,.5);}
.btn-outline:hover{background:rgba(193,149,79,.1);}

.btn-ghost{
  background:transparent;
  color:var(--accent-strong);
  padding-inline:.2rem;
  border-bottom:1.5px solid var(--accent);
  border-radius:0;
}
.btn-ghost:hover{transform:none; color:var(--accent);}

.btn-block{width:100%;}
.btn-sm{--btn-pad-y:.65rem;--btn-pad-x:1.15rem;font-size:.82rem;}

/* ---------- stitched seam divider (signature element) ---------- */
.seam{
  position:relative;
  height:46px;
  margin:0 auto;
  width:min(1180px, 92%);
  overflow:visible;
}
.seam svg{width:100%;height:100%;display:block;}
.seam path{
  fill:none;
  stroke:var(--thread);
  stroke-width:2;
  stroke-dasharray:9 9;
  stroke-linecap:round;
  opacity:.75;
}
.seam .seam-node{
  fill:var(--bg);
  stroke:var(--thread);
  stroke-width:2;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter:blur(10px) saturate(1.2);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding:.7rem 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:.65rem;
  text-decoration:none;
}
.brand img{
  height:44px;width:44px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 2px var(--bg), 0 0 0 3px var(--accent);
}
.brand-text{
  font-family:var(--font-display);
  line-height:1.05;
}
.brand-text strong{
  display:block;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--text);
}
.brand-text span{
  display:block;
  font-family:var(--font-body);
  font-size:.62rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-strong);
  font-weight:700;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:1.85rem;
  list-style:none;
  margin:0;padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size:.9rem;
  font-weight:600;
  color:var(--text-muted);
  position:relative;
  padding-bottom:2px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;bottom:-2px;
  width:0;height:2px;
  background:var(--accent);
  transition:width .2s ease;
}
.nav-links a:hover{color:var(--text);}
.nav-links a:hover::after{width:100%;}

.nav-cta{display:flex;align-items:center;gap:.7rem;}

.theme-toggle{
  --size:38px;
  width:var(--size);height:var(--size);
  border-radius:50%;
  border:1.5px solid var(--border);
  background:var(--bg-elevated);
  display:grid;place-items:center;
  cursor:pointer;
  color:var(--text);
  flex:none;
}
.theme-toggle svg{width:18px;height:18px;}
.theme-toggle .icon-moon{display:none;}
html[data-theme="dark"] .theme-toggle .icon-sun{display:none;}
html[data-theme="dark"] .theme-toggle .icon-moon{display:block;}

.nav-toggle{
  display:none;
  width:42px;height:42px;
  border-radius:50%;
  border:1.5px solid var(--border);
  background:var(--bg-elevated);
  cursor:pointer;
  position:relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  position:absolute;
  left:50%;top:50%;
  width:18px;height:2px;
  background:var(--text);
  transform:translate(-50%,-50%);
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle span::before{transform:translateY(-6px);}
.nav-toggle span::after{transform:translateY(6px);}
.nav-toggle.open span{background:transparent;}
.nav-toggle.open span::before{transform:translateY(0) rotate(45deg);}
.nav-toggle.open span::after{transform:translateY(0) rotate(-45deg);}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding:4.5rem 0 3rem;
  position:relative;
  background:
    radial-gradient(700px 420px at 88% -10%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 65%),
    var(--bg);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:3.5rem;
  align-items:center;
}
.hero-copy h1{
  font-size:clamp(2.1rem, 3.6vw, 3.35rem);
}
.hero-copy .lede{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:1.15rem;
  color:var(--accent-strong);
  margin-bottom:1rem;
}
.hero-copy p.desc{
  font-size:1.05rem;
  max-width:52ch;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  margin:1.6rem 0 1rem;
}
.hero-micro{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.88rem;
  color:var(--text-muted);
  font-weight:600;
  margin-top:.6rem;
}
.hero-micro svg{width:1.2em;height:1.2em;color:var(--wa-green);flex:none;}

.hero-visual{
  position:relative;
  display:grid;
  place-items:center;
}
.hero-emblem{
  position:relative;
  width:100%;
  max-width:420px;
  aspect-ratio:1/1;
  border-radius:50%;
  background:var(--bg-elevated);
  box-shadow:var(--shadow-soft);
  display:grid;
  place-items:center;
  padding:8%;
}
.hero-emblem img{
  width:100%;
  border-radius:50%;
}
.hero-emblem::after{
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:50%;
  border:1.5px dashed var(--accent);
  opacity:.55;
  animation:spin 60s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg);}}

.hero-stats{
  display:flex;
  gap:1.6rem;
  margin-top:2.2rem;
  flex-wrap:wrap;
}
.hero-stat b{
  display:block;
  font-family:var(--font-display);
  font-size:1.1rem;
  color:var(--text);
}
.hero-stat span{
  font-size:.78rem;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* =========================================================
   SECTION HEADS
   ========================================================= */
.section{padding:5rem 0;}
.section-head{
  max-width:640px;
  margin-bottom:2.75rem;
}
.section-head.center{
  margin-inline:auto;
  text-align:center;
}
.section-head h2{font-size:clamp(1.7rem, 2.6vw, 2.4rem);}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.4rem;
}
.service-card{
  background:var(--bg-elevated);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:1.9rem 1.7rem 1.6rem;
  position:relative;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:var(--accent);
}
.service-card .num{
  font-family:var(--font-display);
  font-style:italic;
  color:var(--accent-soft);
  font-size:.85rem;
  position:absolute;
  top:1.4rem; right:1.6rem;
}
.service-icon{
  width:48px;height:48px;
  border-radius:12px;
  display:grid;place-items:center;
  background:color-mix(in srgb, var(--accent) 16%, transparent);
  color:var(--accent-strong);
  margin-bottom:1.1rem;
}
.service-icon svg{width:24px;height:24px;}
.service-card h3{font-size:1.15rem;margin-bottom:.5rem;}
.service-card p{font-size:.92rem;margin-bottom:1rem;}
.service-list{
  list-style:none;
  margin:0 0 1.2rem;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:.4rem .5rem;
}
.service-list li{
  font-size:.76rem;
  font-weight:600;
  color:var(--text-muted);
  background:var(--bg-sunken);
  border:1px solid var(--border);
  border-radius:999px;
  padding:.28rem .7rem;
}

/* =========================================================
   DIFFERENTIATOR (dark navy panel)
   ========================================================= */
.panel-dark{
  background:
    radial-gradient(600px 320px at 10% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 60%),
    var(--surface-dark);
  color:var(--text-on-dark);
  border-radius:var(--radius-lg);
  padding:3.2rem clamp(1.5rem, 4vw, 3.5rem);
}
.panel-dark h2, .panel-dark h3{color:var(--text-on-dark);}
.panel-dark p{color:var(--text-on-dark-muted);}
.differentiator-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:start;
}
.diff-tags{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin:1.4rem 0 1.8rem;
}
.diff-tags span{
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.03em;
  border:1px solid rgba(244,237,224,.28);
  border-radius:999px;
  padding:.45rem 1rem;
  color:var(--accent-soft);
}
.diff-note{
  font-size:.82rem;
  color:var(--text-on-dark-muted);
  border-left:2px solid var(--accent);
  padding-left:.9rem;
  margin-top:1.6rem;
}
.benefit-cards{
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.benefit-card{
  background:rgba(244,237,224,.05);
  border:1px solid rgba(244,237,224,.14);
  border-radius:var(--radius-md);
  padding:1.2rem 1.4rem;
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.benefit-card .service-icon{background:rgba(211,171,107,.18);color:var(--accent-soft);}
.benefit-card h4{color:var(--text-on-dark);font-size:1rem;margin-bottom:.3rem;font-family:var(--font-body);font-weight:700;letter-spacing:.02em;}
.benefit-card p{font-size:.86rem;margin:0;}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.3rem;
  counter-reset:step;
}
.step{
  position:relative;
  padding:1.8rem 1.4rem 1.5rem;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--bg-elevated);
}
.step .step-num{
  font-family:var(--font-display);
  font-size:2.1rem;
  font-weight:600;
  color:transparent;
  -webkit-text-stroke:1.4px var(--accent);
  display:block;
  margin-bottom:.6rem;
}
.step h3{font-size:1.02rem;margin-bottom:.4rem;}
.step p{font-size:.87rem;margin:0;}
.step::after{
  content:"";
  position:absolute;
  top:2.2rem; right:-.9rem;
  width:1rem;height:1px;
  border-top:1.5px dashed var(--accent);
  opacity:.7;
}
.step:last-child::after{display:none;}
.steps-cta{text-align:center;margin-top:2.4rem;}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-bottom:2rem;
}
.gallery-tabs button{
  border:1px solid var(--border);
  background:var(--bg-elevated);
  color:var(--text-muted);
  font-weight:700;
  font-size:.82rem;
  padding:.55rem 1.1rem;
  border-radius:999px;
  cursor:pointer;
  transition:all .2s ease;
}
.gallery-tabs button.active,
.gallery-tabs button:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#211505;
}
.ba-slider{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:16/9;
  box-shadow:var(--shadow-soft);
  user-select:none;
  background:var(--bg-sunken);
}
.ba-slider .ba-side{
  position:absolute;inset:0;
  display:grid;place-items:center;
  text-align:center;
}
.ba-slider .ba-side img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.ba-slider .ba-after{
  background:linear-gradient(145deg, var(--navy-700), var(--navy-900));
  color:var(--text-on-dark);
}
.ba-slider .ba-before{
  background:linear-gradient(145deg, var(--cream-100), var(--bg-sunken));
  color:var(--text-muted);
  clip-path:inset(0 50% 0 0);
}
.ba-slider .ba-label{
  position:absolute;
  top:1rem;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:.35rem .8rem;
  border-radius:999px;
  background:rgba(0,0,0,.28);
  color:#fff;
}
.ba-slider .ba-before .ba-label{left:1rem;}
.ba-slider .ba-after .ba-label{right:1rem;}
.ba-handle{
  position:absolute;
  top:0;bottom:0;
  left:50%;
  width:0;
  cursor:ew-resize;
  z-index:5;
}
.ba-handle .bar{
  position:absolute;top:0;bottom:0;left:0;
  width:3px;
  background:var(--accent);
  transform:translateX(-50%);
  box-shadow:0 0 0 3px rgba(0,0,0,.15);
}
.ba-handle .grip{
  position:absolute;
  top:50%;left:0;
  width:44px;height:44px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:var(--accent);
  display:grid;place-items:center;
  color:#211505;
  box-shadow:0 8px 18px -6px rgba(0,0,0,.4);
}
.ba-handle .grip svg{width:20px;height:20px;}
.gallery-caption{
  text-align:center;
  margin-top:1rem;
  font-size:.86rem;
  color:var(--text-muted);
}

/* =========================================================
   TRUST
   ========================================================= */
.trust-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:center;
}
.trust-points{
  display:flex;
  flex-direction:column;
  gap:1.2rem;
}
.trust-point{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}
.trust-point h4{margin-bottom:.25rem;font-size:1rem;}
.trust-point p{margin:0;font-size:.9rem;}
.trust-visual{
  border-radius:var(--radius-lg);
  background:var(--bg-elevated);
  border:1px solid var(--border);
  padding:2.4rem;
  box-shadow:var(--shadow-card);
  position:relative;
}
.trust-visual .stitch-frame{
  border:1.5px dashed var(--accent);
  border-radius:14px;
  padding:2rem;
  text-align:center;
}
.trust-visual h3{font-size:1.3rem;margin-bottom:.4rem;}
.trust-visual p{margin:0;font-size:.9rem;}

/* =========================================================
   WHO WE SERVE
   ========================================================= */
.audience-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:1.1rem;
}
.audience-card{
  padding:1.5rem 1.1rem;
  text-align:center;
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--bg-elevated);
}
.audience-card .service-icon{margin:0 auto .9rem;}
.audience-card h4{font-size:.95rem;margin-bottom:.4rem;}
.audience-card p{font-size:.82rem;margin:0;}

/* =========================================================
   SALES BANNER — "Don't Replace It"
   ========================================================= */
.sales-banner{
  border-radius:var(--radius-lg);
  padding:3rem clamp(1.5rem, 4vw, 3.5rem);
  background:linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color:#241705;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:2rem;
  align-items:center;
}
.sales-banner h2{color:#241705;}
.sales-banner .lines{
  list-style:none;
  margin:1rem 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.sales-banner .lines li{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.05rem;
  font-weight:500;
}
.sales-banner .lines li b{font-style:normal;text-decoration:underline;text-decoration-color:rgba(36,23,5,.35);}
.sales-cta{
  display:flex;
  flex-direction:column;
  gap:.8rem;
  align-items:flex-start;
}
.sales-banner .btn-primary{
  background:var(--navy-900);
  color:#fff;
  box-shadow:0 12px 26px -12px rgba(13,27,42,.55);
}
.sales-banner .btn-outline{border-color:#241705;color:#241705;}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{
  max-width:820px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.faq-item{
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  background:var(--bg-elevated);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:1.1rem 1.4rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  font-weight:700;
  font-size:.98rem;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item .plus{
  flex:none;
  width:26px;height:26px;
  border-radius:50%;
  border:1.5px solid var(--accent);
  display:grid;place-items:center;
  position:relative;
}
.faq-item .plus::before,.faq-item .plus::after{
  content:"";
  position:absolute;
  background:var(--accent);
}
.faq-item .plus::before{width:10px;height:2px;}
.faq-item .plus::after{width:2px;height:10px;transition:transform .2s ease;}
.faq-item[open] .plus::after{transform:rotate(90deg) scaleX(0);}
.faq-item .faq-a{
  padding:0 1.4rem 1.2rem;
  font-size:.92rem;
  color:var(--text-muted);
  margin:0;
}

/* =========================================================
   CONTACT / QUOTE FORM
   ========================================================= */
.contact-wrap{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:3rem;
  align-items:start;
}
.contact-side .panel-dark{padding:2.4rem;}
.contact-list{
  list-style:none;margin:1.6rem 0 0;padding:0;
  display:flex;flex-direction:column;gap:1rem;
}
.contact-list li{
  display:flex;gap:.8rem;align-items:flex-start;
  font-size:.9rem;
}
.contact-list svg{width:20px;height:20px;flex:none;color:var(--accent-soft);margin-top:.1rem;}
.contact-list a{text-decoration:none;color:var(--text-on-dark);font-weight:600;}

.quote-form{
  background:var(--bg-elevated);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.2rem clamp(1.4rem, 3vw, 2.4rem);
  box-shadow:var(--shadow-card);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.1rem;
}
.field{display:flex;flex-direction:column;gap:.4rem;}
.field.full{grid-column:1 / -1;}
.field label{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--text-muted);
  text-transform:uppercase;
}
.field input,.field select,.field textarea{
  font-family:var(--font-body);
  font-size:.94rem;
  padding:.75rem .9rem;
  border-radius:var(--radius-sm);
  border:1.5px solid var(--border);
  background:var(--bg);
  color:var(--text);
  width:100%;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--accent);
}
.field textarea{resize:vertical;min-height:100px;}
.file-drop{
  border:1.5px dashed var(--border);
  border-radius:var(--radius-sm);
  padding:1.4rem;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
  font-size:.86rem;
  color:var(--text-muted);
}
.file-drop:hover, .file-drop.drag{border-color:var(--accent); background:color-mix(in srgb, var(--accent) 6%, transparent);}
.file-drop svg{width:26px;height:26px;color:var(--accent-strong);margin-bottom:.4rem;}
.file-drop input{display:none;}
#file-names{font-size:.8rem;margin-top:.5rem;color:var(--accent-strong);font-weight:600;}
.form-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:1.4rem;
}
.form-note{font-size:.82rem;margin:0;color:var(--text-muted);}
.form-status{
  font-size:.86rem;
  font-weight:600;
  margin-top:1rem;
  padding:.8rem 1rem;
  border-radius:var(--radius-sm);
  display:none;
}
.form-status.show{display:block;}
.form-status.ok{background:rgba(37,211,102,.14);color:#1a8f4c;}
.form-status.err{background:rgba(214,60,60,.12);color:#c23a3a;}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{
  text-align:center;
  padding:4.5rem clamp(1.5rem,4vw,3.5rem);
  border-radius:var(--radius-lg);
}
.final-cta .lede{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.3rem;
  color:var(--accent-soft);
}
.final-cta h2{font-size:clamp(1.9rem,3.4vw,2.9rem);}
.final-ctas{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:1.8rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--surface-dark);
  color:var(--text-on-dark-muted);
  padding:3.5rem 0 1.6rem;
  margin-top:2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:2.4rem;
  padding-bottom:2.4rem;
  border-bottom:1px solid rgba(244,237,224,.12);
}
.footer-brand{display:flex;align-items:center;gap:.7rem;margin-bottom:1rem;}
.footer-brand img{height:42px;width:42px;border-radius:50%;}
.footer-brand strong{display:block;color:var(--text-on-dark);font-family:var(--font-display);font-size:1.05rem;}
.footer-brand span{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-soft);font-weight:700;}
.site-footer h5{
  color:var(--text-on-dark);
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin:0 0 1rem;
}
.site-footer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.6rem;font-size:.88rem;}
.site-footer a{text-decoration:none;color:var(--text-on-dark-muted);}
.site-footer a:hover{color:var(--accent-soft);}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem;}
.footer-social a{
  width:36px;height:36px;
  border-radius:50%;
  border:1px solid rgba(244,237,224,.2);
  display:grid;place-items:center;
}
.footer-social svg{width:16px;height:16px;}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:.8rem;
  padding-top:1.6rem;
  font-size:.78rem;
}

/* =========================================================
   WHATSAPP FLOATER + STICKY MOBILE BAR
   ========================================================= */
.wa-floater{
  position:fixed;
  right:1.4rem;
  bottom:1.6rem;
  z-index:90;
  width:60px;height:60px;
  border-radius:50%;
  background:var(--wa-green);
  color:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 14px 30px -10px rgba(37,211,102,.6);
  text-decoration:none;
  animation:wa-pulse 2.6s ease-in-out infinite;
}
.wa-floater svg{width:30px;height:30px;}
@keyframes wa-pulse{
  0%,100%{box-shadow:0 14px 30px -10px rgba(37,211,102,.6);}
  50%{box-shadow:0 14px 34px -6px rgba(37,211,102,.85), 0 0 0 8px rgba(37,211,102,.12);}
}

.mobile-bar{
  display:none;
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:85;
  background:var(--bg-elevated);
  border-top:1px solid var(--border);
  padding:.55rem .7rem;
  padding-bottom:calc(.55rem + env(safe-area-inset-bottom));
}
.mobile-bar-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.3fr;
  gap:.5rem;
}
.mobile-bar a, .mobile-bar button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:.7rem .4rem;
  border-radius:999px;
  font-size:.76rem;
  font-weight:700;
  text-decoration:none;
  border:1.5px solid var(--border);
  color:var(--text);
  background:var(--bg);
}
.mobile-bar svg{width:16px;height:16px;flex:none;}
.mobile-bar .mb-wa{background:var(--wa-green);border-color:var(--wa-green);color:#fff;}
.mobile-bar .mb-quote{background:var(--accent);border-color:var(--accent);color:#241705;}

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1;transform:translateY(0);}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1020px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:repeat(2,1fr);}
  .audience-grid{grid-template-columns:repeat(3,1fr);}
  .differentiator-grid,.trust-wrap,.contact-wrap{grid-template-columns:1fr;}
  .sales-banner{grid-template-columns:1fr;}
}

@media (max-width: 860px){
  .nav-links,.nav-cta .btn-outline{display:none;}
  .nav-toggle{display:block;}
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{order:-1;max-width:260px;margin:0 auto;}
  .hero-emblem{max-width:260px;}
  body{padding-bottom:74px;}
  .mobile-bar{display:block;}
  .wa-floater{bottom:92px;}
}

@media (max-width: 640px){
  .section{padding:3.2rem 0;}
  .services-grid{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr;}
  .step::after{display:none;}
  .audience-grid{grid-template-columns:repeat(2,1fr);}
  .form-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .hero-stats{gap:1rem;}
}

/* Mobile nav drawer */
.mobile-drawer{
  position:fixed;
  inset:0 0 0 auto;
  width:min(320px, 82vw);
  background:var(--bg-elevated);
  z-index:95;
  padding:1.6rem;
  transform:translateX(100%);
  transition:transform .3s ease;
  box-shadow:-14px 0 40px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  gap:1.4rem;
}
.mobile-drawer.open{transform:translateX(0);}
.mobile-drawer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1.1rem;}
.mobile-drawer a{text-decoration:none;font-weight:700;font-size:1.05rem;color:var(--text);}
.drawer-backdrop{
  position:fixed;inset:0;
  background:rgba(13,27,42,.45);
  z-index:94;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.drawer-backdrop.open{opacity:1;pointer-events:auto;}
