/* =====================================================
   2026 Modern Design System - CSS Variables
   ===================================================== */
:root {
  --dark: #0d0d0d;
  --dark-2: #111827;
  --navy: #0f172a;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --amber: #d97706;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 50%, #0d0d0d 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #d97706);
  --gradient-mesh: radial-gradient(at 20% 50%, hsla(40,100%,60%,0.08) 0px, transparent 50%), radial-gradient(at 80% 20%, hsla(220,100%,60%,0.06) 0px, transparent 50%), radial-gradient(at 50% 80%, hsla(40,80%,50%,0.05) 0px, transparent 50%);
  --glass-dark: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.08);
  --glass-light: rgba(255,255,255,0.85);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.25);
  --radius-xl: 20px;
  --radius-2xl: 32px;
  --radius-pill: 999px;
}

/* =====================================================
   Global Styles
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =====================================================
   Floating Pill Navbar
   ===================================================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1100px;
  width: 90%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.navbar-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-text {
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-dot {
  color: var(--gold);
}

.navbar-menu {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-phone:hover {
  color: var(--gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn-gold-gradient {
  background: var(--gradient-gold);
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.btn-gold-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gold-gradient:hover::before {
  left: 100%;
}

.btn-gold-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.35);
}

.btn-glass {
  background: var(--glass-dark);
  color: var(--gold);
  border: 1px solid var(--glass-border);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-glass:hover {
  background: var(--glass-light);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 120px;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.6;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   Form Card - Glassmorphism
   ===================================================== */
.form-card-hero {
  position: absolute;
  bottom: -120px;
  right: 5%;
  width: 380px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.8s ease 0.3s backwards;
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-subtext {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 16px;
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
  background: var(--dark);
  padding: 80px 20px 200px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  animation: fadeUp 0.8s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 600;
}

/* =====================================================
   Bento Grid Section
   ===================================================== */
.bento-section {
  background: var(--gray-50);
  color: var(--dark);
  padding: 80px 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease backwards;
}

.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.15s; }
.bento-card:nth-child(3) { animation-delay: 0.2s; }
.bento-card:nth-child(4) { animation-delay: 0.25s; }
.bento-card:nth-child(5) { animation-delay: 0.3s; }
.bento-card:nth-child(6) { animation-delay: 0.35s; }

.bento-large {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-medium {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.bento-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

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

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works {
  background: var(--dark);
  padding: 80px 20px;
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  animation: fadeUp 0.8s ease backwards;
  transition: all 0.3s ease;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:hover {
  border-color: var(--gold);
  background: rgba(245, 158, 11, 0.05);
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.step-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--gradient-gold);
  transform: translateY(-50%);
}

.step-card:last-child .step-connector {
  display: none;
}

/* =====================================================
   Situations Section
   ===================================================== */
.situations-section {
  background: var(--gray-50);
  color: var(--dark);
  padding: 80px 20px;
}

.situations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.situation-tag {
  background: var(--white);
  border: 1px solid #e5e7eb;
  color: var(--dark);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.situation-tag:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--gold);
}

/* =====================================================
   Split Section
   ===================================================== */
.split-section {
  background: var(--dark);
  padding: 80px 20px;
  color: var(--white);
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split-text h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
}

.split-text p {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 20px;
  line-height: 1.8;
}

.split-image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
}

.benefits-list {
  list-style: none;
  margin-top: 20px;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-list strong {
  color: var(--gold);
}

/* =====================================================
   Testimonial Ticker
   ===================================================== */
.testimonials-section {
  background: var(--dark);
  padding: 80px 20px;
  overflow: hidden;
}

.ticker-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  gap: 40px;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  flex: 0 0 calc(100% / 3);
  min-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: var(--radius-xl);
}

.ticker-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.ticker-author {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 40px)); }
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
.faq-section {
  background: var(--gray-50);
  color: var(--dark);
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  animation: fadeUp 0.8s ease backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* =====================================================
   CTA Banner
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =====================================================
   Mobile Sticky CTA Bar
   ===================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding: 12px 16px;
  gap: 12px;
  z-index: 999;
}

.mobile-cta-phone,
.mobile-cta-offer {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-cta-phone {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.mobile-cta-offer {
  background: var(--gradient-gold);
  color: var(--dark);
}

/* =====================================================
   Privacy Policy
   ===================================================== */
.privacy-section {
  background: var(--gray-50);
  color: var(--dark);
  padding: 80px 20px;
  min-height: 100vh;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 60px;
}

.privacy-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.last-updated {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 40px;
}

.privacy-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
}

.privacy-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.privacy-content ul {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 16px;
}

.privacy-content li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
  .navbar-content {
    gap: 20px;
  }

  .navbar-menu {
    gap: 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    display: none;
  }

  .form-card-hero {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 40px;
  }

  .split-content {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-medium {
    grid-column: span 1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: auto;
    bottom: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    left: 0;
    transform: none;
    padding: 12px 16px;
  }

  .navbar-content {
    gap: 12px;
  }

  .navbar-logo {
    display: none;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13, 13, 13, 0.95);
    padding: 20px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    order: 3;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding-top: 20px;
    min-height: auto;
  }

  .hero-container {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .form-card-hero {
    width: 100%;
    padding: 24px;
  }

  .stats-section {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .ticker-item {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .privacy-content {
    margin-top: 40px;
  }

  .privacy-content h1 {
    font-size: 32px;
  }

  .privacy-content h2 {
    font-size: 22px;
  }

  .privacy-content h3 {
    font-size: 16px;
  }

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

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

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .form-card-hero {
    padding: 20px;
  }

  .section-title {
    font-size: 22px;
  }

  .bento-icon {
    font-size: 36px;
  }

  .bento-card {
    padding: 20px;
  }

  .bento-card h3 {
    font-size: 16px;
  }

  .step-number {
    font-size: 36px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .footer-content {
    gap: 30px;
  }

  .ticker-item {
    padding: 20px;
  }
}

/* =====================================================
   New Styles for Redesigned Index.html
   ===================================================== */

/* Hero Section Enhancements */
.hero-subtext {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 600px;
}

.hero-microline {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.trust-pill {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Section */
.form-section {
  background: var(--dark);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  max-width: 700px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: var(--dark);
}

.glass-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark);
}

.form-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
  background: linear-gradient(135deg, var(--dark), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.form-highlight-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
  padding: 16px;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-pill {
  background: var(--gray-100);
  border: 1px solid #e5e7eb;
  color: var(--dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

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

.field-row.double {
  grid-template-columns: 1fr 1fr;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.field-group input,
.field-group textarea,
.field-group select {
  background: var(--gray-50);
  border: 1px solid #e5e7eb;
  color: var(--dark);
  padding: 12px 16px;
  border-radius: var(--radius-xl);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.field-group input::placeholder,
.field-group textarea::placeholder,
.field-group select::placeholder {
  color: var(--gray-400);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid #e5e7eb;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-pill input[type="radio"] {
  cursor: pointer;
}

.radio-pill:hover {
  background: var(--white);
  border-color: var(--gold);
}

.radio-pill input[type="radio"]:checked + span {
  color: var(--gold);
}

.consent-box {
  background: var(--gray-50);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  padding: 20px;
  margin: 24px 0;
}

.consent-label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.6;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
}

.consent-links {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 12px;
}

.consent-links a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.consent-links a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.form-note {
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
  margin-top: 16px;
}

/* Dark Content Sections */
.content-dark {
  background: var(--dark);
  color: var(--white);
}

.fit-section {
  padding: 80px 20px;
}

.fit-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.02em;
}

.trust-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto 32px;
}

.trust-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
}

.trust-list strong {
  color: var(--gold);
}

.bullet-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

.fit-section > p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
}

/* Testimonials Grid */
.testimonials-section {
  background: var(--dark);
  padding: 80px 20px;
}

.testimonials-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.15s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(4) { animation-delay: 0.25s; }

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--gray-400);
}

/* Situations Section */
.situations-section {
  background: var(--dark);
  padding: 80px 20px;
}

.situations-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.mini-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.situations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.s-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease backwards;
}

.s-card:nth-child(1) { animation-delay: 0.1s; }
.s-card:nth-child(2) { animation-delay: 0.15s; }
.s-card:nth-child(3) { animation-delay: 0.2s; }
.s-card:nth-child(4) { animation-delay: 0.25s; }
.s-card:nth-child(5) { animation-delay: 0.3s; }
.s-card:nth-child(6) { animation-delay: 0.35s; }

.s-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.s-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.s-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Content Section */
.content-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 20px;
}

.content-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.content-section h3 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--gold);
}

.content-section p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.content-section ul {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.content-section li {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-section ol {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 16px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.content-section strong {
  color: var(--white);
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 20px;
}

.how-it-works-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.how-it-works-section > p {
  font-size: 16px;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.pill-tag {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.how-it-works-section h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step > div:last-child {
  flex: 1;
}

.step strong {
  color: var(--white);
  font-size: 16px;
}

.step p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Container Styles */
.faq-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 20px;
}

.faq-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.8s ease backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.8;
  margin: 0;
}

/* Texas Cities Grid */
.states-section {
  padding: 80px 20px;
}

.states-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.states-section > p {
  font-size: 16px;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.states-grid {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
  font-size: 15px;
  color: var(--gray-400);
  line-height: 2;
  text-align: center;
}

/* Responsive Updates for New Styles */
@media (max-width: 1024px) {
  .field-row,
  .field-row.double {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px;
  }

  .radio-row {
    flex-direction: column;
  }

  .steps {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .form-section {
    padding: 60px 20px;
  }

  .form-card {
    padding: 24px;
  }

  .form-title {
    font-size: 22px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .fit-section {
    padding: 60px 20px;
  }

  .fit-section h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .trust-list li {
    font-size: 14px;
    gap: 12px;
  }

  .testimonials-section h2,
  .situations-section h2,
  .states-section h2,
  .faq-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .testimonials-grid,
  .situations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .content-section {
    padding: 60px 20px;
  }

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

  .how-it-works-section {
    padding: 60px 20px;
  }

  .how-it-works-section h3 {
    font-size: 18px;
  }

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

  .step {
    gap: 16px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .pill-row {
    margin-bottom: 40px;
  }

  .states-grid {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .form-card {
    padding: 20px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-mini-trust {
    gap: 6px;
  }

  .mini-pill {
    font-size: 11px;
    padding: 5px 10px;
  }

  .trust-pills {
    gap: 8px;
  }

  .trust-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  .radio-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .consent-label {
    font-size: 12px;
  }

  .testimonial-card,
  .s-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .testimonial-author {
    font-size: 13px;
  }

  .s-card h3 {
    font-size: 16px;
  }

  .s-card p {
    font-size: 13px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .content-section h3 {
    font-size: 16px;
  }

  .content-section p,
  .content-section li {
    font-size: 13px;
  }

  .how-it-works-section h2 {
    font-size: 20px;
  }

  .how-it-works-section > p {
    font-size: 13px;
  }

  .pill-tag {
    font-size: 12px;
    padding: 8px 16px;
  }

  .step {
    gap: 12px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .step strong {
    font-size: 14px;
  }

  .step p {
    font-size: 13px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .states-grid {
    padding: 16px;
    font-size: 13px;
  }
}
