/* ═══════════════════════════════════════════════════════════════
   RentPools.online — Premium Pool Financing Landing Styles
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── DESIGN SYSTEM TOKENS ────────────────────────────────────── */
:root {
  /* Color Palette — Aquatic Premium & Sunset Gold Accents */
  --bg-primary:         #020b14; /* Deep midnight blue */
  --bg-secondary:       #061527; /* Dark sapphire blue */
  --bg-card:            #0a2239; /* Sleek glass/card blue */
  --bg-card-hover:      #0e304f; /* Interactive highlight blue */
  --color-primary:      #0077b6; /* Ocean blue */
  --color-primary-light:#00b4d8; /* Vivid sky cyan */
  --color-accent:       #ffb703; /* Warm sun gold */
  --color-accent-dark:  #fb8500; /* Rich sunset orange */
  --color-success:      #06d6a0; /* Sparkling turquoise teal */
  --color-error:        #ff4d6d; /* Coral red */
  
  /* Gradients */
  --gradient-pool:      linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  --gradient-sun:       linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  --gradient-dark:      linear-gradient(180deg, #020b14, #081d33);
  --gradient-glass:     linear-gradient(135deg, rgba(10, 34, 57, 0.8), rgba(6, 21, 39, 0.9));
  
  /* Text Palette */
  --text-primary:       #f8f9fa; /* High-contrast clean white */
  --text-secondary:     #90e0ef; /* Soft aquatic blue-grey */
  --text-muted:         #6b90a6; /* Deep ocean slate */
  
  /* Layout Metrics */
  --radius-sm:          8px;
  --radius-md:          14px;
  --radius-lg:          22px;
  --radius-full:        100px;
  --header-h:           76px;
  --container:          1140px;
  
  /* Borders */
  --border:             rgba(144, 224, 239, 0.08);
  --border-hover:       rgba(144, 224, 239, 0.22);
  --border-focus:       rgba(0, 180, 216, 0.55);

  /* Shadows */
  --shadow-sm:          0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md:          0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg:          0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow:        0 0 25px rgba(0, 180, 216, 0.3);
  --shadow-success:     0 0 25px rgba(6, 214, 160, 0.4);

  /* Animations */
  --transition-fast:    150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:    280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:    450ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE SETUP ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

/* ── LAYOUT & GENERAL UTILITIES ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-highlight {
  background: var(--gradient-pool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  display: inline-block;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--color-primary-light);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ── HEADER NAVIGATION ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(2, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  cursor: pointer;
}

.logo svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 216, 0.4));
}

.logo span {
  color: var(--color-primary-light);
}

.nav-cta {
  background: var(--gradient-sun);
  color: #020b14 !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 183, 3, 0.35);
}

/* ── PREMIUM HERO SECTION ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slowZoom 24s ease infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(2, 11, 20, 0.6) 0%, 
    rgba(2, 11, 20, 0.93) 75%, 
    rgba(2, 11, 20, 1) 100%);
  z-index: 1;
}

@keyframes slowZoom {
  0% { transform: scale(1.03); }
  100% { transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 110px 24px 60px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.3);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both 0.1s;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 38px;
  animation: fadeInUp 0.6s ease both 0.2s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease both 0.3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-pool);
  color: #fff;
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.45);
}

.btn-accent {
  background: var(--gradient-sun);
  color: #020b14;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease both 0.4s;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--color-success);
}

.proof-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

@media(max-width: 600px) {
  .hero-social-proof {
    flex-direction: column;
    gap: 16px;
  }
  .proof-divider { display: none; }
}

/* ── INTERACTIVE MULTI-STEP LEAD FORM SECTION ───────────────── */
.lead-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--gradient-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Glass effect highlight */
.form-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-pool);
}

/* Multi-step progress tracker */
.step-tracker {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.tracker-line {
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.tracker-line-fill {
  position: absolute;
  top: 14px; left: 0;
  height: 2px;
  background: var(--gradient-pool);
  width: 0%;
  z-index: 2;
  transition: width var(--transition-base);
}

.step-node {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
  transition: all var(--transition-base);
}

.step-node.active {
  background: var(--bg-primary);
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.35);
}

.step-node.completed {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--bg-primary);
}

/* Form Steps Layout */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepIn 0.38s ease both;
}

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

.step-title {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.step-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-align: center;
}

/* Step 1 & 2 Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

@media(max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

.card-option {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-option:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-option.selected {
  background: rgba(0, 119, 182, 0.12);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-glow);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.card-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: all var(--transition-fast);
}

.card-option.selected .card-check {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--bg-primary);
}

/* Step 3 Layout (ZIP & Yard specs) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media(max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group label span {
  color: var(--color-error);
}

.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
  background: var(--bg-card);
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Radio groups for horizontal choice */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.radio-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-btn:hover {
  border-color: var(--border-hover);
}

.radio-btn.selected {
  background: rgba(0, 119, 182, 0.15);
  border-color: var(--color-primary-light);
  color: var(--text-primary);
}

/* Form Action Buttons */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.btn-back {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.btn-next, .btn-submit {
  flex-grow: 1;
}

/* Error message class */
.input-error-msg {
  color: var(--color-error);
  font-size: 11px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* SUCCESS BOX */
.success-box {
  display: none;
  text-align: center;
  animation: successIn 0.5s ease both;
  padding: 12px 0;
}

@keyframes successIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(6, 214, 160, 0.12);
  border: 2px solid var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-success);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-success);
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(6, 214, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0); }
}

.success-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--color-success);
}

.success-box p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.success-next-steps {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}

.success-next-steps h4 {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--color-primary-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.step-bullet {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.step-bullet:last-child {
  margin-bottom: 0;
}

.step-bullet::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
}

/* ── PREMIUM FEATURES SECTION ────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-pool);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: inline-block;
  background: rgba(0, 180, 216, 0.08);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── SPLIT INFO SECTION ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.split-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.split-img-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.split-img-wrapper:hover img {
  transform: scale(1.04);
}

.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 11, 20, 0.6) 0%, rgba(2, 11, 20, 0) 60%);
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.split-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-points li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.split-points li strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.split-point-icon {
  font-size: 20px;
  color: var(--color-accent);
  line-height: 1;
}

/* ── HOW IT WORKS STEPS ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.step-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--color-primary-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PREMIUM TESTIMONIALS SECTION ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stars {
  color: var(--color-accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.author-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-primary-light);
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.author-loc {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ── INTERACTIVE FAQ SECTION ─────────────────────────────────── */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  padding-right: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  transition: transform var(--transition-base), background var(--transition-fast);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease-out;
}

.faq-content {
  padding: 0 24px 24px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

/* ── STICKY/FLOATING ACTION BUTTON ───────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  animation: bounceFloat 3s ease-in-out infinite;
}

.floating-cta .btn {
  padding: 13px 26px;
  font-size: 14.5px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

@media(max-width: 600px) {
  .floating-cta {
    bottom: 0; left: 0; right: 0;
    padding: 10px var(--space-md);
    background: rgba(2, 11, 20, 0.88);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    animation: none;
    display: flex;
    justify-content: center;
  }
  .floating-cta .btn {
    width: 100%;
    max-width: 400px;
    padding: 12px;
  }
}

/* ── COMPLIANT FOOTER ────────────────────────────────────────── */
.site-footer {
  background-color: #01060c;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-disc {
  max-width: 700px;
  text-align: center;
  line-height: 1.6;
}

.footer-social-disc {
  max-width: 700px;
  text-align: center;
  opacity: 0.45;
  font-size: 10px;
}

/* ── STANDARD LEGAL COMPLIANCE MODAL ─────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 11, 20, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.25s ease;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.modal-body {
  padding: 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.modal-body p {
  margin-bottom: 14px;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

/* ── ANIMATION KEYFRAMES ─────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
