/* MVP Callers — Bold, Sales-Driven Design System */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */
:root {
  /* Typography */
  --font-display: "Oswald", "Impact", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Colors - Dark, High-Contrast */
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --surface: #1A1A1A;
  --surface-hover: #222222;

  --text: #FFFFFF;
  --text-muted: #888888;
  --text-dim: #666666;

  --accent: #C9A962;
  --accent-hover: #D4B872;

  --border: #2A2A2A;
  --border-light: #333333;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul,
ol {
  list-style: none;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-tight {
  padding: 60px 0;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-padding-mobile) 0;
  }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.headline-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.headline-sm {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.text-lg {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-muted);
}

.text-md {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

.text-sm {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}

.text-accent {
  color: var(--accent);
}

.text-italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
  padding: 8px 0;
}

.btn-ghost:hover {
  color: var(--accent-hover);
}

.btn-wide {
  width: 100%;
}

.btn-lg {
  padding: 20px 40px;
  font-size: 16px;
}

/* Arrow icon in buttons */
.btn .arrow {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  padding: 12px 24px;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.hamburger {
  width: 20px;
  height: 14px;
  display: block;
  background:
    linear-gradient(var(--text), var(--text)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--text), var(--text)) 0 100% / 100% 2px no-repeat;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-top .brand img {
  height: 32px;
}

.mobile-top .icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 20px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
}

.mobile-nav a {
  padding: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--text);
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta.desktop-only {
    display: none;
  }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
  padding-top: 160px;
  padding-bottom: var(--section-padding);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero-headline {
  margin-bottom: 24px;
}

.hero-headline .accent {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* ============================================================================
   CARDS
   ============================================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color var(--transition-base);
}

.card:hover {
  border-color: var(--border-light);
}

.card-dark {
  background: var(--bg);
}

/* Stat Cards - Premium Design */
.stat-card {
  text-align: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #E8D5A3, var(--accent));
  background-size: 200% 100%;
  animation: gradient-shift 3s ease infinite;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(201, 169, 98, 0.15);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 16px;
  opacity: 0.8;
}

/* Stats Grid Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

  .stat-value {
    font-size: 44px;
  }
}

@media (max-width: 500px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 32px 20px;
  }

  .stat-value {
    font-size: 40px;
  }
}

/* Service Cards */
.service-card {
  padding: 40px 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Step Cards */
.step-card {
  position: relative;
  padding: 40px 32px;
  text-align: center;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
}

.section-header.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   DIVIDERS
   ============================================================================ */
.divider {
  height: 1px;
  background: var(--border);
}

.divider-gold {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  max-width: 200px;
  margin: 0 auto;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-headline {
  margin-bottom: 16px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-legal a {
  margin-left: 24px;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 12px;
  }
}

/* ============================================================================
   FORMS
   ============================================================================ */
.input,
.textarea {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--transition-fast);
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.input::placeholder,
.textarea::placeholder {
  color: var(--text-dim);
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

/* Intent Chips */
.intent-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.intent-chip {
  display: flex;
  cursor: pointer;
}

.intent-chip input {
  display: none;
}

.intent-chip span {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.intent-chip input:checked+span {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================================
   PRICING CARDS
   ============================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card .price-note {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}

.price-card .features {
  flex: 1;
  margin-bottom: 32px;
}

.price-card .features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-card .features .check {
  color: var(--accent);
  font-weight: 700;
}

.price-card.featured {
  border-color: var(--accent);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================================================
   FAQ / ACCORDION
   ============================================================================ */
.faq {
  margin-top: 60px;
}

.faq h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.accordion {
  padding: 0;
  background: transparent;
  border: none;
}

.ac-item {
  border-bottom: 1px solid var(--border);
}

.ac-item:last-child {
  border-bottom: none;
}

.ac-btn {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  text-align: left;
  transition: color var(--transition-fast);
}

.ac-btn:hover {
  color: var(--accent);
}

.ac-btn span:last-child {
  font-size: 24px;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.ac-btn[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.ac-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ac-panel .inner {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================================
   PREMIUM ANIMATIONS
   ============================================================================ */

/* Base Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Children */
[data-reveal-stagger]>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].active>*:nth-child(1) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].active>*:nth-child(2) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].active>*:nth-child(3) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].active>*:nth-child(4) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].active>*:nth-child(5) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].active>*:nth-child(6) {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}

/* Scale In */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.9);
}

[data-reveal="scale"].active {
  opacity: 1;
  transform: scale(1);
}

/* Fade In From Left/Right */
[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="left"].active,
[data-reveal="right"].active {
  transform: translateX(0);
}

/* Glow Pulse Animation */
@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 169, 98, 0);
  }

  50% {
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.15);
  }
}

/* Number Counter Animation */
@keyframes count-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Float Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Gradient Border Animation */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Hero Text Reveal */
.hero-headline {
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-sub {
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-cta {
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   FEATURED QUOTE
   ============================================================================ */
.featured-quote {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-card-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 56px;
  position: relative;
  text-align: center;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 40px;
}

.quote-text-lg {
  font-size: 22px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.quote-author-featured {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info .author-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.author-info .author-location {
  font-size: 13px;
  color: var(--text-muted);
}

.quote-result-badge {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .quote-card-featured {
    padding: 32px 24px;
  }

  .quote-text-lg {
    font-size: 18px;
  }

  .quote-icon {
    font-size: 60px;
    top: 10px;
    left: 20px;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Spacers */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ============================================================================
   PAGE-SPECIFIC OVERRIDES
   ============================================================================ */

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  font-size: 24px;
  line-height: 1;
}

.info-item b {
  display: block;
  margin-bottom: 4px;
}

.info-item p {
  color: var(--text-muted);
  font-size: 14px;
}

.info-item a {
  color: var(--accent);
}

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

/* Dashboard Preview */
.preview-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  overflow: hidden;
}

.preview-frame img {
  width: 100%;
  height: auto;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

/* ============================================================================
   QUOTES / TESTIMONIALS
   ============================================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.quote {
  padding: 32px;
}

.quote-marks {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.quote p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-result {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  margin-bottom: 20px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-author b {
  display: block;
  font-size: 14px;
}

.quote-author span {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================================
   TESTIMONIAL BLOCK (HOMEPAGE)
   ============================================================================ */
.testimonial-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

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

.author-name {
  color: var(--accent);
}

/* ============================================================================
   ICP CARDS (WHO WE WORK WITH)
   ============================================================================ */
.icp-card {
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition-base);
}

.icp-card:hover {
  border-color: var(--accent);
}

.icp-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.icp-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================================
   BRAND PROTECTION CARDS
   ============================================================================ */
.brand-card {
  padding: 32px 24px;
  text-align: center;
}

.brand-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}

.brand-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.brand-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================================
   COMPARISON TABLE
   ============================================================================ */
.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--surface);
}

.comparison-table th.highlight {
  color: var(--accent);
  background: rgba(201, 169, 98, 0.1);
}

.comparison-table td {
  font-size: 15px;
  color: var(--text-muted);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-table td.highlight {
  color: var(--accent);
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: var(--surface);
}

/* ============================================================================
   STAT ICONS (PERFORMANCE TRACKING)
   ============================================================================ */
.stat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.stat-label-lg {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================================
   MODEL CARDS (ENGAGEMENT MODELS)
   ============================================================================ */
.model-card {
  padding: 32px;
}

.model-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--accent);
}

.model-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================================
   FOUNDER BLOCK
   ============================================================================ */
.founder-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}

.founder-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.founder-sig {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* ============================================================================
   FOOTER COMPLIANCE
   ============================================================================ */
.footer-compliance {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================================
   HERO WITH VISUAL
   ============================================================================ */
.hero-with-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .hero-with-visual {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }
}