/* ============================================
   TICKET FIGHTERS LEGAL SERVICES
   Landing Page — Red & Gold Brand
   ============================================ */

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

:root {
  /* === RED & GOLD BRAND PALETTE === */
  --black:       #080808;
  --dark:        #111111;
  --dark-mid:    #181818;
  --dark-card:   #242424;
  --red:         #cc1515;
  --red-bright:  #e01c1c;
  --red-dark:    #a00f0f;
  --red-glow:    rgba(204,21,21,0.22);
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-pale:   #f5e199;
  --gold-glow:   rgba(201,168,76,0.18);
  --gold-border: rgba(201,168,76,0.3);
  --white:       #ffffff;
  --off-white:   #f5f5f5;
  --grey:        #909090;
  --grey-light:  #bebebe;
  --glass:       rgba(20,20,20,0.80);
  --glass-light: rgba(255,255,255,0.05);
  --border-sub:  rgba(255,255,255,0.12);
  --shadow-red:  0 8px 40px rgba(204,21,21,0.28);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
  --shadow-card: 0 12px 48px rgba(0,0,0,0.5);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: #d8d8d8;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.topbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 58px;
  width: auto;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Phone button — gold outline style */
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #b8960f);
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}

.topbar-phone:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
}

@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(1.18); opacity: 0; }
}

.phone-svg {
  width: 18px;
  height: 18px;
  color: var(--black);
  flex-shrink: 0;
}

.phone-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(10,10,10,0.7);
}

.phone-number {
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('hero_bg.jpg') center center / cover no-repeat;
  padding: 110px 24px 60px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10,10,10,0.94) 0%,
    rgba(10,10,10,0.82) 55%,
    rgba(10,10,10,0.88) 100%
  );
  z-index: 0;
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; min-width: 0; }

/* hero location line */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.2vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-highlight {
  display: block;
  background: linear-gradient(90deg, var(--red-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-sub strong { color: var(--gold-light); font-weight: 700; }

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-number {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  color: #c0c0c0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-border);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(204,21,21,0.1);
  border: 1px solid rgba(204,21,21,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.check-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- HERO PHONE CTA ---- */
.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 14px;
  padding: 16px 24px;
  transition: var(--transition);
  text-decoration: none;
}

.hero-phone-cta:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.hero-phone-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-phone-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.hero-phone-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

/* ============================================
   HERO FORM
   ============================================ */
.hero-form-wrapper {
  width: 440px;
  flex-shrink: 0;
}

.form-card {
  background: rgba(15,15,15,0.88);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 36px 32px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(204,21,21,0.08);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.form-header { margin-bottom: 24px; }

.form-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.form-subtitle {
  font-size: 13px;
  color: var(--grey);
  font-weight: 400;
}

.lead-form { display: flex; flex-direction: column; gap: 14px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group select option { background: var(--dark); color: var(--white); }

.form-submit-btn {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 16px;
  transition: var(--transition);
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-red);
  margin-top: 4px;
}

.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(204,21,21,0.5); }
.form-submit-btn:active { transform: translateY(0); }

.form-disclaimer {
  font-size: 11px;
  color: var(--grey);
  text-align: center;
  margin-top: -2px;
}

.form-success { text-align: center; padding: 24px 0; }
.form-success h3 { font-size: 21px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--grey); }
.form-success .success-phone { margin-top: 16px; font-size: 15px; color: var(--gold-light); }
.form-success .success-phone a { color: var(--gold); font-weight: 700; }

.success-checkmark {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  overflow: hidden;
  white-space: nowrap;
  padding: 13px 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: inline-block;
  animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  padding: 0 8px;
}

.ticker-sep {
  color: rgba(255,255,255,0.35);
  padding: 0 8px;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: #c8c8c8;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 52px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 24px;
  background: var(--dark);
}

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

.feature-card {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(201,168,76,0.14);
  border-color: var(--gold);
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  color: #c4c4c4;
  line-height: 1.8;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 24px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.steps-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.step {
  flex: 1;
  background: #262626;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}

.step:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: rgba(201,168,76,0.35);
  line-height: 1;
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 14px;
  color: #c4c4c4;
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.4;
}

.step-arrow svg {
  width: 22px;
  height: 22px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 24px;
  background: var(--dark-mid);
}

.about-inner {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.about-text { flex: 1; }

.about-text p {
  font-size: 15.5px;
  color: #c8c8c8;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 50px;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}

.about-cta svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(204,21,21,0.5);
}

.about-cards {
  width: 320px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
}

.about-stat-card {
  background: #262626;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  transition: var(--transition);
}

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

.about-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

/* ============================================
   TESTIMONIALS / GOOGLE REVIEWS
   ============================================ */
.testimonials {
  padding: 100px 24px;
  background: var(--dark);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.reviews-header .section-title { margin-bottom: 0; }

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #7baaf7;
  border: 1px solid rgba(123,170,247,0.25);
  border-radius: 50px;
  padding: 7px 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.google-link:hover {
  background: rgba(123,170,247,0.08);
  border-color: rgba(123,170,247,0.5);
}

.google-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.review-card {
  background: #252525;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

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

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-top .reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.3;
}

.google-badge {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
  display: block;
}

.review-text {
  font-size: 14.5px;
  color: #d0d0d0;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
  padding: 100px 24px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(204,21,21,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 17px;
  color: #c8c8c8;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Large click-to-call CTA button */
.cta-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  padding: 18px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  text-decoration: none;
}

.cta-btn-call svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cta-btn-call > div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.cta-call-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.cta-call-num {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.cta-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(204,21,21,0.55);
}

.cta-btn-form {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.cta-btn-form:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cta-note {
  font-size: 13px;
  color: #aaa;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 52px 24px;
  text-align: center;
}

.footer-inner { max-width: 800px; margin: 0 auto; }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  display: block;
}

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

.footer-tagline {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links a:hover { text-decoration: underline; }
.footer-links span { color: rgba(255,255,255,0.15); }

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.65;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid var(--gold-border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  align-items: stretch;
}

.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.sticky-form-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; gap: 40px; }
  .hero-form-wrapper { width: 100%; max-width: 520px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-wrapper { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .hero-phone-num { font-size: 26px; }
  .about-inner { flex-direction: column; gap: 40px; }
  .about-cards { width: 100%; }
}

@media (max-width: 680px) {
  .logo-sub { display: none; }
  .phone-label { display: none; }
  .phone-number { font-size: 15px; }
  .hero { padding: 90px 16px 100px; }
  .hero-stats { padding: 16px; }
  .stat-item { padding: 0 12px; }
  .stat-number { font-size: 22px; }
  .hero-phone-num { font-size: 22px; }
  .hero-phone-cta { padding: 14px 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-btn-call, .cta-btn-form { width: 100%; justify-content: center; }
  .cta-call-num { font-size: 20px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
