/* ══════════════════════════════════════════════════════════════════
   MIMO — Apple-Premium Redesign
   Paleta oficial + Fraunces / Inter / Caveat
   ══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  /* Paleta oficial MIMO */
  --paper: #FDFBF7;
  --linen: #F3EEE6;
  --sky-powder: #D6E6F2;
  --sky-30: #EBF3FA;
  --lilac-fog: #E4DCF0;
  --peach: #F9DFC8;
  --terracotta: #E07856;
  --plum: #6B4E71;
  --ink: #2B2320;
  --ink-muted: #7A7570;
  --ink-faint: #B8B3AE;
  --sky-border: #B8D4EA;
  --ocean: #2F6690;
  --peach-25: #FEF5EE;

  /* Aliases funcionales */
  --bg: var(--paper);
  --bg-alt: var(--linen);
  --text: var(--ink);
  --text-muted: var(--ink-muted);
  --text-faint: var(--ink-faint);
  --border-subtle: rgba(43, 35, 32, 0.08);

  /* Tipografía */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Espaciado */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(43, 35, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(43, 35, 32, 0.08);
  --shadow-lg: 0 24px 64px rgba(43, 35, 32, 0.14);
  --shadow-paper: 0 30px 80px -20px rgba(107, 78, 113, 0.35), 0 12px 30px -10px rgba(43, 35, 32, 0.15);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ── RESET ──────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-4); }
}

section {
  position: relative;
}

/* ── CARD ENTRANCE ANIMATIONS ──────────────────────────────── */
/* Pure CSS keyframe animations — no JS dependency, always visible */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.products-grid .product-card:nth-child(1) { animation: fadeUp 550ms var(--ease) 100ms both; }
.products-grid .product-card:nth-child(2) { animation: fadeUp 550ms var(--ease) 180ms both; }
.products-grid .product-card:nth-child(3) { animation: fadeUp 550ms var(--ease) 260ms both; }
.products-grid .product-card:nth-child(4) { animation: fadeUp 550ms var(--ease) 340ms both; }
.products-grid .product-card:nth-child(5) { animation: fadeUp 550ms var(--ease) 420ms both; }
.products-grid .product-card:nth-child(6) { animation: fadeUp 550ms var(--ease) 500ms both; }

.testimonials-grid .testi-card:nth-child(1) { animation: fadeUp 550ms var(--ease) 100ms both; }
.testimonials-grid .testi-card:nth-child(2) { animation: fadeUp 550ms var(--ease) 200ms both; }
.testimonials-grid .testi-card:nth-child(3) { animation: fadeUp 550ms var(--ease) 300ms both; }

@media (prefers-reduced-motion: reduce) {
  .product-card, .testi-card { animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  position: relative;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  padding-bottom: 4px;
  transition: color var(--duration) var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plum);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}

.btn-pill-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: color-mix(in srgb, var(--plum) 85%, black);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0 var(--space-5) var(--space-5);
  background: rgba(253, 251, 247, 0.98);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu a {
  font-size: 15px;
  color: var(--ink-muted);
  padding: var(--space-2) 0;
}

.mobile-menu .btn-pill-primary {
  align-self: flex-start;
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-pill-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  padding: 160px 0 var(--space-9);
  background: var(--paper);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-7);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--sky-powder);
  color: var(--plum);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1.0;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.hero-title .line-accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.btn-primary {
  background: var(--plum);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: color-mix(in srgb, var(--plum) 85%, black);
}

.btn-secondary {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}

.btn-secondary:hover {
  background: rgba(107, 78, 113, 0.06);
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.proof-avatars {
  display: flex;
}

.proof-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -10px;
}

.proof-avatars .avatar:first-child {
  margin-left: 0;
}

.avatar.av1 { background: var(--sky-powder); }
.avatar.av2 { background: var(--lilac-fog); }
.avatar.av3 { background: var(--peach); }
.avatar.av4 { background: var(--terracotta); }
.avatar.av5 { background: var(--plum); }

.proof-text {
  font-size: 14px;
  color: var(--ink-muted);
}

.proof-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── HERO VISUAL — mock físico premium ─────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-visual-bg {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--sky-30);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.paper-stage {
  position: relative;
  z-index: 1;
  perspective: 1400px;
  width: 340px;
}

.paper-mock {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  transform: rotateX(8deg) rotateY(-14deg) rotateZ(1deg);
  transform-style: preserve-3d;
  box-shadow: var(--shadow-paper);
  transition: transform 600ms var(--ease);
}

.paper-stage:hover .paper-mock {
  transform: rotateX(4deg) rotateY(-8deg) rotateZ(0.5deg);
}

.paper-mock-eyebrow {
  display: inline-block;
  background: var(--sky-powder);
  color: var(--plum);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.paper-mock-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 4px;
}

.paper-mock-sub {
  font-size: 11px;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.paper-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.paper-chip {
  border-radius: 8px;
  padding: 10px 8px;
  min-height: 52px;
}

.paper-chip.c-sky { background: var(--sky-powder); }
.paper-chip.c-peach { background: var(--peach); }
.paper-chip.c-lilac { background: var(--lilac-fog); }

.paper-chip-label {
  font-size: 8.5px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  opacity: 0.7;
}

.paper-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(43, 35, 32, 0.14);
  margin-bottom: 4px;
}

.paper-line.short { width: 60%; }

.paper-mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(43, 35, 32, 0.08);
}

.paper-mock-footer .tag {
  font-size: 9px;
  color: var(--terracotta);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.paper-mock-footer .url {
  font-size: 9px;
  color: var(--ink-faint);
}

/* Floating decoratives */
.floater {
  position: absolute;
  z-index: 2;
}

.floater-star {
  top: 8%;
  right: 4%;
  animation: float-1 5s ease-in-out infinite;
}

.floater-peach {
  bottom: 12%;
  left: -2%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach);
  animation: float-2 6s ease-in-out infinite;
}

.floater-dot {
  top: 42%;
  left: 4%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--plum);
  animation: float-1 4.5s ease-in-out infinite reverse;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(10px) scale(1.05); }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { margin-top: var(--space-7); }
}

@media (max-width: 640px) {
  .hero { padding: 120px 0 var(--space-8); }
  .hero-title { font-size: 42px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .paper-stage { width: 280px; }
}

/* ══════════════════════════════════════════════════════════════════
   FEATURES ROW
   ══════════════════════════════════════════════════════════════════ */
.features-row {
  padding: var(--space-6) 0;
  background: var(--paper);
}

.features-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--linen);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}

.feature-pill svg {
  flex-shrink: 0;
  color: var(--plum);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
   ══════════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-8);
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-title em {
  color: var(--terracotta);
  font-style: italic;
}

.section-subtitle {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT CARDS SECTION
   ══════════════════════════════════════════════════════════════════ */
.products {
  padding: var(--space-8) 0 var(--space-9);
  background: var(--paper);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.product-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-thumb {
  height: 160px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-thumb .thumb-inner {
  width: 78%;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(43,35,32,0.10);
}

.thumb-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(43,35,32,0.12);
  margin-bottom: 6px;
}

.thumb-bar.w60 { width: 60%; }
.thumb-bar.w40 { width: 40%; }

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 8px;
}

.thumb-grid span {
  display: block;
  height: 18px;
  border-radius: 4px;
}

/* Premium thumb paper (mini-mimo previews) */
.thumb-paper {
  width: 82%;
  background: #FDFBF7;
  border-radius: 8px;
  padding: 14px 12px;
  box-shadow: 0 8px 28px rgba(43,35,32,0.12), 0 2px 8px rgba(43,35,32,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tp-eyebrow {
  height: 4px;
  border-radius: 2px;
  width: 35%;
}

.tp-title {
  height: 7px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.tp-line {
  height: 5px;
  border-radius: 2px;
  background: rgba(43,35,32,0.10);
}

/* Weekly Focus: 3-col layout */
.tp-row {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}

.tp-col {
  flex: 1;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Business Canvas: 2x2 grid */
.tp-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.tp-box {
  height: 22px;
  border-radius: 4px;
}

/* Habit Tracker: dot grid */
.tp-habit {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
}

.tp-habit-row {
  display: flex;
  gap: 4px;
  align-items: center;
}

.th-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(43,35,32,0.15);
  flex-shrink: 0;
}

.th-dot.filled {
  background: var(--c, #E07856);
  border-color: transparent;
}

/* Decision Maker: versus layout */
.tp-versus {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-top: 4px;
}

.tp-vs-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tp-vs-head {
  height: 14px;
  border-radius: 4px;
  margin-bottom: 2px;
}

.tp-vs-divider {
  width: 1.5px;
  background: rgba(43,35,32,0.12);
  align-self: stretch;
  border-radius: 1px;
}

/* Weekly Review */
.tp-review-block {
  flex: 1;
  height: 28px;
  border-radius: 5px;
}

.tp-star {
  font-size: 10px;
  color: #E07856;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Launch Planner: timeline */
.tp-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.tp-tl-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tp-tl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tp-tl-bar {
  height: 5px;
  background: rgba(43,35,32,0.10);
  border-radius: 3px;
  flex: 1;
  max-width: var(--w, 100%);
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
  align-self: flex-start;
  color: var(--ink);
}

.product-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.product-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration) var(--ease);
}

.product-link:hover {
  gap: 10px;
}

@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ══════════════════════════════════════════════════════════════════
   PRESS BAR
   ══════════════════════════════════════════════════════════════════ */
.press-bar {
  background: var(--linen);
  padding: var(--space-6) 0;
}

.press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-7);
}

.press-label {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
}

.press-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-7);
}

.press-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .press-inner { flex-direction: column; gap: var(--space-4); text-align: center; }
  .press-logos { justify-content: center; gap: var(--space-5); }
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--space-9) 0;
  background: var(--paper);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testi-card {
  background: var(--paper);
  border: 1px solid var(--sky-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testi-quote {
  font-family: var(--font-script);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
}

.testi-meta {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.testi-role {
  font-size: 12px;
  color: var(--ink-muted);
}

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

/* ══════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--plum);
  padding: var(--space-9) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -300px;
  right: -200px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 40px;
  color: #fff;
  margin-bottom: var(--space-3);
  position: relative;
}

.cta-title em {
  color: var(--peach);
  font-style: italic;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-6);
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  position: relative;
}

.btn-cta-white {
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--plum);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta-ghost {
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.btn-cta-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--paper);
  border-top: 2px solid var(--sky-border);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-7);
}

.footer-brand .logo {
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 240px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--plum);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--ink-faint);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); text-align: center; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
