/* ================== HOME ================== */

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: -10% -5%;
  background-image:
    linear-gradient(to right, rgba(19,17,14,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19,17,14,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 20%, transparent 75%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  transition: transform 0.4s var(--ease-out);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #bd91d3 0%, transparent 70%);
  top: -120px; right: -120px;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #E8A33D 0%, transparent 70%);
  opacity: 0.28;
  bottom: -80px; left: -60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
}
.hero-left > .chip { margin-bottom: 28px; }
.hero-left h1 {
  margin: 0 0 24px;
}
.hero-left h1 em {
  font-style: italic;
  color: var(--brand-600);
}
.hero-ctas {
  display: flex; gap: 12px; margin: 36px 0;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-meta > div {
  display: flex; flex-direction: column;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta span { color: var(--bone-500); font-size: 13px; margin-top: 2px; }
.hero-meta .sep { width: 1px; height: 32px; background: var(--line-strong); }

/* Hero right - product visualization */
.hero-right {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}
.hero-phone {
  position: absolute;
  width: 300px;
  top: 20px;
  right: 40px;
  aspect-ratio: 9 / 19.5;
  background: var(--bone-900);
  border-radius: 38px;
  box-shadow:
    0 40px 100px -30px rgba(74,40,92,0.5),
    0 20px 40px -10px rgba(19,17,14,0.2),
    inset 0 0 0 1.5px rgba(255,255,255,0.08);
  padding: 10px;
  transform: rotate(2deg) translateZ(0);
  transition: transform 0.6s var(--ease-out);
  z-index: 2;
}
.hero-phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 24px; background: #000; border-radius: 999px;
  z-index: 3;
}
.hero-phone-screen {
  background: #f9f5ed;
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  padding-top: 48px;
}
.sf-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 16px 12px;
  border-bottom: 1px solid rgba(19,17,14,0.08);
}
.sf-brand { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }
.sf-icons { display: flex; gap: 10px; }
.sf-icons span { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }
.sf-hero-img {
  margin: 12px;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #c4a287 0%, #7d4598 100%);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.sf-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.8'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2 0'/></filter><rect width='100' height='100' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.sf-hero-label {
  position: absolute; bottom: 10px; left: 10px;
  color: white; font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 1;
}
.sf-hero-chip {
  position: absolute; top: 10px; right: 10px;
  background: white; font-size: 10px; padding: 4px 8px; border-radius: 999px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em;
  z-index: 1;
}
.sf-products { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
.sf-product { background: white; border-radius: 10px; overflow: hidden; padding-bottom: 8px; }
.sf-pimg { aspect-ratio: 1/1; }
.sf-pname { font-size: 10px; padding: 6px 8px 2px; }
.sf-pprice { font-size: 10px; font-family: var(--font-mono); padding: 0 8px; color: var(--bone-600); }
.sf-bar {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px;
  padding: 12px; background: var(--ink); color: white;
  font-size: 11px;
}
.sf-bar button {
  margin-left: auto;
  background: var(--brand-500); color: white; border: 0; padding: 6px 12px;
  border-radius: 999px; font-size: 10px; font-family: inherit; font-weight: 500;
}

.hero-admin {
  position: absolute;
  left: 0; bottom: 60px;
  width: 320px;
  background: white;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--line);
  transform: rotate(-3deg) translateZ(0);
  transition: transform 0.6s var(--ease-out);
  z-index: 3;
}
.hero-admin-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.hero-admin-chart {
  width: 100%; height: 48px;
  margin: 16px 0 12px;
}
.hero-admin-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.ha-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--bone-900);
  flex-shrink: 0;
}
.hero-admin-row > div:nth-child(2) { flex: 1; }

.hero-flag {
  position: absolute; top: 8px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--bone-600);
  z-index: 4;
}
.hero-flag-line { width: 50px; height: 1px; background: var(--bone-400); }

@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 560px; margin: 20px auto 0; max-width: 640px; width: 100%; }
  .hero-phone { right: 20px; }
  .hero-admin { left: 10px; bottom: 40px; }
}
@media (max-width: 560px) {
  .hero-right { min-height: 520px; }
  .hero-phone { width: 240px; top: 0; right: 0; }
  .hero-admin { width: 280px; bottom: 20px; }
  /* Keep both separators visible on mobile — tighten the gap
     and shrink their height so all three stats fit on one row. */
  .hero-meta { gap: 14px; font-size: 13px; }
  .hero-meta .sep { height: 28px; display: inline-block; }
  .hero-meta strong { font-size: 22px; }
  /* Keep the Aéna line visible on mobile, but sink z-index so
     the phone/admin cards can layer on top without it covering them. */
  .hero-flag { z-index: 0; pointer-events: none; }
}

/* ==== TICKER ==== */
.ticker-section {
  background: var(--bone-900);
  color: var(--bone-200);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.ticker-label .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success-500);
  box-shadow: 0 0 8px var(--success-500);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ticker-viewport { flex: 1; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent); }
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: marquee-x 60s linear infinite;
  width: max-content;
}
.ticker-item { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.ticker-item .ti-city { font-family: var(--font-mono); color: rgba(255,255,255,0.4); font-size: 12px; }
.ticker-item .ti-prod { color: rgba(255,255,255,0.7); }
.ticker-item .ti-price { color: var(--amber-400); font-family: var(--font-mono); font-size: 13px; }

/* ==== STATS ==== */
.stats-section {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stats-grid > div {
  background: var(--paper);
  padding: 36px 32px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.stats-grid.stats-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 840px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid.stats-3 { grid-template-columns: 1fr; }
}

/* ==== PITCH ==== */
.pitch-section { background: var(--panel); }
.pitch-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pitch-left h2 { margin: 16px 0 0; }
.pitch-left h2 em { font-style: italic; color: var(--brand-600); }
.pitch-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.pitch-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; line-height: 1.55;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.pitch-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--brand-600);
}
@media (max-width: 880px) {
  .pitch-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==== BENTO ==== */
.bento-header { margin-bottom: 48px; max-width: 720px; }
.bento-header h2 { margin: 16px 0 0; }
.bento-header h2 em { font-style: italic; color: var(--brand-600); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  grid-auto-rows: minmax(200px, auto);
}
.bento {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.bento:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.bento-badge {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone-500);
  margin-bottom: 12px;
}
.bento h3 { margin: 0 0 12px; max-width: 340px; }
.bento h3 em { font-style: italic; color: var(--brand-600); }
.bento p { margin: 0 0 20px; max-width: 420px; }

.bento-editor { grid-column: span 4; }
.bento-payments { grid-column: span 2; background: var(--bone-900); color: white; border-color: var(--bone-900); }
.bento-payments h3 em, .bento-payments .bento-badge { color: var(--brand-300); }
.bento-payments .bento-badge { color: rgba(255,255,255,0.5); }
.bento-inventory { grid-column: span 2; }
.bento-shipping { grid-column: span 2; }
.bento-growth { grid-column: span 2; background: #fff; }
.bento-customers { grid-column: span 6; }

/* Editor mock */
.editor-mock {
  margin-top: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
}
.em-toolbar {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 10px;
  background: white;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.em-tab {
  padding: 6px 10px; border-radius: 6px; color: var(--bone-500);
}
.em-tab.active { background: var(--panel); color: var(--ink); }
.em-publish {
  margin-left: auto; background: var(--brand-500); color: white;
  padding: 6px 12px; border-radius: 6px; font-weight: 500;
}
.em-canvas {
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.em-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  cursor: grab;
  transition: transform 0.2s, border-color 0.2s;
}
.em-section:hover { border-color: var(--brand-400); transform: translateX(2px); }
.em-section.active { border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(151,90,179,0.15); }
.em-handle { color: var(--bone-400); font-size: 14px; cursor: grab; }
.em-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--bone-500);
}
.em-ghost { background: transparent; border: 1.5px dashed var(--line-strong); color: var(--bone-500); }

/* Payments */
.pay-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.pay-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.pay-dot { width: 8px; height: 8px; border-radius: 50%; }
.pay-rate { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); color: white; }
.pay-rate .text-sm { color: rgba(255,255,255,0.6) !important; }

/* Inventory */
.inv-rows { margin-top: auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.inv-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.inv-sw { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.inv-title { flex: 1; }
.inv-qty { font-size: 12px; color: var(--bone-500); }
.inv-low { color: var(--amber-600); }
.inv-out { color: var(--danger-500); }

/* Shipping */
.ship-map {
  margin-top: auto;
  background: var(--panel);
  border-radius: var(--r-3);
  padding: 12px;
  aspect-ratio: 5/3;
}
.ship-carriers {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone-500);
  margin-top: 14px;
  display: flex; gap: 8px; flex-wrap: wrap;
  letter-spacing: 0.04em;
}
.ship-carriers span { color: var(--ink); }

/* Growth */
.growth-flow {
  margin-top: auto;
  display: flex; align-items: stretch; gap: 8px;
  font-size: 12px;
}
.gf-step {
  flex: 1;
  background: var(--panel);
  border-radius: 10px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.gf-step .mono { font-size: 10px; color: var(--bone-500); letter-spacing: 0.08em; text-transform: uppercase; }
.gf-step div:last-child { font-size: 13px; }
.gf-win { background: var(--brand-500); color: white; }
.gf-win .mono { color: rgba(255,255,255,0.75); }
.gf-arrow { display: flex; align-items: center; color: var(--bone-400); }

/* Customers */
.cust-stack {
  margin-top: auto;
  position: relative;
  height: 140px;
}
.cust-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  width: 240px;
  transition: transform 0.3s var(--ease-out);
}
.cust-1 { top: 0; left: 0; z-index: 3; }
.cust-2 { top: 36px; left: 40px; z-index: 2; }
.cust-3 { top: 72px; left: 80px; z-index: 1; }
.bento-customers:hover .cust-1 { transform: translate(-4px, -4px); }
.bento-customers:hover .cust-2 { transform: translate(4px, 0); }
.bento-customers:hover .cust-3 { transform: translate(8px, 4px); }

@media (max-width: 1080px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-editor { grid-column: span 4; }
  .bento-payments { grid-column: span 2; }
  .bento-inventory { grid-column: span 2; }
  .bento-shipping { grid-column: span 2; }
  .bento-growth { grid-column: span 2; }
  .bento-customers { grid-column: span 4; }
}
@media (max-width: 680px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-editor, .bento-payments, .bento-inventory, .bento-shipping, .bento-growth, .bento-customers {
    grid-column: span 1;
  }
}

/* ==== DEMO ==== */
.demo-section { background: var(--panel); }
.demo-header { margin-bottom: 48px; }
.demo-header h2 em { font-style: italic; color: var(--brand-600); }

.demo-stage {
  background: white;
  border-radius: var(--r-4);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.demo-input {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.demo-input span {
  font-size: 11px; color: var(--bone-500);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.demo-input input {
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--panel);
  color: var(--ink);
  min-width: 0;
}
.demo-input input:focus {
  outline: 2px solid var(--brand-400);
  outline-offset: 2px;
  border-color: var(--brand-500);
  background: white;
}
#demoInput { flex: 1; min-width: 200px; }
#demoPrice { width: 120px; }

.demo-views {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.demo-view {
  background: var(--panel);
  border-radius: var(--r-3);
  padding: 18px;
}
.demo-view-head {
  font-size: 10px; color: var(--bone-500);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 14px;
}
.demo-store { background: white; border-radius: 10px; overflow: hidden; padding-bottom: 14px; }
.demo-store-img { aspect-ratio: 4/5; }
.demo-store-name { padding: 14px 14px 2px; font-size: 14px; }
.demo-store-price { padding: 0 14px 12px; font-family: var(--font-mono); font-size: 13px; color: var(--bone-600); }
.demo-store-btn {
  margin: 0 14px; width: calc(100% - 28px);
  background: var(--ink); color: white; border: 0;
  padding: 9px; border-radius: 999px; font-family: inherit; font-size: 12px;
}
.demo-admin {
  background: white; border-radius: 10px; overflow: hidden;
  padding: 0 16px;
}
.demo-admin-row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.demo-admin-row:last-child { border-bottom: 0; }
.demo-admin-row span:first-child { color: var(--bone-500); font-size: 12px; }
.demo-checkout { background: white; border-radius: 10px; padding: 16px; }
.dc-line {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 13px;
}
.dc-sub { color: var(--bone-500); }
.dc-total {
  border-top: 1px solid var(--line);
  padding-top: 12px; margin-top: 4px;
  font-weight: 500;
}
.dc-pay {
  margin-top: 12px; width: 100%;
  background: var(--brand-500); color: white; border: 0;
  padding: 12px; border-radius: 8px; font-family: inherit; font-size: 13px; font-weight: 500;
  cursor: pointer;
}

@media (max-width: 760px) {
  .demo-views { grid-template-columns: 1fr; }
  .demo-stage { padding: 20px; }
}

/* ==== STORIES ==== */
.stories-header { margin-bottom: 56px; max-width: 720px; }
.stories-header h2 em { font-style: italic; color: var(--brand-600); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story {
  background: var(--panel);
  border-radius: var(--r-4);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out);
}
.story:hover { transform: translateY(-4px); }
.story-img {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
}
.story-location {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.story-body { padding: 28px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.story-name { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.015em; }
.story-biz { font-size: 13px; color: var(--bone-500); margin-bottom: 16px; }
.story-quote {
  font-size: 16px; line-height: 1.55; color: var(--bone-800);
  margin: 0 0 24px; flex: 1;
  text-wrap: pretty;
}
.story-quote em { font-family: var(--font-display); font-style: italic; color: var(--brand-600); }
.story-numbers {
  display: flex; gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.story-numbers > div { display: flex; flex-direction: column; gap: 2px; }
.story-numbers strong { color: var(--brand-700); }
.story-numbers span { font-size: 11px; color: var(--bone-500); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }

@media (max-width: 960px) { .stories-grid { grid-template-columns: 1fr; } }

/* ==== STORY QUOTE CARD (imageless) ==== */
.story-quote-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: 36px 32px 28px;
  position: relative;
  overflow: visible;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.story-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.story-mark {
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--brand-200);
  font-weight: 800;
  pointer-events: none;
  user-select: none;
}
.story-quote-card .story-body { padding: 0; gap: 24px; position: relative; z-index: 1; }
.story-quote-card .story-quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 32px 0 0;
  letter-spacing: -0.01em;
  flex: 1;
}
.story-quote-card .story-quote em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-600);
  font-weight: 600;
}
.story-meta {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.story-quote-card .story-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 3px;
}
.story-quote-card .story-biz {
  font-size: 12.5px;
  color: var(--bone-500);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ==== FAQ (shared with pricing.css) ==== */
.faq-section h2 em { font-style: italic; color: var(--brand-600); }
.faq { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; gap: 20px;
  padding: 8px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 28px; color: var(--bone-500);
  transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--brand-600); }
.faq-item > div {
  margin-top: 12px;
  font-size: 16px; line-height: 1.6; color: var(--bone-700);
  max-width: 680px;
}

/* ==== TRUST ==== */
.trust-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-label { text-align: center; margin-bottom: 24px; }
.trust-logos {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 40px;
  color: var(--bone-500);
  font-size: 18px;
}
.trust-logos span { opacity: 0.7; transition: opacity 0.2s; }
.trust-logos span:hover { opacity: 1; color: var(--ink); }

/* ==== CTA ==== */
.cta-card {
  position: relative;
  border-radius: var(--r-5);
  padding: 80px 40px;
  overflow: hidden;
  background: var(--brand-900);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,163,61,0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(189,145,211,0.4) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 50%, var(--brand-900) 100%);
}
.cta-card h2 { margin: 0; }
.cta-card h2 em { color: var(--amber-400); font-style: italic; }
