@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
:root{--olive:#6b7a4a;--olive-dark:#556238;--olive-light:#8a9a6a;--charcoal:#2d3344;--warm-white:#faf8f5;--muted:#73788a;--border:#e5e3de;--bg:#fff;--fg:#2d3344;--font-h:'Playfair Display',serif;--font-b:'Inter',sans-serif}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:var(--font-b);color:var(--fg);background:var(--bg);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,h5,h6{font-family:var(--font-h)}
a{color:inherit;text-decoration:none}img{max-width:100%;height:auto;display:block}
.container{max-width:1280px;margin:0 auto;padding:0 16px}
@media(min-width:640px){.container{padding:0 24px}}
@media(min-width:1024px){.container{padding:0 32px}}

/* NAV */
.site-nav{position:fixed;top:0;left:0;right:0;z-index:50;background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-bottom:1px solid var(--border)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:80px;max-width:1280px;margin:0 auto;padding:0 16px}
@media(min-width:640px){.nav-inner{padding:0 24px}}
@media(min-width:1024px){.nav-inner{padding:0 32px}}
.nav-logo img{height:56px;width:auto}
.nav-links{display:none;align-items:center;gap:32px}
@media(min-width:768px){.nav-links{display:flex}}
.nav-links a,.nav-links button{background:none;border:none;cursor:pointer;font-size:14px;font-weight:500;color:var(--muted);transition:color .2s}
.nav-links a:hover,.nav-links button:hover{color:var(--fg)}
.nav-cta{display:inline-flex;align-items:center;gap:8px;background:var(--olive)!important;color:#fff!important;padding:10px 24px;border-radius:6px;font-size:14px;font-weight:500;transition:background .2s}
.nav-cta:hover{background:var(--olive-dark)!important}
.burger{display:block;background:none;border:none;cursor:pointer;padding:8px}
@media(min-width:768px){.burger{display:none}}
.burger svg{width:24px;height:24px;stroke:var(--fg);stroke-width:2;fill:none}
.mobile-menu{display:none;background:var(--bg);border-top:1px solid var(--border);padding:16px}
.mobile-menu.open{display:block}
@media(min-width:768px){.mobile-menu{display:none!important}}
.mobile-menu a,.mobile-menu button{display:block;width:100%;text-align:left;background:none;border:none;cursor:pointer;font-size:14px;font-weight:500;color:var(--muted);padding:8px 0}
.flag-stripe{display:flex;width:100%;height:3px}
.flag-stripe span:nth-child(1){flex:1;background:#009246}
.flag-stripe span:nth-child(2){flex:1;background:#fff}
.flag-stripe span:nth-child(3){flex:1;background:#CE2B37}

/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:rgba(255,255,255,.5);backdrop-filter:blur(2px)}
.hero-gradient{position:absolute;inset:0;background:linear-gradient(to right,rgba(255,255,255,.7),rgba(255,255,255,.4),transparent)}
.hero-content{position:relative;z-index:10;max-width:1280px;margin:0 auto;padding:100px 16px 40px;width:100%}
@media(min-width:640px){.hero-content{padding:100px 24px 40px}}
@media(min-width:1024px){.hero-content{padding:100px 32px 40px}}
.hero-text{max-width:560px}
.hero-text h2{font-size:clamp(1.75rem,4vw,3rem);color:var(--charcoal);line-height:1.2}
.hero-text h1{margin-top:16px;font-size:clamp(1.5rem,3.5vw,2.5rem);font-weight:400;color:var(--charcoal);line-height:1.2}
.hero-divider{width:64px;height:2px;background:var(--olive);margin:24px 0}
.hero-text p{font-size:clamp(.9rem,1.5vw,1.125rem);color:var(--muted);max-width:420px;line-height:1.7}
.hero-buttons{display:flex;flex-direction:column;gap:16px;margin-top:32px}
@media(min-width:640px){.hero-buttons{flex-direction:row}}
.btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:12px;background:var(--olive);color:#fff;padding:16px 40px;border-radius:6px;font-size:16px;font-weight:500;transition:background .2s;border:none;cursor:pointer}
.btn-primary:hover{background:var(--olive-dark)}
.btn-primary svg{width:20px;height:20px;stroke:#fff;stroke-width:2;fill:none}
.btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:12px;background:transparent;color:var(--charcoal);padding:16px 40px;border-radius:6px;font-size:16px;font-weight:500;border:2px solid var(--olive);transition:all .2s;cursor:pointer}
.btn-outline:hover{background:var(--olive);color:#fff}

/* SECTIONS */
.section{padding:80px 0}
@media(min-width:1024px){.section{padding:112px 0}}
.section-warm{background:var(--warm-white)}
.section-dark{background:var(--charcoal);color:#fff}
.section-header{text-align:center;margin-bottom:56px}
.section-header .label{font-size:12px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--olive)}
.section-header h2{margin-top:12px;font-size:clamp(1.75rem,3vw,2.25rem);color:var(--charcoal)}
.section-dark .section-header h2{color:#fff}
.section-header p{margin-top:16px;color:var(--muted);max-width:560px;margin-left:auto;margin-right:auto}

/* GRIDS */
.grid-2{display:grid;grid-template-columns:1fr;gap:24px}
@media(min-width:768px){.grid-2{grid-template-columns:1fr 1fr}}
.grid-3{display:grid;grid-template-columns:1fr;gap:24px}
@media(min-width:640px){.grid-3{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.grid-3{grid-template-columns:1fr 1fr 1fr}}
.grid-4{display:grid;grid-template-columns:1fr;gap:32px}
@media(min-width:640px){.grid-4{grid-template-columns:1fr 1fr}}
@media(min-width:1024px){.grid-4{grid-template-columns:repeat(4,1fr)}}

/* CARDS */
.card{background:var(--bg);border-radius:12px;padding:32px;border:1px solid var(--border);transition:box-shadow .2s,border-color .2s;display:flex;flex-direction:column}
.card:hover{border-color:rgba(107,122,74,.4);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.card .num{font-size:12px;font-weight:700;color:rgba(107,122,74,.3);letter-spacing:.1em}
.card .icon-wrap{width:48px;height:48px;margin-top:16px;margin-bottom:20px;border-radius:8px;background:rgba(107,122,74,.1);display:flex;align-items:center;justify-content:center;transition:background .2s}
.card:hover .icon-wrap{background:var(--olive)}
.card:hover .icon-wrap svg{stroke:#fff}
.icon-wrap svg{width:24px;height:24px;stroke:var(--olive);stroke-width:1.5;fill:none}
.card h3{font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:8px}
.card>p{font-size:14px;color:var(--muted);line-height:1.7;flex:1}
.card .card-btn{display:inline-flex;align-items:center;justify-content:center;width:100%;margin-top:20px;background:var(--olive);color:#fff;padding:10px 24px;border-radius:6px;font-size:14px;font-weight:500;transition:background .2s}
.card .card-btn:hover{background:var(--olive-dark)}

/* FEATURE CARDS */
.feature-card{background:var(--bg);border-radius:12px;padding:32px;text-align:center;border:1px solid var(--border);box-shadow:0 2px 8px rgba(0,0,0,.03);transition:box-shadow .2s}
.feature-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.06)}
.feature-card .icon-circle{width:56px;height:56px;margin:0 auto 20px;border-radius:50%;background:rgba(107,122,74,.1);display:flex;align-items:center;justify-content:center}
.feature-card .icon-circle svg{width:28px;height:28px;stroke:var(--olive);stroke-width:1.5;fill:none}
.feature-card h3{font-size:18px;font-weight:600;color:var(--charcoal);margin-bottom:8px}
.feature-card p{font-size:14px;color:var(--muted);line-height:1.6}
.stats-row{margin-top:56px;display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center}
@media(min-width:640px){.stats-row{flex-direction:row;justify-content:center}}
.stats-row .big{font-size:3rem;font-weight:700;color:var(--olive);font-family:var(--font-h)}
.stats-row .lbl{font-size:18px;color:var(--olive);font-weight:500}

/* WORKFLOW */
.workflow-badges{display:flex;justify-content:center;gap:12px;margin-bottom:56px}
.workflow-badges span{font-size:10px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;border:1px solid rgba(45,51,68,.2);color:var(--charcoal);padding:8px 16px;border-radius:2px}
.flow-desktop{display:none;align-items:flex-start;justify-content:center;max-width:960px;margin:0 auto}
@media(min-width:1024px){.flow-desktop{display:flex}}
.flow-step{display:flex;flex-direction:column;align-items:center;text-align:center;width:176px}
.flow-step .circle{width:72px;height:72px;border-radius:50%;border:2px solid rgba(107,122,74,.3);display:flex;align-items:center;justify-content:center;margin-bottom:16px;transition:border-color .2s,background .2s}
.flow-step:hover .circle{border-color:var(--olive);background:rgba(107,122,74,.05)}
.flow-step .circle svg{width:26px;height:26px;stroke:var(--olive);stroke-width:1.5;fill:none}
.flow-step h3{font-size:14px;font-weight:600;color:var(--charcoal);line-height:1.3}
.flow-step p{font-size:12px;color:var(--muted);margin-top:6px}
.flow-arrow{display:flex;align-items:center;margin-top:32px;padding:0 4px}
.flow-arrow svg{width:20px;height:20px;stroke:rgba(107,122,74,.4);stroke-width:2;fill:none}
.flow-mobile{display:flex;flex-direction:column;align-items:center;max-width:400px;margin:0 auto}
@media(min-width:1024px){.flow-mobile{display:none}}
.flow-mobile-step{display:flex;align-items:center;gap:16px;width:100%;padding:16px;border-radius:8px;border:1px solid var(--border);background:var(--bg)}
.flow-mobile-step .circle{width:48px;height:48px;border-radius:50%;border:2px solid rgba(107,122,74,.3);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.flow-mobile-step .circle svg{width:20px;height:20px;stroke:var(--olive);stroke-width:1.5;fill:none}
.flow-mobile-step h3{font-size:14px;font-weight:600;color:var(--charcoal)}
.flow-mobile-step p{font-size:12px;color:var(--muted);margin-top:2px}
.flow-mobile-arrow{padding:8px 0}
.flow-mobile-arrow svg{width:18px;height:18px;stroke:rgba(107,122,74,.4);stroke-width:2;fill:none}
.workflow-quote{margin-top:48px;text-align:center}
.workflow-quote>div{display:inline-block;background:rgba(107,122,74,.1);border-radius:12px;padding:20px 32px;max-width:700px}
.workflow-quote p{font-style:italic;color:rgba(45,51,68,.8);font-family:var(--font-h);font-size:clamp(.875rem,1.2vw,1rem)}

/* COMPARISON */
.comparison-intro{text-align:center;margin-bottom:48px;max-width:640px;margin-left:auto;margin-right:auto}
.comparison-intro h2{font-size:clamp(1.75rem,3vw,2.25rem);margin-bottom:16px}
.comparison-intro p{color:rgba(255,255,255,.7);font-size:15px;line-height:1.7}
.comp-card{border-radius:12px;overflow:hidden}
.comp-card-header{display:flex;align-items:center;gap:8px;padding:16px 24px;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:#fff}
.comp-card-header.red{background:hsl(0,60%,50%)}
.comp-card-header.green{background:var(--olive)}
.comp-card-header svg{width:20px;height:20px;stroke:#fff;stroke-width:2;fill:none}
.comp-card-body{background:rgba(255,255,255,.1);backdrop-filter:blur(4px);padding:24px;font-size:14px;color:rgba(255,255,255,.8);line-height:1.7}
.comp-link{margin-top:40px;text-align:center}
.comp-link a{display:inline-block;border:1px solid rgba(255,255,255,.3);color:#fff;padding:12px 32px;border-radius:6px;font-size:14px;font-weight:500;text-transform:uppercase;letter-spacing:.1em;transition:background .2s}
.comp-link a:hover{background:rgba(255,255,255,.1)}

/* WHO WE ARE */
.who-header{display:grid;grid-template-columns:1fr;gap:48px;align-items:flex-start;margin-bottom:64px}
@media(min-width:1024px){.who-header{grid-template-columns:1fr 1fr}}
.who-header h2{font-size:clamp(2.25rem,5vw,3.75rem);color:var(--charcoal)}
.who-header>p{font-size:18px;color:var(--muted);font-style:italic;line-height:1.7;font-family:var(--font-h)}
.who-intro{color:var(--muted);font-size:16px;margin-bottom:56px;max-width:720px}
.who-intro strong{color:var(--charcoal)}
.team-card{display:flex;flex-direction:column;gap:24px;align-items:flex-start;background:var(--warm-white);border-radius:12px;padding:24px}
@media(min-width:640px){.team-card{flex-direction:row}}
.team-card img{width:112px;height:112px;border-radius:12px;object-fit:cover;flex-shrink:0}
.team-card .region{font-size:12px;font-weight:500;color:var(--olive);text-transform:uppercase;letter-spacing:.08em}
.team-card h4{font-size:20px;font-weight:600;color:var(--charcoal);margin-top:4px;font-family:var(--font-h)}
.team-card p{font-size:14px;color:var(--muted);margin-top:8px;line-height:1.7}
.who-cta{background:rgba(107,122,74,.05);border-radius:12px;padding:32px;text-align:center;max-width:640px;margin:64px auto 0}
.who-cta p{color:rgba(45,51,68,.8);line-height:1.7}
.who-cta p+p{margin-top:12px}
.who-cta strong{font-weight:700}

/* REVIEWS */
.review-card{background:var(--bg);border-radius:12px;border:1px solid var(--border);padding:32px;text-align:center}
.review-card .avatar{width:64px;height:64px;margin:0 auto 16px;border-radius:50%;background:rgba(107,122,74,.1);display:flex;align-items:center;justify-content:center;color:var(--olive);font-weight:700;font-size:18px}
.review-card h3{font-weight:600;color:var(--charcoal)}
.review-card .date{font-size:12px;color:var(--muted);margin-top:4px}
.review-card .stars{display:flex;justify-content:center;gap:2px;margin:12px 0 16px}
.review-card .stars svg{width:16px;height:16px;fill:#facc15;stroke:#facc15;stroke-width:1}
.review-card .text{font-size:14px;color:var(--muted);line-height:1.7;font-style:italic}

/* CTA */
.cta-section{text-align:center}
.cta-section h2{font-size:clamp(1.75rem,3vw,2.25rem);color:#fff}
.cta-section .sub{margin-top:24px;color:rgba(255,255,255,.7);font-size:18px;line-height:1.7;max-width:640px;margin-left:auto;margin-right:auto}
.cta-section .sub2{margin-top:16px;color:rgba(255,255,255,.6)}
.cta-section .cta-btn{margin-top:40px}
.cta-section .cta-btn a{display:inline-flex;align-items:center;gap:8px;background:var(--olive);color:#fff;padding:16px 40px;border-radius:6px;font-size:16px;font-weight:500;border:none;cursor:pointer;transition:background .2s}
.cta-section .cta-btn a svg{width:20px;height:20px;stroke:#fff;stroke-width:2;fill:none}
.cta-section .cta-btn a:hover{background:var(--olive-dark)}

/* FOOTER */
.site-footer{background:var(--bg);padding:64px 0 0;border-top:1px solid var(--border)}
.footer-brand{max-width:640px;margin:0 auto 48px;text-align:center}
.footer-brand h3{font-size:clamp(1.125rem,2vw,1.5rem);color:var(--charcoal);font-family:var(--font-h)}
.footer-brand p{margin-top:16px;font-size:14px;color:var(--muted);line-height:1.7}
.footer-cols{display:grid;grid-template-columns:1fr;gap:48px;max-width:720px;margin:0 auto 48px;text-align:center}
@media(min-width:768px){.footer-cols{grid-template-columns:1fr 1fr;text-align:left}}
.footer-cols h3{font-size:13px;font-weight:600;color:var(--charcoal);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-cols .item{display:flex;align-items:flex-start;justify-content:center;gap:8px;font-size:14px;color:var(--muted);margin-bottom:12px}
@media(min-width:768px){.footer-cols .item{justify-content:flex-start}}
.footer-cols .item svg{width:16px;height:16px;stroke:var(--olive);stroke-width:2;fill:none;flex-shrink:0;margin-top:2px}
.footer-cols a{color:var(--olive);transition:color .2s}
.footer-cols a:hover{color:var(--olive-dark)}
.footer-bottom{border-top:1px solid var(--border);padding:32px 0;text-align:center;font-size:12px;color:var(--muted)}
