/* Gleam Design System — shared stylesheet */
/* Google Font loaded in each HTML file */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:             #F4F5F7;
  --surface:        #FFFFFF;
  --surface-2:      #f8f9fb;
  --fg:             #08192B;
  --fg-soft:        #1a2f47;
  --body-text:      #3d5068;
  --body-light:     #5a6b7d;
  --muted:          #9aa3b0;
  --border:         #dde1e8;
  --accent:         #FF6A00;
  --accent-dark:    #e55e00;
  --accent-alpha:   rgba(255, 106, 0, 0.10);
  --accent-alpha-2: rgba(255, 106, 0, 0.06);
  --success:        #1a9e5c;
  --success-bg:     rgba(26, 158, 92, 0.12);
  --error:          #d63031;
  --error-bg:       rgba(214, 48, 49, 0.12);

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(8,25,43,0.06), 0 1px 2px rgba(8,25,43,0.04);
  --shadow-md: 0 4px 16px rgba(8,25,43,0.08), 0 2px 4px rgba(8,25,43,0.04);
  --shadow-lg: 0 12px 40px rgba(8,25,43,0.12), 0 4px 12px rgba(8,25,43,0.06);

  --max-w:      1200px;
  --max-w-text: 720px;
  --section-py: clamp(56px, 8vw, 104px);
  --gutter:     clamp(20px, 5vw, 48px);
}

/* ── BASE ─────────────────────────────────── */
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; }
a     { color: inherit; text-decoration: none; }

/* ── LAYOUT ───────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── TYPE ─────────────────────────────────── */
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.eyebrow-accent { color: var(--accent); }

h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.08; letter-spacing: -1.5px; color: var(--fg); }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.15; letter-spacing: -0.8px; color: var(--fg); }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.3; letter-spacing: -0.3px; color: var(--fg); }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--fg); }
h5 { font-size: 15px; font-weight: 600; color: var(--fg); }

p   { color: var(--body-text); line-height: 1.7; }
.lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.65; color: var(--body-text); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: background 0.2s, transform 0.1s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent; outline: none; text-decoration: none;
  letter-spacing: 0.1px; white-space: nowrap; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:active        { transform: scale(0.98); }

.btn-primary   { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 2px 8px rgba(255,106,0,0.28); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); box-shadow: 0 4px 16px rgba(255,106,0,0.34); }

.btn-secondary { background: var(--surface); color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--fg-soft); }

.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-lg  { padding: 16px 36px; font-size: 16px; }
.btn-sm  { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── INPUTS ───────────────────────────────── */
.input {
  width: 100%; border-radius: var(--r-sm); padding: 13px 16px;
  font-size: 15px; font-family: var(--font); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--fg);
}
.input::placeholder { color: var(--muted); }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-alpha); background: var(--surface); }

.input-dark {
  background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20);
  color: #fff;
}
.input-dark::placeholder { color: rgba(255,255,255,0.4); }
.input-dark:focus { border-color: var(--accent); background: rgba(255,255,255,0.15); box-shadow: 0 0 0 3px rgba(255,106,0,0.20); }

/* ── CARDS ────────────────────────────────── */
.card { background: var(--surface); border-radius: var(--r-lg); border: 1px solid var(--border); }
.card-hover { transition: box-shadow 0.2s, transform 0.2s; }
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── SECTION HEADER ───────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ── HEADER ───────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-wordmark { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; color: var(--fg); }

.desktop-nav { display: none; align-items: center; gap: 4px; }
.desktop-nav a { font-size: 14px; font-weight: 500; color: var(--body-text); padding: 6px 12px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.desktop-nav a:hover { color: var(--fg); background: var(--surface-2); }
.desktop-nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-login { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; display: none; }
.header-login:hover { color: var(--fg); }
.header-cta { display: none; }

@media (min-width: 768px) {
  .desktop-nav { display: flex; }
  .header-login { display: block; }
  .header-cta  { display: inline-flex; }
  .nav-toggle  { display: none !important; }
}

/* mobile nav toggle */
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px var(--gutter) 24px; z-index: 99; box-shadow: var(--shadow-md); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; font-size: 16px; font-weight: 500; color: var(--fg); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav-footer { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── HERO ─────────────────────────────────── */
.hero { padding: clamp(56px,8vw,96px) 0 clamp(48px,6vw,72px); background: var(--surface); overflow: hidden; position: relative; }
.hero::after { content:''; position:absolute; top:-120px; right:-160px; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(255,106,0,0.055) 0%,transparent 68%); pointer-events:none; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content .lead { margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-visual { display: flex; justify-content: center; }
.hero-visual svg, .hero-visual .phone-wrap { max-width: 320px; width: 100%; }

/* ── TRUST STRIP ──────────────────────────── */
.trust-strip { background: var(--fg); padding: 32px 0; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 40px; }
.trust-divider { font-size: 11px; font-weight: 500; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.45); padding-right: 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 36px; }
.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-badge-text strong { display: block; font-size: 13px; font-weight: 600; color: #fff; line-height: 1.2; }
.trust-badge-text span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── FEATURES ─────────────────────────────── */
.features { padding: var(--section-py) 0; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .features-grid { grid-template-columns: repeat(4,1fr); } }

.feature-card { padding: 28px 24px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); transition: box-shadow 0.2s, transform 0.2s; }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-alpha); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; line-height: 1.65; color: var(--body-light); }

/* ── HOW IT WORKS ─────────────────────────── */
.how-it-works { padding: var(--section-py) 0; background: var(--surface); }
.steps { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(4,1fr); } }

.step { position: relative; padding: 32px 20px; text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 12px rgba(255,106,0,0.28); }
.step h4  { margin-bottom: 10px; }
.step p   { font-size: 14px; color: var(--body-light); }
@media (min-width: 700px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 55px; left: calc(50% + 28px);
    width: calc(100% - 56px); height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%);
    border-radius: 2px;
  }
}

/* ── USE CASES ────────────────────────────── */
.use-cases { padding: var(--section-py) 0; }
.use-cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width: 700px) { .use-cases-grid { grid-template-columns: repeat(4,1fr); gap: 24px; } }

.use-case-card { padding: 28px 20px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); text-align: center; }
.use-case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); transition: box-shadow 0.2s, transform 0.2s; }
.use-case-emoji { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.use-case-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.use-case-card p  { font-size: 13px; color: var(--body-light); line-height: 1.55; }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials { padding: var(--section-py) 0; background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--bg); }
.testimonial-stars { color: var(--accent); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; line-height: 1.75; color: var(--fg); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-alpha); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.2; }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── PRICING ──────────────────────────────── */
.pricing { padding: var(--section-py) 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card { padding: 32px 28px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); position: relative; }
.pricing-card.featured { border-color: var(--accent); border-width: 2px; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-price { font-size: 44px; font-weight: 700; letter-spacing: -1.5px; color: var(--fg); line-height: 1; margin-bottom: 8px; }
.pricing-price sub { font-size: 16px; font-weight: 400; vertical-align: baseline; letter-spacing: 0; color: var(--muted); }
.pricing-desc { font-size: 14px; color: var(--body-light); margin-bottom: 20px; line-height: 1.5; }
.coming-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 20px; }
.coming-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.35} }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li { font-size: 14px; color: var(--body-text); display: flex; align-items: flex-start; gap: 10px; }
.pricing-features li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  border-radius: 50%; background-color: var(--accent-alpha);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%23FF6A00' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── FAQ ──────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; background: var(--surface); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--fg); list-style: none;
  user-select: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-chevron { flex-shrink: 0; color: var(--accent); font-size: 20px; font-weight: 300; line-height: 1; transition: transform 0.2s; }
details[open] .faq-chevron { transform: rotate(45deg); }
.faq-body { padding-bottom: 20px; font-size: 15px; line-height: 1.75; color: var(--body-text); padding-right: 32px; }

/* ── CTA BAND ─────────────────────────────── */
.cta-band { padding: var(--section-py) 0; background: var(--fg); position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; top:-80px; right:-120px; width:480px; height:480px; border-radius:50%; background:radial-gradient(circle,rgba(255,106,0,0.14) 0%,transparent 68%); pointer-events:none; }
.cta-band::after  { content:''; position:absolute; bottom:-80px; left:-80px; width:320px; height:320px; border-radius:50%; background:radial-gradient(circle,rgba(255,106,0,0.08) 0%,transparent 68%); pointer-events:none; }
.cta-content { text-align: center; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.cta-content .eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content .lead { color: rgba(255,255,255,0.65); margin-bottom: 40px; }

/* Waitlist form */
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-input-row { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 520px) { .waitlist-input-row { flex-direction: row; } }
.waitlist-input-row .input { flex: 1; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; text-align: left; }
.consent-check { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.consent-label { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; cursor: pointer; }
.consent-label a { color: rgba(255,255,255,0.75); text-decoration: underline; }

.form-success { display: none; text-align: center; padding: 28px; border-radius: var(--r-lg); background: rgba(26,158,92,0.14); border: 1px solid rgba(26,158,92,0.30); }
.form-success.show { display: block; }
.form-success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success h4 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.form-success p  { color: rgba(255,255,255,0.65); font-size: 14px; }

.form-error { display: none; font-size: 13px; color: #ff9a8a; padding: 10px 14px; background: rgba(214,48,49,0.14); border-radius: var(--r-sm); border: 1px solid rgba(214,48,49,0.28); margin-top: 4px; }
.form-error.show { display: block; }

/* ── FOOTER ───────────────────────────────── */
.site-footer { background: var(--fg); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 220px; margin-top: 12px; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.footer-copy  { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── INNER PAGE HERO ──────────────────────── */
.page-hero { padding: clamp(48px,7vw,80px) 0 clamp(40px,5vw,64px); background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(32px,5vw,56px); margin-bottom: 18px; max-width: 680px; }
.page-hero .lead { max-width: 580px; }

/* ── PROSE (privacy/terms) ────────────────── */
.prose { max-width: var(--max-w-text); margin: 0 auto; padding: var(--section-py) var(--gutter); }
.prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; }
.prose h3 { font-size: 17px; margin-top: 28px; margin-bottom: 8px; }
.prose p  { margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.prose ul li { font-size: 15px; color: var(--body-text); line-height: 1.7; }
.prose a  { color: var(--accent); text-decoration: underline; }
.prose .last-updated { font-size: 13px; color: var(--muted); margin-top: -8px; margin-bottom: 32px; display: block; }

/* ── HERO FORM LAYOUT ─────────────────────── */
.hero-copy .eyebrow { margin-bottom: 14px; }
.hero-copy h1       { margin-bottom: 16px; }
.hero-copy .hero-sub {
  margin-bottom: 28px; max-width: 520px;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: var(--body-text);
}
.hero-form { max-width: 460px; }
.input-group {
  display: flex; flex-direction: column; gap: 10px;
}
@media (min-width: 500px) {
  .input-group { flex-direction: row; gap: 8px; }
  .input-group .input { flex: 1; min-width: 0; }
  .input-group .btn   { flex-shrink: 0; }
}
.form-hint { font-size: 13px; color: var(--body-light); margin-top: 8px; }

/* ── UTILS ────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── FEATURES PAGE DEEP SECTIONS ─────────── */
.feature-deep { padding: var(--section-py) 0; }
.feature-deep:nth-child(even) { background: var(--surface); }
.feature-deep-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .feature-deep-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.feature-deep-grid.reverse { }
@media (min-width: 900px) { .feature-deep-grid.reverse .feature-deep-visual { order: -1; } }

.feature-deep-content .eyebrow { margin-bottom: 12px; }
.feature-deep-content h2 { font-size: clamp(24px,3.5vw,40px); margin-bottom: 16px; }
.feature-deep-content .lead { margin-bottom: 28px; font-size: 17px; }
.feature-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feature-benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--body-text); }
.benefit-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-alpha); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

.feature-mockup { border-radius: var(--r-xl); background: var(--bg); border: 1px solid var(--border); overflow: hidden; padding: 24px; min-height: 280px; display: flex; align-items: center; justify-content: center; }

/* ── ABOUT PAGE ───────────────────────────── */
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .about-values-grid { grid-template-columns: repeat(3,1fr); } }
.value-card { padding: 28px 24px; border-radius: var(--r-lg); border: 1px solid var(--border); background: var(--surface); }
.value-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-alpha); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p  { font-size: 14px; color: var(--body-light); }

/* ── FAQ CATEGORIES ───────────────────────── */
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; justify-content: center; }
.faq-cat-btn { padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border); font-size: 13px; font-weight: 500; color: var(--body-text); cursor: pointer; background: var(--surface); transition: background 0.2s, color 0.2s, border-color 0.2s; font-family: var(--font); }
.faq-cat-btn:hover, .faq-cat-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
