/* Betsmetric — Dashboard-style (same as personal cabinet) */
:root {
  --bg: #121418;
  --bg-card: #1a1e24;
  --bg-elevated: #22262e;
  --border: #2a2e36;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --text-muted: #8a8e96;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.15);
  --accent-glow: rgba(57, 255, 20, 0.25);
  --accent-bright: #5fff33;
  --brand: #3E5866;
  --brand-dim: rgba(62, 88, 102, 0.25);
  --brand-light: #4d6b7a;
  --electric-blue: #4A90E2;
  --electric-blue-dim: rgba(74, 144, 226, 0.2);
  --purple: #7c3aed;
  --red: #ef4444;
  --gold: var(--accent);
  --gold-bright: var(--accent-bright);
  --teal: var(--electric-blue);
  --teal-dark: var(--bg);
  --teal-light: var(--bg-elevated);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--electric-blue));
  z-index: 9999;
  transform-origin: left;
  transition: transform 0.1s ease-out;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header — dashboard nav style */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  min-height: 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--text);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; font-style: italic; line-height: 1.2; }
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  line-height: 1.2;
}

.nav-main {
  display: flex;
  gap: 0.25rem;
}

.nav-item {
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}

.nav-item:hover { color: var(--text); }

.nav-item.active {
  color: var(--brand-light);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.link-login {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.link-login:hover { color: var(--text); }

.btn {
  padding: 0.6rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-nav {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
}

.btn-nav:hover {
  opacity: 0.9;
  box-shadow: 0 4px 20px rgba(62, 88, 102, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(62, 88, 102, 0.4);
}

.btn-primary svg { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 20% 20%, var(--accent-dim) 0%, transparent 45%),
    radial-gradient(ellipse 90% 70% at 80% 60%, var(--electric-blue-dim) 0%, transparent 45%),
    radial-gradient(ellipse 80% 50% at 50% 50%, var(--bg-card) 0%, var(--bg) 70%, transparent 100%);
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?w=1200');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  will-change: transform;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 35%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 { width: 450px; height: 450px; background: var(--accent); top: -15%; left: -8%; animation-delay: 0s; opacity: 0.25; }
.orb-2 { width: 350px; height: 350px; background: var(--electric-blue); top: 50%; right: -12%; animation-delay: -7s; opacity: 0.2; }
.orb-3 { width: 280px; height: 280px; background: var(--accent); bottom: -8%; left: 15%; animation-delay: -14s; opacity: 0.2; }
.orb-4 { width: 220px; height: 220px; background: var(--electric-blue); top: 25%; right: 25%; animation-delay: -5s; opacity: 0.18; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-label {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 800;
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.65;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
}

.tagline-stop {
  color: #e74c3c;
  text-shadow: 0 0 24px rgba(231, 76, 60, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(231, 76, 60, 0.1);
}

.tagline-arrow {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.2rem;
}

.tagline-start {
  color: var(--accent);
  text-shadow: 0 0 32px var(--accent-glow);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: var(--accent-dim);
  letter-spacing: 0.02em;
}

.hero-cta { margin-bottom: 0.75rem; }

.hero-cta .btn {
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.9;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 32px;
  height: 32px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Scroll reveal — staggered */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed .scroll-item {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.revealed .scroll-item:nth-child(1) { transition-delay: 0.08s; }
.scroll-reveal.revealed .scroll-item:nth-child(2) { transition-delay: 0.16s; }
.scroll-reveal.revealed .scroll-item:nth-child(3) { transition-delay: 0.24s; }
.scroll-reveal.revealed .scroll-item:nth-child(4) { transition-delay: 0.32s; }
.scroll-reveal.revealed .scroll-item:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal.revealed .scroll-item:nth-child(6) { transition-delay: 0.48s; }

/* Steps: step-arrow between steps */
.steps.revealed .step:nth-child(1) { transition-delay: 0.1s; }
.steps.revealed .step:nth-child(3) { transition-delay: 0.3s; }
.steps.revealed .step:nth-child(5) { transition-delay: 0.5s; }

/* Features */
.features {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.features .container { position: relative; z-index: 1; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.feature-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.feature-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.feature-card h3,
.feature-card p {
  padding: 0 1.5rem;
}

.feature-card h3 { padding-top: 1.25rem; }
.feature-card p { padding-bottom: 1.5rem; }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Solutions */
.solutions {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-card);
  overflow: hidden;
}

.solutions::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--electric-blue-dim) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.solutions .container { position: relative; z-index: 1; }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 3rem;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  padding: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}

.solution-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.solution-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.solution-card h4,
.solution-card p,
.solution-card .link-more {
  padding: 0 1.5rem;
}

.solution-card h4 { padding-top: 1.25rem; }
.solution-card p { padding-bottom: 1rem; }
.solution-card .link-more { padding-bottom: 1.5rem; display: inline-block; }

.solution-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.solution-card p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.link-more {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.link-more:hover { color: var(--accent); }

/* Dashboard preview — modular metrics */
.dashboard-preview {
  padding: 5rem 0;
  background: var(--bg);
}

.dashboard-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}

.filter-chip {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover, .filter-chip.active {
  background: var(--brand-dim);
  border-color: var(--brand);
  color: var(--brand-light);
}

.filter-select {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.metric-card.wide { grid-column: span 2; }

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
}

.metric-value.positive { color: var(--accent); }

.metric-change {
  font-size: 0.85rem;
  display: block;
  margin-top: 0.25rem;
}

.metric-change.positive { color: var(--accent); }
.metric-change.negative { color: var(--red); }

.live-pulse {
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.metric-btn {
  margin-top: 0.75rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.metric-btn:hover, .metric-btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  border-color: transparent;
  color: white;
}

.metric-chart {
  height: 60px;
  margin-top: 0.5rem;
}

.metric-chart svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: chartReveal 0.8s ease-out forwards;
}

.dashboard-preview.revealed .metric-card:nth-child(1) .metric-chart svg { animation-delay: 0.15s; }
.dashboard-preview.revealed .metric-card:nth-child(2) .metric-chart svg { animation-delay: 0.2s; }
.dashboard-preview.revealed .metric-card:nth-child(3) .metric-chart svg { animation-delay: 0.25s; }
.dashboard-preview.revealed .metric-card:nth-child(4) .metric-chart svg { animation-delay: 0.3s; }
.dashboard-preview.revealed .metric-card:nth-child(5) .metric-chart svg { animation-delay: 0.35s; }
.dashboard-preview.revealed .metric-card:nth-child(6) .metric-chart svg { animation-delay: 0.4s; }

@keyframes chartReveal {
  from { opacity: 0; transform: scaleY(0.8); transform-origin: bottom; }
  to { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

.metric-chart-line, .metric-chart-multi { height: 80px; }
.metric-chart-mini { height: 40px; }

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card.wide { grid-column: span 2; }
}

@media (max-width: 500px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-card.wide { grid-column: span 1; }
}

/* Sports showcase */
.sports-showcase {
  padding: 5rem 0;
  background: var(--bg);
}

.sports-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sport-tile {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.sport-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
}

.sport-tile span {
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.sport-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  outline: 1px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .sports-images { grid-template-columns: repeat(2, 1fr); }
}

/* Steps */
.steps {
  padding: 5rem 0;
  background: var(--bg);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 1.5rem;
}

.step-num {
  font-family: 'Inter', sans-serif;
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.step-arrow {
  font-size: 2rem;
  color: var(--brand);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .step-arrow { display: none; }
}

/* Team */
.team {
  padding: 5rem 0;
  background: var(--bg-card);
}

.team-desc {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
}

.team-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Pricing */
.pricing {
  padding: 5rem 0;
  background: var(--bg);
}

.pricing-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.5rem;
}

.pricing-desc {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.pricing-features {
  max-width: 600px;
  margin: 0 auto 3rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tier {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tier.highlight {
  border-color: var(--brand);
  background: var(--brand-dim);
}

.tier-rate {
  font-family: 'Inter', sans-serif;
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
}

.tier-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tier h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin: 1rem 0 0;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-card);
}

.testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--brand);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--bg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.faq-item {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  color: var(--brand);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-contact {
  text-align: center;
  color: var(--text-muted);
}

.faq-contact a { color: var(--brand); }

/* CTA */
.cta-section {
  padding: 5rem 0;
  background: var(--bg-card);
}

.cta-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.cta-box p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-form input {
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
}

.cta-form input:focus {
  outline: none;
  border-color: var(--brand);
}

.cta-form .btn { justify-content: center; }

/* Footer */
.footer {
  padding: 3rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo { height: 64px; }

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--brand); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 768px) {
  .header-actions { display: none; }
  .nav-toggle { display: block; }

  .logo-img { height: 72px; }
  .hero-tagline { font-size: 1.1rem; flex-direction: column; gap: 0.25rem; }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-main.open {
    display: flex !important;
  }

  .hero { min-height: 100vh; }

  .features-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
