/* ===== CSS Variables - Light Theme ===== */
:root {
  /* Primary Brand Color */
  --brand-red: #eb0000;
  --brand-red-dark: #c50000;
  --brand-red-light: #ff3333;
  --brand-red-10: rgba(235, 0, 0, 0.1);
  --brand-red-20: rgba(235, 0, 0, 0.2);
  
  /* Light Mode Neutrals */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --black: #0a0a0a;
  
  /* Accent Colors */
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-50: #ecfdf5;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 4px 14px rgba(235, 0, 0, 0.25);
  --shadow-red-lg: 0 8px 25px rgba(235, 0, 0, 0.3);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===== Background Effects ===== */
.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.4;
  background-image: 
    radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.bg-gradient-light {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--brand-red-10), transparent),
    var(--white);
  pointer-events: none;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.logo-pro {
  color: var(--brand-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition-fast);
}

.nav-links > a:hover {
  color: var(--brand-red);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--gray-700) !important;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 2px solid var(--gray-300);
  transition: all var(--transition-fast);
}

.nav-login:hover {
  color: var(--brand-red) !important;
  border-color: var(--brand-red);
  background: var(--brand-red-10);
  transform: translateY(-2px);
}

.nav-login svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
}

.btn-featured {
  background: var(--brand-red);
  box-shadow: var(--shadow-red);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: var(--brand-red-10);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
}

.btn-outline:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  background: var(--brand-red-10);
}

.btn-gold {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-accent-circle {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--brand-red-10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatCircle 8s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.05); }
}

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

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

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

.title-line {
  display: block;
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gray-900);
}

.title-accent {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 32px;
}

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

.hero-login-link {
  margin-top: 24px;
  font-size: 15px;
  color: var(--gray-500);
}

.hero-login-link a {
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.hero-login-link a:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.2),
    0 30px 60px -30px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Animations ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

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

/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
  padding: 120px 0;
  background: var(--gray-50);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.bento-card:hover {
  border-color: var(--brand-red-20);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bento-main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border-color: var(--brand-red-20);
}

.bento-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(135deg, #8b2323 0%, #a52a2a 50%, #8b2323 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-height: 140px;
}

.scoreboard-demo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bento-content .feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-red);
  background: var(--brand-red-10);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.bento-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-red-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.bento-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-red);
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--brand-red), var(--brand-red-dark));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

/* ===== How It Works Section ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--brand-red-20);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand-red);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 120px 0;
  background: var(--gray-50);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  background: var(--white);
  padding: 6px;
  border-radius: var(--radius);
  max-width: 320px;
  margin: 0 auto 48px;
  position: relative;
  border: 1px solid var(--gray-200);
}

.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.toggle-btn.active {
  color: var(--white);
}

.toggle-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  background: var(--brand-red);
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}

.toggle-btn[data-plan="team"].active ~ .toggle-indicator {
  transform: translateX(100%);
}

.pricing-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.pricing-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  border-color: var(--brand-red);
  background: linear-gradient(180deg, var(--brand-red-10), var(--white));
}

.price-card.gold {
  border-color: var(--amber-500);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), var(--white));
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-badge.gold-badge {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.price-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-500);
}

.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-suffix {
  font-size: 18px;
  color: var(--gray-500);
}

.price-period {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

.price-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.price-amount-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-monthly {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-700);
}

.price-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-700);
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.feature-included svg {
  stroke: var(--emerald-500);
}

.feature-excluded {
  color: var(--gray-400) !important;
}

.feature-excluded svg {
  stroke: var(--gray-400);
}

.feature-included.highlight span {
  color: var(--gray-900);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  stroke: var(--brand-red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Partners Section ===== */
.partners {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.partners-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-lg);
}

.partners-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}

.partners-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.partners-benefits {
  list-style: none;
  margin-bottom: 32px;
}

.partners-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-700);
}

.partners-benefits li svg {
  flex-shrink: 0;
}

.partners-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.partners-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.partners-icon-wrapper svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
}

.partners-stats {
  display: flex;
  gap: 32px;
  text-align: center;
}

.partner-stat {
  display: flex;
  flex-direction: column;
}

.partner-stat-value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.partner-stat-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .partners-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  
  .partners-visual {
    order: -1;
    padding: 32px;
  }
}

/* ===== Download Section ===== */
.download {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.download-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 100%, var(--brand-red-10), transparent),
    linear-gradient(180deg, var(--gray-50), var(--white));
  z-index: -1;
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.download-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.store-btn svg {
  width: 28px;
  height: 28px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-small {
  font-size: 11px;
  color: var(--gray-400);
}

.store-large {
  font-size: 18px;
  font-weight: 700;
}

.download-note {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Footer ===== */
.footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  padding: 64px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.footer-powered {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-powered a {
  color: var(--brand-red);
  font-weight: 500;
}

.footer-powered a:hover {
  text-decoration: underline;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-login-link {
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-accent-circle {
    width: 400px;
    height: 400px;
    top: 5%;
    right: -20%;
  }
  
  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bento-main {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-grid-2 {
    max-width: 400px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-links.nav-links-open {
    display: flex;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
  
  .nav-login {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    order: 10;
    margin-top: 8px;
    border-radius: 12px;
  }
  
  .nav-cta {
    width: 100%;
    justify-content: center;
    order: 11;
  }
  
  .features-bento {
    grid-template-columns: 1fr;
  }
  
  .bento-main {
    grid-column: span 1;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
