/* ═══════════════════════════════════════════════════════════════════
   Wamome — Complete Light + Orange Design System
   Covers every CSS variable and class used across all HTML pages
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. CSS Variables ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-0: #ffffff;
  --bg-1: #faf8f5;
  --bg-2: #f2ede6;
  --bg-3: #e8e0d5;
  --bg-4: #ddd4c7;
  --bg-card: #ffffff;

  /* Orange palette (primary brand) */
  --orange:         #f97316;
  --orange-bright:  #fb923c;
  --orange-dark:    #ea580c;
  --orange-deep:    #c2410c;
  --amber:          #f59e0b;

  /* Supporting palette */
  --cyan:           #0891b2;
  --cyan-bright:    #06b6d4;
  --violet:         #7c3aed;
  --violet-bright:  #8b5cf6;
  --green:          #059669;
  --green-bright:   #10b981;
  --blue:           #2563eb;
  --blue-bright:    #3b82f6;
  --red:            #dc2626;

  /* Text */
  --text-primary:   #1c1209;
  --text-secondary: #4a3f32;
  --text-muted:     #8b7d6b;
  --text-bright:    #1c1209;

  /* Borders & Shadows */
  --border:         rgba(0,0,0,0.08);
  --border-strong:  rgba(0,0,0,0.14);
  --border-bright:  rgba(249,115,22,0.35);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06),0 1px 6px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08),0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10),0 4px 12px rgba(0,0,0,0.06);
  --shadow-orange: 0 8px 28px rgba(249,115,22,0.28);

  /* Misc */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --radius-xl:  30px;
  --transition: all 0.22s ease;
  --font-head:  'Sora', 'Inter', system-ui, sans-serif;
  --font-body:  'Figtree', 'Inter', system-ui, sans-serif;
}

/* ── 2. Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
p { color: var(--text-secondary); }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ── 3. Layout Utilities ──────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 28px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 12px; line-height: 1.15;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted);
  max-width: 580px; line-height: 1.7;
}
.section-head.center .section-subtitle { margin: 0 auto; }

/* Decorative backgrounds */
.bg-dots {
  background-image: radial-gradient(circle, rgba(249,115,22,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── 4. Typography Utilities ──────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-violet {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; }
.sub  { font-size: .9rem;   color: var(--text-muted); }

/* ── 5. Section Tag ───────────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: 20px;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange-dark);
  font-size: .73rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ── 6. Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px;
  font-family: var(--font-head);
  font-size: .88rem; font-weight: 600;
  border: none; cursor: pointer; white-space: nowrap;
  text-decoration: none; line-height: 1;
  transition: all .22s cubic-bezier(.34,1.4,.64,1);
}
.btn-primary {
  background: var(--orange); color: white;
  box-shadow: 0 4px 14px rgba(249,115,22,0.30);
}
.btn-primary:hover {
  background: var(--orange-dark); color: white;
  transform: translateY(-2px); box-shadow: var(--shadow-orange);
  text-decoration: none;
}
.btn-secondary {
  background: white; color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--orange); color: var(--orange-dark);
  transform: translateY(-2px); text-decoration: none;
}
.btn-outline {
  background: transparent; color: var(--orange-dark);
  border: 1.5px solid rgba(249,115,22,0.35);
}
.btn-outline:hover {
  background: rgba(249,115,22,0.07); text-decoration: none;
}
.btn-ghost {
  background: transparent; color: var(--text-secondary);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-2); color: var(--text-primary); text-decoration: none;
}
.btn-sm  { padding: 8px 16px;  font-size: .8rem; border-radius: 9px; }
.btn-lg  { padding: 15px 32px; font-size: .95rem; border-radius: 14px; }

/* ── 7. Site Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: 66px; max-width: 1160px; margin: 0 auto; padding: 0 28px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; color: inherit;
}
.logo:hover { text-decoration: none; }
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-wordmark, .logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: -.01em;
}

/* Nav */
.nav-main {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-main a {
  padding: 7px 12px; border-radius: 8px;
  font-size: .855rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  transition: var(--transition);
}
.nav-main a:hover, .nav-main a.active {
  color: var(--orange-dark);
  background: rgba(249,115,22,0.09);
  text-decoration: none;
}
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  inset: 0; z-index: 99;
  background: white;
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu nav {
  display: flex; flex-direction: column; gap: 4px;
  width: 100%; max-width: 320px; padding: 0 24px;
}
.mobile-menu nav a {
  padding: 14px 18px; border-radius: 12px;
  font-size: 1rem; font-weight: 500;
  color: var(--text-secondary); text-decoration: none;
  border: 1px solid transparent; transition: var(--transition);
}
.mobile-menu nav a:hover {
  background: rgba(249,115,22,0.07);
  color: var(--orange-dark);
  border-color: rgba(249,115,22,0.18);
}

/* ── 8. Hero ──────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.page-hero {
  padding: 120px 0 70px;
  position: relative; overflow: hidden;
}
.page-hero-content { text-align: center; max-width: 700px; margin: 0 auto; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p   { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.09);
  border: 1px solid rgba(249,115,22,0.28);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: .78rem; font-weight: 600;
  color: var(--orange-dark); margin-bottom: 24px;
}
.hero-badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(249,115,22,0.15);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); display: block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.55; transform:scale(1.3); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-lead {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: var(--text-muted); font-weight: 500;
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--green); }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-glow {
  position: absolute; width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.16) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Glow orbs */
.glow-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.glow-violet { background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%); }
.glow-cyan   { background: radial-gradient(circle, rgba(8,145,178,0.12) 0%, transparent 70%); }
.glow-blue   { background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%); }

/* ── 9. Phone Mockup ──────────────────────────────────────────────── */
.phone-mockup {
  width: 230px; height: 468px;
  background: white;
  border-radius: 36px;
  border: 2px solid var(--border-strong);
  box-shadow: var(--shadow-lg), 0 0 0 5px rgba(249,115,22,0.06);
  overflow: hidden; flex-shrink: 0;
}
.hero-phones { position: relative; display: flex; }
.hero-phones .phone-mockup:nth-child(2) {
  transform: translateY(30px) scale(0.92);
  opacity: 0.72; position: absolute; right: -88px; z-index: 0;
}
.hero-phones .phone-mockup:nth-child(1) { z-index: 1; position: relative; }

.phone-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px 6px; font-size: .6rem;
  font-weight: 600; color: var(--text-secondary);
}
.phone-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px 10px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  flex-shrink: 0;
}
.phone-header-name  { font-size: .72rem; font-weight: 700; color: var(--text-primary); }
.phone-header-status{ font-size: .6rem;  color: var(--green); }
.phone-header-info  { flex: 1; }
.phone-messages { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.msg-bubble {
  display: inline-block; padding: 7px 11px;
  border-radius: 14px; font-size: .68rem; line-height: 1.5; max-width: 80%;
}
.msg-in  .msg-bubble { background: var(--bg-2); color: var(--text-primary); border-radius: 4px 14px 14px 14px; }
.msg-out { text-align: right; }
.msg-out .msg-bubble { background: var(--orange); color: white; border-radius: 14px 4px 14px 14px; }
.msg-time { font-size: .58rem; color: var(--text-muted); margin-top: 2px; display: block; }
.msg { margin-bottom: 4px; }
.phone-input-bar {
  display: flex; align-items: center; gap: 6px;
  margin: 8px 12px; background: var(--bg-2);
  border-radius: 20px; padding: 6px 10px;
}
.phone-input-field { flex: 1; font-size: .65rem; color: var(--text-muted); }
.phone-send-btn {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: white;
  font-size: .6rem; display: flex; align-items: center; justify-content: center;
}
.mock-message-row { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.mock-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-3); flex-shrink: 0; }
.mock-bubble {
  padding: 7px 10px; border-radius: 12px; font-size: .65rem;
  line-height: 1.5; max-width: 78%;
  background: var(--bg-2); color: var(--text-primary);
}
.mock-bubble.sent { background: var(--orange); color: white; }
.mock-reactions { display: flex; gap: 4px; margin-top: 3px; }
.mock-reaction {
  font-size: .6rem; padding: 2px 6px;
  background: white; border: 1px solid var(--border);
  border-radius: 10px;
}
.disappear-timer {
  font-size: .58rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 3px; margin-top: 4px;
}

/* ── 10. Desktop Mockup ───────────────────────────────────────────── */
.desktop-mockup {
  background: white; border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.desktop-toolbar {
  height: 34px; background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
}
.dt-dots { display: flex; gap: 5px; }
.dt-dot  { width: 10px; height: 10px; border-radius: 50%; }
.dt-dot-r { background: #fc615d; }
.dt-dot-y { background: #fdbc40; }
.dt-dot-g { background: #35cd4b; }
.dt-url-bar {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 5px; background: white; border-radius: 5px;
  padding: 3px 10px; margin: 0 20px;
  border: 1px solid var(--border);
}
.dt-url-text { font-size: .62rem; color: var(--text-muted); }

.desktop-app { display: flex; height: 340px; }
.desktop-sidebar {
  width: 186px; border-right: 1px solid var(--border);
  background: var(--bg-1); flex-shrink: 0;
  overflow: hidden;
}
.sidebar-search { padding: 10px 10px 6px; }
.sidebar-search-bar {
  display: flex; align-items: center; gap: 5px;
  background: white; border: 1px solid var(--border);
  border-radius: 7px; padding: 5px 9px;
}
.sidebar-search-text { font-size: .65rem; color: var(--text-muted); }
.chat-list { display: flex; flex-direction: column; }
.chat-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; cursor: pointer; transition: var(--transition);
}
.chat-item:hover, .chat-item.active { background: rgba(249,115,22,0.09); }
.chat-item-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.chat-item-info { flex: 1; overflow: hidden; }
.chat-item-name    { font-size: .7rem;  font-weight: 700; color: var(--text-primary); }
.chat-item-preview { font-size: .63rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-item-meta    { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.chat-item-time    { font-size: .58rem; color: var(--text-muted); }

.desktop-chat { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.desktop-chat-header {
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; background: white; flex-shrink: 0;
}
.desktop-chat-body {
  flex: 1; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 7px; overflow: hidden;
}
.desktop-chat-input { padding: 8px 12px; border-top: 1px solid var(--border); background: var(--bg-1); flex-shrink: 0; }
.dci-field { flex: 1; font-size: .7rem; color: var(--text-muted); padding: 6px; background: white; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; }
.dci-btn {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--orange); color: white;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.dci-btn svg { width: 12px; height: 12px; }

/* Main desktop layout alias */
.desktop-main { flex: 1; display: flex; flex-direction: column; }
.desktop-messages { flex:1; padding:12px 16px; display:flex; flex-direction:column; gap:7px; overflow:hidden; }
.desktop-input { padding:8px 12px; border-top:1px solid var(--border); background:var(--bg-1); }
.desktop-input-bar { display:flex; align-items:center; justify-content:space-between; background:white; border:1px solid var(--border); border-radius:8px; padding:7px 12px; }
.send-btn { width:24px;height:24px;border-radius:6px;background:var(--orange);color:white;display:flex;align-items:center;justify-content:center;font-size:.6rem; }

/* ── 11. Shield Visual ────────────────────────────────────────────── */
.shield-visual {
  width: 280px; height: 280px;
  position: relative; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.shield-ring {
  position: absolute; border-radius: 50%;
  animation: spin-ring 12s linear infinite;
}
.shield-ring-1 { width: 260px; height: 260px; border: 1px solid rgba(249,115,22,0.18); }
.shield-ring-2 { width: 200px; height: 200px; border: 1px dashed rgba(249,115,22,0.25); animation-duration: 18s; animation-direction: reverse; }
.shield-ring-3 { width: 140px; height: 140px; border: 1.5px solid rgba(249,115,22,0.35); animation-duration: 8s; }
@keyframes spin-ring { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.shield-center {
  width: 78px; height: 78px;
  background: rgba(249,115,22,0.10);
  border-radius: 50%; border: 2px solid rgba(249,115,22,0.28);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  color: var(--orange);
}
.shield-center svg { width: 32px; height: 32px; }

/* ── 12. Features Strip ───────────────────────────────────────────── */
.features-strip {
  background: var(--bg-1);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.features-strip-inner {
  display: flex; gap: 36px;
  justify-content: center; align-items: center; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500; color: var(--text-secondary);
}
.strip-item svg { width: 16px; height: 16px; color: var(--orange); }

/* ── 13. Value Grid ───────────────────────────────────────────────── */
.value-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.value-cell {
  background: var(--bg-1); padding: 30px 26px;
  transition: var(--transition);
}
.value-cell:hover { background: var(--bg-0); }
.value-cell .icon { font-size: 1.5rem; margin-bottom: 12px; }
.value-cell h3    { font-size: .95rem; margin-bottom: 7px; }
.value-cell p     { font-size: .84rem; color: var(--text-secondary); line-height: 1.6; }

/* ── 14. Card ─────────────────────────────────────────────────────── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(249,115,22,0.2); transform: translateY(-3px); }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.25rem;
}
.card-icon.ci-orange { background: rgba(249,115,22,0.12); }
.card-icon.ci-blue   { background: rgba(37,99,235,0.09); }
.card-icon.ci-green  { background: rgba(5,150,105,0.09); }
.card-icon.ci-violet { background: rgba(124,58,237,0.09); }
.card-icon.ci-cyan   { background: rgba(8,145,178,0.09); }
.card-icon.ci-amber  { background: rgba(245,158,11,0.10); }

/* ── 15. Split Section ────────────────────────────────────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content .lead { margin-bottom: 22px; }
.split-check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.split-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text-secondary);
}
.split-check-list li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ── 16. Privacy Visual (encryption rows) ─────────────────────────── */
.privacy-visual {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.enc-row    { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.enc-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, var(--orange), var(--amber));
  border-radius: 1px; position: relative; overflow: hidden;
}
.enc-line::after {
  content: ''; position: absolute; left: -30px; top: 0;
  width: 30px; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer { to { left: 100%; } }
.enc-node {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
}
.enc-node svg { width: 16px; height: 16px; color: var(--orange); }

/* Encryption explainer steps */
.enc-steps { display: flex; gap: 0; align-items: stretch; }
.enc-step {
  flex: 1; text-align: center; padding: 20px 12px;
  border-right: 1px solid var(--border);
  position: relative;
}
.enc-step:last-child { border-right: none; }
.enc-step-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(249,115,22,0.10);
  border: 1px solid rgba(249,115,22,0.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px; font-size: 1.1rem;
}
.enc-step-label { font-size: .8rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.enc-step-desc  { font-size: .72rem; color: var(--text-muted); line-height: 1.5; }
.enc-explainer  { background: var(--bg-1); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* ── 17. Why / Value Deep Cards ───────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(249,115,22,0.25); box-shadow: var(--shadow-sm); }
.why-card .number {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: rgba(249,115,22,0.22); line-height: 1; margin-bottom: 10px;
}
.value-deep-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.value-deep-card:hover { border-color: rgba(249,115,22,0.2); box-shadow: var(--shadow-md); }
.v-num {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
  color: rgba(249,115,22,0.2); margin-bottom: 10px;
}

/* ── 18. Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
}
.quote { font-size: .9rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: white; flex-shrink: 0;
}
.av-blue   { background: linear-gradient(135deg, var(--blue), var(--violet)); }
.av-cyan   { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.av-violet { background: linear-gradient(135deg, var(--violet), #c026d3); }
.av-green  { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.author-info .name { font-size: .85rem; font-weight: 700; color: var(--text-primary); }
.author-info .role { font-size: .75rem; color: var(--text-muted); }
.author-name { font-size: .85rem; font-weight: 700; color: var(--text-primary); }
.author-role { font-size: .75rem; color: var(--text-muted); }

/* ── 19. Roadmap Preview ──────────────────────────────────────────── */
.roadmap-preview { display: flex; flex-direction: column; }
.rm-phase {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.rm-phase:last-child { border-bottom: none; }
.rm-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rm-icon.done   { background: rgba(5,150,105,0.10); border: 1px solid rgba(5,150,105,0.2); }
.rm-icon.done   svg { color: var(--green); }
.rm-icon.active { background: rgba(249,115,22,0.10); border: 1px solid rgba(249,115,22,0.2); }
.rm-icon.active svg { color: var(--orange); }
.rm-icon.soon   { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.15); }
.rm-icon.soon   svg { color: var(--violet-bright); }
.rm-icon svg { width: 18px; height: 18px; }
.rm-info h4 { font-size: .93rem; font-weight: 700; margin-bottom: 3px; }
.rm-info p  { font-size: .82rem; color: var(--text-secondary); }

/* ── 20. Stats Band ───────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 800; letter-spacing: -.03em;
  line-height: 1; margin-bottom: 8px; color: white;
}
.stat-item .stat-label { font-size: .85rem; opacity: .85; font-weight: 500; }

/* ── 21. CTA / Waitlist Section ───────────────────────────────────── */
.cta-section {
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.10) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; padding: 90px 28px; }
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.cta-inner p  { font-size: 1.05rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto 36px; }
.cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.waitlist-big { max-width: 500px; margin: 0 auto 18px; }
.waitlist-big form { display: flex; gap: 0; }
.waitlist-big input {
  flex: 1; background: white;
  border: 1.5px solid var(--border-strong); border-right: none;
  border-radius: 12px 0 0 12px; padding: 13px 16px;
  font-family: var(--font-body); font-size: .9rem;
  color: var(--text-primary); outline: none; transition: var(--transition);
}
.waitlist-big input:focus { border-color: var(--orange); }
.waitlist-big button { border-radius: 0 12px 12px 0; padding: 13px 22px; font-size: .9rem; }
.waitlist-note { font-size: .78rem; color: var(--text-muted); text-align: center; }
.waitlist-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.waitlist-form input {
  flex: 1; min-width: 200px; padding: 12px 16px;
  background: white; border: 1.5px solid var(--border-strong);
  border-radius: 12px; font-size: .9rem; font-family: var(--font-body);
  color: var(--text-primary); outline: none; transition: var(--transition);
}
.waitlist-form input:focus { border-color: var(--orange); }

/* ── 22. Badges & Pills ───────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }
.badge-orange { background: rgba(249,115,22,0.12); color: var(--orange-dark); border: 1px solid rgba(249,115,22,0.25); }
.badge-blue   { background: rgba(37,99,235,0.09);  color: var(--blue);        border: 1px solid rgba(37,99,235,0.2); }
.badge-green  { background: rgba(5,150,105,0.09);  color: var(--green);       border: 1px solid rgba(5,150,105,0.2); }
.badge-amber  { background: rgba(245,158,11,0.12); color: #92400e;            border: 1px solid rgba(245,158,11,0.25); }
.badge-violet { background: rgba(124,58,237,0.09); color: var(--violet);      border: 1px solid rgba(124,58,237,0.2); }
.badge-cyan   { background: rgba(8,145,178,0.09);  color: var(--cyan);        border: 1px solid rgba(8,145,178,0.2); }

.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 20px; font-size: .72rem; font-weight: 600; }
.pill-done   { background: rgba(5,150,105,0.10); color: var(--green); border: 1px solid rgba(5,150,105,0.2); }
.pill-active { background: rgba(249,115,22,0.12); color: var(--orange-dark); border: 1px solid rgba(249,115,22,0.3); }
.pill-soon   { background: rgba(124,58,237,0.09); color: var(--violet); border: 1px solid rgba(124,58,237,0.2); }
.pill-future { background: var(--bg-2); color: var(--text-muted); border: 1px solid var(--border); }
.pill-dot    { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── 23. FAQ Accordion ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 0; cursor: pointer; gap: 18px;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-body); font-size: .94rem; font-weight: 600;
  color: var(--text-primary); transition: color .2s;
}
.faq-question:hover { color: var(--orange-dark); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .85rem; font-weight: 600;
  color: var(--text-muted); transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.28);
  color: var(--orange-dark); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 0 16px; font-size: .88rem; color: var(--text-secondary); line-height: 1.75; }
.faq-answer-inner a { color: var(--orange); }

/* ── 24. Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.6fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }
.footer-col h4, .footer-col h5 {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.footer-col a { display: block; padding: 5px 0; font-size: .875rem; color: var(--text-secondary); transition: color .2s; }
.footer-col a:hover { color: var(--orange); text-decoration: none; }
.footer-col ul { list-style: none; }
.footer-col ul li a { display: block; padding: 4px 0; font-size: .875rem; color: var(--text-secondary); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-form { display: flex; flex-direction: column; gap: 8px; }
.footer-form input {
  padding: 9px 13px; background: white;
  border: 1px solid var(--border-strong); border-radius: 9px;
  font-size: .85rem; font-family: var(--font-body);
  color: var(--text-primary); outline: none; transition: var(--transition);
}
.footer-form input:focus { border-color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: var(--text-muted); transition: color .2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-socials { display: flex; gap: 8px; }

/* ── 25. Legal Pages ──────────────────────────────────────────────── */
.legal-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.legal-section h3 { font-size: 1rem; font-weight: 700; margin: 22px 0 9px; }
.legal-section p  { font-size: .91rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 12px; }
.legal-section li { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 7px; }
.legal-section strong { color: var(--text-primary); }
.legal-section a { color: var(--orange); }
.legal-section table { width: 100%; border-collapse: collapse; font-size: .86rem; margin-top: 10px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.legal-section table th { text-align: left; padding: 10px 14px; background: var(--bg-2); font-weight: 600; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.legal-section table td { padding: 10px 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.legal-section table tr:last-child td { border-bottom: none; }
.legal-toc-link { display: block; padding: 6px 11px; border-radius: 7px; font-size: .82rem; color: var(--text-secondary); transition: var(--transition); }
.legal-toc-link:hover { background: rgba(249,115,22,0.08); color: var(--orange-dark); text-decoration: none; }

/* ── 26. Scroll Animations ────────────────────────────────────────── */
.fade-up  { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.fade-in  { opacity: 0; transition: opacity .6s ease; }
.fade-up.visible, .fade-in.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }

/* ── 27. Form Elements (Generic) ──────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .84rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px;
  background: white; border: 1.5px solid var(--border-strong);
  border-radius: 10px; color: var(--text-primary);
  font-size: .9rem; font-family: var(--font-body); outline: none;
  transition: var(--transition); box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.10);
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-hint { font-size: .76rem; color: var(--text-muted); margin-top: 5px; line-height: 1.5; }

/* ── 28. Misc Components ──────────────────────────────────────────── */

/* Section header variants */
.section-head { margin-bottom: 44px; }
.section-head.center, .section-head[style*="center"] { text-align: center; }

/* Divider */
.divider { height: 1px; background: var(--border); margin: 24px 0; }

/* About manifesto */
.about-manifesto { max-width: 680px; }
.about-manifesto p { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 18px; }

/* Values grid (about page) */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 14px;
}
.team-card h4  { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.team-card .role { font-size: .78rem; color: var(--orange-dark); font-weight: 600; margin-bottom: 8px; }
.team-card .bio  { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* Milestone list */
.milestone-list { display: flex; flex-direction: column; gap: 0; }
.milestone {
  display: flex; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.milestone:last-child { border-bottom: none; }
.milestone-date {
  font-size: .78rem; font-weight: 700; color: var(--orange-dark);
  min-width: 72px; padding-top: 3px; flex-shrink: 0;
}
.milestone-content h4 { font-size: .93rem; font-weight: 700; margin-bottom: 5px; }
.milestone-content p  { font-size: .84rem; color: var(--text-secondary); line-height: 1.65; }

/* Comparison / diff table */
.diff-table { width: 100%; border-collapse: collapse; font-size: .87rem; }
.diff-table th { padding: 13px 18px; background: var(--bg-2); font-weight: 700; text-align: left; border: 1px solid var(--border); }
.diff-table td { padding: 11px 18px; border: 1px solid var(--border); color: var(--text-secondary); }
.diff-table tr:nth-child(even) td { background: var(--bg-1); }
.diff-table .yes  { color: var(--green); font-weight: 700; }
.diff-table .no   { color: var(--red); }
.diff-table .partial { color: var(--amber); }
.highlight-cell { background: rgba(249,115,22,0.06) !important; font-weight: 600; color: var(--text-primary) !important; }

/* Trust checklist */
.trust-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.trust-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.5;
}
.trust-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(5,150,105,0.12); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* Security pillars */
.sec-pillar {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* Privacy controls */
.controls-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.control-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px;
  box-shadow: var(--shadow-sm);
}
.control-card h4 { font-size: .88rem; font-weight: 700; margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
.control-card p  { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }
.control-toggle {
  width: 34px; height: 20px; border-radius: 10px;
  background: var(--orange); position: relative; flex-shrink: 0;
}
.toggle-knob {
  position: absolute; top: 3px; right: 3px;
  width: 14px; height: 14px; border-radius: 50%; background: white;
}

/* Blog */
.blog-post-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.blog-post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(249,115,22,0.2); }
.blog-card-visual {
  height: 186px; overflow: hidden; flex-shrink: 0;
}
.blog-card-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.blog-post-card:hover .blog-card-visual img { transform: scale(1.04); }
.bcv-privacy  { background: linear-gradient(135deg, rgba(5,150,105,0.1), rgba(8,145,178,0.07)); }
.bcv-design   { background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.05)); }
.bcv-tech     { background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(245,158,11,0.06)); }
.bcv-product  { background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(249,115,22,0.06)); }
.bcv-security { background: linear-gradient(135deg, rgba(5,150,105,0.09), rgba(8,145,178,0.05)); }
.bcv-update   { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(37,99,235,0.05)); }
.card-visual-icon { font-size: 2rem; }
.blog-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 6px;
}
.cat-privacy  { color: var(--green); }
.cat-design   { color: var(--violet); }
.cat-tech     { color: var(--orange-dark); }
.cat-product  { color: var(--amber); }
.cat-security { color: var(--cyan); }
.cat-update   { color: var(--violet-bright); }
.blog-card-body h4 { font-size: .93rem; font-weight: 700; line-height: 1.35; margin-bottom: 7px; }
.blog-card-body p  { font-size: .8rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.blog-card-foot {
  display: flex; align-items: center; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: 12px;
}
.blog-card-foot .author-avatar { width: 24px; height: 24px; font-size: .65rem; }
.blog-card-foot .author-name   { font-size: .75rem; }
.read-time { margin-left: auto; font-size: .73rem; color: var(--text-muted); }

/* Featured blog card */
.featured-card {
  display: grid; grid-template-columns: 1fr 420px; gap: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.featured-card:hover { border-color: rgba(249,115,22,0.25); box-shadow: var(--shadow-md); }
.featured-visual {
  position: relative; min-height: 300px; overflow: hidden;
}
.featured-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 300px; transition: transform .5s ease;
}
.featured-card:hover .featured-visual img { transform: scale(1.03); }
.art-circles { position: absolute; inset: 0; }
.art-circle  { position: absolute; border-radius: 50%; border: 1px solid rgba(249,115,22,0.15); }
.featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.featured-cat  {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange-dark);
  background: rgba(249,115,22,0.10); padding: 3px 10px; border-radius: 20px;
}
.featured-date { font-size: .78rem; color: var(--text-muted); }
.featured-body h2 { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 12px; }
.featured-body p  { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 22px; }
.featured-author { display: flex; align-items: center; gap: 10px; }

/* Blog article preview */
.article-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px; border-radius: 20px;
  background: rgba(249,115,22,0.10); border: 1px solid rgba(249,115,22,0.2);
  font-size: .72rem; font-weight: 700; color: var(--orange-dark);
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 22px;
}
.article-preview-wrap h2 { font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.article-meta  { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.author-info-row { display: flex; align-items: center; gap: 8px; }
.article-divider { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.article-body p { font-size: .95rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 18px; }
.article-body p:first-child { font-size: 1rem; color: var(--text-primary); }
.article-body blockquote {
  border-left: 3px solid var(--orange); padding-left: 18px;
  margin: 24px 0; font-style: italic; font-size: 1.02rem;
  font-weight: 500; color: var(--text-primary);
}
.article-body h3 { font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.read-full-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange-dark); font-weight: 600; font-size: .88rem;
  padding: 9px 18px; background: rgba(249,115,22,0.09);
  border: 1px solid rgba(249,115,22,0.2); border-radius: 8px;
  margin-top: 22px; transition: var(--transition);
}
.read-full-link:hover { background: rgba(249,115,22,0.16); text-decoration: none; }

/* Newsletter */
.newsletter-band { padding: 60px 0; text-align: center; background: var(--bg-1); border-top: 1px solid var(--border); }
.newsletter-form {
  display: flex; gap: 10px; justify-content: center;
  max-width: 460px; margin: 0 auto; flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 12px 16px;
  background: white; border: 1.5px solid var(--border-strong);
  border-radius: 10px; font-size: .9rem; font-family: var(--font-body);
  color: var(--text-primary); outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--orange); }

/* Blog filters */
.blog-filter {
  padding: 6px 15px; border-radius: 20px;
  border: 1px solid var(--border); background: white;
  color: var(--text-secondary); font-size: .82rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: var(--font-body);
}
.blog-filter.active, .blog-filter:hover {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.3);
  color: var(--orange-dark);
}

/* Contact */
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(249,115,22,0.25); }
.contact-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cci-blue   { background: rgba(249,115,22,0.12); }
.cci-violet { background: rgba(124,58,237,0.09); }
.cci-cyan   { background: rgba(8,145,178,0.09); }
.cci-green  { background: rgba(5,150,105,0.09); }
.contact-card-head h4 { font-size: .92rem; font-weight: 700; }
.contact-card-head p  { font-size: .75rem; color: var(--text-muted); }
.contact-email {
  color: var(--orange-dark); font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.contact-email:hover { text-decoration: underline; }
.response-time { font-size: .75rem; color: var(--text-muted); margin-top: 5px; }
.contact-submit {
  width: 100%; padding: 13px; background: var(--orange); border: none;
  border-radius: 10px; color: white; font-size: .92rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,115,22,0.28);
}
.contact-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.location-map-vis {
  height: 150px; background: linear-gradient(135deg, var(--bg-2), var(--bg-1));
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(249,115,22,0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(249,115,22,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-pin {
  width: 30px; height: 30px; background: var(--orange);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  position: relative; box-shadow: 0 0 18px rgba(249,115,22,0.45);
}
.map-pin::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 11px; background: white;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.location-info { padding: 16px 18px; }
.location-info h4 { font-size: .85rem; font-weight: 700; margin-bottom: 3px; }
.location-info p  { font-size: .78rem; color: var(--text-secondary); }
.social-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-contact-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 9px; padding: 11px; text-align: center;
  text-decoration: none; transition: var(--transition);
}
.social-contact-item:hover { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.06); }
.sci-icon  { font-size: 1rem; margin-bottom: 3px; }
.sci-label { font-size: .7rem; color: var(--text-muted); font-weight: 500; }
.contact-success { display: none; text-align: center; padding: 40px 20px; }
.contact-success .success-icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--green); }
.contact-success p  { color: var(--text-secondary); font-size: .88rem; }

/* Call card (features page) */
.call-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.call-visual { margin-bottom: 16px; }
.call-avatars { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
.call-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border: 3px solid white;
  box-shadow: var(--shadow-sm);
}
.call-status   { font-size: .78rem; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.call-duration { font-size: 1.4rem; font-family: var(--font-head); font-weight: 700; margin-bottom: 14px; }
.call-controls { display: flex; gap: 10px; justify-content: center; }
.call-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; background: var(--bg-2); border: 1px solid var(--border);
}
.call-btn.end { background: var(--red); border-color: var(--red); }

/* File list (features page) */
.file-list { display: flex; flex-direction: column; gap: 10px; }
.file-item {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
}
.file-icon { font-size: 1.2rem; flex-shrink: 0; }
.file-info { flex: 1; overflow: hidden; }
.file-name { font-size: .8rem; font-weight: 600; color: var(--text-primary); }
.file-meta { font-size: .7rem; color: var(--text-muted); }
.file-progress { margin-top: 5px; height: 3px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.file-progress-bar { height: 100%; background: var(--orange); border-radius: 2px; }

/* Notification mockup */
.notification-mockup { display: flex; flex-direction: column; gap: 8px; }
.notif {
  display: flex; align-items: flex-start; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px; box-shadow: var(--shadow-sm);
}
.notif-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.notif-content { flex: 1; }
.notif-title { font-size: .8rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.notif-body  { font-size: .75rem; color: var(--text-secondary); line-height: 1.4; }
.notif-time  { font-size: .65rem; color: var(--text-muted); margin-top: 4px; }
.notice, .notice-info {
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: .85rem; color: var(--orange-deep); line-height: 1.6;
}

/* AI chips */
.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ai-chip {
  padding: 6px 14px; border-radius: 20px;
  background: white; border: 1px solid var(--border);
  font-size: .78rem; font-weight: 500; color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

/* Feature hero visual */
.feature-hero-visual { display: flex; justify-content: center; }
.fhv-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-md); max-width: 320px; width: 100%;
}
.feature-visual-box {
  background: var(--bg-2); border-radius: var(--radius-sm);
  padding: 20px; margin-bottom: 16px;
}
.feature-detail-list { display: flex; flex-direction: column; gap: 10px; }
.feature-deep { padding: 64px 0; border-bottom: 1px solid var(--border); }
.feature-deep:last-child { border-bottom: none; }
.feature-deep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.desc { font-size: .88rem; color: var(--text-secondary); line-height: 1.65; }

/* Roadmap page specific */
.roadmap-hero { padding: 130px 0 60px; text-align: center; }
.phase-strip { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.phase-btn {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  background: white; color: var(--text-muted);
  font-size: .8rem; font-weight: 600; font-family: var(--font-body); cursor: default;
}
.phase-btn.done   { background: rgba(5,150,105,0.08);   color: var(--green);      border-color: rgba(5,150,105,0.2); }
.phase-btn.active { background: rgba(249,115,22,0.10);  color: var(--orange-dark); border-color: rgba(249,115,22,0.3); }
.phase-btn.soon   { background: rgba(124,58,237,0.08);  color: var(--violet);      border-color: rgba(124,58,237,0.2); }

.roadmap-phases { display: flex; flex-direction: column; max-width: 900px; margin: 0 auto; }
.phase-block { display: grid; grid-template-columns: 1fr 60px 1fr; }
.phase-left, .phase-right { padding: 24px 24px 24px 0; }
.phase-right { padding: 24px 0 24px 24px; }
.phase-center { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.phase-dot { width: 18px; height: 18px; border-radius: 50%; margin-top: 22px; flex-shrink: 0; }
.dot-done   { background: var(--green); box-shadow: 0 0 10px rgba(5,150,105,0.4); }
.dot-active { background: var(--orange); box-shadow: 0 0 14px rgba(249,115,22,0.5); animation: pulse-dot 2s infinite; }
.dot-soon   { background: var(--violet); box-shadow: 0 0 10px rgba(124,58,237,0.35); }
.dot-future { background: white; border: 2px solid var(--border); }
.phase-line { flex: 1; width: 2px; background: linear-gradient(to bottom, var(--border), transparent); }
.phase-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: var(--transition);
}
.phase-card:hover { border-color: rgba(249,115,22,0.25); transform: translateY(-2px); }
.card-done   { border-color: rgba(5,150,105,0.2);   background: rgba(5,150,105,0.02); }
.card-active { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.03); box-shadow: 0 3px 20px rgba(249,115,22,0.07); }
.card-soon   { border-color: rgba(124,58,237,0.18); background: rgba(124,58,237,0.02); }
.phase-num   { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.phase-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: 6px; }
.phase-date { font-size: .76rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.phase-date svg { width: 11px; height: 11px; }
.phase-card p { font-size: .84rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.phase-tasks { display: flex; flex-direction: column; gap: 5px; }
.phase-task  { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text-secondary); }
.tick { width: 15px; height: 15px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .65rem; }
.done-tick    { background: rgba(5,150,105,0.15);   color: var(--green); }
.active-tick  { background: rgba(249,115,22,0.12);  color: var(--orange-dark); }
.pending-tick { background: var(--bg-2); border: 1px solid var(--border); }

/* Milestones grid */
.milestones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.milestone-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.milestone-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.milestone-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem;
}
.mi-blue   { background: rgba(249,115,22,0.12); }
.mi-cyan   { background: rgba(8,145,178,0.09); }
.mi-violet { background: rgba(124,58,237,0.09); }
.mi-green  { background: rgba(5,150,105,0.09); }
.milestone-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: 7px; }
.milestone-card p  { font-size: .82rem; color: var(--text-secondary); line-height: 1.55; }
.vision-section { padding: 70px 0; text-align: center; }

/* FAQ page */
.faq-hero { padding: 130px 0 50px; text-align: center; }
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 44px; max-width: 960px; margin: 0 auto; padding: 50px 0; }
.faq-nav { position: sticky; top: 90px; align-self: start; }
.faq-nav-links { display: flex; flex-direction: column; gap: 2px; }
.faq-nav-link {
  display: block; padding: 7px 12px; border-radius: 8px;
  font-size: .83rem; color: var(--text-secondary);
  text-decoration: none; transition: var(--transition);
}
.faq-nav-link:hover, .faq-nav-link.active {
  background: rgba(249,115,22,0.09); color: var(--orange-dark);
}
.faq-content { display: flex; flex-direction: column; gap: 44px; }
.faq-group h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.faq-group-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0;
}
.gi-blue   { background: rgba(249,115,22,0.12); }
.gi-cyan   { background: rgba(8,145,178,0.09); }
.gi-violet { background: rgba(124,58,237,0.09); }
.gi-green  { background: rgba(5,150,105,0.09); }
.gi-orange { background: rgba(249,115,22,0.10); }
.faq-group-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: 16px; padding-left: 44px; }
.faq-items {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: white;
}
.faq-items .faq-item { border-bottom: 1px solid var(--border); }
.faq-items .faq-item:last-child { border-bottom: none; }
.faq-items .faq-question { padding: 16px 22px; }
.faq-items .faq-answer-inner { padding: 0 22px 16px; }
.faq-cta {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px; text-align: center; margin-top: 12px;
}
.faq-cta h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.faq-cta p  { color: var(--text-secondary); margin-bottom: 24px; font-size: .9rem; }
.faq-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.faq-search { max-width: 500px; margin: 0 auto; position: relative; }
.faq-search input {
  width: 100%; padding: 13px 46px 13px 18px;
  background: white; border: 1.5px solid var(--border-strong);
  border-radius: 12px; font-size: .9rem; font-family: var(--font-body);
  color: var(--text-primary); outline: none; transition: var(--transition);
  box-sizing: border-box; box-shadow: var(--shadow-sm);
}
.faq-search input:focus { border-color: var(--orange); }
.faq-search button { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; }

/* Careers */
.careers-hero { padding: 130px 0 70px; text-align: center; }
.perks-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 56px; }
.perk-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.perk-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.perk-icon { font-size: 1.6rem; margin-bottom: 12px; }
.perk-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.perk-card p  { font-size: .8rem; color: var(--text-secondary); line-height: 1.6; }
.jobs-section { padding: 70px 0; border-top: 1px solid var(--border); }
.job-dept { margin-bottom: 36px; }
.job-dept-label { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; padding-left: 2px; }
.job-card {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: white; border: 1px solid var(--border); border-radius: 13px;
  padding: 20px 24px; margin-bottom: 9px; text-decoration: none;
  transition: var(--transition);
}
.job-card:hover { border-color: rgba(249,115,22,0.28); background: rgba(249,115,22,0.03); }
.job-info h4 { font-size: .92rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; }
.job-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.job-tag {
  font-size: .72rem; padding: 3px 9px; border-radius: 20px;
  border: 1px solid var(--border); color: var(--text-muted); font-family: var(--font-body);
}
.job-tag.remote   { color: var(--green); border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.07); }
.job-tag.fulltime { color: var(--orange-dark); border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.08); }
.job-arrow { color: var(--text-muted); font-size: 1.05rem; flex-shrink: 0; }
.no-open {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  font-size: .85rem; color: var(--text-muted); font-style: italic;
}
.culture-section { padding: 70px 0; background: var(--bg-1); border-top: 1px solid var(--border); }
.culture-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 44px; }
.culture-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; transition: var(--transition);
}
.culture-card:hover { border-color: rgba(249,115,22,0.2); }
.culture-num {
  font-size: 2.2rem; font-weight: 800; font-family: var(--font-head);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 7px;
}
.culture-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: 7px; }
.culture-card p  { font-size: .83rem; color: var(--text-secondary); line-height: 1.65; }
.open-app {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 50px; text-align: center; margin-bottom: 70px;
}

/* Contact form card */
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Color utilities */
.green  { color: var(--green)  !important; }
.red    { color: var(--red)    !important; }
.cyan   { color: var(--cyan)   !important; }
.violet { color: var(--violet) !important; }
.gray   { color: var(--text-muted) !important; }

/* Sent indicator */
.sent { color: var(--green); font-size: .7rem; }

/* ── 29. Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .value-grid          { grid-template-columns: repeat(2,1fr); }
  .team-grid           { grid-template-columns: repeat(2,1fr); }
  .milestones-grid     { grid-template-columns: repeat(2,1fr); }
  .split-section       { gap: 44px; }
  .feature-deep-grid   { gap: 44px; }
  .featured-card       { grid-template-columns: 1fr; }
  .featured-visual     { min-height: 200px; }
}
@media (max-width: 900px) {
  .nav-main, .nav-cta  { display: none; }
  .hamburger           { display: flex; }
  .hero-grid           { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual         { display: none; }
  .split-section       { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse { direction: ltr; }
  .why-grid            { grid-template-columns: 1fr; }
  .controls-grid       { grid-template-columns: 1fr; }
  .feature-deep-grid   { grid-template-columns: 1fr; gap: 36px; }
  .values-grid         { grid-template-columns: 1fr 1fr; }
  .faq-layout          { grid-template-columns: 1fr; }
  .faq-nav             { display: none; }
}
@media (max-width: 768px) {
  .stats-grid          { grid-template-columns: repeat(2,1fr); }
  .grid-3              { grid-template-columns: 1fr 1fr; }
  .grid-4              { grid-template-columns: 1fr 1fr; }
  .perks-grid          { grid-template-columns: 1fr 1fr; }
  .culture-grid        { grid-template-columns: 1fr; }
  .phase-block         { grid-template-columns: 40px 1fr; }
  .phase-left          { display: none; }
  .phase-right         { padding: 18px 0 18px 18px; }
  .milestones-grid     { grid-template-columns: 1fr 1fr; }
  .trust-checklist     { grid-template-columns: 1fr; }
  .open-app            { padding: 32px 22px; }
  .footer-grid         { grid-template-columns: 1fr; gap: 24px; }
  .cta-inner           { padding: 60px 22px; }
}
@media (max-width: 560px) {
  .container           { padding: 0 16px; }
  .container-narrow    { padding: 0 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: 1fr 1fr; }
  .perks-grid          { grid-template-columns: 1fr; }
  .values-grid         { grid-template-columns: 1fr; }
  .team-grid           { grid-template-columns: 1fr 1fr; }
  .milestones-grid     { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .contact-form-card   { padding: 22px; }
  .faq-cta             { padding: 28px 18px; }
  .section-pad         { padding: 56px 0; }
  .section-pad-sm      { padding: 40px 0; }
}
