﻿/* ROOT VARIABLES & GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: #050810;
  --bg-black: #000000;
  --primary-blue: #0066FF;
  --secondary-cyan: #00D4FF;
  --gold-accent: #FFB800;
  --text-white: #FFFFFF;
  --text-muted: #8892A4;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  
  --font-main: 'Inter', sans-serif;
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 0; /* Phone bar removed */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtlety grid background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: 
    linear-gradient(var(--glass-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* GLOBAL EFFECTS */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes meshGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
  100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.4); }
}
@keyframes neonPulse {
  0% { box-shadow: 0 0 20px rgba(255, 184, 0, 0.4); }
  50% { box-shadow: 0 0 40px rgba(255, 184, 0, 0.8); }
  100% { box-shadow: 0 0 20px rgba(255, 184, 0, 0.4); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
body {
  animation: fadeIn 1s ease-in;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-cyan));
  width: 0%;
  z-index: 1001;
  box-shadow: 0 0 10px var(--secondary-cyan);
}

/* 1. PHONE BAR - temporarily disabled - will be replaced with RingPartner number */
.phone-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  border-bottom: 1px solid var(--secondary-cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
  color: var(--text-white);
  padding: 10px 0;
  z-index: 1000;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.phone-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.phone-bar__number {
  color: var(--secondary-cyan);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
  transition: all 0.3s ease;
}
.phone-bar__number:hover {
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* 2. NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 999;
  transition: all 0.4s ease;
}
.nav.scrolled {
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 102, 255, 0.15);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -1px;
}
.nav__logo-icon {
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.6));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.nav__cta {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #005ce6, #00bced);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
}
.nav__toggle span {
  width: 28px;
  height: 2px;
  background-color: var(--text-white);
  transition: 0.3s;
}

/* 3. HERO SECTION */
.hero {
  margin-top: 0;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--bg-dark);
  display: block;
}
.hero__bg-gradient {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0,102,255,0.15) 0%, rgba(5,8,16,1) 70%);
  z-index: 1;
}
/* Animated Gradient Mesh */
.hero__bg-gradient::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  top: -50%; left: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.15) 0%, transparent 40%),
              radial-gradient(circle at 70% 70%, rgba(0,102,255,0.2) 0%, transparent 40%);
  animation: meshGradient 30s ease-in-out infinite;
  z-index: -1;
}

.hero__particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  background: var(--primary-blue);
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.4;
  animation: float 8s infinite ease-in-out;
}
.hero__particle:nth-child(1) { width: 150px; height: 150px; top: 10%; left: 5%; animation-delay: 0s; background: var(--secondary-cyan); }
.hero__particle:nth-child(2) { width: 80px; height: 80px; top: 70%; left: 15%; animation-delay: 1.5s; }
.hero__particle:nth-child(3) { width: 250px; height: 250px; top: 20%; right: 5%; animation-delay: 3s; filter: blur(30px); opacity: 0.2;}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}
.hero__text {
  flex: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--secondary-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-cyan);
  animation: pulseGlow 2s infinite;
}

.hero__title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-white);
}
.hero__title span {
  background: linear-gradient(135deg, #fff, var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 45px;
  max-width: 90%;
  font-weight: 400;
}

.hero__stats {
  display: flex;
  gap: 40px;
}
.hero__stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--text-white), var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}

/* HERO TRUST BADGES */
.hero__trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* URGENCY BANNER */
.urgency-banner {
  background: rgba(255, 184, 0, 0.1);
  border-bottom: 1px solid rgba(255, 184, 0, 0.3);
  color: var(--gold-accent);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  animation: fadeIn 0.5s ease-in;
}

/* 6. FORM CARD (Glassmorphism) */
.form-card {
  flex: 0 0 450px;
  width: 450px;
  position: sticky;
  top: 90px;
  padding: 32px;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 102, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}
.form-card__title {
  color: var(--text-white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.form-card__subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.form__steps {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.form__step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}
.form__step-dot.active {
  background: var(--secondary-cyan);
  box-shadow: 0 0 10px var(--secondary-cyan);
  transform: scale(1.3);
}
.form__step-dot.completed {
  background: var(--primary-blue);
  position: relative;
}
.form__step-dot.completed::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 4px;
  background: #fff;
  border-radius: 50%;
}

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease; }

.form__group { margin-bottom: 14px; }
.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.form__label::after {
  content: " *";
  color: #ff4444;
}

.form__radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form__radio-item { position: relative; }
.form__radio-item input { position: absolute; opacity: 0; }
.form__radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-white);
  text-align: center;
}
.form__radio-label:hover {
  border-color: var(--secondary-cyan);
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}
.form__radio-item input:checked + .form__radio-label {
  border-color: var(--secondary-cyan);
  background: rgba(0, 102, 255, 0.25);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  color: var(--secondary-cyan);
}

.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-white);
  transition: all 0.3s ease;
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%238892A4%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}
.form__select option { background: var(--bg-dark); }
.form__textarea { height: 100px; resize: vertical; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--secondary-cyan);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.form__btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.5px;
}
.form__btn--primary {
  background: var(--gold-accent);
  color: #000;
  animation: neonPulse 2s infinite;
}
.form__btn--primary:hover {
  transform: translateY(-2px);
  background: #ffc42e;
}
.form__btn--secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}
.form__btn--secondary:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.form__nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.form__nav .form__btn--secondary { flex: 1; }
.form__nav .form__btn--primary { flex: 2; }
.form__trust {
  text-align: center;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Checkbox alignment fix */
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--secondary-cyan);
  cursor: pointer;
}

.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

/* 10. TRUST BAR */
.trust-bar {
  background-color: rgba(255,255,255,0.02);
  padding: 40px 0;
  border-bottom: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.trust-bar__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary-cyan);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
}

/* 11. SECTION */
.section {
  padding: 100px 0;
  position: relative;
}
.section--gray {
  background-color: var(--bg-dark);
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  color: var(--secondary-cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 0.85rem;
}
.section__title {
  color: var(--text-white);
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.section__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* 12. HOW IT WORKS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.step {
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-blue), transparent);
  z-index: 1;
}
.step:last-child::after { display: none; }
.step__number {
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid var(--primary-blue);
  color: var(--secondary-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
  position: relative;
  z-index: 2;
}
.step__title {
  color: var(--text-white);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.step__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CARDS COMMON */
.feature-card, .testimonial-card, .blog-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover, .testimonial-card:hover, .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 102, 255, 0.15);
  border-color: rgba(255,255,255,0.2);
}

/* PRACTICE AREAS GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  padding: 35px 30px;
}
.feature-card__real-icon {
  width: 65px; height: 65px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 22px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover .feature-card__real-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}
.feature-card__emoji {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover .feature-card__emoji {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}
.feature-card__title {
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.feature-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 13. TESTIMONIAL CARD */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  color: var(--gold-accent);
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.3);
}
.testimonial-card__text {
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 30px;
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.8;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}
.testimonial-card__avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-card__name {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.95rem;
}
.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 14. FAQ ITEM */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.1);
  border-left: 4px solid var(--secondary-cyan);
}
.faq-item__question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}
.faq-item__question:hover {
  background: rgba(255, 255, 255, 0.02);
}
.faq-item__icon {
  color: var(--secondary-cyan);
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.active .faq-item__answer {
  padding: 0 24px 24px;
  max-height: 500px;
  opacity: 1;
}

/* 15. BLOG CARD */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.blog-card__image-placeholder {
  height: 220px;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.4s ease;
}
.blog-card:hover .blog-card__image-placeholder {
  background: rgba(0, 102, 255, 0.15);
}
.blog-card__img-placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.blog-card__img-placeholder span {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img-placeholder span {
  transform: scale(1.15);
}
.blog-card__body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__category {
  display: inline-block;
  background: rgba(0, 212, 255, 0.1);
  color: var(--secondary-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 18px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card__title {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-card__excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #64748b;
  border-top: 1px solid var(--glass-border);
  padding-top: 15px;
}

/* 16. CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(0,102,255,0.15) 100%);
  border-top: 1px solid var(--glass-border);
  color: var(--text-white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(0,212,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, var(--secondary-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-section__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 45px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section__btn {
  display: inline-block;
  background: var(--gold-accent);
  color: #000;
  padding: 20px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: neonPulse 2s infinite;
}
.cta-section__btn:hover {
  transform: translateY(-3px);
  background: #ffc42e;
}
.cta-section__phone {
  margin-top: 30px;
  font-size: 1.1rem;
}
.cta-section__phone a {
  color: var(--secondary-cyan);
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* 17. FOOTER */
.footer {
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-white);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__brand-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.8;
}
.footer__title {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: var(--primary-blue);
  box-shadow: 0 0 10px var(--primary-blue);
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 14px; }
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.footer__links a:hover {
  color: var(--secondary-cyan);
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}
.footer__disclaimer {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  color: #475569;
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 25px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #475569;
  font-size: 0.85rem;
}

/* 18. BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--secondary-cyan);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
}

/* 19. STATE TAGS */
.states-section {
  background: var(--bg-black);
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}
.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.state-tag {
  background: var(--glass-bg);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.state-tag:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--secondary-cyan);
  color: var(--text-white);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}
.state-tag__dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 8px #2ecc71;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold-accent);
  color: #000;
  text-align: center;
  padding: 20px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  z-index: 998;
  box-shadow: 0 -5px 30px rgba(255, 184, 0, 0.3);
}

/* BLOG & ARTICLES */
.blog-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 50px; }
.blog-category-btn { padding: 10px 22px; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); border-radius: 50px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.3s ease; font-size: 0.9rem;}
.blog-category-btn:hover { border-color: var(--secondary-cyan); color: var(--text-white); }
.blog-category-btn.active { background: rgba(0, 102, 255, 0.2); color: var(--secondary-cyan); border-color: var(--primary-blue); box-shadow: 0 0 15px rgba(0, 102, 255, 0.3); }

.article-hero { margin-top: 75px; background: var(--bg-dark); padding: 80px 0; text-align: center; border-bottom: 1px solid var(--glass-border);}
.breadcrumbs { margin-bottom: 25px; font-size: 0.9rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--secondary-cyan); text-decoration: none; transition: 0.3s;}
.breadcrumbs a:hover { text-shadow: 0 0 10px rgba(0,212,255,0.5); }
.breadcrumbs__separator { margin: 0 12px; color: #475569; }
.article-hero__category { display: inline-block; background: rgba(0, 212, 255, 0.1); color: var(--secondary-cyan); border: 1px solid rgba(0,212,255,0.2); padding: 6px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px;}
.article-hero__title { color: var(--text-white); font-size: 3rem; margin-bottom: 25px; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.2;}
.article-hero__meta { color: var(--text-muted); display: flex; justify-content: center; gap: 20px; font-size: 0.9rem;}

.article-content { max-width: 800px; margin: 80px auto; padding: 0 20px; font-size: 1.15rem; line-height: 1.8; color: #cbd5e1; }
.article-content h2 { color: var(--text-white); margin: 50px 0 25px; font-size: 2rem; }
.article-content h3 { color: var(--secondary-cyan); margin: 40px 0 20px; font-size: 1.5rem; }
.article-content p { margin-bottom: 25px; }
.article-content ul, .article-content ol { margin-bottom: 25px; padding-left: 25px; }
.article-content li { margin-bottom: 12px; }
.article-content strong { color: var(--text-white); }

.article-sidebar-cta { background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); padding: 40px; border-radius: 16px; border-left: 4px solid var(--secondary-cyan); margin: 50px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.article-sidebar-cta h3 { margin-top: 0; color: var(--text-white); }
.article-sidebar-cta a { display: inline-block; margin-top: 20px; color: var(--secondary-cyan); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(0,212,255,0.4); padding-bottom: 2px; transition: 0.3s; }
.article-sidebar-cta a:hover { text-shadow: 0 0 10px rgba(0,212,255,0.5); border-color: var(--secondary-cyan); }

.author-box { display: flex; gap: 25px; background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); padding: 40px; border-radius: 16px; margin-top: 80px; align-items: center;}
.author-box__avatar { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan)); color: var(--text-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.8rem; flex-shrink: 0; box-shadow: 0 0 20px rgba(0,102,255,0.4);}
.author-box__name { font-weight: 700; color: var(--text-white); font-size: 1.3rem; margin-bottom: 8px; }


/* RESPONSIVE DESIGN BREAKPOINTS */

/* Touch-friendly base target sizing for forms/buttons */
button, a, input:not([type="checkbox"]):not([type="radio"]), select {
  min-height: 44px;
}
input[type="checkbox"], input[type="radio"] {
  min-height: unset;
}

/* Tablet & Desktop (1024px) */
@media (max-width: 1024px) {
  .hero__title { font-size: 3.2rem; }
  .features-grid, .testimonials-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Mobile Menu (768px) */
@media (max-width: 768px) {
  /* Removed phone-bar styles: phone bar is disabled */
  .scroll-progress { top: 0; }
  
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav__links.active { display: flex; }
  .nav__toggle { display: flex; }
  
  .hero { margin-top: 0; padding: 80px 0 60px; }
  .hero__content { flex-direction: column; text-align: center; gap: 40px;}
  .hero__title { font-size: 3rem; }
  .hero__stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
  .hero__badge { margin: 0 auto 25px; }
  
  .form-card { width: 100%; flex: none; padding: 30px 20px; position: relative; top: auto; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step::after { display: none; }
  
  .features-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: center; gap: 15px; }
  
  .article-hero__title { font-size: 2.2rem; }
  .article-content { font-size: 1.05rem; margin: 40px auto;}

  .mobile-sticky-cta {
    display: block;
    animation: neonPulse 2s infinite;
  }
  .back-to-top { bottom: 90px; right: 20px;}
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__stat-value { font-size: 2.2rem; }
  .section__title { font-size: 2rem; }
  .form__radio-group { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; align-items: center; gap: 25px; }
  .cta-section__title { font-size: 2.2rem; }
}

/* Mobile Very Small (320px) */
@media (max-width: 320px) {
  .hero__title { font-size: 1.8rem; }
  .form-card { padding: 20px 15px; }
  .form__btn { font-size: 0.9rem; }
}

.feature-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
.blog-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

