/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --primary:#E27A00; --primary-dark:#C56B00; --primary-light:#FFA940;
  --brown-dark:#5C3520; --brown-mid:#794C33; --terracotta:#C5967C;
  --cream:#EBDCB6; --cream-light:#FFF8F0; --cream-mid:#F9EDD8;
  --text-dark:#2D1810; --text-mid:#5A3A28; --text-light:#8A6B55; --white:#FFFFFF;
  --shadow-sm:0 2px 8px rgba(92,53,32,.10); --shadow-md:0 8px 32px rgba(92,53,32,.15);
  --radius:12px; --radius-sm:8px;
}
/* ── Reset ──────────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;font-size:16px;}
body{font-family:'Inter',sans-serif;color:var(--text-dark);background:var(--white);line-height:1.6;}
img{max-width:100%;display:block;} a{text-decoration:none;color:inherit;} ul{list-style:none;}
/* ── Layout ─────────────────────────────────────────────────────────────── */
.container{max-width:1140px;margin:0 auto;padding:0 24px;}
.section-title{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;text-align:center;margin-bottom:12px;}
.section-sub{text-align:center;color:var(--text-light);font-size:1.1rem;margin-bottom:56px;}
.section-pad{padding:96px 0;}
/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 28px;border-radius:50px;font-weight:600;font-size:1rem;transition:transform .15s,box-shadow .15s,background .15s;cursor:pointer;white-space:nowrap;}
.btn:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-primary{background:var(--primary);color:var(--white);} .btn-primary:hover{background:var(--primary-dark);}
.btn-outline{background:transparent;color:var(--brown-dark);border:2px solid var(--brown-dark);} .btn-outline:hover{background:var(--brown-dark);color:var(--white);}
.btn-outline-light{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.7);} .btn-outline-light:hover{background:rgba(255,255,255,.15);}
.btn-lg{padding:16px 36px;font-size:1.1rem;}
/* ── Navigation ─────────────────────────────────────────────────────────── */
#nav{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--brown-dark);transition:box-shadow .2s;}
#nav.scrolled{box-shadow:0 4px 24px rgba(0,0,0,.25);}
.nav-inner{display:flex;align-items:center;gap:32px;max-width:1140px;margin:0 auto;padding:0 24px;height:68px;}
.logo{display:flex;align-items:center;gap:10px;color:var(--cream);font-weight:800;font-size:1.2rem;letter-spacing:.03em;}
.logo-icon{width:36px;height:36px;border-radius:8px;background:var(--primary);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.1rem;font-weight:900;}
.nav-links{display:flex;gap:4px;margin-left:auto;}
.nav-links a{color:var(--cream);padding:8px 14px;border-radius:6px;font-size:.95rem;font-weight:500;transition:background .15s,color .15s;}
.nav-links a:hover{background:rgba(226,122,0,.25);color:var(--white);}
.nav-actions{display:flex;gap:10px;flex-shrink:0;} .nav-actions .btn{padding:8px 20px;font-size:.9rem;}
.nav-actions .btn-outline{color:var(--cream);border-color:rgba(235,220,182,.5);}
.nav-actions .btn-outline:hover{background:rgba(235,220,182,.15);color:var(--white);border-color:var(--cream);}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:4px;}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--cream);margin:5px 0;border-radius:2px;transition:.3s;}
.nav-mobile-cta{display:none;}
.nav-mobile-login{display:block;padding:10px 14px;color:var(--cream);font-size:.95rem;font-weight:500;border-radius:6px;transition:background .15s;}
.nav-mobile-login:hover{background:rgba(226,122,0,.25);}
.nav-mobile-start{display:block;margin-top:8px;padding:11px 14px;text-align:center;background:var(--primary);color:var(--white);border-radius:50px;font-weight:700;font-size:.95rem;}
/* ── Language Switcher ──────────────────────────────────────────────────── */
.lang-switcher{position:relative;flex-shrink:0;}
.lang-current{display:flex;align-items:center;gap:6px;background:rgba(255,255,255,.1);border:1px solid rgba(235,220,182,.3);color:var(--cream);border-radius:6px;padding:6px 10px;cursor:pointer;font-size:.85rem;font-weight:600;transition:background .15s,border-color .15s;}
.lang-current:hover{background:rgba(255,255,255,.18);border-color:rgba(235,220,182,.6);}
.lang-current img{width:18px;height:12px;object-fit:cover;border-radius:2px;}
.lang-current svg{opacity:.7;transition:transform .2s;} .lang-switcher.open .lang-current svg{transform:rotate(180deg);}
.lang-dropdown{display:none;position:absolute;top:calc(100% + 8px);right:0;background:var(--white);border-radius:var(--radius-sm);box-shadow:var(--shadow-md);min-width:100px;overflow:hidden;z-index:200;}
.lang-switcher.open .lang-dropdown{display:block;}
.lang-option{display:flex;align-items:center;gap:8px;padding:9px 14px;color:var(--text-dark);font-size:.875rem;font-weight:500;transition:background .12s;}
.lang-option:hover{background:var(--cream-light);} .lang-option--active{background:var(--cream-mid);font-weight:700;}
.lang-option img{width:18px;height:12px;object-fit:cover;border-radius:2px;}
/* ── Hero ───────────────────────────────────────────────────────────────── */
#hero{margin-top:68px;padding:48px 24px 0;background:linear-gradient(135deg,#fff8f0 0%,#f5e8cb 60%,var(--cream) 100%);overflow:hidden;border-bottom:3px solid var(--cream);}
.hero-inner{max-width:1140px;margin:0 auto;display:flex;align-items:flex-end;gap:32px;}
.hero-text{flex:1;min-width:0;padding-bottom:64px;}
#hero h1{font-size:clamp(1.75rem,3.6vw,2.75rem);font-weight:800;color:var(--brown-dark);line-height:1.15;margin-bottom:16px;text-wrap:balance;max-width:16ch;}
#hero h1 span{color:var(--primary);}
#hero p{font-size:clamp(1rem,2vw,1.2rem);color:var(--text-mid);max-width:520px;margin-bottom:40px;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:24px;}
.hero-trust{display:flex;flex-wrap:wrap;gap:8px 22px;margin-top:22px;}
.hero-trust li{display:flex;align-items:center;gap:7px;font-size:.9rem;color:var(--text-mid);}
.hero-trust li::before{content:'';width:15px;height:15px;flex-shrink:0;border-radius:50%;background:var(--primary);-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/13px no-repeat;mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/13px no-repeat;}
.hero-lady{flex-shrink:0;display:flex;align-items:flex-end;} .hero-lady img{width:520px;display:block;}
/* ── Hero AI Chat Preview (Simbila theme colors) ─────────────────────────── */
.hero-ai-chat{display:flex;flex-direction:column;width:100%;background:var(--cream-light);border:1px solid var(--cream);border-radius:16px;box-shadow:var(--shadow-md);overflow:hidden;}
.hai-header{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;background:var(--brown-dark);color:var(--cream);flex-shrink:0;}
.hai-header-left{display:flex;align-items:center;gap:.5rem;}
.hai-sparkle{font-size:1.1rem;line-height:1;}
.hai-title{font-weight:700;font-size:.95rem;}
.hai-header-right{display:flex;gap:.25rem;}
.hai-icon-btn{background:transparent;border:none;color:rgba(235,220,182,.75);cursor:default;padding:.25rem .35rem;border-radius:6px;font-size:.88rem;line-height:1;display:inline-flex;align-items:center;justify-content:center;}
.hai-messages{flex:1;overflow-y:auto;padding:.75rem;display:flex;flex-direction:column;gap:.6rem;min-height:210px;max-height:300px;background:var(--cream-light);}
.hai-msg{display:flex;} .hai-msg.user{justify-content:flex-end;} .hai-msg.assistant{justify-content:flex-start;}
.hai-msg-bubble{max-width:85%;padding:.55rem .85rem;border-radius:12px;font-size:.85rem;line-height:1.5;word-break:break-word;}
.hai-msg.user .hai-msg-bubble{background:var(--primary);color:#fff;border-bottom-right-radius:3px;}
.hai-msg.assistant .hai-msg-bubble{background:var(--cream-mid);color:var(--text-dark);border-bottom-left-radius:3px;border:1px solid var(--cream);}
.hai-msg-bubble strong{font-weight:700;}
.hai-typing{display:flex;align-items:center;gap:4px;height:28px;}
.hai-dot{width:6px;height:6px;border-radius:50%;background:var(--terracotta);animation:haiBounce 1.2s infinite;}
.hai-dot:nth-child(2){animation-delay:.2s;} .hai-dot:nth-child(3){animation-delay:.4s;}
@keyframes haiBounce{0%,60%,100%{transform:translateY(0);}30%{transform:translateY(-6px);}}
.hai-input-row{display:flex;gap:.5rem;padding:.65rem;border-top:1px solid var(--cream);flex-shrink:0;background:var(--cream-light);}
.hai-textarea{flex:1;min-width:0;width:100%;box-sizing:border-box;padding:.45rem .65rem;font-size:.85rem;border:1px solid var(--terracotta);border-radius:8px;background:#fff;color:var(--text-dark);outline:none;font-family:inherit;resize:none;pointer-events:none;}
.hai-send-btn{padding:.45rem .75rem;border-radius:8px;border:none;background:var(--primary);color:#fff;cursor:default;font-size:.9rem;flex-shrink:0;opacity:.4;pointer-events:none;display:flex;align-items:center;justify-content:center;}
/* ── Section tones ──────────────────────────────────────────────────────── */
.section-tinted{background:var(--cream-light);}
.section-dark{background:var(--brown-dark);}
.section-dark .section-title{color:var(--white);}
.section-dark .section-sub{color:var(--cream);}
.eyebrow{text-align:center;font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--primary);margin-bottom:10px;}

/* ── Trust bar ──────────────────────────────────────────────────────────── */
.trust-bar{background:var(--brown-dark);padding:20px 0;}
.trust-inner{display:flex;flex-wrap:wrap;align-items:center;gap:12px 32px;justify-content:center;}
.trust-since{color:var(--cream);font-weight:700;font-size:.95rem;}
.trust-items{display:flex;flex-wrap:wrap;gap:8px 26px;justify-content:center;}
.trust-items li{color:var(--terracotta);font-size:.88rem;display:flex;align-items:center;gap:10px;}
.trust-items li+li::before{content:'';width:4px;height:4px;border-radius:50%;background:rgba(235,220,182,.35);flex-shrink:0;}

/* ── How it works: numbered because the order is the point ──────────────── */
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px;counter-reset:step;}
.step{position:relative;padding-top:8px;}
.step-n{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;background:var(--primary);color:#fff;font-weight:800;font-size:1.05rem;margin-bottom:14px;}
.step h3{font-size:1.1rem;font-weight:700;color:var(--brown-dark);margin-bottom:8px;}
.step p{color:var(--text-mid);font-size:.95rem;}
.steps-note{margin-top:32px;text-align:center;color:var(--text-light);font-size:.92rem;}

/* ── Two-column blocks ──────────────────────────────────────────────────── */
.split{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:stretch;margin-bottom:28px;}
.split--chat{align-items:start;margin-bottom:0;}
.quote-card,.states-card{background:var(--white);border:1px solid var(--cream-mid);border-radius:var(--radius);padding:32px 28px;}
.quote-card{display:flex;flex-direction:column;justify-content:center;gap:16px;}
.quote-card blockquote{font-size:1.18rem;line-height:1.55;color:var(--brown-dark);font-weight:600;}
.quote-card figcaption{font-size:.82rem;color:var(--text-light);}
.states-card h3{font-size:1.1rem;font-weight:700;color:var(--brown-dark);margin-bottom:16px;}
.states-card p{color:var(--text-mid);font-size:.93rem;}
.states{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:16px;}
.states li{background:var(--cream-mid);color:var(--brown-dark);border-radius:50px;padding:5px 13px;font-size:.82rem;font-weight:600;}
.states li:last-child{background:var(--primary);color:#fff;}

/* ── Small cards ────────────────────────────────────────────────────────── */
.mini-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:20px;}
.mini-card{background:var(--white);border:1px solid var(--cream-mid);border-radius:var(--radius);padding:24px 22px;}
.mini-icon{font-size:1.5rem;margin-bottom:10px;}
.mini-card h3{font-size:1rem;font-weight:700;color:var(--brown-dark);margin-bottom:6px;}
.mini-card p{color:var(--text-mid);font-size:.9rem;line-height:1.55;}

/* ── AI section ─────────────────────────────────────────────────────────── */
.ai-side{display:flex;flex-direction:column;gap:20px;}
.ticks{display:flex;flex-direction:column;gap:12px;}
.ticks li{position:relative;padding-left:28px;color:var(--text-mid);font-size:.97rem;}
.ticks li::before{content:'';position:absolute;left:0;top:.42em;width:16px;height:16px;border-radius:50%;background:var(--primary);
-webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;
mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat;}
.ticks--inline{flex-direction:row;flex-wrap:wrap;gap:10px 28px;}
.mcp-card{background:var(--brown-dark);color:var(--cream);border-radius:var(--radius);padding:24px 24px;}
.mcp-card h3{font-size:1.05rem;font-weight:700;color:var(--white);margin-bottom:8px;}
.mcp-card p{font-size:.93rem;line-height:1.6;color:var(--terracotta);}

/* ── Feature groups ─────────────────────────────────────────────────────── */
.group-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.group-card{background:var(--white);border:1px solid var(--cream-mid);border-radius:var(--radius);padding:28px 24px;}
.group-icon{font-size:1.6rem;margin-bottom:10px;}
.group-card h3{font-size:1.05rem;font-weight:700;color:var(--brown-dark);margin-bottom:14px;}
.group-list{display:flex;flex-direction:column;gap:9px;}
.group-list li{position:relative;padding-left:16px;color:var(--text-mid);font-size:.92rem;line-height:1.5;}
.group-list li::before{content:'';position:absolute;left:0;top:.6em;width:5px;height:5px;border-radius:50%;background:var(--terracotta);}

/* ── Accountant ─────────────────────────────────────────────────────────── */
.acc-card{background:var(--cream-light);border:1px solid var(--cream-mid);border-radius:var(--radius);padding:32px 28px;max-width:820px;margin:0 auto;}
.tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:20px;}
.tag{background:var(--white);border:1px solid var(--cream);border-radius:50px;padding:6px 16px;font-size:.85rem;font-weight:600;color:var(--brown-mid);}
.acc-lead{color:var(--text-mid);font-size:.97rem;margin-bottom:20px;}

/* ── Comparison ─────────────────────────────────────────────────────────── */
.cmp-wrap{overflow-x:auto;background:var(--white);border:1px solid var(--cream-mid);border-radius:var(--radius);}
.cmp{border-collapse:collapse;width:100%;min-width:560px;font-size:.92rem;}
.cmp th,.cmp td{padding:14px 18px;text-align:left;vertical-align:top;border-bottom:1px solid var(--cream-mid);}
.cmp thead th{font-size:.8rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-light);background:var(--cream-light);}
.cmp thead .cmp-us{color:var(--primary);}
.cmp tbody th{font-weight:600;color:var(--brown-dark);width:30%;}
.cmp tbody td{color:var(--text-light);}
.cmp tbody td.cmp-us{color:var(--text-dark);font-weight:600;background:rgba(226,122,0,.05);}
.cmp tbody tr:last-child th,.cmp tbody tr:last-child td{border-bottom:none;}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px;}
.faq-item{background:var(--cream-light);border:1px solid var(--cream-mid);border-radius:var(--radius-sm);padding:4px 22px;}
.faq-item summary{cursor:pointer;list-style:none;padding:16px 28px 16px 0;font-weight:700;color:var(--brown-dark);font-size:1rem;position:relative;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:'';position:absolute;right:2px;top:50%;width:9px;height:9px;margin-top:-6px;border-right:2px solid var(--primary);border-bottom:2px solid var(--primary);transform:rotate(45deg);transition:transform .2s;}
.faq-item[open] summary::after{transform:rotate(-135deg);margin-top:-2px;}
.faq-item summary:focus-visible{outline:2px solid var(--primary);outline-offset:3px;border-radius:4px;}
.faq-item p{color:var(--text-mid);font-size:.95rem;padding:0 0 18px;}

/* ── Final call to action ───────────────────────────────────────────────── */
.final-cta{background:var(--cream-mid);padding:72px 0;text-align:center;}
.final-cta h2{font-size:clamp(1.4rem,2.6vw,2rem);font-weight:800;color:var(--brown-dark);margin-bottom:12px;text-wrap:balance;}
.final-cta p{color:var(--text-mid);margin-bottom:26px;}
.final-note{font-size:.88rem;color:var(--text-light);margin:20px 0 0;}
/* ── Pricing ────────────────────────────────────────────────────────────── */
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px;align-items:stretch;}
.pricing-card{background:var(--white);border-radius:var(--radius);padding:36px 28px;display:flex;flex-direction:column;gap:20px;position:relative;}
.pricing-card--featured{background:var(--primary);box-shadow:0 12px 48px rgba(226,122,0,.4);transform:scale(1.04);}
.pricing-card--featured .plan-name,.pricing-card--featured .plan-price,.pricing-card--featured .plan-features li{color:var(--white)!important;}
.plan-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--brown-dark);color:var(--cream);font-size:.75rem;font-weight:700;padding:4px 14px;border-radius:50px;letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;}
.plan-name{font-size:1.15rem;font-weight:800;color:var(--brown-dark);line-height:1.3;}
.plan-claim{font-size:.9rem;color:var(--text-light);line-height:1.45;margin-top:-14px;}
.pricing-card--featured .plan-claim{color:rgba(255,255,255,.85);}
.pricing-note{margin:36px auto 0;max-width:640px;text-align:center;color:var(--cream);font-size:.88rem;}
.btn-block{width:100%;justify-content:center;}
.btn-on-brand{background:var(--white);color:var(--primary-dark);}
.btn-on-brand:hover{background:var(--cream-light);}
.plan-price{font-size:2.6rem;font-weight:800;color:var(--brown-dark);line-height:1;} .plan-price span{font-size:1rem;font-weight:500;color:var(--text-light);}
.plan-vat{font-size:.8rem;color:var(--text-light);margin-top:-12px;}
.plan-features{display:flex;flex-direction:column;gap:10px;flex:1;} .plan-features li{font-size:.9rem;color:var(--text-mid);}
/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer-link{color:var(--text-light);font-size:.9rem;transition:color .15s;} .footer-link:hover{color:var(--primary);}
.footer-links ul{display:flex;flex-direction:column;gap:8px;}
.footer-head{color:var(--cream);margin-bottom:14px;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;}
.footer-head--lg{font-size:1rem;letter-spacing:0;text-transform:none;}
.footer-logo{color:var(--cream);margin-bottom:12px;display:inline-flex;}
.footer-tagline{color:var(--text-light);font-size:.9rem;max-width:240px;}
.footer-rule{border:none;border-top:1px solid rgba(255,255,255,.08);margin:32px 0 20px;}
.footer-copy{text-align:center;color:var(--text-light);font-size:.85rem;} .footer-copy a{color:var(--terracotta);}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:40px;align-items:start;}
.footer-cta .btn{width:100%;justify-content:center;margin-bottom:10px;}
.pub-footer{background:var(--text-dark);padding:48px 0 32px;}
/* ── Public content ─────────────────────────────────────────────────────── */
.public-content{max-width:860px;margin:68px auto 0;padding:60px 24px 80px;}
.public-content h1{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;color:var(--brown-dark);margin-bottom:24px;}
.public-content h2{font-size:1.25rem;font-weight:700;color:var(--brown-dark);margin:32px 0 10px;}
.public-content h3,.public-content h4,.public-content h5{font-size:1.05rem;font-weight:700;color:var(--brown-mid);margin:24px 0 8px;}
.public-content p{color:var(--text-mid);margin-bottom:14px;} .public-content a{color:var(--primary);text-decoration:underline;}
/* ── Cookie consent bar ─────────────────────────────────────────────────── */
#cookie-bar{position:fixed;bottom:0;left:0;right:0;background:var(--brown-dark);border-top:1px solid rgba(255,255,255,.1);z-index:9999;padding:14px 24px;}
.cookie-inner{max-width:1140px;margin:0 auto;display:flex;align-items:center;gap:24px;flex-wrap:wrap;}
.cookie-text{flex:1;min-width:200px;font-size:.875rem;color:var(--cream);}
.cookie-text strong{font-weight:700;color:var(--white);margin-right:6px;} .cookie-text a{color:var(--terracotta);text-decoration:underline;}
.cookie-actions{display:flex;gap:10px;flex-shrink:0;}
#ck-essential{padding:8px 18px;border-radius:50px;font-size:.85rem;font-weight:600;background:transparent;border:1px solid rgba(235,220,182,.4);color:var(--cream);cursor:pointer;transition:background .15s,border-color .15s;}
#ck-essential:hover{background:rgba(255,255,255,.1);border-color:var(--cream);}
#ck-accept.btn-sm{padding:8px 18px;font-size:.85rem;}
/* ── Responsive: Tablet ≤ 900px ─────────────────────────────────────────── */
@media(max-width:900px){
  .nav-links{display:none;}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:68px;left:0;right:0;background:var(--brown-dark);padding:16px 20px;gap:4px;z-index:999;}
  .nav-toggle{display:block;margin-left:auto;} .nav-actions .btn-outline{display:none;}
  .hero-inner{flex-direction:column;align-items:center;text-align:center;gap:24px;}
  .hero-text{padding-bottom:0;} .hero-actions{justify-content:center;}
  #hero p{margin-left:auto;margin-right:auto;}
  .hero-lady{order:-1;} .hero-lady img{width:340px;}
  .hero-ai-chat{width:100%;}
  .section-pad{padding:64px 0;}
  .split{grid-template-columns:1fr;}
  .mini-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr));}
  .trust-inner{gap:10px 20px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
/* ── Responsive: Mobile ≤ 600px ─────────────────────────────────────────── */
@media(max-width:600px){
  .nav-actions{display:none;} .nav-mobile-cta{display:block;}
  #hero{padding:32px 16px 0;} .hero-lady img{width:min(260px,80vw);}
  .btn-lg{padding:13px 24px;font-size:1rem;}
  .section-pad{padding:48px 0;} .section-title{margin-bottom:8px;} .section-sub{margin-bottom:32px;font-size:1rem;}
  .mini-grid,.group-grid,.steps{grid-template-columns:1fr;gap:20px;}
  .mini-card,.group-card,.quote-card,.states-card,.acc-card{padding:22px 18px;}
  .trust-items li+li::before{display:none;}
  .trust-items{flex-direction:column;gap:6px;text-align:center;}
  .final-cta{padding:52px 0;} .faq-item{padding:2px 16px;}
  .pricing-card--featured{transform:scale(1);} .pricing-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;} .footer-cta{order:-1;} .footer-cta .btn{padding:12px 20px;}
  .cookie-inner{flex-direction:column;align-items:stretch;gap:12px;} .cookie-actions{justify-content:flex-end;}
}
/* ── Responsive: Very small ≤ 380px ─────────────────────────────────────── */
@media(max-width:380px){
  .nav-inner{padding:0 14px;gap:12px;} .logo-text{display:none;}
  .hero-lady img{width:min(220px,80vw);}
  .hero-actions{flex-direction:column;width:100%;} .hero-actions .btn{width:100%;justify-content:center;}
}
