/* ============================================
   ChangeCheck Waitlist - Complete Redesign
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Container */
.cc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Header - Glass Effect
   ============================================ */
.cc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cc-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.cc-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cc-logo {
  height: 40px;
  width: auto;
}

.cc-logo-fallback {
  height: 40px;
  width: 40px;
}

.cc-brand-text {
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(135deg, #003087, #005EB8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-nav a {
  color: #4a5568;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.cc-nav a:hover {
  color: #1a1a2e;
  background: #f7fafc;
}

.cc-nav .cc-cta {
  background: linear-gradient(135deg, #003087, #005EB8);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 20px;
  margin-left: 8px;
}

.cc-nav .cc-cta:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, #003087, #005EB8);
}

@media (max-width: 768px) {
  .cc-nav a:not(.cc-cta) {
    display: none;
  }
}

/* ============================================
   Hero - Gradient Background with Visual Elements
   ============================================ */
.cc-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #003087 0%, #005EB8 40%, #41B6E6 100%);
  overflow-x: clip;
  overflow-y: visible;
}

/* Decorative circles */
.cc-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cc-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 184, 28, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

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

.cc-hero-content {
  max-width: 560px;
}

.cc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}

.cc-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #FFB81C;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.cc-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 32px;
}

.cc-toggle button {
  appearance: none;
  border: none;
  background: transparent;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.cc-toggle button:hover:not(.active) {
  color: #fff;
}

.cc-toggle button.active {
  background: #fff;
  color: #003087;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cc-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.cc-hero .cc-subhead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cc-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cc-btn-primary {
  background: #fff;
  color: #003087;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cc-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cc-disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cc-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cc-avatars {
  display: flex;
}

.cc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: -12px;
}

.cc-social-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.cc-social-text strong {
  color: #fff;
}

/* Phone mockup */
.cc-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cc-phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cc-phone-screen {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
  border-radius: 28px;
  overflow: hidden;
}

.cc-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.cc-phone-header {
  padding: 16px;
  background: linear-gradient(135deg, #003087, #005EB8);
  color: #fff;
  text-align: center;
}

.cc-phone-header h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.cc-phone-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-phone-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cc-phone-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.cc-phone-card-emoji {
  font-size: 20px;
}

.cc-phone-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
}

.cc-phone-card-score {
  margin-left: auto;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}

.cc-phone-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.cc-phone-tag {
  background: #f1f5f9;
  color: #475569;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.cc-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.cc-floating-badge:nth-child(1) {
  top: 60px;
  right: 10px;
  z-index: 10;
}

.cc-floating-badge:nth-child(3) {
  bottom: 80px;
  left: 10px;
  animation-delay: 1s;
  z-index: 10;
}

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

.cc-floating-emoji {
  font-size: 24px;
}

.cc-floating-text {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
}

@media (max-width: 960px) {
  .cc-hero .cc-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cc-hero-content {
    max-width: 100%;
  }

  .cc-hero h1 {
    font-size: 40px;
  }

  .cc-cta-row {
    justify-content: center;
  }

  .cc-social-proof {
    justify-content: center;
  }

  .cc-hero-visual {
    display: none;
  }
}

@media (max-width: 480px) {
  .cc-hero {
    padding: 120px 0 60px;
  }

  .cc-hero h1 {
    font-size: 32px;
  }

  .cc-cta-row {
    flex-direction: column;
  }

  .cc-btn {
    width: 100%;
  }
}

/* ============================================
   Sections - Base Styles
   ============================================ */
.cc-section {
  padding: 100px 0;
}

.cc-section-alt {
  background: #f8fafc;
}

.cc-section-dark {
  background: #1a1a2e;
  color: #fff;
}

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

.cc-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #005EB8;
  margin-bottom: 12px;
}

.cc-section h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.cc-section-dark h2 {
  color: #fff;
}

.cc-section .cc-subhead {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

.cc-section-dark .cc-subhead {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Problem Section - Story + Solution
   ============================================ */
.cc-problem {
  background: #fff;
}

.cc-problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.cc-problem-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e11d48;
  margin-bottom: 16px;
}

.cc-problem-story h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #1a1a2e;
  line-height: 1.15;
}

.cc-problem-story p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 17px;
}

.cc-problem-highlight {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.08), rgba(255, 184, 28, 0.05));
  border-left: 4px solid #e11d48;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-top: 24px;
}

.cc-problem-highlight strong {
  color: #1a1a2e;
  font-size: 18px;
  line-height: 1.5;
}

.cc-solution-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cc-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e11d48, #f97316);
}

.cc-solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e11d48, #f97316);
  color: #fff;
  margin-bottom: 24px;
}

.cc-solution-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.cc-solution-card > p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.cc-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 14px;
  color: #475569;
}

.cc-solution-list li::before {
  content: '→';
  color: #e11d48;
  font-weight: 700;
  flex-shrink: 0;
}

.cc-solution-list li strong {
  color: #1a1a2e;
}

@media (max-width: 960px) {
  .cc-problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cc-problem-story h2 {
    font-size: 32px;
  }
}

/* ============================================
   Features - Card Grid
   ============================================ */
.cc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-feature {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.cc-feature:hover {
  border-color: #005EB8;
  box-shadow: 0 20px 40px rgba(0, 94, 184, 0.1);
  transform: translateY(-4px);
}

.cc-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.cc-bg-primary { background: linear-gradient(135deg, #003087, #005EB8); }
.cc-bg-gold { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.cc-bg-rose { background: linear-gradient(135deg, #e11d48, #f97316); }
.cc-bg-success { background: linear-gradient(135deg, #059669, #10b981); }
.cc-bg-info { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.cc-bg-purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }

.cc-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.cc-feature p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .cc-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Treasures - Visual Grid
   ============================================ */
.cc-treasure-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(255, 184, 28, 0.15), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 184, 28, 0.3);
  border-radius: 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.cc-treasure-hero::before {
  content: '🦌';
  position: absolute;
  right: 40px;
  bottom: -20px;
  font-size: 200px;
  opacity: 0.15;
  transform: rotate(-10deg);
}

.cc-treasure-hero-emoji {
  font-size: 100px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

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

.cc-treasure-hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.cc-treasure-hero-content .cc-subhead {
  color: #475569;
  font-size: 18px;
  margin-bottom: 12px;
}

.cc-treasure-tagline {
  color: #64748b;
  font-size: 15px;
}

.cc-treasure-grid-title {
  font-size: 20px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 24px;
}

.cc-treasures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cc-treasure {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cc-treasure:hover {
  border-color: #fbbf24;
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
  transform: translateY(-2px);
}

.cc-treasure-featured {
  border-color: #fbbf24;
  background: linear-gradient(135deg, rgba(255, 184, 28, 0.08), #fff);
}

.cc-treasure-emoji {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}

.cc-treasure-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.cc-treasure-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

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

  .cc-treasure-hero {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .cc-treasure-hero::before {
    display: none;
  }

  .cc-treasure-hero-emoji {
    font-size: 80px;
  }
}

/* ============================================
   Badges Section
   ============================================ */
.cc-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cc-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.cc-badge:hover {
  border-color: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
  transform: scale(1.02);
}

.cc-badge-icon {
  font-size: 40px;
  line-height: 1;
}

.cc-badge-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.cc-badge-content p {
  font-size: 13px;
  color: #64748b;
}

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

@media (max-width: 480px) {
  .cc-badges {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Pricing Cards - B2B Section
   ============================================ */
.cc-pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-top: 48px;
}

.cc-pricing-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cc-pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.cc-tier {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.cc-tier:hover {
  border-color: #cbd5e1;
}

.cc-tier-featured {
  background: #fff;
  border-color: #005EB8;
  box-shadow: 0 20px 60px rgba(0, 94, 184, 0.15);
  transform: scale(1.02);
  position: relative;
}

.cc-tier-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #003087, #005EB8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
}

.cc-tier-header {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e2e8f0;
}

.cc-tier-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.cc-tier-price {
  font-size: 40px;
  font-weight: 800;
  color: #005EB8;
}

.cc-tier-price small {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

.cc-tier ul {
  list-style: none;
}

.cc-tier li {
  font-size: 14px;
  color: #475569;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}

.cc-tier li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

@media (max-width: 960px) {
  .cc-pricing-tiers {
    grid-template-columns: 1fr;
  }

  .cc-tier-featured {
    transform: none;
    order: -1;
  }
}

/* ============================================
   App Preview Carousel
   ============================================ */
.cc-carousel {
  margin-top: 48px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.cc-carousel-viewport {
  border-radius: 32px;
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 8px;
}

.cc-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-slide {
  min-width: 100%;
  flex: 0 0 100%;
  background: #f8fafc;
  border-radius: 24px;
  overflow: hidden;
}

.cc-slide a {
  display: block;
}

.cc-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.cc-slide figcaption {
  padding: 16px 20px;
  font-size: 13px;
  color: #64748b;
  text-align: center;
  background: #fff;
}

.cc-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.cc-arrow {
  appearance: none;
  border: 2px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s;
}

.cc-arrow:hover:not(:disabled) {
  border-color: #005EB8;
  color: #005EB8;
}

.cc-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cc-dots {
  display: flex;
  gap: 8px;
}

.cc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.cc-dot:hover {
  background: #cbd5e1;
}

.cc-dot.active {
  background: #005EB8;
  width: 32px;
  border-radius: 6px;
}

/* ============================================
   About Section
   ============================================ */
.cc-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.cc-copy h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.cc-copy p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 17px;
}

.cc-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

.cc-shadow {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cc-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .cc-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================
   Signup Section
   ============================================ */
.cc-signup {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.cc-signup h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0;
  color: #1a1a2e;
}

.cc-signup > div:first-child p {
  color: #64748b;
  font-size: 17px;
  line-height: 1.6;
}

.cc-release-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-release-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.cc-release-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cc-release-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.cc-release-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.cc-form {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cc-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #475569;
  margin: 16px 0 8px;
}

.cc-form input,
.cc-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font: inherit;
  font-size: 16px;
  color: #1a1a2e;
  background: #fff;
  transition: all 0.2s;
}

.cc-form input:focus,
.cc-form select:focus {
  outline: none;
  border-color: #005EB8;
  box-shadow: 0 0 0 4px rgba(0, 94, 184, 0.1);
}

.cc-form .cc-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14px;
  color: #64748b;
  margin-top: 24px;
}

.cc-form .cc-consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
}

.cc-form button[type="submit"] {
  margin-top: 24px;
  width: 100%;
  background: linear-gradient(135deg, #003087, #005EB8);
  color: #fff;
}

.cc-form-small {
  font-size: 13px;
  color: #64748b;
  margin-top: 20px;
  text-align: center;
}

.cc-form-small a {
  color: #005EB8;
}

.cc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 960px) {
  .cc-signup {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .cc-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* UTM Link Builder */
.cc-linkbox {
  display: none;
  margin-top: 24px;
  border: 2px dashed #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  background: #f8fafc;
}

.cc-linkbox.visible {
  display: block;
}

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

.cc-row label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.cc-row input {
  margin-top: 4px;
  padding: 10px;
  font-size: 14px;
}

/* Tally Embed */
.tally-embed {
  min-height: 500px;
}

.tally-embed iframe {
  border: none !important;
}

/* ============================================
   Footer
   ============================================ */
.cc-footer {
  border-top: 2px solid #e2e8f0;
  background: #f8fafc;
}

.cc-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  font-size: 14px;
  color: #64748b;
}

.cc-fade {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .cc-footer-inner {
    flex-direction: column;
    height: auto;
    padding: 24px 0;
    gap: 8px;
    text-align: center;
  }
}

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

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

/* ============================================
   Credit Grid (B2B Section)
   ============================================ */
.cc-credit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cc-credit-box {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
}

.cc-credit-box p:first-child {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 700;
}

.cc-credit-box p:last-child {
  margin: 0;
  font-size: 13px;
  color: #475569;
}

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

/* ============================================
   Mobile Responsive Fixes
   ============================================ */

/* Prevent horizontal overflow */
html, body {
  max-width: 100vw;
}

.cc-container {
  overflow-x: hidden;
}

/* Mobile: Stack 3-column grids */
@media (max-width: 768px) {
  /* Section headings */
  .cc-section h2 {
    font-size: 28px;
  }

  .cc-section .cc-subhead {
    font-size: 16px;
  }

  /* Problem section */
  .cc-problem-story h2 {
    font-size: 28px;
  }

  .cc-solution-card {
    padding: 24px;
  }

  .cc-solution-card h3 {
    font-size: 22px;
  }

  /* Pricing tiers */
  .cc-pricing-tiers {
    grid-template-columns: 1fr !important;
  }

  .cc-tier-featured {
    transform: none;
  }

  /* Pricing card padding */
  .cc-pricing-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  /* Section padding */
  .cc-section {
    padding: 60px 0;
  }

  /* Container padding */
  .cc-container {
    padding: 0 16px;
  }

  /* Toggle buttons */
  .cc-toggle button {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Feature cards */
  .cc-feature {
    padding: 24px;
  }

  .cc-feature h3 {
    font-size: 18px;
  }

  /* Treasure cards */
  .cc-treasure {
    padding: 16px;
    gap: 12px;
  }

  .cc-treasure-emoji {
    font-size: 36px;
  }

  /* Badge cards */
  .cc-badge {
    padding: 16px;
    gap: 12px;
  }

  .cc-badge-icon {
    font-size: 32px;
  }

  /* Signup section */
  .cc-signup {
    gap: 32px;
  }

  .cc-signup h2 {
    font-size: 28px;
  }

  .cc-form {
    padding: 24px;
  }

  /* Footer */
  .cc-footer-inner {
    font-size: 13px;
  }
}

/* Very small screens */
@media (max-width: 400px) {
  .cc-hero h1 {
    font-size: 28px;
  }

  .cc-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .cc-section h2 {
    font-size: 24px;
  }

  .cc-treasure-hero-content h2 {
    font-size: 24px;
  }

  .cc-treasure-hero-emoji {
    font-size: 60px;
  }
}
