/* ═══════════════════════════════════════
   MergeThought Technologies — Design Tokens
   Minimal & Elegant — Slate + Blue-Gray
   ═══════════════════════════════════════ */

:root, [data-theme="light"] {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — Cool slate with warm undertone */
  --color-bg:             #F8F9FA;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F1F3F5;
  --color-surface-offset: #E9ECEF;
  --color-divider:        #DEE2E6;
  --color-border:         #CED4DA;

  /* Text */
  --color-text:           #1A1D23;
  --color-text-muted:     #6C757D;
  --color-text-faint:     #ADB5BD;
  --color-text-inverse:   #FFFFFF;

  /* Primary — Blue-Gray */
  --color-primary:        #4A6FA5;
  --color-primary-hover:  #3D5F8F;
  --color-primary-active: #335279;
  --color-primary-light:  #EDF2F8;

  /* Accent — Rose/Magenta (from logo's right petals) */
  --color-accent:         #C0609A;
  --color-accent-hover:   #A84D84;

  /* Semantic */
  --color-success:        #059669;
  --color-error:          #DC2626;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts — Instrument Serif + Switzer */
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-body: 'Rubik', system-ui, sans-serif;

  /* Gradient — Blue-Gray to Rose */
  --gradient-primary: linear-gradient(135deg, #4A6FA5 0%, #C0609A 100%);
  --gradient-primary-hover: linear-gradient(135deg, #3D5F8F 0%, #A84D84 100%);
  --gradient-primary-vivid: linear-gradient(135deg, #5B82BA 0%, #DD70B0 100%);
  --gradient-text: linear-gradient(135deg, #4A6FA5 0%, #C0609A 100%);
}

/* Dark Mode */
[data-theme="dark"] {
  --color-bg:             #0F1114;
  --color-surface:        #181B20;
  --color-surface-2:      #1E2228;
  --color-surface-offset: #252930;
  --color-divider:        #2E3238;
  --color-border:         #3A3F47;

  --color-text:           #E1E4E8;
  --color-text-muted:     #8B949E;
  --color-text-faint:     #545B64;
  --color-text-inverse:   #0F1114;

  --color-primary:        #7BA3D4;
  --color-primary-hover:  #92B5E0;
  --color-primary-active: #6892C4;
  --color-primary-light:  rgba(123,163,212,0.12);

  --color-accent:         #E07CB8;
  --color-accent-hover:   #EEA0CC;

  --gradient-primary: linear-gradient(135deg, #7BA3D4 0%, #E07CB8 100%);
  --gradient-primary-hover: linear-gradient(135deg, #6892C4 0%, #D163A7 100%);
  --gradient-primary-vivid: linear-gradient(135deg, #92B5E0 0%, #EEA0CC 100%);
  --gradient-text: linear-gradient(135deg, #7BA3D4 0%, #E07CB8 100%);

  --color-success:        #34D399;
  --color-error:          #F87171;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0F1114;
    --color-surface:        #181B20;
    --color-surface-2:      #1E2228;
    --color-surface-offset: #252930;
    --color-divider:        #2E3238;
    --color-border:         #3A3F47;
    --color-text:           #E1E4E8;
    --color-text-muted:     #8B949E;
    --color-text-faint:     #545B64;
    --color-text-inverse:   #0F1114;
    --color-primary:        #7BA3D4;
    --color-primary-hover:  #92B5E0;
    --color-primary-active: #6892C4;
    --color-primary-light:  rgba(123,163,212,0.12);
    --color-accent:         #E07CB8;
    --color-accent-hover:   #EEA0CC;
    --gradient-primary: linear-gradient(135deg, #7BA3D4 0%, #E07CB8 100%);
    --gradient-primary-hover: linear-gradient(135deg, #6892C4 0%, #D163A7 100%);
    --gradient-primary-vivid: linear-gradient(135deg, #92B5E0 0%, #EEA0CC 100%);
    --gradient-text: linear-gradient(135deg, #7BA3D4 0%, #E07CB8 100%);
    --color-success:        #34D399;
    --color-error:          #F87171;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  }
}


/* Dark mode overrides for hardcoded color values */
[data-theme="dark"] .badge {
  border-color: rgba(123, 163, 212, 0.2);
}
[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 4px 14px rgba(123, 163, 212, 0.3);
}
[data-theme="dark"] .btn-accent:hover {
  box-shadow: 0 4px 14px rgba(224, 124, 184, 0.3);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .badge {
    border-color: rgba(123, 163, 212, 0.2);
  }
  :root:not([data-theme]) .btn-primary:hover {
    box-shadow: 0 4px 14px rgba(123, 163, 212, 0.3);
  }
  :root:not([data-theme]) .btn-accent:hover {
    box-shadow: 0 4px 14px rgba(224, 124, 184, 0.3);
  }
}

/* ═══════════════════════════════════════
   Component Styles
   ═══════════════════════════════════════ */

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s var(--ease-out);
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-mark {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
/* Theme-aware logo switching */
.logo-mark--dark { display: none; }
.logo-mark--light { display: block; }
[data-theme="dark"] .logo-mark--light { display: none; }
[data-theme="dark"] .logo-mark--dark { display: block; }
@media (prefers-color-scheme: dark) {
  :not([data-theme="light"]) .logo-mark--light { display: none; }
  :not([data-theme="light"]) .logo-mark--dark { display: block; }
}
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: left;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--color-text); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav a:hover::after { width: 100%; }

/* Theme toggle */
.theme-toggle {
  padding: var(--space-2);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-2); }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; align-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-divider);
    flex-direction: column;
    padding: var(--space-6);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { font-size: var(--text-base); padding: var(--space-2) 0; }
}

/* --- Hero --- */
.hero {
  padding: clamp(var(--space-16), 12vw, var(--space-32)) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at 40% 50%, rgba(74,111,165,0.10) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 50%, rgba(192,96,154,0.08) 0%, transparent 50%);
  opacity: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74, 111, 165, 0.35);
}
.btn-primary:active {
  background: var(--color-primary-active);
  transform: translateY(0);
  box-shadow: none;
}
.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
  transform: translateY(-1px);
}
.btn-outline:active { transform: translateY(0); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192, 96, 154, 0.3);
}

/* --- Section --- */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section-alt { background: var(--color-surface); }
.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}
.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  max-width: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-interactive);
}
.section-alt .service-card {
  background: var(--color-bg);
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card:active { transform: translateY(0); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Why Us / Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-6);
  text-align: center;
}
.stat-item {
  padding: var(--space-6);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: var(--space-6);
  counter-reset: step;
}
.process-step {
  padding: var(--space-6);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  display: block;
  margin-bottom: var(--space-4);
}
.process-step h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-method {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-method h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.contact-method p,
.contact-method a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.contact-method a:hover { color: var(--color-primary); }

/* Contact Form */
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.section-alt .contact-form {
  background: var(--color-bg);
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.section-alt .form-group input,
.section-alt .form-group textarea,
.section-alt .form-group select {
  background: var(--color-surface);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}
.form-success.show { display: block; }
.form-success svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-success);
}
.form-success h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.form-success p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Support Portal --- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-6);
}
.support-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-interactive);
}
.section-alt .support-card {
  background: var(--color-bg);
}
.support-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin: 0 auto var(--space-4);
}
.support-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.support-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* --- Footer --- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: clamp(var(--space-10), 5vw, var(--space-16)) var(--space-6);
}
.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
}
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 300px;
}
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-1) 0;
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-8) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-primary); }

/* --- Scroll Animations --- */
.fade-in { opacity: 1; }
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.3);
}
.whatsapp-float:active { transform: scale(1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* --- Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 60;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
}
.modal-close:hover { background: var(--color-surface-2); color: var(--color-text); }
.modal h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.modal p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* Calendly embed placeholder */
.calendly-placeholder {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.calendly-placeholder svg {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-3);
  color: var(--color-primary);
}

/* Ticker badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(74, 111, 165, 0.2);
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Trusted by logos */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-8);
  opacity: 0.35;
}
.trusted-logos svg {
  height: 24px;
  color: var(--color-text);
}

/* Testimonial */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.section-alt .testimonial-card {
  background: var(--color-bg);
}
.testimonial-card blockquote {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-4);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: var(--text-sm);
}
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: 600;
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
