/* =============================================
   SSPL INDIA — Stylesheet v3
   Quiet editorial. Built on the SSPL brand book.
   Greens + paper · Geist Mono · Fraunces serif · Source Sans 3
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Geist+Mono:wght@400;500;600&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --paper:    #edebe8;
  --paper-2:  #e5e2dd;
  --green:    #00aa45;
  --forest:   #0e5636;
  --deep:     #0b3a23;
  --stone:    #4e4d47;
  --ink:      #21201e;
  --line:     rgba(33,32,30,0.14);
  --line-d:   rgba(237,235,232,0.16);
  --serif: 'Fraunces', Georgia, serif;
  --mono:  'Geist Mono', ui-monospace, monospace;
  --sans:  'Source Sans 3', system-ui, sans-serif;
  --maxw: 1280px;
  --pad: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--forest); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ── TYPE ── */
.eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--green);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--green); display: inline-block; }
.eyebrow.plain::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; line-height: 1.04; }
.display-1 { font-size: clamp(44px, 7vw, 100px); font-weight: 380; }
.display-2 { font-size: clamp(32px, 4.6vw, 62px); font-weight: 400; }
.display-3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 400; }
.serif-italic { font-style: italic; }
em.accent { font-style: italic; color: var(--forest); }

.lead { font-size: 19px; line-height: 1.65; color: var(--stone); max-width: 50ch; }
.body { font-size: 17px; color: var(--stone); max-width: 60ch; }
.mono-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }

/* ── TOPBAR ── */
.topbar {
  background: var(--deep); color: var(--paper);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: var(--green); text-decoration: none; }
.topbar-left { display: flex; gap: 26px; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(237,235,232,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .nav-word { font-family: var(--serif); font-weight: 500; font-size: 23px; letter-spacing: 0.02em; color: var(--ink); line-height: 1; }
.nav-logo .nav-word small { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.32em; color: var(--stone); margin-top: 3px; }
.nav-links { display: flex; list-style: none; gap: 38px; align-items: center; }
.nav-links a { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--green); transition: width 0.25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 20px; transition: all 0.25s; }
.nav-cta:hover { background: var(--forest); border-color: var(--forest); color: var(--paper) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--ink); }

/* ── BUTTONS ── */
.btn { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s; cursor: pointer; border: none; }
.btn-fill { background: var(--forest); color: var(--paper); padding: 16px 30px; border-radius: 999px; }
.btn-fill:hover { background: var(--deep); transform: translateY(-2px); }
.btn-line { border-bottom: 1px solid currentColor; padding-bottom: 4px; color: var(--ink); }
.btn-line:hover { color: var(--green); gap: 16px; }
.btn-line.on-dark { color: var(--paper); }
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ── HERO ── */
.hero { padding: 90px 0 80px; position: relative; }
.hero .wrap { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 34px; }
.hero h1 { max-width: 16ch; margin-bottom: 36px; }
.hero h1 em { font-style: italic; color: var(--forest); }
.hero-sub { max-width: 46ch; margin-bottom: 44px; font-size: 19px; color: var(--stone); }
.hero-actions { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.hero-motif { position: absolute; top: 0; right: -120px; width: 620px; height: 100%; opacity: 0.5; z-index: 1; pointer-events: none; background-repeat: no-repeat; background-position: right center; background-size: contain; }

/* knit-loop concentric motif (decorative) */
.motif {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%2300aa45' stroke-width='2' opacity='0.5'%3E%3Ccircle cx='300' cy='300' r='60'/%3E%3Ccircle cx='300' cy='300' r='100'/%3E%3Ccircle cx='300' cy='300' r='140'/%3E%3Ccircle cx='300' cy='300' r='180'/%3E%3Ccircle cx='300' cy='300' r='220'/%3E%3Ccircle cx='300' cy='300' r='260'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── STAT STRIP ── */
.statstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statstrip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.statcell { padding: 44px 0; border-right: 1px solid var(--line); padding-right: 24px; }
.statcell:last-child { border-right: none; }
.statcell:not(:first-child) { padding-left: 36px; }
.statcell .num { font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); font-weight: 380; line-height: 1; color: var(--forest); }
.statcell .lab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-top: 12px; }

/* ── SECTION ── */
section { padding: 130px 0; }
section.deep { background: var(--deep); color: var(--paper); }
section.deep .lead, section.deep .body { color: rgba(237,235,232,0.72); }
section.deep .mono-label { color: rgba(237,235,232,0.6); }
section.forest { background: var(--forest); color: var(--paper); }
section.forest .lead, section.forest .body { color: rgba(237,235,232,0.8); }
.sec-head { max-width: 60ch; margin-bottom: 64px; }
.sec-head .eyebrow { margin-bottom: 26px; }
.sec-head h2 { margin-bottom: 0; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr 0.85fr; }
.split .eyebrow { margin-bottom: 26px; }
.split h2 { margin-bottom: 28px; }
.split p + p { margin-top: 18px; }
.split .btn { margin-top: 36px; }

/* media block (photo placeholder, refined) */
.media { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; background: var(--deep); display: flex; align-items: center; justify-content: center; }
.media.tall { aspect-ratio: 3/4; }
.media .ph { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,235,232,0.5); text-align: center; padding: 24px; line-height: 1.9; position: relative; z-index: 2; }
.media .motif-fill { position: absolute; inset: 0; opacity: 0.4; background-size: 150%; background-position: center; }

/* ── LISTING (capabilities / quiet rows) ── */
.rows { border-top: 1px solid var(--line); }
.deep .rows, .forest .rows { border-color: var(--line-d); }
.row { display: grid; grid-template-columns: 60px 1fr 1.4fr; gap: 32px; padding: 38px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.deep .row, .forest .row { border-color: var(--line-d); }
.row .rnum { font-family: var(--mono); font-size: 13px; color: var(--green); }
.row h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.row p { font-size: 15.5px; color: var(--stone); }
.deep .row p, .forest .row p { color: rgba(237,235,232,0.7); }

/* ── PROCESS (quiet numbered) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.deep .steps { border-color: var(--line-d); }
.step { padding: 44px 36px 44px 0; border-right: 1px solid var(--line); }
.deep .step { border-color: var(--line-d); }
.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: 36px; }
.step .snum { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--green); margin-bottom: 20px; }
.step h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; margin-bottom: 14px; }
.step p { font-size: 15px; color: var(--stone); }
.deep .step p { color: rgba(237,235,232,0.7); }

/* ── QUOTE ── */
.quote { max-width: 22ch; }
.quote .q { font-family: var(--serif); font-style: italic; font-size: clamp(28px, 3.4vw, 46px); font-weight: 360; line-height: 1.25; margin-bottom: 32px; }
.quote .by { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); }
.deep .faq-item { border-color: var(--line-d); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; color: inherit; text-align: left; font-family: var(--serif); font-size: 22px; font-weight: 400; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-q .ic { font-family: var(--mono); font-size: 22px; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .ic { transform: rotate(45deg); }
.faq-a { font-size: 16px; color: var(--stone); max-width: 70ch; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.deep .faq-a { color: rgba(237,235,232,0.72); }
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 28px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.cinfo { margin-bottom: 30px; }
.cinfo h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.cinfo p, .cinfo a { font-family: var(--sans); font-size: 17px; color: var(--ink); text-decoration: none; }
.cinfo a:hover { color: var(--forest); }
.form-card { background: var(--paper-2); border-radius: 6px; padding: 48px 44px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); }
.fg input, .fg textarea, .fg select { background: var(--paper); border: 1px solid var(--line); border-radius: 4px; font-family: var(--sans); font-size: 16px; color: var(--ink); padding: 14px 15px; outline: none; transition: border-color 0.2s; width: 100%; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { min-height: 130px; resize: vertical; }
.form-ok { display: none; background: rgba(0,170,69,0.1); border: 1px solid var(--green); border-radius: 4px; color: var(--forest); font-family: var(--mono); font-size: 13px; padding: 16px 18px; margin-top: 16px; }
.map { width: 100%; height: 260px; border: 1px solid var(--line); border-radius: 6px; margin-top: 10px; filter: grayscale(0.4) contrast(0.95); }

/* ── PAGE HERO ── */
.page-hero { background: var(--deep); color: var(--paper); padding: 100px 0 90px; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero h1 { max-width: 16ch; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero p { font-size: 19px; color: rgba(237,235,232,0.72); max-width: 58ch; }
.page-hero .motif-fill { position: absolute; top: -80px; right: -120px; width: 560px; height: 560px; opacity: 0.4; background-size: contain; background-repeat: no-repeat; z-index: 1; }

/* ── CTA ── */
.cta { background: var(--green); color: var(--deep); padding: 120px 0; text-align: center; }
.cta h2 { font-size: clamp(36px, 5vw, 76px); font-weight: 400; margin-bottom: 24px; max-width: 18ch; margin-inline: auto; }
.cta h2 em { font-style: italic; }
.cta p { font-family: var(--mono); font-size: 14px; letter-spacing: 0.04em; color: rgba(11,58,35,0.7); margin-bottom: 40px; }
.btn-deep { background: var(--deep); color: var(--paper); padding: 16px 34px; border-radius: 999px; }
.btn-deep:hover { background: var(--ink); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: var(--deep); color: var(--paper); padding: 90px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line-d); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; color: rgba(237,235,232,0.66); max-width: 300px; line-height: 1.7; }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(237,235,232,0.72); font-size: 15px; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--paper); }
.footer-col address { font-style: normal; font-size: 14.5px; color: rgba(237,235,232,0.66); line-height: 1.85; }
.footer-col address a { color: var(--green); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: rgba(237,235,232,0.5); }

/* ── ANIM ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --pad: 28px; }
  .topbar { display: none; }
  .hero-motif { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .statstrip .wrap { grid-template-columns: 1fr 1fr; }
  .statcell:nth-child(2) { border-right: none; }
  .statcell { padding-left: 0 !important; padding-right: 0; }
  .statcell:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .step, .step:not(:first-child) { border-right: none; padding-left: 0; border-bottom: 1px solid var(--line); }
  .row { grid-template-columns: 40px 1fr; }
  .row p { grid-column: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 88px 0; }
  .fgrid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 80px; left: 0; right: 0; background: var(--paper); padding: 26px 28px; gap: 22px; border-bottom: 1px solid var(--line); }
  .hamburger { display: flex; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero h1 { font-size: 44px; }
}

/* =============================================
   v3.1 — Motion, depth & background texture
   (restrained, honours the "quiet" brief)
   ============================================= */

:root {
  --shadow-soft: 0 2px 8px rgba(11,58,35,0.05), 0 10px 30px rgba(11,58,35,0.07);
  --shadow-lift: 0 8px 20px rgba(11,58,35,0.10), 0 24px 60px rgba(11,58,35,0.14);
}

/* faint film grain across everything */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* whisper-soft warm gradient on the paper base */
body { background: linear-gradient(180deg, #f1efec 0%, var(--paper) 38%, #e9e6e1 100%); background-attachment: fixed; }

/* soft breathing green glow in dark sections */
section.deep, section.forest, .page-hero { position: relative; overflow: hidden; }
section.deep::before, section.forest::before, .page-hero::after {
  content: ''; position: absolute; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,69,0.16) 0%, transparent 60%);
  top: -300px; right: -200px; pointer-events: none; z-index: 0;
  animation: breathe 9s ease-in-out infinite;
}
section.forest::before { background: radial-gradient(circle, rgba(0,170,69,0.12) 0%, transparent 60%); left: -250px; right: auto; top: auto; bottom: -300px; }
section.deep .wrap, section.forest .wrap { position: relative; z-index: 1; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.12); opacity: 1; } }

/* hero soft glow behind motif */
.hero::after { content:''; position:absolute; top:6%; right:-4%; width:680px; height:680px; border-radius:50%; background: radial-gradient(circle, rgba(0,170,69,0.10) 0%, transparent 62%); pointer-events:none; z-index:0; }

/* elevation + depth */
nav { transition: box-shadow .3s, background .3s, height .3s; }
nav.scrolled { box-shadow: var(--shadow-soft); }
.media { box-shadow: var(--shadow-lift); transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s; transform-style: preserve-3d; will-change: transform; }
.form-card { box-shadow: var(--shadow-soft); }
.statstrip { transition: box-shadow .4s; }

/* knit motif: slow parallax + breathe (set via JS transform var) */
.hero-motif, .page-hero .motif-fill { will-change: transform; }

/* ── REVEAL SYSTEM ── */
.reveal { opacity: 0; transform: translateY(26px); filter: blur(6px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(22px); filter: blur(5px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.reveal-stagger.in > * { opacity: 1; transform: none; filter: blur(0); }

/* count-up holder keeps layout stable */
.count { font-variant-numeric: tabular-nums; }

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* =============================================
   v3.2 — Client feedback round
   tighter hero · products · certs · testimonials
   footer CTA · whatsapp · mobile fixes
   ============================================= */

/* 1 — tighten hero & stat whitespace */
.hero { padding: 60px 0 52px; }
.hero h1 { margin-bottom: 28px; }
.hero-sub { margin-bottom: 34px; }
.statcell { padding: 34px 0; }
.statcell:not(:first-child) { padding-left: 30px; }

/* 2 — "who we are" facts panel (fills the empty right side) */
.facts { position: relative; border-radius: 6px; overflow: hidden; background: var(--deep); color: var(--paper); padding: 44px 40px; box-shadow: var(--shadow-lift); }
.facts .motif-fill { position: absolute; inset: 0; opacity: 0.32; background-size: 150%; background-position: center; }
.facts .inner { position: relative; z-index: 1; }
.facts .flabel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 26px; }
.facts ul { list-style: none; display: flex; flex-direction: column; }
.facts li { padding: 18px 0; border-bottom: 1px solid var(--line-d); display: flex; flex-direction: column; gap: 4px; }
.facts li:last-child { border-bottom: none; }
.facts li .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(237,235,232,0.55); }
.facts li .v { font-family: var(--serif); font-size: 22px; line-height: 1.1; }
.facts .btn { margin-top: 26px; }

/* 3 — section sign-off / closing CTA row */
.signoff { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line-d); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.signoff p { font-family: var(--serif); font-size: clamp(20px,2.2vw,30px); max-width: 24ch; }
.deep .signoff p { color: var(--paper); }

/* 4 — process CTA row */
.proc-cta { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.proc-cta .hint { font-family: var(--mono); font-size: 12px; color: var(--stone); letter-spacing: 0.03em; }

/* 5 — statement / philosophy section (was floaty) */
.statement { text-align: center; max-width: 940px; margin: 0 auto; position: relative; z-index: 1; }
.statement .mark { width: 96px; margin: 0 auto 36px; opacity: 0.9; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.statement .q { font-family: var(--serif); font-style: italic; font-size: clamp(26px,3.6vw,46px); font-weight: 360; line-height: 1.25; margin-bottom: 18px; }
.statement .src { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 56px; }
.statement .metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line-d); }
.statement .metric { padding: 36px 16px 0; border-right: 1px solid var(--line-d); }
.statement .metric:last-child { border-right: none; }
.statement .metric .mnum { font-family: var(--serif); font-size: clamp(34px,3.6vw,52px); line-height: 1; }
.statement .metric .mlab { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(237,235,232,0.6); margin-top: 12px; }

/* 6 — PRODUCTS grid */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.prod-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.prod-img { aspect-ratio: 4/3; background: var(--deep); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-img .motif-fill { position: absolute; inset: 0; opacity: 0.3; background-size: 160%; background-position: center; }
.prod-img .ph { position: relative; z-index: 1; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,235,232,0.5); }
.prod-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(237,235,232,0.92); color: var(--forest); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.prod-body { padding: 26px 26px 30px; }
.prod-body h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.prod-body p { font-size: 14.5px; color: var(--stone); }

/* 7 — CERTIFICATIONS */
.cert-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.cert-chip { border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--forest); background: var(--white); }
.deep .cert-chip { border-color: var(--line-d); background: transparent; color: var(--paper); }
.cert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.cert-card { padding: 34px 30px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow-soft); }
.deep .cert-card { background: var(--ink); box-shadow: none; border: 1px solid var(--line-d); }
.cert-card .badge { width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--green); display: flex; align-items: center; justify-content: center; color: var(--green); font-family: var(--mono); font-size: 11px; margin-bottom: 20px; }
.cert-card h3 { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.cert-card p { font-size: 14px; color: var(--stone); }
.deep .cert-card p { color: rgba(237,235,232,0.7); }

/* 8 — TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi { background: var(--white); border-radius: 8px; padding: 36px 32px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.deep .testi { background: var(--ink); box-shadow: none; border: 1px solid var(--line-d); }
.testi .mark { font-family: var(--serif); font-size: 56px; line-height: 0.6; color: var(--green); height: 30px; }
.testi .t { font-size: 16px; line-height: 1.6; margin-bottom: 24px; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; background: var(--deep); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; }
.testi .nm { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.testi .ro { font-family: var(--mono); font-size: 11px; color: var(--stone); }
.deep .testi .ro { color: rgba(237,235,232,0.6); }

/* 9 — FOOTER CTA band + map */
.footer-cta { background: var(--green); color: var(--deep); border-radius: 10px; padding: 48px 44px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 64px; }
.footer-cta h3 { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 400; max-width: 18ch; }
.footer-cta .acts { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-map { width: 100%; height: 150px; border: 1px solid var(--line-d); border-radius: 8px; margin-top: 16px; filter: grayscale(0.5) contrast(0.9) brightness(0.9); }

/* 10 — WHATSAPP floating bubble */
.wa { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: #25D366; box-shadow: 0 8px 24px rgba(0,0,0,0.22); display: flex; align-items: center; justify-content: center; transition: transform .25s; }
.wa:hover { transform: scale(1.08); }
.wa svg { width: 30px; height: 30px; fill: #fff; }
.wa .tip { position: absolute; right: 70px; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 12px; white-space: nowrap; padding: 8px 14px; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.wa:hover .tip { opacity: 1; }

/* FAQ mobile alignment fix */
@media (max-width: 1024px) {
  .prod-grid, .cert-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .statement .metrics { }
  .footer-map { height: 130px; }
}
@media (max-width: 700px) {
  .prod-grid, .cert-grid, .testi-grid { grid-template-columns: 1fr; }
  .statement .metrics { grid-template-columns: 1fr; }
  .statement .metric { border-right: none; border-bottom: 1px solid var(--line-d); padding: 24px 0; }
  .statement .metric:last-child { border-bottom: none; }
  .faq-q { font-size: 18px; gap: 14px; align-items: flex-start; }
  .faq-q .ic { margin-top: 2px; }
  .signoff { flex-direction: column; align-items: flex-start; }
  .footer-cta { padding: 32px 26px; }
  .wa { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* =============================================
   v3.3 — SEO long-form content block (quiet)
   ============================================= */
.seo { background: #e9e6e1; border-top: 1px solid var(--line); padding: 90px 0; }
.seo .wrap { max-width: 1080px; }
.seo .eyebrow { margin-bottom: 26px; }
.seo h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,3.4vw,44px); letter-spacing: -0.015em; line-height: 1.08; margin-bottom: 22px; max-width: 24ch; }
.seo h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin: 36px 0 10px; }
.seo p { font-size: 15.5px; line-height: 1.75; color: var(--stone); max-width: 70ch; margin-bottom: 14px; }
.seo .cols { columns: 2; column-gap: 56px; margin-top: 8px; }
.seo .cols p { break-inside: avoid; }
.seo a.inline { color: var(--forest); text-decoration: none; border-bottom: 1px solid rgba(14,86,54,0.35); }
.seo a.inline:hover { border-color: var(--forest); }
@media (max-width: 800px){ .seo .cols { columns: 1; } .seo { padding: 64px 0; } }

/* =============================================
   v3.4 — client tweaks: no blur, no italics
   ============================================= */
/* remove the blur-in from reveals (keep fade + slide) */
.reveal, .reveal-stagger > * { filter: none !important; }
.reveal.in, .reveal-stagger.in > * { filter: none !important; }
/* set all italic display upright (keep colour emphasis) */
em, em.accent, .serif-italic,
.hero h1 em, .page-hero h1 em, .cta h2 em,
.quote .q, .statement .q { font-style: normal !important; }

/* =============================================
   v3.5 — parallax depth layers (quiet)
   ============================================= */
.has-deco { position: relative; overflow: hidden; }
.has-deco > .wrap { position: relative; z-index: 1; }
.section-deco {
  position: absolute; z-index: 0; pointer-events: none;
  background-repeat: no-repeat; background-size: contain;
  will-change: transform; opacity: 0.5;
}
.deco-wave {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%2300aa45' stroke-width='2' opacity='0.45'%3E%3Ccircle cx='300' cy='300' r='70'/%3E%3Ccircle cx='300' cy='300' r='120'/%3E%3Ccircle cx='300' cy='300' r='170'/%3E%3Ccircle cx='300' cy='300' r='220'/%3E%3Ccircle cx='300' cy='300' r='270'/%3E%3C/g%3E%3C/svg%3E");
}
.deco-forest .deco-wave, .deco-on-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%2300aa45' stroke-width='2' opacity='0.35'%3E%3Ccircle cx='300' cy='300' r='70'/%3E%3Ccircle cx='300' cy='300' r='120'/%3E%3Ccircle cx='300' cy='300' r='170'/%3E%3Ccircle cx='300' cy='300' r='220'/%3E%3Ccircle cx='300' cy='300' r='270'/%3E%3C/g%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce){ .section-deco { display: none; } }
@media (max-width: 700px){ .section-deco { opacity: 0.32; } }

html { overflow-x: hidden; }
