@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@500;600;700;800&family=Wix+Madefor+Text:wght@400;500;600;700&display=swap');

/* ============================================================
   ichdu.com — personal sites for everyday people
   Design: clean black & white (Wix-style) + blue accent
   Typography: Wix Madefor (Display + Text)
   ============================================================ */

:root {
  /* Accent (Wix-style blue) */
  --accent: #116DFF;
  --accent-dark: #0A50C7;
  --accent-soft: #EAF1FF;
  --accent-tint: #F4F8FF;

  /* Ink & text */
  --ink: #0E1116;
  --text: #363B44;
  --muted: #6A7180;

  /* Surfaces */
  --bg: #FFFFFF;
  --bg-soft: #FAFBFC;
  --bg-gray: #F3F5F8;
  --border: #E6E9EF;
  --border-strong: #D5DAE3;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(14, 17, 22, .06), 0 2px 8px rgba(14, 17, 22, .04);
  --shadow-md: 0 8px 24px rgba(14, 17, 22, .08), 0 2px 8px rgba(14, 17, 22, .05);
  --shadow-lg: 0 24px 60px rgba(14, 17, 22, .14), 0 8px 24px rgba(14, 17, 22, .08);
  --shadow-blue: 0 8px 22px rgba(17, 109, 255, .28);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;

  --font: 'Wix Madefor Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Wix Madefor Display', var(--font);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x: clip (not hidden) prevents sideways scroll WITHOUT breaking the sticky header */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; font-family: var(--font-display); }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-gray { background: var(--bg-gray); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }
/* Small blue eyebrow used above sections that don't need a full heading */
.eyebrow-head { text-align: center; margin-bottom: 34px; }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(17, 109, 255, .36); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: -webkit-sticky; position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
/* Slightly wider + tighter left padding so the logo sits closer to the edge */
/* Header aligns to the same width as the page content */
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* Logo — clean wordmark (WordPress.com style), not heavy */
.brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -.005em; margin-right: 20px; font-family: var(--font-display); }
.brand-dot { width: 19px; height: 19px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #5A9BFF, #116DFF 55%, #0A50C7);
  box-shadow: 0 2px 8px rgba(17, 109, 255, .4); flex: none; }
.brand span { line-height: 1; }
.brand .tld { color: var(--muted); font-weight: 600; }
.nav-mid { display: flex; align-items: center; gap: 32px; margin-right: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: .98rem; color: var(--text); transition: color .15s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-cta { display: none; }  /* only appears inside the open mobile menu */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .2s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }

/* ---------- Language dropdown ---------- */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 100px; border: 1.5px solid var(--border); color: var(--text); font-weight: 600; font-size: .9rem; background: #fff; transition: border-color .15s; }
.lang-btn:hover { border-color: var(--border-strong); }
.lang-btn svg { width: 16px; height: 16px; opacity: .7; }
.lang-btn .chev { width: 12px; height: 12px; opacity: .6; transition: transform .2s; }
.lang.open .lang-btn .chev { transform: rotate(180deg); }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; width: 190px; display: none; z-index: 120; }
.lang.open .lang-menu { display: block; animation: pop .18s ease; }
.lang-menu button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 9px 12px; border-radius: 9px; font-size: .92rem; font-weight: 600; color: var(--text); text-align: left; transition: background .12s; }
.lang-menu button:hover { background: var(--bg-gray); }
.lang-menu button.active { color: var(--accent); }
.lang-menu button.active::after { content: "✓"; font-weight: 800; }
.lang-menu button .soon { font-size: .68rem; font-weight: 700; color: var(--muted); background: var(--bg-gray); padding: 2px 7px; border-radius: 100px; text-transform: uppercase; letter-spacing: .04em; }
.lang-menu .lang-head { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 6px 12px 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 92px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; left: -160px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(17, 109, 255, .16), transparent 66%); z-index: 0;
}
/* Flip on desktop: interactive example on the LEFT, copy on the RIGHT */
@media (min-width: 961px) {
  .hero-visual { order: 0; }
  .hero-copy { order: 1; }
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.05fr; gap: 56px; align-items: center; }
.hero-copy .kicker { margin-bottom: 20px; display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: var(--muted); background: var(--bg-gray); padding: 8px 15px; border-radius: 100px; }
.hero-copy .kicker b { color: var(--ink); font-weight: 800; }
.hero-copy .kicker .d { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { font-size: 1.2rem; color: var(--muted); max-width: 470px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .92rem; font-weight: 500; }
.hero-trust .tick { color: var(--accent); font-weight: 800; }

/* ---------- Mock browser ---------- */
.browser { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: #F1F3F6; border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #FF5F57; }
.browser-dots i:nth-child(2) { background: #FEBC2E; }
.browser-dots i:nth-child(3) { background: #28C840; }
.browser-url { flex: 1; margin-left: 8px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.browser-url svg { width: 12px; height: 12px; opacity: .5; }
.hero-browser { max-width: 560px; }

/* Interactive live theme frame in the hero */
.hero-frame { position: relative; height: 366px; overflow: hidden; background: #fff; cursor: pointer; }
.hero-frame iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 880px; border: 0; transform: scale(.4375); transform-origin: top left; pointer-events: none; }
.hero-frame .hint { position: absolute; right: 12px; bottom: 12px; background: rgba(14,17,22,.82); color: #fff; font-size: .74rem; font-weight: 600; padding: 7px 13px; border-radius: 100px; opacity: 0; transform: translateY(6px); transition: .2s; }
.hero-frame:hover .hint { opacity: 1; transform: none; }
.hero-switch { display: flex; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.hero-switch button { padding: 8px 16px; border-radius: 100px; font-weight: 600; font-size: .86rem; background: #fff; border: 1.5px solid var(--border); color: var(--muted); transition: .15s; }
.hero-switch button:hover { border-color: var(--border-strong); color: var(--ink); }
.hero-switch button.on { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Demo site inside the hero browser */
.demo { font-size: 13px; color: #444; }
.demo-nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid #eee; }
.demo-nav .logo { font-weight: 800; color: var(--ink); font-size: 1rem; }
.demo-nav ul { display: flex; gap: 16px; font-size: .78rem; color: #777; }
.demo-hero { display: grid; grid-template-columns: 1.1fr 1fr; }
.demo-hero .txt { padding: 26px 22px; }
.demo-hero .txt small { color: var(--accent); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .62rem; }
.demo-hero .txt h4 { font-size: 1.7rem; line-height: 1.05; margin: 8px 0 10px; color: var(--ink); letter-spacing: -.02em; }
.demo-hero .txt p { font-size: .8rem; color: #777; margin-bottom: 14px; }
.demo-hero .txt .mini-btn { display: inline-block; background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; padding: 8px 16px; border-radius: 100px; }
.demo-photo { background:
  linear-gradient(135deg, rgba(17,109,255,.92), rgba(10,80,199,.8)),
  radial-gradient(circle at 70% 30%, rgba(255,255,255,.45), transparent 50%);
  position: relative; min-height: 210px; }
.demo-photo .avatar { position: absolute; inset: 0; margin: auto; width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; box-shadow: var(--shadow-md); }
.demo-strip { display: flex; gap: 10px; padding: 16px 22px 22px; }
.demo-strip .card { flex: 1; height: 56px; border-radius: 8px; background: #F3F5F8; border: 1px solid #eee; }

/* Floating chat card */
.hero-visual { position: relative; }
.hero-chip {
  position: absolute; left: 20px; bottom: -26px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 14px 16px; width: 232px; z-index: 2;
  display: flex; gap: 11px; align-items: flex-start;
}
.hero-chip .ping { width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #5A9BFF, #116DFF 55%, #0A50C7); flex: none; }
.hero-chip strong { display: block; color: var(--ink); font-size: .82rem; margin-bottom: 2px; }
.hero-chip small { font-size: .76rem; color: var(--muted); line-height: 1.4; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 28px; position: relative; transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 18px; }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- Templates (pill filter + carousel) ---------- */
.pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 4px auto 36px; max-width: 100%; }
.pill { padding: 9px 18px; border-radius: 100px; font-weight: 600; font-size: .92rem; background: var(--bg-gray); color: var(--ink); border: 1.5px solid transparent; cursor: pointer; transition: background .15s, color .15s; white-space: nowrap; }
.pill:hover { background: #E6EAF1; }
.pill.on { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.pill.on:hover { background: var(--accent-dark); }

.carousel { position: relative; }
.themes-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 4px 14px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.themes-track::-webkit-scrollbar { display: none; }
.theme-card { flex: 0 0 336px; max-width: 336px; scroll-snap-align: start; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.theme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.theme-card.hide { display: none; }
.theme-preview { position: relative; height: 236px; overflow: hidden; background: var(--bg-gray); border-bottom: 1px solid var(--border); cursor: pointer; }
/* Live iframe thumbnail, scaled to card width (1280 * .2625 = 336) */
.theme-preview iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 900px; border: 0;
  transform: scale(.2625); transform-origin: top left; pointer-events: none; }

.car-nav { position: absolute; top: calc(50% - 22px); transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); font-size: 1.7rem; line-height: 1; color: var(--ink); display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s, opacity .2s; }
.car-nav:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.car-nav.prev { left: -12px; }
.car-nav.next { right: -12px; }
.car-nav[disabled] { opacity: 0; pointer-events: none; }
.theme-preview .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,17,22,0) 55%, rgba(14,17,22,.55)); opacity: 0; transition: opacity .2s; display: flex; align-items: center; justify-content: center; }
.theme-card:hover .theme-preview .overlay { opacity: 1; }
.theme-preview .overlay .btn { transform: translateY(8px); transition: transform .2s; }
.theme-card:hover .theme-preview .overlay .btn { transform: none; }
.theme-meta { padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.theme-meta strong { color: var(--ink); font-size: 1.05rem; display: block; }
.theme-meta small { color: var(--muted); font-size: .84rem; }
.theme-tag { font-size: .72rem; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }

/* ---------- Theme viewer modal ---------- */
.viewer { position: fixed; inset: 0; z-index: 1000; display: none; }
.viewer.open { display: block; }
.viewer-backdrop { position: absolute; inset: 0; background: rgba(14, 17, 22, .72); backdrop-filter: blur(3px); }
.viewer-panel { position: absolute; inset: 3.2vh 3vw; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; animation: pop .22s ease; }
.viewer-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--bg-soft); flex-wrap: wrap; }
.viewer-bar .vb-title { font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.viewer-bar .vb-title .dot { width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #5A9BFF, #116DFF 55%, #0A50C7); }
.viewer-bar .vb-title small { font-weight: 600; color: var(--muted); font-size: .82rem; }
.viewer-toggle { display: flex; background: var(--bg-gray); border-radius: 100px; padding: 4px; margin: 0 auto; }
.viewer-toggle button { padding: 7px 16px; border-radius: 100px; font-weight: 700; font-size: .85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.viewer-toggle button.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.viewer-toggle button svg { width: 15px; height: 15px; }
.viewer-actions { display: flex; align-items: center; gap: 10px; }
.viewer-actions a { font-weight: 700; font-size: .88rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.viewer-close { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-gray); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--ink); transition: background .15s; }
.viewer-close:hover { background: var(--border); }
.viewer-stage { flex: 1; background: var(--bg-gray); overflow: auto; display: flex; justify-content: center; padding: 0; }
.viewer-frame-wrap { width: 100%; height: 100%; transition: max-width .3s ease; background: #fff; }
.viewer-frame-wrap.mobile { max-width: 390px; margin: 18px auto; height: calc(100% - 36px); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid #0E1116; }
.viewer-stage iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Pricing ---------- */
/* ---------- Billing toggle ---------- */
.billing-toggle-wrap { text-align: center; margin-bottom: 30px; }
.billing-toggle { display: inline-flex; align-items: center; gap: 2px; background: #fff; border: 1.5px solid var(--border-strong); border-radius: 100px; padding: 5px; }
.billing-btn { padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: .92rem; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; transition: background .2s, color .2s; }
.billing-btn.active { background: var(--ink); color: #fff; }
.billing-btn .save-badge { background: var(--accent-soft); color: var(--accent-dark); font-size: .72rem; font-weight: 800; padding: 3px 9px; border-radius: 100px; letter-spacing: .01em; }
.billing-btn.active .save-badge { background: rgba(255,255,255,.18); color: #fff; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.pricing-grid .price-card { padding: 30px 24px; }
.pricing-grid .price-card.featured { padding-top: 42px; }
.pricing-grid .price-amount .amt { font-size: 2.5rem; }
.pricing-grid .price-features li small { display: block; color: var(--muted); font-weight: 500; font-size: .82rem; margin-top: 2px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--accent); box-shadow: var(--shadow-md); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-weight: 800; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.price-card .kicker { color: var(--muted); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.price-card h3 { margin: 8px 0 4px; font-size: 1.3rem; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.price-amount .amt { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.price-amount .per { color: var(--muted); font-weight: 600; font-size: .95rem; }
.price-card .desc { color: var(--muted); font-size: .95rem; margin-bottom: 20px; min-height: 44px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--text); }
.price-features li .chk { color: var(--accent); font-weight: 800; flex: none; margin-top: 1px; }
.pricing-note { text-align: center; margin-top: 34px; color: var(--muted); font-size: .92rem; }
.pricing-note strong { color: var(--ink); }

/* Bespoke online-stores band */
.stores-band { margin-top: 30px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; }
.stores-band::before { content: ""; position: absolute; top: -70px; right: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(17,109,255,.3), transparent 65%); }
.stores-text { position: relative; max-width: 640px; }
.stores-text .kicker { color: #7FB0FF; font-weight: 700; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; }
.stores-text h3 { color: #fff; font-size: 1.5rem; margin: 6px 0 8px; }
.stores-text p { color: rgba(255,255,255,.72); font-size: .98rem; }
.stores-band .btn { position: relative; flex: none; }

/* Personal-agent differentiator band */
.agent-band { background: var(--accent-tint); border: 1px solid var(--accent-soft); border-radius: var(--radius-lg); padding: 32px 38px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.agent-avatar { width: 74px; height: 74px; border-radius: 50%; background: #fff; border: 1px solid var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex: none; box-shadow: var(--shadow-sm); }
.agent-text { flex: 1; min-width: 260px; }
.agent-text .eyebrow { margin-bottom: 6px; }
.agent-text h3 { color: var(--ink); font-size: 1.45rem; margin: 4px 0 8px; }
.agent-text p { color: var(--text); font-size: .98rem; max-width: 640px; }
.agent-cta { flex: none; }
@media (max-width: 820px) { .agent-band { padding: 26px 22px; } .agent-cta { width: 100%; } }

/* ---------- Founder note (human touch) ---------- */
.note-band { background: var(--ink); border-radius: var(--radius-lg); padding: 54px 52px; display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; }
.note-avatar { width: 96px; height: 96px; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #5A9BFF, #116DFF 55%, #0A50C7); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; box-shadow: var(--shadow-blue); flex: none; }
.note-band h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.note-band p { color: rgba(255,255,255,.78); font-size: 1.06rem; margin-bottom: 8px; }
.note-sign { font-family: 'Plus Jakarta Sans'; font-style: italic; color: var(--accent); font-weight: 700; margin-top: 14px; }
.note-sign span { display: block; color: rgba(255,255,255,.5); font-style: normal; font-weight: 500; font-size: .86rem; margin-top: 2px; }

/* ---------- Feature band ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { padding: 8px; }
.feature .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy .lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 28px; }
.contact-perks { display: flex; flex-direction: column; gap: 16px; }
.contact-perks li { display: flex; gap: 13px; align-items: flex-start; }
.contact-perks .ico { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex: none; }
.contact-perks strong { display: block; color: var(--ink); font-size: .98rem; }
.contact-perks small { color: var(--muted); font-size: .88rem; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: 11px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(17,109,255,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-fine { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.form-fine a { color: var(--accent); font-weight: 600; }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 11px; font-size: .92rem; }
.form-msg.show { display: block; }
.form-msg.ok { background: var(--accent-tint); border: 1px solid var(--accent-soft); color: var(--accent-dark); }

/* ---------- Disclaimers ---------- */
.disc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.disc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.disc h4 { font-size: 1rem; margin-bottom: 8px; display: flex; gap: 9px; align-items: center; }
.disc h4 .m { color: var(--accent); }
.disc p { font-size: .92rem; color: var(--muted); }
.disc-legal { text-align: center; margin-top: 34px; font-size: .84rem; color: var(--muted); max-width: 760px; margin-left: auto; margin-right: auto; }
.disc-legal a { color: var(--accent); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(17,109,255,.34), transparent 65%); }
.cta-band h2 { color: #fff; position: relative; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.72); position: relative; max-width: 520px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand small { color: rgba(255,255,255,.5); }
.footer-about p { font-size: .94rem; max-width: 320px; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer-col a { display: block; font-size: .94rem; margin-bottom: 11px; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08); padding: 10px 16px; border-radius: 100px; color: #fff; font-weight: 600; font-size: .9rem; transition: background .2s; margin-top: 18px; }
.footer-social:hover { background: #1877F2; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-size: .84rem; }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Legal pages ---------- */
.legal-page { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: .9rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-page p, .legal-page li { color: var(--text); font-size: 1rem; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 22px; }
.legal-page a { color: var(--accent); font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-weight: 600; margin-bottom: 30px; }
.back-link:hover { color: var(--ink); }

/* ---------- Cookie consent ---------- */
#cookieConsent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 560px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease;
}
#cookieConsent.show { opacity: 1; transform: none; }
.cookie-consent-inner p { font-size: .88rem; color: var(--text); margin-bottom: 14px; line-height: 1.5; }
.cookie-consent-inner p a { color: var(--accent); font-weight: 600; }
.cookie-consent-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.btn-sm { padding: 9px 18px; font-size: .88rem; }
@media (max-width: 480px) {
  #cookieConsent { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cookie-consent-actions { justify-content: stretch; }
  .cookie-consent-actions .btn { flex: 1; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 42%);
  transform: translateY(130%); transition: transform .28s ease; pointer-events: none;
}
.sticky-cta .btn { pointer-events: auto; box-shadow: 0 10px 26px rgba(17, 109, 255, .4); }
.sticky-cta.show { transform: none; }
@media (max-width: 820px) { .sticky-cta { display: block; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust, .hero-copy .kicker { justify-content: center; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .features { grid-template-columns: 1fr 1fr; }
  .note-band { grid-template-columns: 1fr; text-align: center; padding: 44px 30px; }
  .note-avatar { margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-mid { display: none; }
  .nav-cta .btn-accent { display: none; }   /* header CTA hidden on mobile; lives in the menu instead */
  .nav-toggle { display: flex; }
  .site-header.open .nav-mid { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; padding: 18px 22px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .site-header.open .nav-mid .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .site-header.open .nav-mid .nav-links a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--bg-gray); }
  .site-header.open .nav-mid .menu-cta { display: inline-flex; width: 100%; margin-top: 12px; }
  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .theme-card { flex-basis: 80vw; max-width: 80vw; }
  .car-nav { display: none; }
  .pills { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; padding-bottom: 6px; }
  .pills::-webkit-scrollbar { display: none; }
  .stores-band { padding: 28px 24px; }
  .disc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .cta-band { padding: 48px 26px; }
  .hero-chip { display: none; }
  .viewer-panel { inset: 0; border-radius: 0; }
  .viewer-toggle { order: 3; width: 100%; margin: 4px 0 0; }
}
@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
