/* ============================================================
   FOODGATE AUDIT — Global Stylesheet
   Design: Agricultural Authority (editorial + trust)
   ============================================================ */

/* Skip link (accessibility) */
.skip-link{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:var(--green);color:var(--pure-white);padding:.6rem 1.2rem;border-radius:0 0 8px 8px;font-family:var(--font-body);font-size:.85rem;font-weight:600;z-index:500;transition:top .2s;text-decoration:none}
.skip-link:focus{top:0}

/* Screen-reader only */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* GDPR consent checkbox */
.form-consent{display:flex;align-items:flex-start;gap:.5rem;margin-bottom:1rem;font-size:.8rem;color:var(--gray-500);cursor:pointer;line-height:1.5}
.form-consent input[type="checkbox"]{margin-top:.2rem;accent-color:var(--green)}
.form-consent a{color:var(--green);text-decoration:underline}

/* Form button states (JS toggles these classes) */
.form-submit.form-success{background:var(--gold);border-color:var(--gold)}
.form-submit.form-error{background:var(--red);border-color:var(--red)}

@font-face{font-family:'Ancorli';src:url('./Ancorli.woff2') format('woff2');font-weight:normal;font-style:normal;font-display:swap}

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

:root{
  /* Brand */
  --green:#1a6b1a;--green-dark:#0d4a0d;--green-deeper:#072e07;--green-light:#e8f5e8;
  --red:#c44230;--red-dark:#a33628;--red-light:#fdf0ee;
  --gold:#d4a855;--gold-light:#f5ecd7;
  /* Neutrals */
  --black:#0a1209;--gray-900:#141c14;--gray-800:#1e2a1e;--gray-700:#2d3d2d;
  --gray-600:#4a5a4a;--gray-500:#6b7b6b;--gray-400:#8a9a8a;--gray-300:#b0bab0;
  --gray-200:#d4dbd4;--gray-100:#eef1ee;--gray-50:#f6f8f6;
  --white:#fafdf8;--pure-white:#fff;
  /* Typography */
  --font-display:'Instrument Serif',Georgia,serif;
  --font-body:'Outfit',system-ui,-apple-system,sans-serif;
  --font-brand:'Ancorli',sans-serif;
  /* Motion */
  --ease:cubic-bezier(.22,1,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --ease-bounce:cubic-bezier(.34,1.56,.64,1);
  --dur-fast:.2s;--dur-normal:.3s;--dur-slow:.5s;
  /* Layout */
  --max-w:1200px;
  --gutter:5%;
  --radius-sm:8px;
  --radius-md:10px;
  --radius-lg:12px;
  --radius-xl:16px;
  --radius-xs:6px;
  /* Spacing */
  --space-section:6rem;
  --space-section-lg:6rem;
  --space-section-sm:3.5rem;
  --space-grid:2rem;
  --space-card:2rem;
  --z-sticky:900;
  --z-nav:999;
  --z-mobile:998;
  --shadow-sm:0 1px 4px rgba(10,18,9,.04);
  --shadow-card:0 2px 16px rgba(10,18,9,.07);
  --shadow-lg:0 32px 80px rgba(10,18,9,.12);
  /* Texture */
  --grain:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.18'/%3E%3C/svg%3E");
  --dot-pattern:radial-gradient(circle,var(--gray-200) .8px,transparent .8px);
}

html{font-size:16px}
body{font-family:var(--font-body);color:var(--black);background:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.65}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
:focus-visible{outline:2px solid var(--green);outline-offset:3px;border-radius:4px}

/* ============================================================
   GRAIN TEXTURE OVERLAY (for dark sections)
   ============================================================ */
.grain::before{content:'';position:absolute;inset:0;opacity:.035;pointer-events:none;background-image:var(--grain);background-size:128px 128px}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{position:fixed;top:0;width:100%;z-index:var(--z-nav);padding:1.1rem 5%;transition:padding .5s var(--ease),background .5s var(--ease),box-shadow .5s var(--ease);display:flex;align-items:center;justify-content:space-between;background:rgba(250,253,248,.92);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid transparent}
.nav.scrolled{padding:.7rem 5%;border-bottom-color:var(--gray-200);box-shadow:0 4px 30px rgba(10,18,9,.06)}

.nav-brand{display:flex;align-items:center;gap:.8rem;text-decoration:none;transition:opacity .3s var(--ease)}
.nav-brand:hover{opacity:.85}
.nav-brand-logo{height:38px;width:auto;transition:height .4s var(--ease)}
.nav.scrolled .nav-brand-logo{height:32px}
.nav-brand-bar{width:2px;height:30px;background:var(--red);flex-shrink:0;border-radius:1px}
.nav-brand-text-wrap{display:flex;flex-direction:column}
.nav-brand-name{font-family:var(--font-brand);font-size:1.1rem;font-weight:normal;letter-spacing:2.5px;line-height:1.15}
.nav-brand-name .fg{color:var(--green)}
.nav-brand-name .au{color:var(--red)}
.nav-brand-slogan{font-family:var(--font-display);font-size:.68rem;color:var(--gray-500);font-style:italic;letter-spacing:.3px;font-weight:400}

.nav-links{display:flex;gap:2.2rem;align-items:center;list-style:none}
.nav-links a{text-decoration:none;font-size:.84rem;font-weight:500;color:var(--gray-600);transition:color .25s;position:relative;letter-spacing:.2px}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1.5px;background:var(--green);transition:width .3s var(--ease)}
.nav-links a:hover,.nav-links a.active{color:var(--black)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}

/* Dropdown */
.dropdown{position:relative}
.dropdown-menu{position:absolute;top:calc(100% + 14px);left:-16px;background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:.5rem 0;min-width:280px;box-shadow:0 16px 48px rgba(10,18,9,.1);opacity:0;visibility:hidden;transform:translateY(8px);transition:all .3s var(--ease)}
.dropdown:hover .dropdown-menu,.dropdown:focus-within .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu a{display:block;padding:.65rem 1.2rem;font-size:.84rem;color:var(--gray-600);transition:all .2s}
.dropdown-menu a:hover{background:var(--gray-50);color:var(--green)}

/* Nav CTA */
.nav-cta{padding:.6rem 1.5rem;background:var(--green);color:var(--pure-white);border:none;border-radius:var(--radius-xs);font-family:var(--font-body);font-size:.82rem;font-weight:600;cursor:pointer;transition:all .3s var(--ease);text-decoration:none;letter-spacing:.2px;position:relative}
.nav-cta::before{content:'';position:absolute;inset:-2px;border-radius:var(--radius-xs);background:var(--green);opacity:0;filter:blur(8px);transition:opacity .3s;z-index:-1}
.nav-cta:hover::before{opacity:.3}
.nav-cta:hover{background:var(--green-dark);transform:translateY(-1px);box-shadow:0 6px 20px rgba(26,107,26,.25)}
.nav-cta:active{transform:scale(.97)}

/* Language toggle */
.lang-toggle{display:flex;align-items:center;gap:.15rem;margin-left:.5rem;background:var(--gray-100);border-radius:5px;padding:2px;font-size:.72rem;font-weight:600}
.lang-toggle a{padding:.3rem .55rem;border-radius:4px;color:var(--gray-500);transition:all .2s;text-decoration:none}
.lang-toggle a.active{background:var(--pure-white);color:var(--green);box-shadow:0 1px 3px rgba(0,0,0,.08)}

/* Mobile toggle */
.nav-toggle{display:none;flex-direction:column;gap:6px;background:none;border:none;cursor:pointer;padding:4px;position:relative;width:44px;height:44px;justify-content:center}
.nav-toggle span{width:22px;height:1.5px;background:var(--black);transition:all .3s var(--ease);display:block}
.nav-toggle.open span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}

/* Mobile menu */
.nav-mobile{position:fixed;top:0;right:-100%;width:100%;height:100vh;height:100dvh;background:var(--pure-white);z-index:var(--z-mobile);transition:right .4s var(--ease-out);padding:6rem 2rem 2rem;display:flex;flex-direction:column}
.nav-mobile.open{right:0}
.nav-mobile-links{list-style:none;display:flex;flex-direction:column;gap:0}
.nav-mobile-links a{display:block;padding:1rem 0;font-size:1.1rem;font-weight:500;color:var(--black);border-bottom:1px solid var(--gray-100);transition:color .2s}
.nav-mobile-links a:hover{color:var(--green)}
.nav-mobile-sub{padding-left:1.2rem}
.nav-mobile-sub a{font-size:.95rem;color:var(--gray-600);font-weight:400}
.nav-mobile-cta{margin-top:auto;display:block;padding:1rem;background:var(--green);color:var(--pure-white);border-radius:var(--radius-sm);text-align:center;font-weight:600;font-size:1rem;transition:background .2s}
.nav-mobile-cta:hover{background:var(--green-dark)}
.nav-mobile-lang{display:flex;gap:.5rem;margin-top:1rem;justify-content:center}
.nav-mobile-lang a{padding:.5rem 1rem;border-radius:var(--radius-xs);font-weight:600;font-size:.85rem;border:1px solid var(--gray-200)}
.nav-mobile-lang a.active{background:var(--green);color:var(--pure-white);border-color:var(--green)}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{padding:.85rem 2rem;border-radius:var(--radius-xs);font-family:var(--font-body);font-size:.9rem;font-weight:600;cursor:pointer;transition:all .3s var(--ease);text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;border:none;letter-spacing:.2px}
.btn-primary{background:var(--green);color:var(--pure-white)}
.btn-primary:hover{background:var(--green-dark);transform:translateY(-2px);box-shadow:0 8px 24px rgba(26,107,26,.3)}
.btn-secondary{background:var(--pure-white);color:var(--green);border:1.5px solid var(--gray-200)}
.btn-secondary:hover{border-color:var(--green);box-shadow:0 4px 16px rgba(26,107,26,.08)}
.btn-white{background:var(--pure-white);color:var(--green-dark)}
.btn-white:hover{background:var(--gray-50);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.08)}
.btn svg{width:18px;height:18px;transition:transform .3s var(--ease)}
.btn:hover svg{transform:translateX(3px)}
.btn:active{transform:scale(.97)}
.btn-primary:active{transform:translateY(0) scale(.97);box-shadow:0 4px 12px rgba(26,107,26,.2);transition-duration:.1s}
.btn-sm{padding:.55rem 1.2rem;font-size:.82rem}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section{padding:4rem var(--gutter);position:relative}
.section-divider{height:1px;background:linear-gradient(90deg,transparent,var(--gray-200) 20%,var(--gray-200) 80%,transparent);margin:0 auto;max-width:var(--max-w)}
.section-inner{max-width:var(--max-w);margin:0 auto}
.section-label{font-size:.75rem;letter-spacing:.15em;text-transform:uppercase;color:var(--gray-500);font-weight:600;margin-bottom:.75rem;display:flex;align-items:center;gap:.75rem}
.section-label::before{content:'';width:32px;height:2px;background:var(--gold);border-radius:2px}
.section-title{font-family:var(--font-display);font-size:clamp(2rem,3.8vw,3rem);font-weight:400;color:var(--black);line-height:1.15;margin-bottom:1rem;font-style:italic;letter-spacing:-.015em;padding-bottom:1rem;position:relative}
.section-title::after{content:'';position:absolute;bottom:0;left:0;width:48px;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:3px}
.section-desc{font-size:.95rem;color:var(--gray-500);line-height:1.7;max-width:560px;font-weight:400}
.pain-section .section-desc{color:rgba(255,255,255,.75)}
.text-center{text-align:center}
.text-center .section-label{justify-content:center}
.text-center .section-title::after{left:50%;transform:translateX(-50%)}
.text-center .section-desc{margin-left:auto;margin-right:auto}
.section-label--light{color:var(--gold)}
.section-title--light{color:var(--pure-white)}
.section-desc--light{color:rgba(255,255,255,.75)}
.page-header-tag--gold{background:var(--gold-light);color:var(--gold)}
h3{font-size:1.15rem;font-weight:600;line-height:1.3;letter-spacing:-.01em}

/* ============================================================
   HERO
   ============================================================ */
.hero{min-height:100vh;position:relative;display:flex;align-items:center;padding:7rem 5% 4rem;background:var(--white);overflow:hidden;background-image:var(--dot-pattern);background-size:24px 24px}
.hero::before{content:'';position:absolute;top:-15%;right:-8%;width:800px;height:800px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.06) 0%,transparent 65%);pointer-events:none}
.hero::after{content:'';position:absolute;bottom:-8%;left:-5%;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.06) 0%,transparent 65%);pointer-events:none}
.hero-inner{max-width:1300px;margin:0 auto;width:100%;display:grid;grid-template-columns:1.1fr .9fr;gap:4rem;align-items:center;position:relative;z-index:1}
.hero-content{display:flex;flex-direction:column;gap:1.75rem}
.hero h1{font-family:var(--font-display);font-size:clamp(2.6rem,5vw,4rem);font-weight:400;line-height:1.1;color:var(--black);font-style:italic;letter-spacing:-.02em}
.hero h1 strong{font-weight:400;color:var(--red);text-decoration:none;background-image:linear-gradient(var(--gold),var(--gold));background-position:0 92%;background-repeat:repeat-x;background-size:0% 2px;padding-bottom:2px;transition:background-size .6s var(--ease) .8s}
.hero h1.animated strong{background-size:100% 2px}
.hero-sub{font-size:1.1rem;color:var(--gray-500);line-height:1.7;max-width:520px}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-accred-bar{display:flex;gap:1rem;margin-top:2rem;padding-top:2rem;border-top:1px solid var(--gray-200)}
.hero-accred-card{display:flex;align-items:center;gap:.85rem;padding:.85rem 1.15rem;background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);transition:all .3s var(--ease);box-shadow:0 2px 8px rgba(0,0,0,.04),0 0 0 0 rgba(26,107,26,0)}
.hero-accred-card:hover{border-color:rgba(26,107,26,.25);box-shadow:0 4px 16px rgba(26,107,26,.07),0 0 0 3px rgba(26,107,26,.04);transform:translateY(-1px)}
.hero-accred-card img{height:48px;width:auto;flex-shrink:0}
.hero-accred-card-text{display:flex;flex-direction:column;gap:.1rem}
.hero-accred-card-text strong{font-family:var(--font-body);font-size:.88rem;font-weight:600;color:var(--black);letter-spacing:.01em;line-height:1.2}
.hero-accred-card-text span{font-size:.72rem;font-weight:600;color:var(--green);text-transform:uppercase;letter-spacing:.08em;line-height:1}
.hero-visual{position:relative}
.hero-visual-frame{position:relative;border-radius:16px;overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/3}
.hero-visual-frame img,.hero-visual-frame video{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:0;transition:opacity .6s var(--ease)}
.hero-visual-frame img.active,.hero-visual-frame video.active{opacity:1}
.hero-tagline{margin-top:1.25rem;text-align:center}
.hero-tagline-line{display:block;width:32px;height:2px;background:var(--green);margin:0 auto .6rem;border-radius:2px}
.hero-tagline-title{font-family:var(--font-display);font-size:1.1rem;font-style:italic;color:var(--green-dark);line-height:1.3}
.hero-tagline-sub{font-family:var(--font-body);font-size:.8rem;color:var(--gray-400);margin-top:.2rem;letter-spacing:.02em}


/* ============================================================
   PAIN POINTS / BENEFITS
   ============================================================ */
.pain-section{background:var(--gray-900);color:var(--pure-white);position:relative;overflow:hidden}
.pain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-grid);margin-top:2.5rem;counter-reset:pain}
.pain-card{background:rgba(255,255,255,.03);border:1px solid rgba(212,168,85,.12);border-radius:var(--radius-lg);padding:2rem;transition:all .4s var(--ease);position:relative;overflow:hidden;counter-increment:pain;box-shadow:0 2px 16px rgba(0,0,0,.15)}
.pain-card::after{content:counter(pain,decimal-leading-zero);position:absolute;bottom:-.1rem;right:.75rem;font-family:var(--font-display);font-size:5rem;font-style:italic;color:rgba(255,255,255,.04);pointer-events:none;line-height:1}
.pain-card::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--gold),transparent);opacity:0;transition:opacity .3s}
.pain-card:hover{border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.05);transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.2)}
.pain-card:hover::before{opacity:1}
.pain-card-icon{width:52px;height:52px;border-radius:var(--radius-lg);background:linear-gradient(135deg,rgba(212,168,85,.2),rgba(212,168,85,.08));border:1px solid rgba(212,168,85,.15);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem}
.pain-card-icon svg{width:24px;height:24px;color:var(--gold)}
.pain-card h3{font-family:var(--font-display);font-size:1.15rem;font-weight:400;color:var(--pure-white);margin-bottom:.6rem;font-style:italic;line-height:1.3}
.pain-card p{font-size:.85rem;color:rgba(255,255,255,.75);line-height:1.7}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-section{background:var(--gray-50);background-image:var(--dot-pattern);background-size:24px 24px;position:relative;overflow:hidden}
.process-section::before{content:'';position:absolute;top:-20%;right:-10%;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.03) 0%,transparent 60%);pointer-events:none}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2.5rem;position:relative}
.process-grid::before{content:'';position:absolute;top:50%;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--green-light),var(--green),var(--green-light));opacity:.3;z-index:0;pointer-events:none}
.process-step{padding:2rem 1.75rem;position:relative;z-index:1;text-align:center;border:1px solid var(--gray-200);background:var(--pure-white);transition:all .3s var(--ease);border-radius:var(--radius-lg);overflow:visible;box-shadow:0 2px 12px rgba(10,18,9,.05)}
.process-step:hover{background:var(--gray-50);box-shadow:0 4px 20px rgba(10,18,9,.04)}
.process-step-num{font-size:.6rem;font-weight:700;color:var(--gold);letter-spacing:2px;text-transform:uppercase;margin-bottom:1rem}
.process-step-icon{width:60px;height:60px;border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.08));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.process-step-icon svg{width:26px;height:26px;color:var(--green)}
.process-step h3,.process-step h4{font-family:var(--font-display);font-size:1.05rem;font-weight:400;color:var(--black);margin-bottom:.4rem;font-style:italic}
.process-step p{font-size:.82rem;color:var(--gray-500);line-height:1.6}
.process-arrow{position:absolute;right:-12px;top:50%;transform:translateY(-50%);width:24px;height:24px;background:var(--green);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:2;box-shadow:0 2px 8px rgba(26,107,26,.2)}
.process-arrow svg{width:12px;height:12px;color:var(--pure-white)}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-section{background:var(--pure-white);border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);position:relative;overflow:hidden}
.services-section::before{content:'';position:absolute;bottom:-15%;left:-8%;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.035) 0%,transparent 60%);pointer-events:none}
.services-section::after{content:'';position:absolute;top:-10%;right:-5%;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.03) 0%,transparent 60%);pointer-events:none}
.services-grid{display:grid;grid-template-columns:1.15fr 1fr 1fr;gap:var(--space-grid);margin-top:2.5rem;align-items:stretch}
.svc-card{border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:2rem;transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s var(--ease);background:var(--pure-white);position:relative;overflow:hidden;box-shadow:0 2px 16px rgba(10,18,9,.05);display:flex;flex-direction:column}
.svc-card::after{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--green),var(--green-light));opacity:0;transition:opacity .3s}
.svc-card:hover::after{opacity:1}
.svc-card:first-child{border-color:var(--green);border-width:2px;background:var(--pure-white)}
.svc-card:first-child .svc-card-badge{display:inline-block}
.svc-card-badge{font-size:.6rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--green);background:var(--pure-white);padding:.25rem .65rem;border-radius:4px;margin-bottom:.75rem}
.svc-card:hover{border-color:var(--green);transform:translateY(-4px);box-shadow:0 12px 40px rgba(26,107,26,.1),0 0 0 1px rgba(26,107,26,.05)}
.svc-card-icon{width:48px;height:48px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem}
.svc-card:nth-child(1) .svc-card-icon{background:linear-gradient(135deg,rgba(26,107,26,.15),rgba(26,107,26,.05));border:1px solid rgba(26,107,26,.1)}
.svc-card:nth-child(2) .svc-card-icon{background:linear-gradient(135deg,var(--red-light),rgba(196,66,48,.05));border:1px solid rgba(196,66,48,.1)}
.svc-card:nth-child(3) .svc-card-icon{background:linear-gradient(135deg,var(--gold-light),rgba(212,168,85,.05));border:1px solid rgba(212,168,85,.15)}
.svc-card-icon svg{width:24px;height:24px}
.svc-card:nth-child(1) .svc-card-icon svg{color:var(--green)}
.svc-card:nth-child(2) .svc-card-icon svg{color:var(--red)}
.svc-card:nth-child(3) .svc-card-icon svg{color:var(--gold)}
.svc-card h3{font-family:var(--font-display);font-size:1.2rem;font-weight:400;color:var(--black);margin-bottom:.6rem;font-style:italic}
.svc-card p{font-size:.85rem;color:var(--gray-500);line-height:1.65;margin-bottom:1.5rem;flex:1}
.svc-link{font-size:.82rem;font-weight:600;color:var(--green);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem;transition:gap .3s var(--ease)}
.svc-link:hover{gap:.7rem}
.svc-link svg{width:14px;height:14px}

/* ============================================================
   WHY FOODGATE (trust section)
   ============================================================ */
.trust-section{background:linear-gradient(180deg,var(--gray-50) 0%,rgba(232,245,232,.4) 100%);border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);position:relative;overflow:hidden}
.trust-section::before{content:'';position:absolute;top:10%;left:-5%;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.04) 0%,transparent 65%);pointer-events:none}
.trust-section::after{content:'';position:absolute;bottom:-10%;right:-3%;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.04) 0%,transparent 65%);pointer-events:none}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--space-grid);margin-top:2.5rem}
.trust-card{text-align:center;padding:2rem 1.5rem;border-radius:var(--radius-lg);border:1px solid var(--gray-200);transition:all .3s var(--ease);background:var(--pure-white);box-shadow:0 2px 16px rgba(10,18,9,.05);position:relative;overflow:hidden}
.trust-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;transform:scaleX(0);transition:transform .3s var(--ease);border-radius:2px 2px 0 0}
.trust-card:hover::before{transform:scaleX(1)}
.trust-card:nth-child(1)::before{background:var(--green)}
.trust-card:nth-child(2)::before{background:var(--gold)}
.trust-card:nth-child(3)::before{background:var(--red)}
.trust-card:nth-child(4)::before{background:var(--green-dark)}
.trust-card:hover{border-color:var(--green);transform:translateY(-3px);box-shadow:0 8px 30px rgba(26,107,26,.06)}
.trust-card-icon{width:60px;height:60px;border-radius:50%;background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1.5px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;box-shadow:0 4px 12px rgba(26,107,26,.08);transition:box-shadow .3s var(--ease)}
.trust-card:hover .trust-card-icon{box-shadow:0 6px 16px rgba(26,107,26,.12)}
.trust-card-icon svg{width:26px;height:26px;color:var(--green)}
.trust-card h3,.trust-card h4{font-family:var(--font-display);font-size:1.05rem;font-weight:400;color:var(--black);margin-bottom:.4rem;font-style:italic}
.trust-card p{font-size:.82rem;color:var(--gray-500);line-height:1.6}

/* ============================================================
   SOCIAL PROOF / COMMITMENT
   ============================================================ */
.proof-section{background:linear-gradient(180deg,var(--pure-white) 0%,var(--gold-light) 100%);border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);background-image:var(--dot-pattern);background-size:24px 24px;position:relative;overflow:hidden}
.proof-section::after{content:'';position:absolute;top:20%;right:-5%;width:450px;height:450px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.03) 0%,transparent 60%);pointer-events:none}
.proof-inner{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.proof-accred{display:flex;gap:2rem;flex-wrap:wrap;align-items:center;margin-top:1.5rem}
.proof-accred img{height:60px;width:auto;opacity:.8;transition:all .3s;filter:grayscale(.2)}
.proof-accred img:hover{opacity:1;filter:grayscale(0);transform:scale(1.05)}
.proof-commitments{display:flex;flex-direction:column;gap:1rem}
.proof-commit{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem;padding-left:1.5rem;background:var(--pure-white);border:1px solid var(--gray-200);border-left:2px solid var(--green);border-radius:var(--radius-md);transition:all .3s var(--ease);position:relative;overflow:hidden}
.proof-commit::before{content:'';position:absolute;left:0;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--gold),var(--gold-light));border-radius:3px 0 0 3px}
.proof-commit:hover{box-shadow:0 4px 16px rgba(10,18,9,.04);border-color:var(--gray-300)}
.proof-commit-icon{width:44px;height:44px;border-radius:var(--radius-sm);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.proof-commit-icon svg{width:20px;height:20px;color:var(--green)}
.proof-commit h3,.proof-commit h4{font-size:.88rem;font-weight:600;color:var(--black);margin-bottom:.15rem}
.proof-commit p{font-size:.8rem;color:var(--gray-500);line-height:1.5}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section{background:var(--white);background-image:var(--dot-pattern);background-size:24px 24px;position:relative;overflow:hidden}
.faq-section::before{content:'';position:absolute;top:-10%;right:-8%;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(26,107,26,.035) 0%,transparent 60%);pointer-events:none}
.faq-section::after{content:'';position:absolute;bottom:-15%;left:-5%;width:450px;height:450px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.03) 0%,transparent 60%);pointer-events:none}
.faq-deco{position:absolute;left:0;top:40%;font-family:var(--font-display);font-size:12rem;color:var(--green);opacity:.03;line-height:1;pointer-events:none;font-style:italic}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin-top:2rem;align-items:start}
.faq-list{display:flex;flex-direction:column;gap:.5rem;align-items:stretch}
.faq-list .faq-item.reveal{transition-delay:0s!important}
.faq-item{border:none;border-radius:var(--radius-lg);overflow:hidden;transition:all .3s var(--ease);background:var(--pure-white);box-shadow:0 1px 3px rgba(10,18,9,.06),0 0 0 1px rgba(10,18,9,.04);width:100%}
.faq-item:hover{box-shadow:0 3px 12px rgba(10,18,9,.08),0 0 0 1px rgba(10,18,9,.06)}
.faq-item.open{box-shadow:0 4px 20px rgba(26,107,26,.1),0 0 0 1.5px var(--green)}
.faq-question{padding:1rem 1.25rem;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;background:transparent;transition:background .2s;width:100%}
.faq-question:hover{background:var(--gray-50)}
.faq-question h3,.faq-question h4{font-size:.88rem;font-weight:600;color:var(--black);line-height:1.4}
.faq-question-icon{width:30px;height:30px;border-radius:50%;background:var(--green-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .3s var(--ease)}
.faq-item.open .faq-question-icon{background:var(--green);transform:rotate(45deg)}
.faq-question-icon svg{width:14px;height:14px;color:var(--green);transition:color .3s}
.faq-item.open .faq-question-icon svg{color:var(--pure-white)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.faq-answer-inner{padding:0 1.25rem 1.25rem;font-size:.85rem;color:var(--gray-500);line-height:1.7}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final{background:var(--green-deeper);position:relative;overflow:hidden;padding:5rem 5%}
.cta-final::before{content:'';position:absolute;inset:0;opacity:.03;background-image:var(--grain);background-size:128px 128px;pointer-events:none}
.cta-final::after{content:'';position:absolute;top:-20%;right:-10%;width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.08) 0%,transparent 60%);pointer-events:none}
.cta-final-inner{max-width:900px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;position:relative;z-index:1}
.cta-final-text h2{font-family:var(--font-display);font-size:clamp(1.8rem,3.2vw,2.6rem);font-weight:400;color:var(--pure-white);line-height:1.15;font-style:italic;margin-bottom:1rem}
.cta-final-text p{font-size:.92rem;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:1.5rem}
.cta-final-guarantees{display:flex;flex-direction:column;gap:.6rem}
.cta-final-guarantee{display:flex;align-items:center;gap:.6rem;font-size:.82rem;color:rgba(255,255,255,.7)}
.cta-final-guarantee svg{width:16px;height:16px;color:var(--gold);flex-shrink:0}

/* CTA Form */
.cta-form{background:var(--pure-white);border-radius:var(--radius-xl);padding:2rem;box-shadow:var(--shadow-lg)}
.cta-form h3{font-family:var(--font-display);font-size:1.3rem;font-weight:600;font-style:italic;margin-bottom:1.25rem;color:var(--black)}

/* ============================================================
   FORMS
   ============================================================ */
.form-group{margin-bottom:.85rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.form-input{width:100%;padding:.75rem 1rem;background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-sm);color:var(--black);font-family:var(--font-body);font-size:.85rem;outline:none;transition:all .25s var(--ease)}
.form-input::placeholder{color:var(--gray-400)}
.form-input:focus{border-color:var(--green);background:var(--pure-white);box-shadow:0 0 0 3px rgba(26,107,26,.08),0 2px 8px rgba(26,107,26,.04)}
select.form-input{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;background-color:var(--gray-50);cursor:pointer;padding-right:2.5rem}
textarea.form-input{resize:vertical;min-height:100px}
.form-submit{width:100%;padding:.85rem;background:var(--green);color:var(--pure-white);border:none;border-radius:var(--radius-sm);font-family:var(--font-body);font-size:.9rem;font-weight:600;cursor:pointer;transition:all .3s var(--ease)}
.form-submit:hover{background:var(--green-dark)}
.form-input:hover{border-color:var(--gray-300);background:var(--pure-white)}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--gray-900);padding:4rem 5% 0;color:var(--pure-white);position:relative;overflow:hidden}
.footer-wave{background:var(--green-deeper)}
.footer-wave svg{display:block;width:100%;height:auto}
.footer::before{content:'';position:absolute;inset:0;opacity:.02;background-image:var(--grain);background-size:128px 128px;pointer-events:none}
.footer-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr .8fr;gap:3rem;padding-bottom:3rem;position:relative;z-index:1}
.footer-brand{display:flex;flex-direction:column;gap:.75rem}
.footer-brand-top{display:flex;align-items:center;gap:.65rem}
.footer-brand-top img{height:32px;width:auto}
.footer-brand-name{font-family:var(--font-brand);font-size:1rem;letter-spacing:2px}
.footer-brand-name .fg{color:var(--green)}
.footer-brand-name .au{color:var(--red)}
.footer-brand p{font-size:.82rem;color:rgba(255,255,255,.6);line-height:1.6;max-width:280px}
.footer-col h4{font-size:.72rem;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.65);margin-bottom:1.25rem}
.footer-col-links{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.footer-col-links a{font-size:.85rem;color:rgba(255,255,255,.6);transition:color .2s}
.footer-col-links a:hover{color:var(--gold)}
.footer-social{display:flex;gap:.5rem;margin-top:1rem}
.footer-social a{width:36px;height:36px;border-radius:var(--radius-sm);background:rgba(255,255,255,.05);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:all .2s}
.footer-social a:hover{background:rgba(255,255,255,.1);color:var(--gold)}
.footer-social a svg{width:18px;height:18px}
.footer-accred{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.footer-accred img{height:32px;width:auto;opacity:.4;filter:brightness(2);transition:opacity .2s}
.footer-accred img:hover{opacity:.7}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);padding:1.5rem 0;max-width:var(--max-w);margin:0 auto;display:flex;justify-content:space-between;align-items:center;font-size:.72rem;color:rgba(255,255,255,.6);position:relative;z-index:1}

/* ============================================================
   PAGE HEADER (service + inner pages)
   ============================================================ */
.page-header{padding:9rem 5% 4.5rem;background:linear-gradient(135deg,var(--gray-50) 0%,var(--white) 60%,var(--gray-50) 100%);border-bottom:1px solid var(--gray-200);position:relative;overflow:hidden;background-image:var(--dot-pattern);background-size:24px 24px}
.page-header-deco{position:absolute;right:5%;top:50%;transform:translateY(-50%);width:280px;height:280px;opacity:.04;color:var(--green);pointer-events:none}
.page-header-deco svg{width:100%;height:100%}
.page-header::before{content:'';position:absolute;top:0;right:0;width:50%;height:100%;background:radial-gradient(ellipse at 80% 30%,rgba(26,107,26,.05) 0%,transparent 60%);pointer-events:none}
.page-header::after{content:'';position:absolute;bottom:0;left:10%;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.04) 0%,transparent 70%);pointer-events:none}
.page-header-inner{max-width:var(--max-w);margin:0 auto;position:relative;z-index:1}
.page-header-tag{display:inline-block;padding:.35rem .8rem;background:var(--green-light);color:var(--green);font-size:.7rem;font-weight:600;letter-spacing:1px;text-transform:uppercase;border-radius:100px;margin-bottom:1rem}
.page-header h1{font-family:var(--font-display);font-size:clamp(2.4rem,5vw,3.6rem);font-weight:400;color:var(--black);font-style:italic;margin-bottom:.6rem;line-height:1.1;letter-spacing:-.02em}
.page-header h1 span{color:var(--red)}
.page-header p{font-size:1.05rem;color:var(--gray-500);max-width:600px;line-height:1.7}

/* ============================================================
   SERVICE PAGE SPECIFIC
   ============================================================ */
.svc-hero{padding:9rem 5% 4.5rem;background:var(--gray-50);border-bottom:1px solid var(--gray-200);background-image:var(--dot-pattern);background-size:24px 24px;position:relative;overflow:hidden}
.svc-hero-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:center}
.svc-hero h1{font-family:var(--font-display);font-size:clamp(2.4rem,5vw,3.6rem);font-weight:400;color:var(--black);font-style:italic;line-height:1.1;letter-spacing:-.02em}
.svc-hero-highlight{background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:1.75rem;display:flex;flex-direction:column;gap:1rem}
.svc-hero-highlight h3{font-size:.72rem;font-weight:600;color:var(--gray-400);letter-spacing:2px;text-transform:uppercase}
.svc-hero-highlight-item{display:flex;align-items:flex-start;gap:.75rem}
.svc-hero-highlight-icon{width:36px;height:36px;border-radius:var(--radius-sm);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.svc-hero-highlight-icon svg{width:18px;height:18px;color:var(--green)}
.svc-hero-highlight-item p{font-size:.82rem;color:var(--gray-600);line-height:1.5}
.svc-hero-highlight-item strong{color:var(--black);font-weight:600}

/* Who needs it */
.who-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;margin-top:2.5rem}
.who-card{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:1.5rem;text-align:center;transition:all .3s var(--ease)}
.who-card:hover{border-color:var(--green);box-shadow:0 0 0 1px var(--green)}
.who-card-icon{width:48px;height:48px;border-radius:var(--radius-md);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin:0 auto .75rem}
.who-card-icon svg{width:22px;height:22px;color:var(--green)}
.who-card h3,.who-card h4{font-size:.88rem;font-weight:600;color:var(--black);margin-bottom:.3rem}
.who-card p{font-size:.78rem;color:var(--gray-500);line-height:1.5}

/* Why section (dark) */
.why-section{background:var(--gray-900);color:var(--pure-white);position:relative;overflow:hidden}
.why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;margin-top:2.5rem}
.why-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius-md);padding:1.5rem;display:flex;gap:1rem;align-items:flex-start;transition:all .3s var(--ease);position:relative;overflow:hidden}
.why-card:hover{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1)}
.why-card-num{font-size:.6rem;font-weight:700;color:var(--gold);letter-spacing:1.5px;flex-shrink:0;padding-top:2px;position:relative;z-index:1}
.why-card::after{content:attr(data-num);position:absolute;right:.5rem;bottom:-.5rem;font-family:var(--font-display);font-size:5rem;font-style:italic;color:rgba(255,255,255,.03);pointer-events:none;line-height:1}
.why-card h3,.why-card h4{font-size:.92rem;font-weight:600;color:var(--pure-white);margin-bottom:.3rem}
.why-card p{font-size:.82rem;color:rgba(255,255,255,.75);line-height:1.6}

/* Inspect grid */
.inspect-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2.5rem}
.inspect-card{background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:1.75rem;transition:all .3s var(--ease)}
.inspect-card:hover{box-shadow:0 8px 30px rgba(10,18,9,.04);transform:translateY(-2px)}
.inspect-card-icon{width:48px;height:48px;border-radius:var(--radius-md);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.inspect-card-icon svg{width:22px;height:22px;color:var(--green)}
.inspect-card h3,.inspect-card h4{font-size:1rem;font-weight:600;color:var(--black);margin-bottom:.5rem}
.inspect-card p{font-size:.84rem;color:var(--gray-500);line-height:1.65;margin-bottom:.75rem}
.inspect-card ul{list-style:none;display:flex;flex-direction:column;gap:.3rem}
.inspect-card li{font-size:.8rem;color:var(--gray-600);line-height:1.5;padding-left:1.2rem;position:relative}
.inspect-card li::before{content:'';position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--gold)}

/* Process timeline (service pages) */
.process-timeline{display:flex;flex-direction:column;gap:0;margin-top:3rem;max-width:800px}
.process-timeline-step{display:grid;grid-template-columns:60px 1fr;gap:1.5rem;position:relative;padding-bottom:2.5rem}
.process-timeline-step:last-child{padding-bottom:0}
.process-timeline-line{position:absolute;left:29px;top:56px;width:2px;bottom:0;background:var(--gray-200)}
.process-timeline-step:last-child .process-timeline-line{display:none}
.process-timeline-num{width:60px;height:60px;border-radius:50%;background:var(--green);color:var(--pure-white);display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;flex-shrink:0;position:relative;z-index:1}
.process-timeline-content h3,.process-timeline-content h4{font-size:1rem;font-weight:600;color:var(--black);margin-bottom:.4rem;padding-top:.15rem}
.process-timeline-content p{font-size:.85rem;color:var(--gray-500);line-height:1.7}
.process-timeline-content ul{list-style:none;margin-top:.5rem;display:flex;flex-direction:column;gap:.3rem}
.process-timeline-content li{font-size:.82rem;color:var(--gray-600);line-height:1.5;padding-left:1.2rem;position:relative}
.process-timeline-content li::before{content:'';position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--gold)}

/* Scope grid */
.scope-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:2.5rem}
.scope-card{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:1.75rem;transition:all .3s var(--ease)}
.scope-card:hover{box-shadow:0 8px 30px rgba(10,18,9,.04);border-color:var(--gray-300);transform:translateY(-2px)}
.scope-card-icon{width:48px;height:48px;border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.scope-card h3,.scope-card h4{font-size:.95rem;font-weight:600;color:var(--black);margin-bottom:.5rem}
.scope-card p{font-size:.82rem;color:var(--gray-500);line-height:1.6}

/* Icon color utilities */
.icon-green{background:var(--green-light)}.icon-green svg{color:var(--green)}
.icon-red{background:var(--red-light)}.icon-red svg{color:var(--red)}
.icon-gold{background:var(--gold-light)}.icon-gold svg{color:var(--gold)}

/* Stages flow */
.stages-flow{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-top:3rem}
.stage-card{padding:2rem;text-align:center;border:1px solid var(--gray-200);border-right:none;position:relative;transition:all .3s var(--ease)}
.stage-card:last-child{border-right:1px solid var(--gray-200)}
.stage-card:first-child{border-radius:12px 0 0 12px}
.stage-card:last-child{border-radius:0 12px 12px 0}
.stage-card:hover{background:var(--gray-50)}
.stage-num{font-size:.6rem;font-weight:700;color:var(--green);letter-spacing:2px;text-transform:uppercase;margin-bottom:.75rem}
.stage-card-icon{width:60px;height:60px;border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1.5px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin:0 auto .75rem}
.stage-card-icon svg{width:26px;height:26px;color:var(--green)}
.stage-card h3,.stage-card h4{font-family:var(--font-display);font-size:1.05rem;font-weight:400;color:var(--black);margin-bottom:.5rem;font-style:italic}
.stage-card p{font-size:.82rem;color:var(--gray-500);line-height:1.6}
.stage-arrow{position:absolute;right:-12px;top:50%;transform:translateY(-50%);width:24px;height:24px;background:var(--pure-white);border:1px solid var(--gray-200);border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:2}
.stage-arrow svg{width:12px;height:12px;color:var(--green)}

/* Monitor grid */
.monitor-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:2.5rem}
.monitor-card{background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:1.75rem;transition:all .3s var(--ease)}
.monitor-card:hover{box-shadow:0 8px 30px rgba(10,18,9,.04);transform:translateY(-2px)}
.monitor-card-icon{width:48px;height:48px;border-radius:var(--radius-md);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.monitor-card-icon svg{width:22px;height:22px;color:var(--green)}
.monitor-card h3,.monitor-card h4{font-size:.95rem;font-weight:600;color:var(--black);margin-bottom:.5rem}
.monitor-card p{font-size:.82rem;color:var(--gray-500);line-height:1.6}

/* Advantages grid */
.adv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;margin-top:2.5rem}
.adv-card{padding:1.75rem;border:1px solid var(--gray-200);border-radius:var(--radius-md);transition:all .3s var(--ease)}
.adv-card:hover{border-color:var(--gold);box-shadow:0 0 0 1px var(--gold);transform:translateY(-2px)}
.adv-card-num{font-size:.6rem;font-weight:700;color:var(--gold);letter-spacing:1.5px;margin-bottom:.5rem}
.adv-card h3,.adv-card h4{font-size:.92rem;font-weight:600;color:var(--black);margin-bottom:.4rem}
.adv-card p{font-size:.82rem;color:var(--gray-500);line-height:1.6}

/* Markets badges */
.markets-badges{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:2rem}
.market-badge{padding:.55rem 1.2rem;background:var(--pure-white);border:1px solid var(--gray-200);border-radius:100px;font-size:.82rem;font-weight:600;color:var(--black);transition:all .2s var(--ease);display:inline-flex;align-items:center;gap:.4rem}
.market-badge::before{content:'\2022';color:var(--gold);font-size:1.2rem;line-height:1}
.market-badge:hover{border-color:var(--green);color:var(--green);background:var(--green-light)}

/* CTA Banner (service pages) */
.svc-cta{padding:5rem 5%;background:var(--green-deeper);text-align:center;position:relative;overflow:hidden}
.svc-cta::before{content:'';position:absolute;inset:0;opacity:.03;background-image:var(--grain);background-size:128px 128px;pointer-events:none}
.svc-cta::after{content:'';position:absolute;top:-30%;right:-10%;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(212,168,85,.08) 0%,transparent 60%);pointer-events:none}
.svc-cta h2{font-family:var(--font-display);font-size:clamp(1.5rem,3vw,2.2rem);font-weight:400;color:var(--pure-white);margin-bottom:.5rem;font-style:italic;position:relative;z-index:1}
.svc-cta p{color:rgba(255,255,255,.75);font-size:.95rem;margin-bottom:1.75rem;position:relative;z-index:1}

/* Sticky CTA (service pages) */
.sticky-cta{position:fixed;bottom:0;left:0;right:0;background:var(--gray-900);padding:0;z-index:var(--z-sticky);transform:translateY(100%);transition:transform .4s var(--ease);box-shadow:0 -8px 30px rgba(0,0,0,.15)}
.sticky-cta::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,var(--gold),var(--green),var(--gold))}
.sticky-cta.visible{transform:translateY(0)}
.sticky-cta-inner{max-width:var(--max-w);margin:0 auto;padding:.85rem 5%;display:flex;justify-content:center;align-items:center;gap:1.25rem}
.sticky-cta span{font-size:.85rem;font-weight:500;color:rgba(255,255,255,.7);letter-spacing:.01em}
.sticky-cta .btn{padding:.55rem 1.75rem;font-size:.82rem;border-radius:100px}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:2rem;margin-top:3rem}
.team-card{background:var(--pure-white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden;transition:all .4s var(--ease)}
.team-card:hover{box-shadow:0 12px 40px rgba(10,18,9,.06);transform:translateY(-4px)}
.team-card-img{height:280px;overflow:hidden;background:var(--gray-100);display:flex;align-items:center;justify-content:center;position:relative}
.team-card-img::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(26,107,26,.6) 100%);opacity:0;transition:opacity .4s var(--ease)}
.team-card:hover .team-card-img::after{opacity:1}
.team-card-img img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .5s var(--ease)}
.team-card:hover .team-card-img img{transform:scale(1.05)}
.team-card-body{padding:1.5rem}
.team-card-body h3{font-family:var(--font-display);font-size:1.1rem;font-weight:400;color:var(--black);font-style:italic;margin-bottom:.15rem}
.team-card-body .team-role{font-size:.78rem;font-weight:600;color:var(--green);margin-bottom:.75rem;letter-spacing:.3px}
.team-card-body ul{list-style:none;display:flex;flex-direction:column;gap:.4rem}
.team-card-body li{font-size:.78rem;color:var(--gray-600);line-height:1.5;padding-left:1.2rem;position:relative}
.team-card-body li::before{content:'';position:absolute;left:0;top:7px;width:5px;height:5px;border-radius:50%;background:var(--gold)}

/* Avatar placeholder */
.avatar-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--gray-100),var(--gray-200))}
.avatar-placeholder svg{width:64px;height:64px;opacity:.2;color:var(--gray-600)}

/* MVV Cards */
.mvv-section{background:var(--gray-900);color:var(--pure-white);position:relative;overflow:hidden}
.mvv-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem;margin-top:3rem}
.mvv-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius-lg);padding:2rem;transition:all .3s var(--ease)}
.mvv-card:hover{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1)}
.mvv-card h3{font-family:var(--font-display);font-size:1.15rem;font-weight:400;color:var(--gold);margin-bottom:1rem;font-style:italic}
.mvv-card p{font-size:.88rem;color:rgba(255,255,255,.78);line-height:1.7}
.mvv-card ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.mvv-card li{font-size:.85rem;color:rgba(255,255,255,.75);line-height:1.6;padding-left:1.2rem;position:relative}
.mvv-card li::before{content:'';position:absolute;left:0;top:8px;width:5px;height:5px;border-radius:50%;background:var(--gold)}

/* Story timeline */
.story-section{background:var(--white)}
.story-items{display:flex;flex-direction:column;gap:2rem;margin-top:3rem;max-width:700px;position:relative;padding-left:1rem}
.story-items::before{content:'';position:absolute;left:35px;top:0;bottom:0;width:2px;background:linear-gradient(180deg,var(--green),var(--gold));border-radius:2px}
.story-item{display:flex;gap:1.5rem;align-items:flex-start;position:relative;padding-left:.5rem}
.story-year{font-family:var(--font-display);font-size:1.3rem;font-style:italic;color:var(--green);flex-shrink:0;width:70px;position:relative;z-index:1}
.story-year::after{content:'';position:absolute;right:-1.25rem;top:50%;transform:translateY(-50%);width:10px;height:10px;border-radius:50%;background:var(--green);border:2px solid var(--pure-white);box-shadow:0 0 0 2px var(--green)}
.story-item-content h4{font-size:.92rem;font-weight:600;color:var(--black);margin-bottom:.3rem}
.story-item-content p{font-size:.84rem;color:var(--gray-500);line-height:1.6}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
/* Contact hero — form above-the-fold */
.contact-hero{padding:6.5rem 5% 3rem;background:var(--gray-50);background-image:var(--dot-pattern);background-size:24px 24px;position:relative;overflow:hidden}
.contact-hero-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;align-items:start}
.contact-hero h1{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:400;color:var(--black);font-style:italic;line-height:1.15;margin:.75rem 0 .5rem}
.contact-hero-sub{font-size:.95rem;color:var(--gray-500);line-height:1.6;max-width:420px}
.contact-info-list{display:flex;flex-direction:column;gap:1.25rem;margin-top:2rem}
.contact-info-item{display:flex;gap:1rem;align-items:flex-start}
.contact-info-icon{width:48px;height:48px;border-radius:var(--radius-lg);background:linear-gradient(135deg,var(--green-light),rgba(26,107,26,.06));border:1px solid rgba(26,107,26,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-info-icon svg{width:22px;height:22px;color:var(--green)}
.contact-info-item h4{font-size:.88rem;font-weight:600;color:var(--black);margin-bottom:.2rem}
.contact-info-item p{font-size:.82rem;color:var(--gray-500);line-height:1.5}
.contact-info-item a{color:var(--green);font-weight:500}
.contact-form-wrap{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-xl);padding:2.5rem;box-shadow:var(--shadow-card)}
.contact-form-wrap h3{font-family:var(--font-display);font-size:1.35rem;font-weight:400;font-style:italic;margin-bottom:.4rem}
.contact-form-wrap .sub{font-size:.88rem;color:var(--gray-500);margin-bottom:1.75rem}

/* ============================================================
   SVG WAVE DIVIDERS
   ============================================================ */
.wave-divider{position:relative;width:100%;overflow:hidden;line-height:0;margin:0;padding:0}
.wave-divider svg{display:block;width:100%;height:auto}

/* ============================================================
   STATS BANNER (between sections)
   ============================================================ */
.stats-banner{background:var(--gray-900);padding:3.5rem 5%;position:relative;overflow:hidden}
.stats-banner::before{content:'';position:absolute;inset:0;opacity:.03;background-image:var(--grain);background-size:128px 128px;pointer-events:none}
.stats-banner::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--green),var(--gold));pointer-events:none}
.stats-banner-inner{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;position:relative;z-index:1}
.stats-banner-item{text-align:center;position:relative;padding:0 1rem}
.stats-banner-item:not(:last-child)::after{content:'';position:absolute;right:0;top:15%;height:70%;width:1px;background:rgba(255,255,255,.1)}
.stats-banner-value{font-family:var(--font-display);font-size:clamp(2rem,3.5vw,3rem);font-weight:400;color:var(--pure-white);font-style:italic;line-height:1.2}
.stats-banner-value span{color:var(--gold)}
.stats-banner-label{font-size:.75rem;color:rgba(255,255,255,.5);margin-top:.4rem;font-weight:500;letter-spacing:.5px;text-transform:uppercase}
.stats-banner-accred{display:flex;justify-content:center;gap:2rem;margin-top:2rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.08);position:relative;z-index:1}
.stats-banner-accred img{height:54px;width:auto;opacity:.7;filter:brightness(0) invert(1);transition:opacity .2s}
.stats-banner-accred img:hover{opacity:.9}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .45s var(--ease),transform .45s var(--ease)}
.reveal.visible{opacity:1;transform:none}
.rd1{transition-delay:.08s}
.rd2{transition-delay:.16s}
.rd3{transition-delay:.24s}
.rd4{transition-delay:.32s}
.rd5{transition-delay:.40s}

/* Fade-in from left */
.reveal-left{opacity:0;transform:translateX(-18px);transition:opacity .45s var(--ease),transform .45s var(--ease)}
.reveal-left.visible{opacity:1;transform:none}

/* Scale-in */
.reveal-scale{opacity:0;transform:scale(.96);transition:opacity .45s var(--ease),transform .45s var(--ease)}
.reveal-scale.visible{opacity:1;transform:none}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb{padding:.5rem 0;font-size:.78rem;color:var(--gray-400)}
.breadcrumb a{color:var(--gray-500);text-decoration:none;transition:all .2s;padding:.2rem .5rem;border-radius:4px}
.breadcrumb a:hover{color:var(--green);background:var(--green-light)}
.breadcrumb span{margin:0 .4rem;color:var(--gray-300)}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta{text-align:center;padding:3rem 0;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:3rem;position:relative}
.footer-cta::after{content:'';position:absolute;bottom:-1px;left:50%;transform:translateX(-50%);width:60px;height:3px;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:3px}
.footer-cta p{color:rgba(255,255,255,.7);margin-bottom:1rem;font-size:1rem}

/* ============================================================
   RELATED SERVICES (cross-links)
   ============================================================ */
.related-services{padding:3rem var(--gutter);border-top:1px solid var(--gray-200)}
.related-services h3,.related-services-grid{max-width:var(--max-w);margin-left:auto;margin-right:auto}
.related-services h3{font-size:1.1rem;margin-bottom:1.5rem;color:var(--gray-500);font-weight:500}
.related-services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1rem}
.related-service-link{display:flex;align-items:center;gap:.75rem;padding:1.25rem 1.5rem;border:1px solid var(--gray-200);border-radius:var(--radius-lg);text-decoration:none;color:var(--gray-700);transition:all .3s var(--ease);background:var(--pure-white);box-shadow:var(--shadow-sm)}
.related-service-link:hover{border-color:var(--green);color:var(--green);transform:translateY(-3px);box-shadow:var(--shadow-card)}
.related-service-link svg{flex-shrink:0;color:var(--green)}

/* ============================================================
   FORM REASSURANCE
   ============================================================ */
.form-reassurance{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem;font-size:.78rem;color:var(--gray-400)}
.form-reassurance span{display:flex;align-items:center;gap:.3rem}
.form-reassurance svg{width:14px;height:14px;color:var(--green)}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  .reveal,.reveal-left,.reveal-scale{opacity:1;transform:none;filter:none}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px){
  .hero-inner{grid-template-columns:1fr;gap:3rem}
  .hero-visual{max-width:600px}
  .hero{padding-top:8rem}
  .cta-final-inner{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
}

@media(max-width:999px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-visual{max-width:600px;margin:0 auto}
  .hero-actions{justify-content:center}
  .hero-accred-bar{justify-content:center;flex-wrap:wrap}
  .footer-inner{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:900px){
  .nav-links,.nav-cta,.lang-toggle{display:none}
  .nav-toggle{display:flex}
  .hero-accred-bar{gap:.6rem}
  .stats-banner-inner{grid-template-columns:1fr 1fr}
  .stats-banner-item:nth-child(2)::after{display:none}
  .pain-grid,.services-grid,.trust-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr 1fr;gap:1rem}
  .process-step{border-radius:var(--radius-lg)!important}
  .process-arrow{display:none}
  .proof-inner{grid-template-columns:1fr}
  .faq-grid{grid-template-columns:1fr}
  .svc-hero-inner{grid-template-columns:1fr}
  .who-grid{grid-template-columns:1fr 1fr}
  .why-grid,.inspect-grid,.monitor-grid{grid-template-columns:1fr}
  .scope-grid{grid-template-columns:1fr}
  .stages-flow{grid-template-columns:1fr}
  .stage-card{border-right:1px solid var(--gray-200)!important;border-radius:0!important}
  .stage-card:first-child{border-radius:12px 12px 0 0!important}
  .stage-card:last-child{border-radius:0 0 12px 12px!important}
  .stage-card:not(:last-child){border-bottom:none}
  .stage-arrow{display:none}
  .adv-grid{grid-template-columns:1fr}
  .contact-hero-inner{grid-template-columns:1fr}
  .contact-hero-left{text-align:center}
  .contact-hero-sub{max-width:100%;margin:0 auto}
  .contact-info-list{justify-content:center}
  .mvv-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .footer-brand{align-items:center}
  .footer-brand p{max-width:100%}
  .footer-social{justify-content:center}
  .footer-accred{justify-content:center}
  .footer-bottom{flex-direction:column;align-items:center;gap:.4rem}
  body{padding-bottom:56px}
}

@media(max-width:750px){
  .proof-inner{gap:2rem}
  .page-header{padding:7rem 5% 3rem}
  .svc-hero{padding:7rem 5% 3rem}
}

@media(max-width:550px){
  .stats-banner-inner{grid-template-columns:1fr 1fr}
  .who-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr;gap:.75rem}
  .process-step{border-radius:var(--radius-lg)!important}
  .hero-accred-card img{height:36px}
  .hero-accred-card{padding:.65rem .85rem;gap:.65rem}
  .hero-accred-card-text strong{font-size:.78rem}
  .hero-accred-card-text span{font-size:.62rem}
  .form-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr;text-align:center}
  .stats-banner-item::after{display:none}
  .mvv-grid{grid-template-columns:1fr}
}

/* ============================================================
   PREMIUM ANIMATIONS
   ============================================================ */

/* Hero word-by-word reveal */
.hero h1.animated{filter:none}
.word-reveal{display:inline-block;opacity:0;transform:translateY(20px);transition:opacity .5s var(--ease),transform .5s var(--ease);transition-delay:calc(var(--i) * .06s)}
.hero h1.animated .word-reveal{opacity:1;transform:translateY(0)}

/* Spotlight glow on pain section */
.pain-section::after{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),rgba(212,168,85,.06),transparent 60%);pointer-events:none;z-index:1;opacity:0;transition:opacity .3s}
.pain-section:hover::after{opacity:1}

/* 3D tilt on cards */
.svc-card,.trust-card,.process-step{will-change:transform}

/* Enhanced reveal with blur */
.reveal{opacity:0;transform:translateY(18px);filter:blur(4px);transition:opacity .45s var(--ease),transform .45s var(--ease),filter .45s var(--ease)}
.reveal.visible{opacity:1;transform:none;filter:blur(0)}

.reveal-left{opacity:0;transform:translateX(-18px);filter:blur(4px);transition:opacity .45s var(--ease),transform .45s var(--ease),filter .45s var(--ease)}
.reveal-left.visible{opacity:1;transform:none;filter:blur(0)}

.reveal-scale{opacity:0;transform:scale(.95);filter:blur(4px);transition:opacity .7s var(--ease),transform .7s var(--ease),filter .7s var(--ease)}
.reveal-scale.visible{opacity:1;transform:scale(1);filter:blur(0)}

/* Gradient shimmer on hero accreditation cards */
.hero-accred-card{position:relative;overflow:hidden}
.hero-accred-card::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(26,107,26,.04),transparent);transition:left .6s var(--ease);pointer-events:none;z-index:1}
.hero-accred-card:hover::before{left:100%}

/* Reduced motion: disable all premium animations */
@media(prefers-reduced-motion:reduce){
  .word-reveal{opacity:1;transform:none;transition:none}
  .pain-section::after{display:none}
  .hero-accred-card::before{display:none}
  .reveal,.reveal-left,.reveal-scale{filter:none}
}

@media print{
  .nav,.nav-mobile,.sticky-cta,.grain::before,.footer::before,.cta-final::before,.svc-cta::before{display:none!important}
  body{background:#fff;color:#000}
  .section,.hero,.svc-hero,.cta-final,.footer{background:#fff!important;color:#000!important;padding:1rem 0}
  .btn,.nav-cta{border:1px solid #000;color:#000;background:transparent}
  a{color:#000;text-decoration:underline}
  .pain-card,.svc-card,.trust-card,.faq-item,.proof-commit{page-break-inside:avoid}
  .wave-divider,.stats-banner,.footer-wave{display:none!important}
  h1,h2,h3{page-break-after:avoid}
}
