/* ============================================================
   DIDII — Stylesheet v3.0
   ============================================================ */

/* --- Google Fonts (display=swap prevents invisible text on slow connections) --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* --- Font display swap — applies to any locally-declared @font-face --- */
@font-face { font-display: swap; }

/* --- CSS Variables --- */
:root {
  --dark:        #0C2B1A;
  --mid:         #52B788;
  --amber:       #F4A522;
  --white:       #FFFFFF;
  --cream:       #F9F6F1;
  --muted:       rgba(12,43,26,0.5);

  /* Extended palette */
  --dark-mid:    #1F6B45;
  --amber-pale:  #FEF3DC;
  --text:        #111827;
  --text-muted:  #6B7280;
  --border:      #E5E0D8;
  --pale:        #E8F5EE;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:   0 16px 56px rgba(0,0,0,0.18);

  --nav-height:  72px;
  --max-width:   1200px;
  --section-pad: 96px 24px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

/* --- Typography Scale --- */
.font-display { font-family: var(--font-display); }

h1, .h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2, .h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3, .h3 { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 700; line-height: 1.25; }
h4, .h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.4; }
p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); }
.lead { font-size: 1.125rem; line-height: 1.7; }

em { font-style: italic; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-muted-white { color: rgba(255,255,255,0.65); }
.text-amber { color: var(--amber); }
.text-mid { color: var(--mid); }

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover { background: #0f3621; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-amber {
  background: var(--amber);
  color: var(--dark);
}
.btn-amber:hover { background: #e09010; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-ghost:hover { background: var(--dark); color: var(--white); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-text {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 14px 4px;
  font-weight: 500;
}
.btn-text:hover { color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* --- Badge / Pill --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.85);
}
.badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mid);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Grain texture --- */
.grain { position: relative; overflow: hidden; }
.grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo svg { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-dropdown-arrow {
  font-size: 0.65rem;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #0e2e1c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 160px;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #0e2e1c;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.1);
  rotate: 45deg;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

/* Mobile company links */
.nav-mobile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nav-mobile-section-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.nav-mobile-section a {
  font-size: 1.25rem !important;
}
.nav-mobile-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.nav-cta { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
}
.hero-subline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  line-height: 1.2;
}
.hero-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Phone mockup */
.hero-right { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup {
  width: 320px;
  background: #0a1f12;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 32px 20px 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-mockup::before {
  content: '';
  display: block;
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 24px;
}
.chat-area { display: flex; flex-direction: column; gap: 12px; min-height: 220px; }
.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.bubble-user {
  align-self: flex-end;
  background: rgba(244,165,34,0.2);
  border: 1px solid rgba(244,165,34,0.3);
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bubble-didii {
  align-self: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.chat-buttons {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.chat-btn {
  flex: 1;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.chat-btn-primary { background: var(--mid); color: var(--dark); }
.chat-btn-secondary { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 10px 14px;
  margin-top: 16px;
}
.chat-input-placeholder {
  flex: 1;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.chat-mic-btn, .chat-send-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.chat-mic-btn { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.chat-send-btn { background: var(--mid); color: var(--dark); }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.float-card-top { top: -20px; right: -40px; }
.float-card-bottom { bottom: 20px; left: -40px; }
.float-check { color: var(--mid); }

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.proof-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.proof-item-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-item-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   THE TRUTH
   ============================================================ */
.truth-section {
  background: var(--dark);
  padding: var(--section-pad);
}
.truth-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.truth-header { max-width: 640px; margin-bottom: 64px; }
.truth-header h2 { color: var(--white); }
.truth-header p { color: rgba(255,255,255,0.6); margin-top: 20px; font-size: 1.0625rem; line-height: 1.8; }

.truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.truth-col { padding: 40px; }
.truth-col-before {
  background: rgba(255,255,255,0.04);
}
.truth-col-after {
  background: rgba(82,183,136,0.08);
  border-left: 1px solid rgba(82,183,136,0.2);
}
.truth-col-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.truth-col-before .truth-col-header { color: rgba(255,255,255,0.3); }
.truth-col-after .truth-col-header { color: var(--mid); }

.truth-item { margin-bottom: 28px; }
.truth-item-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.truth-col-before .truth-item-tag { color: rgba(255,255,255,0.25); }
.truth-col-after .truth-item-tag { color: var(--mid); }
.truth-item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.truth-col-before .truth-item-text { color: rgba(255,255,255,0.3); }
.truth-col-after .truth-item-text { color: rgba(255,255,255,0.85); }

/* ============================================================
   HOW TO TALK TO DIDII
   ============================================================ */
.talk-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.talk-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.talk-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.talk-header h2 { color: var(--dark); }
.talk-header p { color: var(--text-muted); margin-top: 16px; font-size: 1.0625rem; }
.talk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.talk-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.talk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.talk-card-icon {
  width: 52px; height: 52px;
  background: var(--pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.talk-card h3 { color: var(--dark); font-size: 1.25rem; margin-bottom: 12px; }
.talk-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 16px; }
.talk-example {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark-mid);
  background: var(--pale);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-style: italic;
}

/* ============================================================
   LIFE MOMENTS
   ============================================================ */
.moments-section {
  background: var(--cream);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}
.moments-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.moments-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.moments-header h2 { color: var(--dark); }
.moments-header p { color: var(--text-muted); margin-top: 16px; }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.moment-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.moment-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-mid);
  background: var(--pale);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.moment-trigger {
  font-size: 0.9375rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.5;
}
.moment-before {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--border);
}
.moment-before strong { font-weight: 600; color: var(--text-muted); display: block; margin-bottom: 2px; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; }
.moment-didii {
  font-size: 0.875rem;
  color: var(--dark);
  line-height: 1.5;
  background: var(--pale);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.moment-didii-avatar {
  width: 20px; height: 20px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.moment-didii-text { font-style: italic; color: var(--dark-mid); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: var(--dark);
  padding: var(--section-pad);
}
.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.how-header { max-width: 600px; margin-bottom: 64px; }
.how-header h2 { color: var(--white); }
.how-header p { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 1.0625rem; line-height: 1.7; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how-step { position: relative; }
.how-step-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: -16px;
  left: -8px;
  user-select: none;
  pointer-events: none;
}
.how-step-num-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 16px;
  position: relative;
}
.how-step h3 { color: var(--white); margin-bottom: 12px; font-size: 1.25rem; position: relative; }
.how-step p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; position: relative; }
.how-example {
  margin-top: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
}
.how-example-line {
  font-size: 0.875rem;
  line-height: 1.6;
  display: flex;
  gap: 8px;
}
.how-example-line .speaker { color: var(--mid); font-weight: 600; flex-shrink: 0; }
.how-example-line .speech { color: rgba(255,255,255,0.8); }

/* ============================================================
   WHAT DIDII DOES
   ============================================================ */
.features-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.features-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.features-header h2 { color: var(--dark); }
.features-header p { color: var(--text-muted); margin-top: 16px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-mid);
  background: var(--pale);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.feature-card h3 { color: var(--dark); font-size: 1.375rem; margin-bottom: 10px; }
.feature-card > p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list-item {
  font-size: 0.875rem;
  color: var(--dark-mid);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.feature-list-item::before { content: '✓'; color: var(--mid); font-weight: 700; flex-shrink: 0; }

.coming-soon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.coming-soon-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--amber-pale);
  color: var(--amber);
  padding: 3px 8px;
  border-radius: 8px;
}

/* ============================================================
   WORKS WITH YOUR BANK
   ============================================================ */
.banks-section {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banks-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.banks-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.banks-header h2 { color: var(--dark); }
.banks-header p { color: var(--text-muted); margin-top: 16px; font-size: 1.0625rem; line-height: 1.7; }
.banks-pills-wrap { overflow: hidden; margin-bottom: 40px; }
.banks-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.bank-pill {
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 500;
  white-space: nowrap;
}
.banks-closing {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   THE DEMO
   ============================================================ */
.demo-section {
  background: var(--dark);
  padding: var(--section-pad);
}
.demo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.demo-left { }
.demo-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.demo-left p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 12px; }
.demo-trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Demo phone */
.demo-phone {
  background: #070f0a;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.08);
  padding: 28px 20px 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 560px;
}
.demo-phone::before {
  content: '';
  display: block;
  width: 80px; height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 20px;
}
.demo-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
}
.demo-avatar {
  width: 36px; height: 36px;
  background: var(--dark);
  border: 2px solid var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--mid);
  font-weight: 700;
}
.demo-phone-name { font-size: 0.9375rem; font-weight: 600; color: var(--white); }
.demo-phone-status { font-size: 0.75rem; color: var(--mid); }
.demo-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}
.demo-messages::-webkit-scrollbar { width: 3px; }
.demo-messages::-webkit-scrollbar-track { background: transparent; }
.demo-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.demo-msg { display: flex; flex-direction: column; max-width: 82%; }
.demo-msg.user { align-self: flex-end; align-items: flex-end; }
.demo-msg.didii { align-self: flex-start; align-items: flex-start; }
.demo-msg-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.demo-msg.user .demo-msg-bubble {
  background: rgba(244,165,34,0.15);
  border: 1px solid rgba(244,165,34,0.25);
  color: rgba(255,255,255,0.9);
  border-bottom-right-radius: 4px;
}
.demo-msg.didii .demo-msg-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.typing-dot:nth-child(1) { animation: blink 1.2s infinite 0s; }
.typing-dot:nth-child(2) { animation: blink 1.2s infinite 0.2s; }
.typing-dot:nth-child(3) { animation: blink 1.2s infinite 0.4s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

/* Demo input */
.demo-input-area { margin-top: 12px; }
.demo-chips {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.demo-chip {
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.demo-chip:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.demo-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 10px 14px;
}
.demo-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--white);
}
.demo-input::placeholder { color: rgba(255,255,255,0.3); }
.demo-send-btn {
  width: 30px; height: 30px;
  background: var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.75rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.demo-send-btn:hover { background: #6ecf9e; }
.demo-send-btn:disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); cursor: default; }

/* Handoff buttons */
.demo-handoff {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.demo-handoff .btn { width: 100%; justify-content: center; }

/* Clickable preview phone (homepage demo) */
.demo-phone-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.demo-phone-link:hover { transform: translateY(-4px); }
.demo-phone-link:hover .demo-launch-hint {
  background: var(--amber);
  color: var(--dark);
}
.demo-phone-link:hover .demo-launch-hint i {
  transform: translate(2px, -2px);
}
.demo-phone-preview {
  pointer-events: none;
}
.demo-phone-preview * { pointer-events: none; }
.demo-messages-preview {
  flex: 1;
  overflow: hidden;
  pointer-events: none;
}
.demo-launch-hint {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(244,165,34,0.15);
  border: 1px solid rgba(244,165,34,0.35);
  color: var(--amber);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.demo-launch-hint i { transition: transform 0.2s ease; }

/* ============================================================
   THE STORY
   ============================================================ */
.story-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}
.story-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.portrait-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  border: 4px solid var(--amber);
  box-shadow: 0 0 0 8px rgba(244,165,34,0.12);
}
.portrait-caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
.story-right { }
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 28px;
}
.story-right p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.story-with-didii {
  margin-top: 32px;
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.story-with-didii-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.story-with-didii p { color: rgba(255,255,255,0.8); font-size: 1rem; font-style: italic; }

/* ============================================================
   TRUST & SECURITY
   ============================================================ */
.trust-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
/* Marquee */
.marquee-wrap {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px 0;
  margin-bottom: 56px;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  white-space: nowrap;
  padding: 0 32px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-mid);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.trust-card-icon {
  width: 48px; height: 48px;
  background: var(--pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark-mid);
  font-size: 1.25rem;
}
.trust-card h3 { color: var(--dark); font-size: 1.125rem; margin-bottom: 10px; }
.trust-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: var(--dark);
  padding: 120px 24px;
  text-align: center;
}
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.cta-subline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
}
.cta-body { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7; }
.cta-note { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo {
  margin-bottom: 8px;
  line-height: 1;
}
.footer-brand-logo svg { display: block; }
.footer-brand-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 20px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.float { animation: float 4s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out infinite 1.5s; }

/* ============================================================
   BUSINESS PAGE — additional component styles
   ============================================================ */

/* Hero — biz uses a parallel naming convention */
.biz-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(244,165,34,0.12);
  border: 1px solid rgba(244,165,34,0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--amber);
  width: fit-content;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Phone mockup — biz variant with rich interior */
.phone-wrap { position: relative; }
.phone {
  width: 320px;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 32px 20px 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.phone-notch {
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  margin: 0 auto 16px;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phone-avatar { display: flex; align-items: center; gap: 10px; }
.phone-avatar-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.phone-avatar-text { display: flex; flex-direction: column; }
.phone-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.phone-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6875rem;
}
.phone-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.phone-balance {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}
.phone-body {
  display: flex; flex-direction: column; gap: 8px;
  min-height: 240px;
}
.phone-msg {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-msg-text {
  font-size: 0.8125rem;
  line-height: 1.5;
}
.phone-bill-card {
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(0,0,0,0.15);
}
.phone-bill-row {
  display: flex; justify-content: space-between;
  font-size: 0.6875rem;
}
.phone-bill-row:last-child {
  padding-top: 4px;
  margin-top: 2px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.phone-actions {
  display: flex; gap: 6px;
  margin-top: 8px;
}
.phone-btn-amber {
  flex: 1;
  text-align: center;
  padding: 8px;
  background: var(--amber);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 8px;
}
.phone-btn-ghost {
  flex: 1;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  border-radius: 8px;
}
.phone-input-bar {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}
.phone-input {
  flex: 1;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.phone-send {
  width: 24px; height: 24px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Float card extras */
.float-card-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.float-card-label {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.float-card-value {
  font-size: 0.875rem;
  color: var(--white);
  font-weight: 700;
}

/* Problem section (biz) */
.problem-section {
  padding: var(--section-pad);
  background: var(--dark);
  position: relative;
}
.problem-header {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 24px;
}
.section-label.white {
  color: rgba(255,255,255,0.5);
}
.problem-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.problem-body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.problem-didii-box {
  margin-top: 6px;
  padding: 14px 16px;
  background: rgba(244,165,34,0.08);
  border: 1px solid rgba(244,165,34,0.18);
  border-radius: 12px;
}
.problem-didii-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.problem-didii-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  font-style: italic;
}

/* Biz-specific feature grid (2-column) */
.biz-features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* biz feature lists provide their own lucide check icons inline,
   so suppress the canonical ::before checkmark to avoid duplicates */
.biz-features-grid .feature-list-item::before { content: none; }
.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 12px 0 10px;
}
.feature-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* How section step extras (biz uses these names) — section is dark bg */
.how-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.how-step-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 18px 0 14px;
}
.how-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.how-step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.how-step-example {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
}

/* CTA section (biz) */
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .phone-mockup { width: 280px; }
  .float-card-top { right: -10px; }
  .float-card-bottom { left: -10px; }
  .truth-grid { grid-template-columns: 1fr; }
  .truth-col-after { border-left: none; border-top: 1px solid rgba(82,183,136,0.2); }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-portrait { flex-direction: row; gap: 24px; align-items: center; justify-content: flex-start; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone { width: 280px; }
  .problem-grid { grid-template-columns: 1fr; }
  .biz-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .nav-links, .nav-cta .btn-ghost-white { display: none; }
  .hamburger { display: flex; }
  .proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .talk-cards { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .banks-pills { flex-wrap: wrap; justify-content: center; }
  .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .demo-left { text-align: center; }
  .trust-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.5rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .proof-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .moments-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .story-portrait { flex-direction: column; }
  .portrait-circle { width: 180px; height: 180px; font-size: 4rem; }
}
