/* ========================================
   CANTUM TECHNOLOGIES — Dark Premium Design
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Serif&display=swap');

:root {
  --navy: #0A0A0A;
  --navy-light: #151515;
  --navy-muted: #1e1e1e;
  --navy-faded: rgba(255, 255, 255, 0.03);

  --white: #0A0A0A;
  --bg: #111111;
  --bg-warm: #0e0e0e;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;

  --text-primary: #ffffff;
  --text-secondary: #b4c0d0;
  --text-tertiary: #8d9bb5;
  --text-link: #5B8DEF;

  --accent: #4A78E8;
  --accent-light: #5B8DEF;
  --accent-dark: #3A62C8;
  --accent-bg: rgba(74, 120, 232, 0.10);
  --accent-border: rgba(74, 120, 232, 0.18);

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.20);

  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --container: 1120px;
  --container-narrow: 680px;
  --nav-height: 110px;
  --section-pad: 120px;

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

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(74, 120, 232, 0.3); color: #fff; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

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

.text-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

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

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

.section-navy {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.section-navy h2, .section-navy h3, .section-navy h4 {
  color: #fff;
}

.section-navy .text-accent {
  color: #7ba0ff;
}

.section-navy .eyebrow {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.section-navy .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-header-left {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-header-left h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-header-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(74, 120, 232, 0.25);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 20px rgba(74, 120, 232, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(42, 91, 215, 0.2);
}

.btn-accent:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(42, 91, 215, 0.25);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* Navy section button overrides (same in dark theme) */
.section-navy .btn-primary {
  background: var(--accent);
  color: #fff;
}
.section-navy .btn-primary:hover {
  background: var(--accent-light);
}
.section-navy .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.section-navy .btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo img {
  height: 130px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
}

.dropdown-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.dropdown-icon-wrap svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-text span {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dropdown-text small {
  font-size: 0.76rem;
  color: var(--text-tertiary);
}

.nav-cta-wrap { margin-left: 8px; }

/* Mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background: #0A0A0A;
    padding: 32px 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    padding: 0;
    margin: 0;
  }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(74,120,232,0.08);
    border-color: rgba(74,120,232,0.2);
  }
  .nav-links a.active {
    background: rgba(74,120,232,0.1);
    border-color: rgba(74,120,232,0.25);
    color: var(--accent);
  }
  .nav-dropdown-trigger {
    justify-content: space-between;
  }
  .nav-dropdown-trigger svg { transition: transform 0.3s ease; }
  .nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 6px;
    margin: 4px 0 8px;
    display: none; min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    max-height: 600px;
  }
  .nav-dropdown-menu a {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .nav-cta-wrap {
    margin-left: 0;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-cta-wrap .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }
  body.nav-open { overflow: hidden; }
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(74,120,232,0.03) 100%);
  z-index: 0;
}

.hero > .container { position: relative; z-index: 1; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.hero h1 { margin-bottom: 20px; }

.hero-description {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-metric-value,
.hero-metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-metric-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-product { min-height: 85vh; }

.hero-centered .hero-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered .hero-description { max-width: 480px; margin: 0 auto 36px; }
.hero-centered .hero-actions { justify-content: center; }

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-metrics { gap: 28px; flex-wrap: wrap; }
  .hero::before { width: 100%; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 48px); padding-bottom: 64px; }
  .hero-product { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ---- Visual Card ---- */
.visual-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  will-change: transform;
}
.visual-card:hover {
  box-shadow: 0 12px 40px rgba(74,120,232,0.12), var(--shadow-lg);
}

.visual-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.visual-row:last-child { margin-bottom: 0; }

.visual-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visual-dot svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

.visual-row-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.visual-row-sub {
  font-size: 0.76rem;
  color: var(--text-tertiary);
}

.visual-status {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--success);
  margin-left: auto;
}

/* ---- Cards ---- */
.card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-navy .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.section-navy .card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
}

.card-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9rem; line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.card-link:hover { gap: 9px; }

/* Product Cards */
.product-card { padding: 0; overflow: hidden; }

.product-card-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card-visual svg {
  width: 40px; height: 40px;
  stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1;
}

.product-card-body {
  padding: 28px 28px 32px;
}
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body p { font-size: 0.88rem; margin-bottom: 16px; }

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-check svg {
  width: 10px; height: 10px;
  stroke: var(--success); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

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

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

.stat-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.section-navy .stat-number { color: #fff; }
.section-navy .stat-label { color: rgba(255,255,255,0.65); }

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

/* ---- Process Steps ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}

.section-navy .process-steps::before {
  background: rgba(255,255,255,0.1);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 18px;
}

.section-navy .step-number {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: #7ba0ff;
}

.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; color: var(--text-tertiary); }

@media (max-width: 1024px) { .process-steps { grid-template-columns: repeat(2, 1fr); } .process-steps::before { display: none; } }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr; } }

/* ---- Comparison ---- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-col { padding: 40px; }

.comparison-col-before { background: rgba(239, 68, 68, 0.04); }
.comparison-col-after {
  background: rgba(74, 120, 232, 0.04);
  border-left: 1px solid var(--border);
}

.comparison-col h3 { margin-bottom: 24px; }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.comparison-x, .comparison-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-x { background: rgba(220, 38, 38, 0.06); }
.comparison-x svg { width: 9px; height: 9px; stroke: var(--error); fill: none; stroke-width: 2.5; stroke-linecap: round; }

.comparison-check { background: rgba(22, 163, 74, 0.06); }

@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
  .comparison-col-after { border-left: none; border-top: 1px solid var(--border); }
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.section-navy .testimonial-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.testimonial-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 15px; height: 15px;
  fill: var(--warning);
  stroke: none;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-navy .testimonial-quote { color: rgba(255,255,255,0.85); }

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

.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy-muted);
}

.section-navy .testimonial-avatar {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}

.testimonial-name { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-tertiary); }
.section-navy .testimonial-name { color: #fff; }
.section-navy .testimonial-role { color: rgba(255,255,255,0.6); }

/* ---- CTA Section ---- */
.cta-section { padding: var(--section-pad) 0; }

.cta-box {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.cta-box h2 { color: #fff; margin-bottom: 14px; }
.cta-box .text-accent { color: var(--accent-light); }
.cta-box p { font-size: 1.05rem; margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-box .btn-primary { background: var(--accent); color: #fff; }
.cta-box .btn-primary:hover { background: var(--accent-light); }
.cta-box .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-box .btn-secondary:hover { background: rgba(255,255,255,0.06); }

@media (max-width: 768px) { .cta-box { padding: 48px 24px; } }

/* ---- Calendar ---- */
.calendar-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.calendar-header {
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
}
.calendar-header h3 { margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.calendar-header h3 svg { width: 20px; height: 20px; stroke: var(--text-tertiary); fill: none; stroke-width: 1.5; }
.calendar-header p { font-size: 0.88rem; color: var(--text-tertiary); }

.calendar-body {
  padding: 24px;
  min-height: 420px;
}
.calendar-body .calendly-inline-widget {
  width: 100%;
  min-width: 100% !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.calendar-placeholder .cal-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.calendar-placeholder .cal-icon-wrap svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.calendar-placeholder p { margin-bottom: 20px; color: var(--text-tertiary); font-size: 0.9rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.4;
}

.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 14px;
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 11px; height: 11px;
  stroke: var(--text-tertiary); fill: none; stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--accent-bg);
  border-color: var(--accent-border);
}

.faq-item.active .faq-toggle svg {
  transform: rotate(45deg);
  stroke: var(--accent);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-secondary); line-height: 1.75; font-size: 0.9rem; }

/* ---- Value Grid ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.value-item {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s ease;
}

.value-item:hover { background: var(--bg); }

.value-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon-wrap svg {
  width: 20px; height: 20px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.value-item h4 { margin-bottom: 6px; }
.value-item p { font-size: 0.85rem; color: var(--text-tertiary); }

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

/* ---- Trust Logos ---- */
.trust-bar { padding: 48px 0; }

.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-tertiary);
  opacity: 0.5;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ---- Timeline ---- */
.timeline { position: relative; padding-left: 40px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border-strong);
}

.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}

.timeline-year {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-tertiary); }

/* ---- Contact ---- */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 91, 215, 0.06);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238896a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card h4 { margin-bottom: 2px; font-size: 0.9rem; }
.contact-card a { color: var(--accent); font-size: 0.88rem; }
.contact-card p { font-size: 0.82rem; color: var(--text-tertiary); }

.highlight-box {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.highlight-box h4 { margin-bottom: 6px; }
.highlight-box p { font-size: 0.88rem; margin-bottom: 18px; }

.trust-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }

.trust-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

.trust-check svg {
  width: 13px; height: 13px;
  stroke: var(--success); fill: none;
  stroke-width: 2.5; flex-shrink: 0;
}

/* ---- Urgency Banner ---- */
.urgency-banner {
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.urgency-banner svg { flex-shrink: 0; }

/* ---- Progress Bars ---- */
.progress-item { margin-bottom: 16px; }
.progress-item:last-child { margin-bottom: 0; }

.progress-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-label { font-size: 0.82rem; color: var(--text-secondary); }
.progress-value { font-size: 0.78rem; font-weight: 700; }

.progress-track {
  height: 5px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
}

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo img { height: 80px; }

.footer-brand p {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a, .footer-links li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

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

/* ---- Scroll Top ---- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow-sm);
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- Cookie ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-inner p { font-size: 0.82rem; color: var(--text-secondary); }
.cookie-inner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

/* ---- Floating Animations ---- */
/* ---- Animations & Keyframes ---- */

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

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,120,232,0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(74,120,232,0.15); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes fade-in-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float-slow 5s ease-in-out infinite; }
.float-delayed { animation: float-delayed 4.5s ease-in-out 0.5s infinite; }

/* Hero visual floats */
.hero-visual .visual-card {
  animation: float-slow 5s ease-in-out infinite;
}

/* Eyebrow dot pulse */
.eyebrow-dot {
  animation: dot-pulse 2.5s ease-in-out infinite;
}

/* Gradient text shimmer on hover */
.text-gradient {
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* Card hover lift with glow */
.card:hover,
.step-card:hover,
.pricing-card:hover,
.problem-card:hover,
.team-card:hover {
  box-shadow: 0 8px 32px rgba(74,120,232,0.1), 0 2px 12px rgba(0,0,0,0.4);
}

/* CTA button glow pulse */
.btn-primary {
  position: relative;
}
.hero-actions .btn-primary,
.final-cta .btn-primary,
.cta-box .btn-primary {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Staggered reveal delays for grid children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* Visual card rows stagger */
.visual-card .visual-row {
  opacity: 0;
  transform: translateX(20px);
  animation: slide-in-right 0.5s var(--ease) forwards;
}
.visual-card .visual-row:nth-child(1) { animation-delay: 0.3s; }
.visual-card .visual-row:nth-child(2) { animation-delay: 0.5s; }
.visual-card .visual-row:nth-child(3) { animation-delay: 0.7s; }
.visual-card .visual-row:nth-child(4) { animation-delay: 0.9s; }

/* Hero background gradient animation */
.hero-bg {
  background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(74,120,232,0.06) 0%, transparent 70%);
  animation: gradient-shift 8s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Stat numbers scale on reveal */
.stat-number {
  transition: transform 0.4s var(--ease);
}
.stat-number:hover {
  transform: scale(1.08);
}

/* Value icon float */
.value-icon-wrap {
  transition: transform 0.4s var(--ease);
}
.value-item:hover .value-icon-wrap {
  transform: translateY(-4px);
  animation: float 2s ease-in-out infinite;
}

/* Integration tags subtle float on light section */
.section-light .tag {
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.section-light .tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Smooth scroll progress indicator on navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.1s linear;
}

/* Parallax-ready elements */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Team card hover image zoom */
.team-card-img {
  transition: transform 0.5s var(--ease);
}
.team-card:hover .team-card-img {
  transform: scale(1.04);
}
.team-card {
  overflow: hidden;
}

/* Comparison card entrance */
.comp-col-before,
.comp-col-after {
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.comp-col-before:hover,
.comp-col-after:hover {
  transform: translateY(-4px);
}

/* Disable heavy animations on reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Colored Section Variants ---- */
.section-soft-blue {
  background: #0e0e0e;
}

.section-soft-navy {
  background: #111111;
}

.section-warm {
  background: #0d0d0d;
}

/* Light section for contrast (Problem, FAQ on fitness page etc.) */
.section-light {
  background: #f5f5f5;
  color: #4a5568;
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: #0A0A0A; }
.section-light p { color: #4a5568; }
.section-light .eyebrow { background: rgba(74,120,232,0.08); border-color: rgba(74,120,232,0.15); }
.section-light .card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
.section-light .card:hover {
  border-color: rgba(0,0,0,0.14);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.section-light .btn-primary { background: var(--accent); color: #fff; }
.section-light .faq-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
.section-light .stat-number { color: #0A0A0A; }
.section-light .stat-label { color: #64748b; }
.section-light .card .card-icon { background: rgba(74,120,232,0.08); }
.section-light .card .card-icon svg { stroke: var(--accent); }
.section-light .card .card-tag { background: rgba(74,120,232,0.08); color: var(--accent); }
.section-light .card .card-features li { color: #4a5568; }
.section-light .card .card-features li svg { stroke: var(--accent); }
.section-light .card .btn-text { color: var(--accent); }
.section-light .card .btn-text svg { stroke: var(--accent); }
.section-light .value-item { border-color: rgba(0,0,0,0.06); }
.section-light .value-icon-wrap { background: rgba(74,120,232,0.08); }
.section-light .value-icon-wrap svg { stroke: var(--accent); }
.section-light .value-item p { color: #64748b; }
.section-light .trust-label { color: #64748b; }
.section-light .trust-logo { color: #94a3b8; border-color: rgba(0,0,0,0.06); }
.section-light .testimonial-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.section-light .testimonial-card p { color: #4a5568; }
.section-light .testimonial-name { color: #0A0A0A; }
.section-light .testimonial-role { color: #64748b; }
.section-light .text-gradient { background: linear-gradient(135deg, #3b5cc6, #4A78E8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-light .faq-item { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.section-light .faq-item:hover { border-color: rgba(0,0,0,0.14); }
.section-light .faq-question { color: #0A0A0A; }
.section-light .faq-toggle { border-color: rgba(0,0,0,0.12); }
.section-light .faq-toggle svg { stroke: #64748b; }
.section-light .faq-answer-inner { color: #4a5568; }
.section-light .process-step { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.section-light .process-step:hover { border-color: rgba(0,0,0,0.14); }
.section-light .process-step-number { background: rgba(74,120,232,0.08); color: var(--accent); }
.section-light .process-step h4 { color: #0A0A0A; }
.section-light .process-step p { color: #4a5568; }
.section-light .badge { background: rgba(74,120,232,0.08); border-color: rgba(74,120,232,0.15); color: var(--accent); }
.section-light .calendar-wrapper { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.section-light .calendar-header { border-bottom-color: rgba(0,0,0,0.08); }
.section-light .calendar-header h3 { color: #0A0A0A; }
.section-light .calendar-header p { color: #64748b; }
.section-light .feature-list li { color: #4a5568; }
.section-light .faq-icon { color: #64748b; }

/* Accent stripe on top of section */
.section-accent-top {
  position: relative;
}

.section-accent-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---- Accent Box / Highlight Card ---- */
.accent-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: rgba(255,255,255,0.8);
}

.accent-card h3, .accent-card h4 { color: #fff; }
.accent-card p { color: rgba(255,255,255,0.65); }

/* ---- Decorative Elements ---- */
.deco-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
}

.deco-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
  opacity: 0.4;
}

.deco-line {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent-border), transparent);
}

/* Hero decorative background shapes */
.hero-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-deco-1 {
  top: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(74, 120, 232, 0.06);
  animation: float 6s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(74, 120, 232, 0.04);
  animation: float-delayed 5s ease-in-out infinite;
}

.hero-deco-3 {
  top: 30%;
  left: 15%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
  animation: float 3.5s ease-in-out infinite;
}

/* ---- Stats Section Styled ---- */
.stats-section-styled {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin: 0 auto;
  max-width: var(--container);
}

.stats-section-styled .stat-number { color: #fff; }
.stats-section-styled .stat-label { color: rgba(255,255,255,0.65); }

/* ---- Section Divider Shapes ---- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 400px;
  margin: 0 auto;
}

/* ---- Feature Highlight Strip ---- */
.feature-strip {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.feature-strip-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

/* ---- Card with color left border ---- */
.card-accent-left {
  border-left: 3px solid var(--accent);
}

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

/* ---- Product card visual floating icons ---- */
.product-card-visual .floating-icon {
  position: absolute;
  opacity: 0.15;
  animation: float 4s ease-in-out infinite;
}

.product-card-visual .floating-icon:nth-child(2) {
  animation-delay: 1s;
}

.product-card-visual .floating-icon:nth-child(3) {
  animation-delay: 2s;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.pt-0 { padding-top: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---- Text Gradient (dark theme) ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Fitness Landing Page ---- */

/* Problem Cards */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.problem-card .problem-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-card h3 { color: #0A0A0A; margin-bottom: 10px; font-size: 1.1rem; }
.problem-card p { color: var(--text-tertiary); font-size: 0.9rem; line-height: 1.7; }

/* Dark Comparison */
.comparison-dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .comparison-dark { grid-template-columns: 1fr; } }

.comparison-dark .comp-col {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
}

.comparison-dark .comp-col-before {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-dark .comp-col-after {
  background: rgba(74, 120, 232, 0.06);
  border: 1px solid rgba(74, 120, 232, 0.25);
}

.comp-col-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.comp-col-label::after {
  content: '';
  flex: 1;
  height: 1px;
}

.comp-col-before .comp-col-label { color: #ef4444; }
.comp-col-before .comp-col-label::after { background: rgba(239,68,68,0.25); }
.comp-col-after .comp-col-label { color: var(--accent); }
.comp-col-after .comp-col-label::after { background: rgba(74,120,232,0.3); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.comp-col-before .comp-list li {
  color: rgba(255, 255, 255, 0.6);
}
.comp-col-after .comp-list li {
  color: rgba(255, 255, 255, 0.85);
}

.comp-list .comp-x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  margin-top: 1px;
}

.comp-list .comp-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 120, 232, 0.15);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}
.comp-list .comp-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* Process Steps Dark */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.step-card:hover {
  border-color: rgba(74, 120, 232, 0.4);
  background: #242424;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-tertiary); line-height: 1.6; }

/* Integration Tags */
.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.integration-tag {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
  background: #ffffff;
  color: #0A0A0A;
}

.integration-tag.tag-filled {
  background: #0A0A0A;
  color: #ffffff;
  border-color: #0A0A0A;
}

.integration-tag.tag-warning {
  background: transparent;
  color: var(--warning);
  border-color: rgba(245,158,11,0.3);
}

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.pricing-card.pricing-highlight {
  border-color: var(--accent-border);
  background: rgba(74, 120, 232, 0.06);
}

.pricing-card .pricing-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.pricing-card.pricing-highlight .pricing-label { color: var(--accent); }

.pricing-card .pricing-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-card .pricing-unit {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.pricing-card .pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-card .pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-card .pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  margin-top: 7px;
  flex-shrink: 0;
}

.pricing-card.pricing-highlight .pricing-features li { color: var(--accent-light); }
.pricing-card.pricing-highlight .pricing-features li::before { background: var(--accent); }

/* ROI Box */
.roi-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 24px;
}

.roi-box strong { color: var(--text-primary); }
.roi-box p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* FAQ Grid (non-accordion) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-card h4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #0A0A0A;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.faq-card h4::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.faq-card p { font-size: 0.88rem; color: var(--text-tertiary); line-height: 1.7; }

/* Final CTA Section */
.final-cta {
  padding: 120px 0;
  text-align: center;
}

.final-cta .eyebrow { margin: 0 auto 24px; }
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.final-cta .cta-sub { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px; }

.final-cta .cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta .cta-email {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

/* Minimal Footer */
.footer-minimal {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-minimal .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-minimal .footer-logo img {
  height: 28px;
  opacity: 0.5;
}

.footer-minimal .footer-center {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.footer-minimal .footer-center a {
  color: rgba(255,255,255,0.6);
  margin: 0 4px;
}

.footer-minimal .footer-right {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* Stat accent colors */
.stat-accent { color: var(--accent) !important; }

/* Section dark variant */
.section-dark {
  background: #0d0d0d;
}

/* ---- Responsive: Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }
  .nav-logo img { height: 90px; }
  .footer-brand .nav-logo img { height: 64px; }
}

/* ---- Responsive: Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
    --section-pad: 64px;
  }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .nav-logo img { height: 64px; }
  .footer-brand .nav-logo img { height: 56px; }
  .section-header { margin-bottom: 40px; }
  .section-header-left { margin-bottom: 40px; }
  .eyebrow { font-size: 0.7rem; padding: 6px 14px; }
  .hero-description { font-size: 1rem; }
  .hero-metrics { gap: 20px; margin-top: 36px; padding-top: 24px; }
  .hero-metric-value, .hero-metric-number { font-size: 1.4rem; }
  .testimonial-card { padding: 24px; }
  .cta-section { padding: 64px 0; }
  .cta-box h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .stats-section-styled { padding: 48px 0; }
  .cookie-inner { flex-direction: column; text-align: center; gap: 12px; }
  .cookie-actions { justify-content: center; }
  .scroll-top { width: 40px; height: 40px; bottom: 16px; right: 16px; }
}

/* ---- Responsive: Small Mobile (max 480px) ---- */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }
  .container { padding: 0 16px; }
  .nav-logo img { height: 52px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding-bottom: 48px; }
  .hero-actions .btn { font-size: 0.9rem; padding: 14px 20px; }
  .card { padding: 24px; }
  .step-card { padding: 24px; }
  .pricing-card { padding: 28px; }
  .faq-card { padding: 24px; }
  .problem-card { padding: 24px; }
  .stats-bar { gap: 24px; }
  .stat-number { font-size: 2rem; }
}

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

/* A) Hero Text Reveal — Simple Fade-in */
.hero h1,
.hero .hero-description {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .hero-description {
  animation-delay: 0.2s;
}
.hero .hero-actions {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.hero .hero-metrics {
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* B) Cursor Spotlight in Hero */
.hero {
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-opacity: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y),
              rgba(74,120,232,0.10),
              transparent 60%);
  opacity: var(--spot-opacity);
  transition: opacity 0.4s ease;
  z-index: 0;
}
@media (max-width: 1024px) {
  .hero::after { display: none; }
}

/* C) Card Magnetic Border Glow */
.card,
.feature-card,
.value-card,
.solution-card,
.step-card,
.pricing-card,
.faq-card,
.problem-card {
  position: relative;
}
.card::before,
.feature-card::before,
.value-card::before,
.solution-card::before,
.step-card::before,
.pricing-card::before,
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%),
              rgba(74,120,232,0.55),
              rgba(74,120,232,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.card:hover::before,
.feature-card:hover::before,
.value-card:hover::before,
.solution-card:hover::before,
.step-card:hover::before,
.pricing-card:hover::before,
.problem-card:hover::before { opacity: 1; }

/* E) Section Reveal Stagger 2.0 — clip-path + children */
.reveal-section {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transition: clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.8s ease;
  will-change: clip-path, opacity;
}
.reveal-section.visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.reveal-section > .container > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transition-delay: calc(var(--child-i, 0) * 90ms + 200ms);
}
.reveal-section.visible > .container > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero .hero-description,
  .hero .hero-actions,
  .hero .hero-metrics,
  .reveal-section,
  .reveal-section > .container > * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }
}

