@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   IRIS MENU — Paros/Naxos Cycladic Design
   ========================================== */

/* ---- TOKENS ---- */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --white: #ffffff; --warm: #f8f6f2; --border: #e6e2db;
  --text: #1a1a1a; --text-muted: #6b7280;
  --primary: #2c5f7c; --primary-light: #4a85a8;
  --gold: #e07b5a; --gold-light: #f0906e;
  --green: #5a8a7c;
  --dark: #152238; --dark-light: #1e3550;
  --red: #dc2626; --red-soft: #fef2f2;
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ---- UTILITY ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--text); line-height: 1.2; }
.section-title h2 span { color: var(--gold); }
.section-title p { color: var(--text-muted); font-size: 1.05rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- NAVBAR ---- */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo-img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; padding-bottom: 4px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }
/* Language pills */
.lang-pills { display: flex; gap: 4px; }
.lp-btn { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; padding: 0; }
.lp-btn.active { border-color: var(--primary); background: rgba(44,95,124,0.06); transform: scale(1.05); }
.lp-btn:hover { border-color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--primary); padding: 4px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-arrow { font-size: 0.65rem; margin-left: 2px; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); box-shadow: 0 8px 24px rgba(0,0,0,0.08); min-width: 180px; padding: 6px 0; z-index: 101; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a { display: block; padding: 8px 16px; font-size: 0.82rem; color: var(--text-muted); text-decoration: none; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--warm); color: var(--primary); }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; cursor: pointer; text-decoration: none; border: none; transition: all 0.2s; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(44,95,124,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; text-decoration: underline; }
.btn-ghost:hover { color: var(--primary); }
.btn-accent { background: var(--green); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ---- SECTION 1: HERO ---- */
.hero-section { padding: 80px 0 40px; background: linear-gradient(180deg, var(--warm) 0%, var(--white) 100%); overflow: hidden; text-align: center; }
.hero-text { max-width: 750px; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; background: rgba(224,123,90,0.12); color: var(--gold); margin-bottom: 20px; }
.hero-text h1 { font-family: var(--font-display); font-size: 3.4rem; font-weight: 900; line-height: 1.1; color: var(--dark); }
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.08rem; color: var(--text-muted); margin: 20px auto 28px; max-width: 540px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.btn-demo { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-demo:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

/* Hero metrics strip */
.hero-metrics { display: flex; justify-content: center; gap: 0; margin: 40px auto 0; max-width: 600px; }
.hm-card { flex: 1; text-align: center; padding: 18px 12px; border-right: 1px solid var(--border); }
.hm-card:last-child { border-right: none; }
.hm-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--primary); display: block; line-height: 1.1; }
.hm-label { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 4px; line-height: 1.3; }

/* Hero CSS Growth Loop */
.hero-loop { display: flex; justify-content: center; margin: 36px auto 0; }
.hero-loop-label { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; padding-bottom: 20px; }
.hero-loop-label span { color: var(--gold); font-size: 1.1rem; }
.hl-ring { position: relative; width: 180px; height: 180px; }
.hl-dot { position: absolute; top: 50%; left: 50%; width: 38px; height: 38px; margin: -19px; background: var(--white); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; animation: orbitPulse 8s linear infinite; animation-delay: calc(var(--a) / 360 * 8s); transform-origin: center center; }
.hl-dot span { display: block; }
@keyframes orbitPulse {
  0%, 100% { transform: rotate(var(--a)) translateY(-72px) rotate(calc(-1 * var(--a))); }
}
.hl-hub { position: absolute; top: 50%; left: 50%; width: 56px; height: 56px; margin: -28px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.hl-logo { font-family: var(--font-display); font-size: 0.8rem; font-weight: 900; color: var(--white); letter-spacing: 1px; }


/* ---- SECTION 2: PROBLEM ---- */
.problem-section { background: #152238; color: var(--white); }
.problem-section .section-title h2 { color: var(--white); }
.problem-section .section-title h2 span { color: var(--gold); }
.problem-section .section-title p { color: rgba(255,255,255,0.55); }

/* 2 comparison cards */
.problem-split { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; max-width: 850px; margin: 0 auto 32px; }
.pcard { flex: 1 1 340px; max-width: 410px; border-radius: var(--r-lg); padding: 28px 24px; }
.pcard-bad { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.pcard-good { background: rgba(255,255,255,0.08); border: 2px solid var(--gold); }
.pcard-label { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.pcard-label.good { color: var(--gold); }

/* Euro amount */
.pcard-euro { text-align: center; margin-bottom: 14px; }
.pe-amount { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.3); }
.pe-amount.good { color: var(--gold); }
.pe-sub { font-size: 1.5rem; }
.pe-per { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 2px; }
.pe-per.good { color: rgba(224,123,90,0.6); }

/* Euro split bar */
.pcard-split { margin-bottom: 18px; }
.ps-bar { height: 24px; border-radius: 4px; display: flex; align-items: center; padding: 0 12px; font-size: 0.72rem; font-weight: 600; margin-bottom: 3px; white-space: nowrap; }
.pcard-bad .ps-bar { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.4); }
.ps-lost { background: rgba(220,38,38,0.5) !important; color: rgba(255,255,255,0.85) !important; }
.ps-bar.good { background: rgba(224,123,90,0.3); color: var(--gold); }

/* Comparison lists */
.pcard-list { list-style: none; }
.pcard-list li { padding: 8px 0; font-size: 0.84rem; color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.04); }
.pcard-list li:last-child { border-bottom: none; }
.pcard-good .pcard-list li { color: rgba(255,255,255,0.7); }

/* Callout */
.problem-proof { text-align: center; max-width: 550px; margin: 0 auto; padding: 20px 24px; background: rgba(90,138,124,0.1); border: 1px solid rgba(90,138,124,0.2); border-radius: var(--r-md); }
.problem-proof p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.problem-proof strong { color: var(--gold); }

/* ---- SECTION 3: SOLUTION ---- */
.solution-section { background: var(--white); }

.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.pillar-card { background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.pillar-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pillar-icon { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.pillar-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }

/* === FAQ Page Grid === */
.faqpg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.faqpg-col { background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; }
.faq-group-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.faqpg-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.faqpg-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-q { font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-bottom: 6px; line-height: 1.4; }
.faq-a { font-size: 0.85rem; color: var(--text); line-height: 1.55; }
.pillar-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.pillar-stat { margin-top: 14px; padding: 6px 14px; background: rgba(44,95,124,0.06); border-radius: 50px; font-size: 0.75rem; font-weight: 600; color: var(--primary); display: inline-block; }

.pillar-highlight { background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%); border: 2px solid var(--gold); }
.pillar-highlight .pillar-banner { color: var(--white); }
.pillar-banner { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.68rem; font-weight: 800; padding: 3px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.pillar-highlight h3 { color: var(--dark); }

/* EuroPA link */
.pillar-extra { margin-top: 10px; font-size: 0.78rem; color: var(--primary); font-weight: 600; background: rgba(44,95,124,0.06); border-radius: var(--r-sm); padding: 6px 12px; display: inline-block; }

/* Connector between top pillars and loyalty */
.pillars-connector { text-align: center; font-size: 0.82rem; color: var(--gold); font-weight: 600; margin: 24px 0 20px; }

/* Wide loyalty card */
.pillar-wide { max-width: 100%; margin: 0 auto; }

/* Loyalty flow: 3 mini-cards */
.loyalty-flow { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin: 20px 0 10px; }
.lf-step { flex: 1 1 180px; min-width: 160px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 12px; text-align: center; }
.lf-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.lf-step strong { display: block; font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.lf-step span:not(.lf-icon) { font-size: 0.75rem; color: var(--text-muted); display: block; line-height: 1.4; }
.lf-arrow { font-size: 1.5rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Loyalty outcome */
.loyalty-outcome { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(224,123,90,0.15); }
.loyalty-outcome span { font-size: 0.85rem; font-weight: 600; color: var(--dark); }

/* Pillar card links */
.pillar-link { display: block; margin-top: 12px; font-size: 0.78rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.pillar-link:hover { color: var(--gold); }

/* ---- SECTION 4: GROWTH TRACK ---- */
.growth-section { background: var(--warm); }

.growth-track-wrapper { position: relative; max-width: 1000px; margin: 0 auto; }

/* SVG curved connector */
.growth-svg { width: 100%; height: 60px; display: block; margin-bottom: -40px; }
.growth-svg.scrolled .growth-path-active { stroke-dashoffset: 0; }

/* 5 stations in flex row */
.growth-track { display: flex; justify-content: center; gap: 8px; margin: 0 auto 32px; position: relative; z-index: 1; flex-wrap: wrap; }
.growth-station { flex: 1 1 140px; min-width: 130px; max-width: 180px; text-align: center; padding: 12px 4px; border-radius: var(--r-md); position: relative; opacity: 0; transform: translateY(30px); transition: all 0.5s ease; }
.growth-station.visible { opacity: 1; transform: translateY(0); }
.growth-station::before { content: attr(data-step); position: absolute; top: 2px; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; background: var(--white); border: 2px solid var(--primary); border-radius: 50%; z-index: 2; font-size: 0.68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.growth-station.visible::before { background: var(--primary); color: var(--white); }

.gs-icon { font-size: 1.4rem; display: block; margin: 26px 0 6px; }
.growth-station strong { display: block; font-family: var(--font-display); font-size: 0.8rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; line-height: 1.2; }
.growth-station span:not(.gs-icon) { font-size: 0.7rem; color: var(--text-muted); display: block; line-height: 1.35; }

/* Growth Hub — 3 items row */
.growth-hub { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 0 auto 32px; max-width: 800px; }
.gh-item { flex: 1 1 220px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px 16px; text-align: center; }
.gh-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.gh-item strong { display: block; font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.gh-item span:not(.gh-icon) { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* Loop arrow */
.growth-loop-arrow { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 0; }
.growth-loop-arrow span { font-size: 0.88rem; color: var(--gold); font-weight: 700; }

/* ---- SECTION 5: PROOF — The Loop in Numbers ---- */
.proof-section { background: var(--white); }

/* Wide numbers card */
.proof-numbers { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; max-width: 850px; margin: 0 auto 32px; background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.pn-item { flex: 1 1 140px; text-align: center; padding: 24px 10px; border-right: 1px solid var(--border); }
.pn-item:last-child { border-right: none; }
.pn-val { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--primary); display: block; line-height: 1.1; }
.pn-label { font-size: 0.68rem; font-weight: 800; color: var(--dark); display: block; margin: 6px 0 4px; letter-spacing: 0.5px; }
.pn-sub { font-size: 0.72rem; color: var(--text-muted); display: block; line-height: 1.3; }

/* ROI strip */
.proof-roi-strip { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; max-width: 700px; margin: 0 auto 32px; }
.pr-item { text-align: center; padding: 20px 24px; }
.pr-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.pr-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--primary); display: block; line-height: 1.1; }
.pr-label { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 2px; }
.pr-highlight .pr-val { color: var(--gold); }
.pr-arrow { font-size: 1.8rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.proof-cta { text-align: center; }

@media (max-width: 768px) {
  .pn-item { flex: 1 1 120px; padding: 16px 6px; }
  .pn-val { font-size: 1.8rem; }
  .proof-roi-strip { gap: 8px; }
  .pr-val { font-size: 1.3rem; }
}

/* ---- SECTION 6: PRICING ---- */
.pricing-section { background: var(--warm); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.pricing-popular { border: 2px solid var(--gold); box-shadow: 0 4px 24px rgba(224,123,90,0.15); padding: 40px 28px 32px; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.7rem; font-weight: 800; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.pricing-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pricing-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--primary); }
.pricing-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-mo { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.pricing-for { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-card li { padding: 8px 0; font-size: 0.85rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.pricing-card li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ---- SECTION 7: FAQ ---- */
.faq-section { background: var(--white); }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; max-width: 850px; margin: 0 auto 36px; }
.faq-item { border: none; border-left: 3px solid transparent; border-bottom: 1px solid var(--border); margin: 0; transition: border-color 0.3s, background 0.3s; }
.faq-item[open] { border-left-color: var(--gold); background: rgba(224,123,90,0.03); }

.faq-item summary { font-weight: 600; font-size: 0.93rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 12px; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--primary); font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 12px 18px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* Compact CTA */
.faq-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 28px; background: var(--warm); border-radius: var(--r-md); max-width: 600px; margin: 0 auto; }
.faq-cta span:first-child { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.faq-cta-sub { font-size: 0.8rem; color: var(--text-muted); }

/* ---- MODAL ---- */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.5); align-items: center; justify-content: center; padding: 20px; }
.modal-card { background: var(--white); border-radius: var(--r-lg); padding: 36px 32px; max-width: 550px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.modal-card h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; }
.modal-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-label { font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; }
.form-input { padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-body); font-size: 0.9rem; width: 100%; color: var(--text); background: var(--white); }
.form-input::placeholder { color: var(--text-muted); }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 70px 0 0; font-size: 0.85rem; }
.footer-brand { text-align: center; margin-bottom: 48px; }
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 48px; }
.footer h4 { color: var(--gold); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; font-size: 0.7rem; margin-bottom: 14px; }
.footer a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 20px 0 30px; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom span { white-space: nowrap; }
.footer-bottom a { display: inline; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-text h1 { font-size: 2.4rem; }
  .hero-metrics { flex-wrap: wrap; }
  .hm-card { flex: 1 1 130px; border-right: none; border-bottom: 1px solid var(--border); padding: 14px 8px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .faqpg-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .growth-track { flex-direction: column; align-items: center; }
  .growth-track::before { display: none; }
  .growth-station::before { top: 8px; }
  .growth-station { max-width: 280px; width: 100%; }
}

/* Feature comparison table */
.ft-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 0.88rem; }
.ft-table thead th { padding: 14px 16px; text-align: center; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid var(--border); font-size: 0.8rem; }
.ft-table thead th.cth { color: var(--gold); }
.ft-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.ft-table td:first-child { text-align: left; color: var(--text); font-size: 0.85rem; }
.ft-table td.ch { color: var(--gold); font-weight: 600; }

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; width: 100%; background: var(--white); flex-direction: column; gap: 0; padding: 12px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-toggle { display: block; }
  .hero-text h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
}

/* ============================================================
   CONSUMER PAGES (/, /stores)
   ============================================================ */
.c-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.c-nav .nav-links a { color: var(--text); font-size: 0.9rem; }
.c-nav .nav-links a.active { color: var(--primary); font-weight: 700; }
.c-search { margin: 0 auto; }
.c-store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.c-store-card { display: flex; flex-direction: column; align-items: center; background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 20px; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.c-store-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.c-store-icon { font-size: 2.8rem; margin-bottom: 12px; }
.c-store-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; text-align: center; }
.c-store-meta { font-size: 0.8rem; color: var(--text-muted); }

/* Category grid */
.c-cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; max-width: 900px; margin: 0 auto 32px; }
.c-cat-card { display: flex; flex-direction: column; align-items: center; padding: 16px 10px; background: var(--warm); border: 1px solid var(--border); border-radius: var(--r-md); text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.c-cat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.c-cat-icon { font-size: 1.8rem; margin-bottom: 6px; }
.c-cat-name { font-size: 0.78rem; font-weight: 600; color: var(--dark); text-align: center; line-height: 1.3; }
.c-cat-count { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* Pagination */
.c-pagination { display: flex; justify-content: center; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.c-page-btn { min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white); font-size: 0.85rem; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.15s; }
.c-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.c-page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.c-footer { padding-top: 60px; }
.c-footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.c-footer-links a { display: inline; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }
.c-footer-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .c-store-grid { grid-template-columns: repeat(2, 1fr); }
  .c-cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .c-store-grid { grid-template-columns: 1fr; }
  .c-cat-grid { grid-template-columns: repeat(2, 1fr); }
}