:root {
  --bg:#f6f7fb; --fg:#101828; --muted:#667085; --card:#ffffff; --border:#e4e7ec;
  --primary:#4212bb; --primary-2:#1476ff; --accent:#00c488; --ring:rgba(255,109,70,0.28);
  --shadow: 0 18px 40px rgba(16,24,40,0.08);
}
* { box-sizing: border-box; }
html,body { margin:0; padding:0; background:var(--bg); color:var(--fg); font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.container { width:100%; max-width:1240px; margin:0 auto; padding:24px; }
.muted { color:var(--muted); }

/* Nav */
.nav { position:sticky; top:0; background:rgba(255,255,255,0.85); backdrop-filter:saturate(180%) blur(16px); border-bottom:1px solid rgba(255,106,61,0.18); box-shadow: 0 14px 48px rgba(255,97,48,0.08); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 24px; max-width:1240px; margin:0 auto; }
.brand { font-weight:800; letter-spacing:.2px; color:var(--fg); text-decoration:none; font-size:18px; }
.nav-links { display:flex; gap:10px; align-items:center; }
.nav-landing .nav-links a { color:#475467; font-weight:600; text-decoration:none; padding:8px 12px; border-radius:999px; transition:background .15s ease, color .15s ease; }
.nav-landing .nav-links a:hover { background:rgba(59,130,246,0.1); color:#1d4ed8; }
.nav-cta { display:flex; gap:10px; align-items:center; }
.nav-landing { background:rgba(255,255,255,0.95); border-bottom:1px solid rgba(16,24,40,0.06); box-shadow:0 18px 48px rgba(15,23,42,0.08); backdrop-filter:saturate(160%) blur(18px); z-index:90; }
.nav-landing .nav-inner { padding:16px 32px; gap:20px; }
.nav-landing .brand-xl { color:var(--primary); }
.nav-landing .btn-primary { box-shadow:0 14px 32px rgba(79,70,229,0.24); }
.nav-landing .nav-cta .btn { white-space:nowrap; }

/* Horecax global header */
.hx-header { position:sticky; top:0; z-index:100; background:rgba(255,255,255,0.96); backdrop-filter:blur(14px); border-bottom:1px solid rgba(15,23,42,0.08); box-shadow:0 14px 36px rgba(15,23,42,0.08); }
.hx-header__inner { max-width:1240px; margin:0 auto; padding:14px 28px; display:flex; align-items:center; gap:20px; }
.hx-header__brand { display:inline-flex; align-items:center; gap:12px; text-decoration:none; }
.hx-header__logo { font-weight:900; font-size:20px; letter-spacing:0.22em; color:#0b1d3a; text-transform:uppercase; }
.hx-header__tagline { font-size:12px; color:#475467; font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.hx-header__nav { display:flex; flex-wrap:wrap; gap:8px; margin-left:20px; }
.hx-header__spacer { flex:1; }
.hx-nav-link { display:inline-flex; align-items:center; justify-content:center; padding:8px 14px; border-radius:999px; font-weight:600; font-size:14px; text-decoration:none; color:#475467; background:rgba(148,163,184,0.14); transition:background .15s ease, color .15s ease, transform .15s ease; }
.hx-nav-link:hover { background:rgba(14,165,233,0.18); color:#0f172a; transform:translateY(-1px); }
.hx-nav-link.is-active { background:linear-gradient(135deg, rgba(59,130,246,0.24), rgba(14,165,233,0.32)); color:#0b1d3a; box-shadow:0 10px 26px rgba(14,165,233,0.32); }
.hx-header__actions { display:flex; align-items:center; gap:10px; margin-left:auto; }
.hx-action { display:inline-flex; align-items:center; justify-content:center; padding:8px 16px; border-radius:12px; font-size:14px; font-weight:600; text-decoration:none; transition:background .15s ease, color .15s ease, box-shadow .15s ease; }
.hx-action--link { color:#0b1d3a; background:transparent; }
.hx-action--link:hover { background:rgba(148,163,184,0.18); }
.hx-action--primary { color:#fff; background:linear-gradient(135deg, #2563eb, #0ea5e9); box-shadow:0 16px 30px rgba(37,99,235,0.24); }
.hx-action--primary:hover { background:linear-gradient(135deg, #1d4ed8, #0284c7); }
.hx-header__extra { margin-left:auto; display:flex; align-items:center; gap:12px; }

@media (max-width: 900px) {
  .hx-header__inner { flex-wrap:wrap; padding:12px 20px; }
  .hx-header__nav { order:3; width:100%; margin-left:0; justify-content:flex-start; }
  .hx-header__actions { order:2; margin-left:0; width:100%; justify-content:flex-end; }
  .hx-header__extra { order:2; margin-left:0; }
}

/* Hero */
.hero { position:relative; margin-top:24px; padding:64px; border-radius:36px; background:linear-gradient(128deg,#ffffff 0%,#eef2ff 48%,#fdf2f8 100%); border:1px solid rgba(16,24,40,0.08); box-shadow:0 32px 70px rgba(15,23,42,0.08); overflow:hidden; }
.hero::after { content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 20%, rgba(79,70,229,0.14), transparent 55%), radial-gradient(circle at 80% 20%, rgba(236,72,153,0.22), transparent 60%); pointer-events:none; }
.hero h1 { position:relative; font-size:42px; line-height:1.08; margin:0 0 16px 0; max-width:560px; }
.hero p { position:relative; color:var(--muted); font-size:18px; margin:0 0 24px 0; max-width:540px; }
.cta { margin-top:16px; display:flex; gap:12px; flex-wrap:wrap; }

.hero-inner { position:relative; z-index:1; display:grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap:48px; align-items:center; }
.hero-copy { position:relative; z-index:1; display:grid; gap:20px; }
.eyebrow { display:inline-flex; align-items:center; gap:6px; padding:6px 12px; border-radius:999px; background:rgba(79,70,229,0.12); color:#3730a3; font-weight:600; font-size:13px; width:max-content; letter-spacing:.2px; }
.hero-search { position:relative; z-index:1; display:flex; gap:8px; align-items:center; background:#fff; border-radius:14px; padding:6px; border:1px solid rgba(16,24,40,0.08); box-shadow:0 18px 40px rgba(15,23,42,0.08); max-width:460px; }
.hero-search input { flex:1; border:none; background:transparent; padding:10px 14px; font-size:15px; color:var(--fg); }
.hero-search input::placeholder { color:#98a2b3; }
.hero-search button { padding:10px 16px; border-radius:12px; background:var(--primary); color:#fff; border:none; font-weight:600; cursor:pointer; transition:background .15s ease; }
.hero-search button:hover { background:var(--primary-2); }
.hero-stats { position:relative; z-index:1; display:flex; gap:24px; flex-wrap:wrap; margin-top:12px; }
.stat { display:grid; gap:4px; }
.stat-value { font-size:28px; font-weight:800; color:var(--primary); letter-spacing:-0.02em; }
.stat-label { font-size:13px; color:#667085; }
.hero-media { position:relative; z-index:1; display:grid; gap:18px; justify-items:flex-end; }
.hero-orbit { position:absolute; top:-60px; right:-60px; width:360px; height:360px; border-radius:50%; background:radial-gradient(circle, rgba(147,197,253,0.35), transparent 65%); z-index:-1; }
.hero-card { width:320px; background:#fff; border:1px solid rgba(16,24,40,0.06); border-radius:24px; padding:22px; box-shadow:0 28px 60px rgba(15,23,42,0.12); display:grid; gap:16px; backdrop-filter:blur(2px); }
.hero-card-head { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.hero-card-list { list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.hero-card-list li { display:grid; gap:2px; }
.list-title { font-weight:600; color:#1d2939; }
.list-sub { color:#98a2b3; font-size:13px; }
.hero-card-foot { display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px dashed rgba(148,163,184,0.5); padding-top:12px; }
.hero-card-suppliers { background:linear-gradient(150deg, rgba(236,72,153,0.14), rgba(59,130,246,0.14)); border:1px solid rgba(236,72,153,0.18); }
.hero-card-suppliers header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.hero-card-suppliers ol { margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.hero-card-suppliers li { display:flex; align-items:center; justify-content:space-between; gap:12px; font-weight:600; color:#1d2939; }
.tag { display:inline-flex; align-items:center; padding:4px 10px; border-radius:999px; background:rgba(15,23,42,0.08); font-size:12px; color:#1d2939; }
.tag-good { background:rgba(34,197,94,0.16); color:#047857; }
.badge-soft { background:rgba(59,130,246,0.16); color:#1d4ed8; border:1px solid rgba(59,130,246,0.26); }
.hero-bubble { width:240px; background:#0f172a; color:#fff; padding:18px; border-radius:20px; box-shadow:0 28px 60px rgba(15,23,42,0.22); display:grid; gap:6px; align-self:center; }
.hero-bubble strong { font-size:16px; }
.hero-bubble span { font-size:13px; color:rgba(248,250,252,0.88); }

.hero-card-orders { background:#fff; }

/* Buttons */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:10px 16px; border-radius:12px; text-decoration:none; font-weight:700; border:1px solid transparent; cursor:pointer; transition: all .15s ease; }
.btn:focus { outline:none; box-shadow: 0 0 0 4px var(--ring); }
.btn-primary { background:var(--primary); color:#fff; box-shadow:0 12px 28px rgba(255,77,38,0.22); }
.btn-primary:hover { background:var(--primary-2); }
.btn-secondary { background:#ffe3d7; color:#9a3412; border-color:#ffc1a6; }
.btn-secondary:hover { background:#ffd2be; }
.btn-ghost { background:#fff; color:var(--fg); border:1px solid rgba(16,24,40,0.08); }
.btn-ghost:hover { background:#f9fafc; }
.btn-outline { background:#fff; color:var(--fg); border:1px solid var(--border); }
.btn-outline.danger { border-color:rgba(239,68,68,0.4); color:#b91c1c; }
.btn-outline.danger:hover { background:rgba(239,68,68,0.08); }

/* Cards, grid */
.grid { margin-top:24px; display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:16px; }
.card { padding:18px; border:1px solid var(--border); border-radius:16px; background:var(--card); box-shadow: var(--shadow); }
.card h3 { margin:0 0 6px 0; }
.card p { margin:0; color:var(--muted); }

.footer { color:var(--muted); font-size:14px; text-align:center; margin:32px 0; }

/* Forms */
.form { display:grid; gap:12px; }
.row { display:flex; gap:12px; flex-wrap:wrap; }
label { font-size:13px; color:var(--muted); display:block; margin-bottom:6px; }
input, select, textarea { width:100%; padding:12px 12px; border-radius:12px; background:#ffffff; color:var(--fg); border:1px solid var(--border); box-shadow: inset 0 1px 0 rgba(2,6,23,.02); }
input:focus, select:focus, textarea:focus { outline:none; border-color:#ffb199; box-shadow: 0 0 0 3px var(--ring); }

/* Tables */
table { width:100%; border-collapse: collapse; background:#fff; border-radius:14px; overflow:hidden; box-shadow: var(--shadow); }
th, td { border-bottom:1px solid var(--border); padding:12px; text-align:left; }
th { background:#f9fafb; font-weight:700; font-size:14px; }

.badge { padding:4px 10px; border-radius:999px; font-size:12px; background:#f3f4f6; color:#374151; border:1px solid var(--border); }
.success { color:#16a34a; }
.warning { color:#ca8a04; }
.danger { color:#dc2626; }
.actions { display:flex; gap:8px; }
.flash { margin:12px 0; padding:12px; border-radius:12px; background:#ecfdf5; color:#065f46; border:1px solid #a7f3d0; }

/* Auth pages */
.auth { min-height: calc(100vh - 64px); display:grid; place-items:center; padding:24px; }
.auth-card { width:100%; max-width: 440px; padding:28px; border:1px solid var(--border); border-radius:18px; background:#fff; box-shadow: var(--shadow); }
.auth-title { margin:0 0 6px 0; font-size:24px; }
.auth-sub { margin:0 0 18px 0; color:var(--muted); }

/* Admin */
.admin-main { max-width:1240px; margin:32px auto 72px; padding:0 32px; display:grid; gap:32px; }
.admin-header { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.admin-header h1 { margin:0; font-size:28px; color:#1d2939; }
.admin-meta { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.data-card { background:#fff; border-radius:26px; border:1px solid rgba(16,24,40,0.08); box-shadow:0 20px 48px rgba(15,23,42,0.08); padding:24px; display:grid; gap:18px; }
.data-card header { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.data-card h2 { margin:0; font-size:22px; color:#1d2939; }
.data-card h3 { margin:0; font-size:20px; color:#1d2939; }
.table-scroll { overflow-x:auto; }
.split-grid { display:grid; gap:24px; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); }
.status-chip { display:inline-flex; align-items:center; gap:6px; padding:4px 12px; border-radius:999px; font-size:12px; font-weight:600; background:rgba(16,24,40,0.06); color:#1d2939; }
.status-chip.success { background:rgba(34,197,94,0.16); color:#047857; }
.status-chip.warning { background:rgba(250,204,21,0.18); color:#92400e; }
.status-chip.danger { background:rgba(239,68,68,0.18); color:#b91c1c; }
.status-chip.info { background:rgba(59,130,246,0.16); color:#1d4ed8; }
.admin-empty { padding:28px; border-radius:20px; border:1px dashed rgba(148,163,184,0.6); background:#f8fafc; text-align:center; color:#475467; font-size:14px; }
.kpi-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:18px; }
.kpi-card { background:#fff; border-radius:24px; border:1px solid rgba(16,24,40,0.08); box-shadow:0 20px 42px rgba(15,23,42,0.08); padding:20px; display:grid; gap:6px; }
.kpi-label { font-size:13px; color:#667085; }
.kpi-value { font-size:28px; font-weight:800; color:#1d2939; }
.kpi-sub { font-size:12px; color:#94a3b8; }
.danger-text { color:#b91c1c; }
.form-actions { display:flex; gap:12px; flex-wrap:wrap; }
.import-summary { display:grid; gap:6px; color:#334155; font-size:14px; }
.field-lists { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:24px; }
.field-list { margin:8px 0 0 0; padding-left:20px; color:#475467; font-size:14px; display:grid; gap:4px; }
.field-list li { list-style:disc; }
.field-lists h4 { margin:0; font-size:15px; color:#1d2939; }

/* Catalog (Rappi-like) */
.catalog { margin-top:20px; display:grid; grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) ); gap:16px; }
.product-card { position:relative; border:1px solid var(--border); background:#fff; border-radius:18px; overflow:hidden; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.catalog .product-link { text-decoration:none; color:inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.catalog .product-link:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(15,23,42,0.18); }
.product-media { position:relative; width:100%; aspect-ratio: 4 / 3; background:#f3f4f6; overflow:hidden; }
.product-media img { width:100%; height:100%; object-fit:cover; display:block; }
.product-body { padding:12px; display:grid; gap:6px; }
.product-title { font-weight:700; margin:0; font-size:15px; }
.product-price { font-weight:700; color:var(--primary); }
.product-supplier { margin:0; color:var(--muted); font-size:12px; }
.product-foot { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px; border-top:1px solid var(--border); }
.price { font-weight:800; }
.stepper { display:inline-flex; align-items:center; border:1px solid var(--border); border-radius:999px; overflow:hidden; background:#fff; }
.stepper button { width:32px; height:32px; border:0; background:#f3f4f6; cursor:pointer; }
.stepper input { width:48px; height:32px; border:0; text-align:center; }
.add-btn { padding:8px 12px; border-radius:999px; background:var(--primary); color:#fff; font-weight:700; text-decoration:none; border:0; cursor:pointer; }
.add-btn:hover { background:var(--primary-2); }
.catalog-sentinel { grid-column:1 / -1; justify-self:center; padding:16px 12px; color:var(--muted); font-size:14px; transition:opacity .2s ease; }
.catalog-sentinel.is-loading { opacity:0.7; }
.catalog-sentinel.has-error { color:#dc2626; }

/* Provider tools */
.toolbar { display:flex; flex-wrap:wrap; gap:10px; align-items:center; padding:12px; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow: var(--shadow); margin:12px 0; }
.toolbar .spacer { flex:1; }
.tabs { display:flex; gap:8px; flex-wrap:wrap; }
.tab { padding:8px 12px; border-radius:999px; border:1px solid var(--border); background:#fff; color:var(--fg); text-decoration:none; font-weight:600; }
.tab.active { background:#ffe3d7; border-color:#ffc1a6; color:#3e2cff; }
.pill { padding:4px 10px; border-radius:999px; border:1px solid var(--border); background:#f9fafb; font-size:12px; }
.table-actions { display:flex; gap:6px; align-items:center; }
.nowrap { white-space:nowrap; }

/* Landing: topbar + search */
.topbar { position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid rgba(16,24,40,0.05); box-shadow: 0 12px 32px rgba(15,23,42,0.06); }
.topbar-inner { display:grid; grid-template-columns: 180px 1fr 1fr auto; gap:16px; align-items:center; max-width:1240px; margin:0 auto; padding:12px 32px; }
.brand-xl { font-weight:900; font-size:24px; color:var(--primary); text-decoration:none; letter-spacing:.2px; }
.location-pill { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(16,24,40,0.08); border-radius:999px; background:#fff; padding:10px 16px; font-weight:600; color:#344054; cursor:pointer; box-shadow:0 10px 24px rgba(16,24,40,0.05); }
.location-pill .pill-icon { font-size:16px; }
.location-pill .pill-caret { font-size:12px; color:#98a2b3; }
.search { width: 100%; display:flex; gap:10px; align-items:center; border:1px solid rgba(16,24,40,0.08); border-radius:999px; padding:10px 14px; background:#f8f9fc; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.search input { flex:1; border:0; outline:none; font-size:14px; background:transparent; color:var(--fg); }
.search button { background:var(--primary); color:#fff; border:0; padding:8px 18px; border-radius:999px; font-weight:700; cursor:pointer; box-shadow:0 12px 28px rgba(255,77,38,0.22); }
.top-icons { display:flex; gap:12px; align-items:center; }
.icon-link { color:#344054; font-weight:600; text-decoration:none; padding:10px 14px; border-radius:14px; border:1px solid transparent; }
.icon-link:hover { border-color:rgba(16,24,40,0.08); background:#f8f9fc; }
.icon-circle { display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; background:#f2f4f7; text-decoration:none; font-size:18px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }

.landing { display:grid; gap:32px; padding-bottom:32px; padding-top: 20px; }
.section { max-width:1240px; margin:0 auto; padding:0 32px; display:grid; gap:18px; }
.section h2 { margin:0; font-size:26px; color:#1d2939; }
.section-head { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:12px; }
.section-sub { color:#667085; font-size:14px; }
.link { color:var(--primary); font-weight:700; text-decoration:none; }
.link:hover { text-decoration:underline; }

.hero-banners .banner-track { display: flex; gap:22px; margin-top: 20px;}
.hero-banner { position:relative; min-height:160px; border-radius:24px; padding:24px; display:flex; flex-direction:column; justify-content:space-between; color:#fff; overflow:hidden; box-shadow: var(--shadow); }
.hero-banner h2 { margin:0 0 8px 0; font-size:24px; }
.hero-banner p { margin:0; font-size:15px; color:rgba(255,255,255,0.88); }
.hero-banner .btn { align-self:flex-start; margin-top:12px; }
.gradient-orange { background:linear-gradient(135deg,#ff7a45 0%, #ff4d26 90%); }
.gradient-green { background:linear-gradient(135deg,#00d492 0%, #00a876 90%); }
.gradient-teal { background:linear-gradient(135deg,#00c2ff 0%, #0076ff 100%); }

.products-section { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 18px 42px rgba(15,23,42,0.08); }
.products-section h2 { font-size:24px; }

.section-list .card-scroller { overflow-x:auto; padding-bottom:6px; -webkit-overflow-scrolling:touch; }
.highlight-card { display:flex; align-items:center; justify-content:space-between; gap:32px; padding:36px 40px; border-radius:28px; background:linear-gradient(135deg, rgba(59,130,246,0.12), rgba(14,165,233,0.2)); border:1px solid rgba(59,130,246,0.2); box-shadow:0 26px 60px rgba(37,99,235,0.18); color:#0f172a; }
.highlight-card h2 { margin:8px 0 12px 0; font-size:28px; max-width:520px; }
.highlight-card p { margin:0; color:#1d2939; max-width:520px; }
.highlight-card .btn { flex-shrink:0; }

.feature-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:18px; }
.feature-card { background:#fff; border-radius:24px; padding:24px; border:1px solid rgba(16,24,40,0.06); box-shadow:0 20px 48px rgba(15,23,42,0.08); display:grid; gap:12px; }
.feature-card h3 { margin:0; font-size:20px; color:#1d2939; }
.feature-card p { margin:0; color:#667085; }
.feature-icon { width:48px; height:48px; border-radius:18px; background:rgba(79,70,229,0.12); display:grid; place-items:center; font-size:22px; color:#4338ca; }

.journey-track { position:relative; display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:18px; }
.journey-track::before { content:''; position:absolute; top:34px; left:12px; right:12px; height:2px; background:rgba(148,163,184,0.35); z-index:0; }
.journey-step { position:relative; z-index:1; background:#fff; border-radius:24px; padding:24px; border:1px solid rgba(16,24,40,0.06); box-shadow:0 20px 44px rgba(15,23,42,0.08); display:grid; gap:12px; }
.journey-number { width:44px; height:44px; border-radius:16px; background:var(--primary); color:#fff; display:grid; place-items:center; font-weight:700; font-size:18px; box-shadow:0 14px 36px rgba(79,70,229,0.28); }
.journey-step h3 { margin:0; font-size:18px; color:#1d2939; }
.journey-step p { margin:0; color:#667085; line-height:1.6; }

.testimonial-grid { display:flex; gap:16px; flex-wrap:wrap; }
.testimonial { flex:1 1 240px; }

.nav-landing .nav-links { gap:6px; }

.favourites .logo-bubbles { -webkit-overflow-scrolling:touch; }
.card-track { display:flex; gap:18px; min-width:max-content; }
.restaurant-card { width:240px; display:block; border-radius:22px; background:#fff; border:1px solid rgba(16,24,40,0.06); box-shadow:0 18px 36px rgba(15,23,42,0.08); overflow:hidden; cursor:pointer; transition: transform .2s ease, box-shadow .2s ease; text-decoration:none; color:inherit; }
.restaurant-card:hover { transform:translateY(-4px); box-shadow:0 22px 44px rgba(16,24,40,0.12); }
.restaurant-cover { height:140px; background:#f0f2f5; display:grid; place-items:center; }
.restaurant-cover img { max-width:100%; max-height:100%; object-fit:contain; padding:24px; }
.restaurant-body { padding:16px; display:grid; gap:6px; }
.restaurant-body h3 { margin:0; font-size:18px; color:#1d2939; }
.restaurant-body p { margin:0; font-size:13px; color:#667085; display:flex; gap:6px; align-items:center; }

.favourites .logo-bubbles { display:flex; gap:16px; overflow-x:auto; padding:4px 0 10px 0; }
.logo-bubble { flex:0 0 auto; width:120px; display:grid; justify-items:center; gap:10px; padding:16px; background:#fff; border-radius:24px; border:1px solid rgba(16,24,40,0.06); box-shadow:0 12px 28px rgba(15,23,42,0.08); }
.logo-bubble img { width:64px; height:64px; border-radius:50%; background:#fff; object-fit:contain; padding:10px; box-shadow:0 8px 20px rgba(16,24,40,0.08); }
.logo-bubble span { font-weight:600; font-size:14px; color:#1d2939; text-align:center; }

.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }

.supplier-strip { background:#fff; border-radius:30px; padding:32px; border:1px solid rgba(16,24,40,0.05); box-shadow: var(--shadow); }
.supplier-logos { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }
.supplier-card { background:#f8fafc; border:1px solid rgba(16,24,40,0.06); border-radius:22px; padding:20px; display:grid; gap:12px; align-items:center; justify-items:center; text-align:center; box-shadow:0 16px 30px rgba(15,23,42,0.08); }
.supplier-card img { max-width:120px; max-height:72px; object-fit:contain; }
.supplier-name { font-weight:700; color:#1d2939; }

/* Horizontal scrollers */
.hscroll { overflow-x:auto; padding-bottom:6px; }
.htrack { display:flex; gap:14px; }
.prod-mini { width:200px; flex:0 0 auto; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow: var(--shadow); overflow:hidden; }
.prod-mini img { width:100%; height:140px; object-fit:cover; display:block; }
.prod-mini .pbody { padding:10px; }
.prod-mini .pname { font-weight:700; font-size:14px; margin:0 0 6px 0; }
.prod-mini .pprice { font-weight:800; }
.prod-mini .psupplier { font-size:12px; color:var(--muted); margin-top:4px; }
.products-loading { margin-top:12px; color:var(--muted); font-size:14px; }
.products-loading.is-hidden { display:none; }
.products-loading.has-error { color:#dc2626; }
.products-loading.is-empty { color:var(--muted); font-style:italic; }
.product-rails { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 20px 48px rgba(15,23,42,0.08); }
.rails { display:grid; gap:24px; }
.provider-rail { display:grid; gap:16px; }
.rail-header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.rail-title { font-size:20px; font-weight:800; color:#1d2939; }
.rail-link { color:var(--primary); font-weight:600; text-decoration:none; }
.rail-link:hover { text-decoration:underline; }
.rail-scroll .htrack { gap:18px; }
.rail-card { width:220px; flex:0 0 auto; background:#fff; border:1px solid rgba(148,163,184,0.32); border-radius:18px; overflow:hidden; box-shadow:0 16px 36px rgba(15,23,42,0.12); display:flex; flex-direction:column; color:inherit; text-decoration:none; }
.rail-card img { width:100%; height:160px; object-fit:cover; display:block; }
.rail-body { padding:12px; display:grid; gap:6px; }
.rail-name { font-weight:700; font-size:15px; color:#0f172a; }
.rail-price { font-weight:800; color:var(--primary); }

/* Trust and testimonials */
.logos { display:grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap:14px; align-items:center; }
.logo-item { height:48px; border:1px solid var(--border); border-radius:12px; background:#fff; box-shadow: var(--shadow); display:grid; place-items:center; color:#475569; font-weight:700; }
.testimonial-grid { display:flex; gap:16px; flex-wrap:wrap; }
.testimonial { background:#fff; border:1px solid var(--border); border-radius:16px; padding:16px; box-shadow: var(--shadow); }
.testimonial .quote { font-style:italic; color:#334155; }
.testimonial .user { margin-top:8px; color:#64748b; font-size:14px; }

.cta-banner { max-width:1240px; margin:24px auto; padding:0 32px; }
.cta-inner { border:1px solid rgba(15,23,42,0.06); border-radius:26px; padding:28px; background:linear-gradient(90deg,#2563eb 0%, #38bdf8 100%); display:flex; gap:16px; align-items:center; justify-content:space-between; box-shadow: 0 24px 52px rgba(37,99,235,0.28); color:#fff; }
.cta-inner h3 { margin:0; color:#fff; font-size:24px; }
.cta-inner p { margin:6px 0 0 0; color:rgba(255,255,255,0.86); max-width:420px; }

.landing-new { display:grid; gap:48px; padding-top:20px; }
.hero-market { background:linear-gradient(120deg, rgba(79,70,229,0.12) 0%, rgba(236,72,153,0.12) 50%, rgba(14,165,233,0.12) 100%); border:1px solid rgba(91,33,182,0.18); box-shadow:0 32px 70px rgba(79,70,229,0.12); }
.hero-market-inner { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:40px; align-items:center; }
.hero-badge { display:inline-flex; align-items:center; gap:6px; padding:8px 14px; border-radius:999px; background:#fff; border:1px solid rgba(79,70,229,0.2); color:#4c1d95; font-weight:600; font-size:13px; width:max-content; }
.hero-market-copy { display:grid; gap:18px; }
.hero-market-copy h1 { margin:0; font-size:40px; color:#0f172a; }
.hero-market-copy p { margin:0; color:#475467; font-size:18px; max-width:540px; }
.hero-benefits { margin:0; padding-left:18px; display:grid; gap:8px; color:#1f2937; font-weight:500; }
.hero-benefits li { list-style:disc; }
.hero-ctas { display:flex; gap:12px; flex-wrap:wrap; }
.hero-metrics { display:flex; flex-wrap:wrap; gap:20px; margin-top:8px; }
.hero-metrics div { background:#fff; padding:14px 20px; border-radius:16px; border:1px solid rgba(15,23,42,0.08); min-width:150px; box-shadow:0 16px 40px rgba(15,23,42,0.08); display:grid; gap:4px; }
.hero-metrics strong { font-size:24px; color:#312e81; }
.hero-metrics span { color:#475467; font-size:13px; }
.hero-market-media { display:grid; gap:18px; }
.hero-market-card { background:#fff; border-radius:24px; border:1px solid rgba(15,23,42,0.08); box-shadow:0 26px 60px rgba(15,23,42,0.12); padding:22px; display:grid; gap:16px; }
.hero-market-card header { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.hero-market-card ul { margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.hero-market-card li { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; }
.hero-market-card li div { display:grid; gap:4px; }
.hero-market-card li strong { font-size:15px; color:#1e1b4b; }
.hero-market-card li span { color:#475467; font-size:13px; }
.hero-market-card footer { display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px dashed rgba(148,163,184,0.35); padding-top:12px; }
.hero-market-card.secondary { background:linear-gradient(140deg,#f8fafc 0%, #eef2ff 100%); border:1px solid rgba(99,102,241,0.26); }
.hero-market-card.secondary strong { font-size:18px; color:#1f2937; }
.hero-market-card.secondary p { margin:0 0 12px 0; color:#475467; font-size:14px; }
.chip { display:inline-flex; align-items:center; padding:4px 10px; border-radius:999px; background:rgba(59,130,246,0.12); color:#1d4ed8; font-size:12px; font-weight:600; }
.chip-soft { background:rgba(34,197,94,0.12); color:#047857; }
.chip-muted { background:rgba(148,163,184,0.18); color:#475467; }

.live-catalog { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 20px 48px rgba(15,23,42,0.08); }
.categories { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 20px 48px rgba(15,23,42,0.08); }
.category-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:18px; }
.category-card { background:#f8fafc; border:1px solid rgba(226,232,240,0.9); border-radius:24px; padding:24px; box-shadow:0 14px 36px rgba(15,23,42,0.08); display:grid; gap:12px; }
.category-card .emoji { font-size:28px; }
.category-card h3 { margin:0; font-size:18px; color:#1f2937; }
.category-card p { margin:0; color:#475467; font-size:14px; }
.stat-slab { background:#fff; border-radius:28px; padding:32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 20px 48px rgba(15,23,42,0.08); }
.stat-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:20px; }
.stat-card { background:linear-gradient(135deg, rgba(91,33,182,0.08), rgba(79,70,229,0.08)); border-radius:24px; padding:24px; border:1px solid rgba(79,70,229,0.14); box-shadow:0 16px 42px rgba(79,70,229,0.12); display:grid; gap:10px; }
.stat-card h3 { margin:0; font-size:18px; color:#312e81; }
.stat-card p { margin:0; color:#475467; font-size:14px; }
.workflow { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 18px 42px rgba(15,23,42,0.08); }
.faq { background:#fff; border-radius:28px; padding:28px 32px; border:1px solid rgba(16,24,40,0.05); box-shadow:0 20px 48px rgba(15,23,42,0.08); }
.faq-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:18px; }
.faq-item { background:#f8fafc; border:1px solid rgba(203,213,225,0.8); border-radius:22px; padding:20px; box-shadow:0 12px 32px rgba(15,23,42,0.08); display:grid; gap:10px; }
.faq-item h3 { margin:0; font-size:16px; color:#1f2937; }
.faq-item p { margin:0; color:#475467; font-size:14px; }
.cta-panel { padding:0 32px 48px; }
.cta-panel-inner { max-width:1240px; margin:0 auto; border-radius:30px; border:1px solid rgba(59,130,246,0.2); background:linear-gradient(110deg,#2563eb 0%, #7c3aed 100%); padding:36px 40px; color:#fff; display:flex; flex-wrap:wrap; align-items:flex-start; gap:24px; box-shadow:0 28px 64px rgba(79,70,229,0.28); }
.cta-panel-inner h2 { margin:0; font-size:28px; }
.cta-panel-inner p { margin:8px 0 0 0; max-width:520px; color:rgba(255,255,255,0.85); }
.cta-panel-actions { display:flex; gap:12px; flex-wrap:wrap; }
.cta-panel .btn-ghost { color:#fff; border-color:rgba(255,255,255,0.6); }
.cta-panel .btn-ghost:hover { background:rgba(255,255,255,0.12); }

/* Footer */
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap:16px; padding:24px; border-top:1px solid var(--border); background:#fff; }
.footer-grid h4 { margin:0 0 8px 0; font-size:14px; color:#0f172a; }
.footer-grid a { display:block; color:#334155; text-decoration:none; padding:4px 0; font-size:14px; }
.footer-note { text-align:center; color:#94a3b8; padding:12px; font-size:13px; }

@media (max-width: 1160px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-media { justify-items:flex-start; }
  .hero-card { width:100%; max-width:320px; }
  .hero-bubble { justify-self:flex-start; width:100%; }
}

@media (max-width: 960px) {
  .hero { padding:48px 32px; }
  .highlight-card { flex-direction:column; align-items:flex-start; }
  .highlight-card .btn { width:100%; justify-content:center; }
  .nav-landing .nav-inner { flex-wrap:wrap; align-items:flex-start; }
  .nav-landing .nav-links { order:3; width:100%; display:flex; flex-wrap:wrap; justify-content:flex-start; }
  .nav-landing .nav-cta { order:2; margin-left:auto; display:flex; gap:10px; flex-wrap:wrap; }
  .admin-main { padding:0 24px 60px; }
}

@media (max-width: 760px) {
  .hero { padding:40px 24px; }
  .hero-inner { gap:32px; }
  .hero-search { flex-direction:column; align-items:stretch; }
  .hero-search button { width:100%; }
  .hero-card { max-width:100%; }
  .highlight-card { padding:28px; }
  .journey-track::before { display:none; }
  .journey-track { grid-template-columns:1fr; }
  .supplier-logos { flex-wrap:wrap; }
  .supplier-card { flex:1 1 200px; }
  .admin-main { padding:0 20px 48px; gap:24px; }
  .admin-header { flex-direction:column; align-items:flex-start; gap:12px; }
  .admin-meta { width:100%; }
}

@media (max-width: 640px) {
  .nav-landing .nav-inner { padding:14px 20px; }
  .nav-landing .nav-links { display:flex; width:100%; gap:8px; flex-wrap:wrap; justify-content:flex-start; }
  .nav-landing .nav-cta { width:100%; justify-content:flex-start; gap:8px; flex-wrap:wrap; }
  .hero-stats { gap:18px; }
  .stat-value { font-size:24px; }
  .hero-bubble { width:100%; }
  .highlight-card { gap:24px; }
  .nav-landing .nav-cta .btn { flex:1 1 160px; justify-content:center; }
  .hero-ctas .btn { flex:1 1 160px; justify-content:center; }
  .admin-meta .btn { flex:1 1 160px; justify-content:center; }
}

@media (max-width: 1100px) {
  .topbar-inner { grid-template-columns: 150px 1fr auto; padding:12px 24px; }
  .location-pill { display:none; }
  .section { padding:0 24px; }
}

@media (max-width: 760px) {
  .topbar-inner { grid-template-columns: 1fr; gap:12px; }
  .top-icons { justify-content:flex-end; }
  .landing { gap:24px; }
  .section { padding:0 20px; }
  .hero-banners .banner-track { grid-template-columns:1fr; }
  .card-track { gap:14px; }
}

/* Landing v2 redesign */
body.landing-v2 { background:#f5f7fb; color:#101828; }
body.landing-v2 main { color:inherit; }
.site-header { position:sticky; top:0; z-index:100; backdrop-filter:blur(12px); background:rgba(255,255,255,0.92); border-bottom:1px solid rgba(226,232,240,0.9); box-shadow:0 18px 36px rgba(15,23,42,0.08); }
.header-inner { max-width:1240px; margin:0 auto; padding:18px 32px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo { font-weight:800; font-size:20px; letter-spacing:.2px; color:#1f2937; text-decoration:none; }
.main-nav { display:flex; gap:16px; }
.main-nav a { color:#475467; text-decoration:none; font-weight:600; font-size:14px; padding:8px 10px; border-radius:999px; transition:background .15s ease,color .15s ease; }
.main-nav a:hover { color:#1d4ed8; background:rgba(59,130,246,0.12); }
.header-cta { display:flex; gap:12px; }
.site-header .btn,
body.landing-v2 .btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:999px; padding:10px 18px; font-weight:600; text-decoration:none; transition:all .15s ease; }
.site-header .btn.solid,
body.landing-v2 .btn.solid { background:linear-gradient(135deg,#6366f1 0%,#22d3ee 100%); color:#fff; box-shadow:0 16px 30px rgba(99,102,241,0.25); }
.site-header .btn.solid:hover,
body.landing-v2 .btn.solid:hover { transform:translateY(-1px); }
.site-header .btn.ghost,
body.landing-v2 .btn.ghost { border:1px solid rgba(148,163,184,0.4); color:#334155; background:#fff; }
.site-header .btn.ghost:hover,
body.landing-v2 .btn.ghost:hover { background:rgba(226,232,240,0.6); }
.site-header .btn.outline,
body.landing-v2 .btn.outline { border:1px solid rgba(99,102,241,0.4); color:#1d4ed8; background:#fff; }
.site-header .btn.outline:hover,
body.landing-v2 .btn.outline:hover { background:rgba(99,102,241,0.12); }
.btn.link { border:1px solid transparent; color:#4338ca; padding:0; }

body.landing-v2 main { max-width:1240px; margin:0 auto; padding:48px 32px 80px; display:grid; gap:72px; color:#0f172a; }

.hero-v2 { background:#ffffff; border:1px solid rgba(226,232,240,0.8); border-radius:40px; padding:56px; color:#0f172a; display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:48px; box-shadow:0 40px 80px rgba(148,163,184,0.22); }
.hero-content { display:grid; gap:20px; }
.hero-content h1 { margin:0; font-size:46px; line-height:1.05; color:#0f172a; }
.hero-content p { margin:0; font-size:18px; color:#475467; max-width:540px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-highlights { margin:0; padding-left:20px; display:grid; gap:6px; color:#475467; font-size:15px; }
.hero-stats { display:flex; gap:18px; flex-wrap:wrap; margin-top:8px; }
.hero-stats div { background:#f1f5f9; border:1px solid rgba(148,163,184,0.4); border-radius:18px; padding:14px 18px; min-width:140px; display:grid; gap:4px; }
.hero-stats strong { font-size:24px; color:#1d4ed8; }
.hero-stats span { font-size:13px; color:#667085; letter-spacing:0.03em; text-transform:uppercase; }
.hero-panel { display:grid; gap:18px; }
.panel-card { background:#f8fafc; border-radius:24px; border:1px solid rgba(203,213,225,0.7); padding:24px; display:grid; gap:16px; box-shadow:0 28px 60px rgba(148,163,184,0.2); color:#0f172a; }
.panel-card header { display:flex; align-items:center; justify-content:space-between; gap:12px; font-weight:600; }
.status.in-progress { color:#4338ca; }
.panel-card ul { margin:0; padding:0; list-style:none; display:grid; gap:12px; }
.panel-card li { display:flex; justify-content:space-between; align-items:flex-start; gap:14px; color:#475467; }
.panel-card li strong { color:#0f172a; font-size:15px; }
.tag { padding:4px 10px; border-radius:999px; background:rgba(99,102,241,0.12); color:#4338ca; font-size:12px; font-weight:600; }
.tag-green { background:rgba(34,197,94,0.12); color:#047857; }
.tag-muted { background:rgba(148,163,184,0.18); color:#475467; }
.panel-card footer { display:flex; align-items:center; justify-content:space-between; gap:12px; border-top:1px dashed rgba(148,163,184,0.3); padding-top:12px; }
.panel-card footer strong { color:#0f172a; }
.panel-link { color:#1d4ed8; text-decoration:none; font-weight:600; }
.panel-card.secondary { background:linear-gradient(135deg,#e0f2fe 0%,#ede9fe 100%); border:1px solid rgba(165,180,252,0.7); color:#0f172a; box-shadow:none; }
.panel-card.secondary strong { font-size:18px; }
.panel-card.secondary p { margin:0; color:#334155; }
.panel-card.secondary .btn.link { color:#1d4ed8; }

body.landing-v2 .services { display:grid; gap:28px; color:#0f172a; background:#ffffff; border-radius:32px; padding:36px; border:1px solid rgba(226,232,240,0.8); box-shadow:0 24px 56px rgba(148,163,184,0.18); }
.services article h2 { margin:0; font-size:30px; }
.services article p { margin:4px 0 0 0; color:#475467; }
.service-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:20px; }
.service-card { background:#f8fafc; border-radius:22px; border:1px solid rgba(226,232,240,0.9); padding:22px; box-shadow:0 18px 42px rgba(148,163,184,0.16); display:grid; gap:10px; }
.service-card h3 { margin:0; font-size:18px; color:#0f172a; }
.service-card p { margin:0; color:#64748b; font-size:14px; }

body.landing-v2 .preview,
body.landing-v2 .providers,
body.landing-v2 .timeline,
body.landing-v2 .stories,
body.landing-v2 .cta { background:#ffffff; border-radius:32px; padding:36px; border:1px solid rgba(226,232,240,0.8); box-shadow:0 26px 60px rgba(148,163,184,0.18); }
.preview-head, .providers-head { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.preview-head h2, .providers-head h2 { margin:6px 0 0 0; color:#0f172a; }
.eyebrow { display:inline-flex; align-items:center; padding:6px 12px; border-radius:999px; background:rgba(59,130,246,0.12); color:#1d4ed8; font-weight:600; font-size:12px; letter-spacing:0.04em; text-transform:uppercase; }
.preview-track { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:16px; margin-top:24px; }
.preview-card { background:#f8fafc; border-radius:20px; border:1px solid rgba(203,213,225,0.9); overflow:hidden; display:grid; box-shadow:0 20px 48px rgba(148,163,184,0.16); }
.preview-card img { width:100%; height:150px; object-fit:cover; }
.preview-body { padding:16px; display:grid; gap:8px; }
.preview-body h3 { margin:0; font-size:16px; color:#0f172a; }
.preview-supplier { font-size:13px; color:#64748b; }
.preview-card strong { color:#1d4ed8; font-size:15px; }
.loader { margin-top:18px; text-align:center; font-size:14px; color:#475467; }
.loader.hidden { display:none; }
.loader.error { color:#dc2626; }
.loader.empty { color:#64748b; font-style:italic; }
.loader.loading { color:#1d4ed8; }

.provider-board { display:grid; gap:32px; margin-top:24px; }
.provider-row { display:grid; gap:16px; }
.provider-row-head { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.provider-row-head h3 { margin:0; font-size:18px; color:#0f172a; }
.provider-row-head a { color:#1d4ed8; font-weight:600; text-decoration:none; }
.provider-rail { display:flex; gap:16px; overflow-x:auto; padding-bottom:6px; }
.provider-rail .rail-card { flex:0 0 auto; width:190px; background:#f8fafc; border:1px solid rgba(203,213,225,0.8); border-radius:18px; padding:12px; box-shadow:0 14px 36px rgba(148,163,184,0.16); color:#0f172a; text-decoration:none; display:grid; gap:10px; }
.provider-rail .rail-card img { width:100%; height:120px; object-fit:cover; border-radius:12px; }
.provider-rail .rail-card .rail-name { font-weight:600; font-size:15px; }
.provider-rail .rail-card strong { color:#1d4ed8; }

.timeline h2 { margin:0 0 24px 0; font-size:28px; color:#0f172a; }
.timeline ol { margin:0; padding:0; list-style:none; display:grid; gap:20px; }
.timeline li { display:flex; gap:16px; align-items:flex-start; }
.timeline .dot { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#6366f1 0%,#22d3ee 100%); color:#fff; font-weight:700; display:grid; place-items:center; }
.timeline h3 { margin:0; color:#0f172a; font-size:18px; }
.timeline p { margin:4px 0 0 0; color:#475467; }

.stories h2 { margin:0 0 24px 0; font-size:28px; color:#0f172a; }
.story-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:20px; }
.story-grid article { background:#f8fafc; border-radius:20px; border:1px solid rgba(226,232,240,0.9); padding:20px; box-shadow:0 16px 40px rgba(148,163,184,0.16); display:grid; gap:12px; }
.story-grid blockquote { margin:0; font-size:15px; color:#0f172a; line-height:1.5; }
.story-grid p { margin:0; color:#64748b; font-size:13px; text-transform:uppercase; letter-spacing:0.05em; }

body.landing-v2 .cta { background:linear-gradient(135deg,#eef2ff 0%, #e0f2fe 100%); color:#0f172a; border:none; box-shadow:0 30px 64px rgba(148,163,184,0.25); }
body.landing-v2 .cta-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
body.landing-v2 .cta h2 { margin:0; font-size:30px; color:#312e81; }
body.landing-v2 .cta p { margin:6px 0 0 0; max-width:420px; color:#475467; }
body.landing-v2 .cta-actions { display:flex; gap:12px; flex-wrap:wrap; }
body.landing-v2 .cta .btn.outline { color:#1d4ed8; border-color:rgba(99,102,241,0.4); }

.site-footer { border-top:1px solid rgba(226,232,240,0.9); background:#ffffff; color:#475467; box-shadow:0 -12px 32px rgba(148,163,184,0.12); }
.footer-inner { max-width:1240px; margin:0 auto; padding:24px 32px 32px; display:flex; align-items:flex-start; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.footer-inner strong { color:#1f2937; }
.footer-inner nav { display:grid; gap:6px; }
.footer-inner nav a { color:#475467; text-decoration:none; }
.footer-inner nav a:hover { color:#1d4ed8; }

@media (max-width: 960px) {
  body.landing-v2 main { padding:40px 24px 64px; }
  .hero-content h1 { font-size:38px; }
  .hero-v2 { padding:44px 36px; }
  .services, .preview, .providers, .timeline, .stories, .cta { padding:28px; }
}

@media (max-width: 720px) {
  .header-inner { padding:16px 20px; flex-wrap:wrap; }
  .main-nav { width:100%; justify-content:flex-start; }
  .hero-v2 { padding:36px 24px; }
  .hero-actions .btn, .cta-actions .btn { width:100%; justify-content:center; }
  .hero-stats div { width:100%; }
}
