/* ==========================================================================
   ROSCOE EQUITY — Styles
   Production-ready, mobile-first, performance-optimized
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors — Warm Cream/Green/Gold palette */
  --primary: #1a3a2f;
  --primary-light: #2d5a48;
  --cream: #faf8f3;
  --warm-white: #fffef9;
  --gold: #c9a54e;
  --gold-light: #e8d4a0;
  --gold-dark: #a6883a;
  --gold-glow: rgba(201, 165, 78, 0.12);
  --gold-glow-strong: rgba(201, 165, 78, 0.22);
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #d4d4d4;
  --gray-300: #a8a8a8;
  --gray-400: #737373;
  --gray-500: #525252;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #737373;
  --success: #2d7a50;
  --error: #c0392b;
  --error-bg: rgba(192, 57, 43, 0.08);
  --error-muted: #b56b63;
  --border: rgba(26, 58, 47, 0.1);

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 58, 47, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 58, 47, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 58, 47, 0.15);
  --shadow-gold: 0 4px 30px rgba(201,165,78,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

::selection {
  background: var(--gold);
  color: var(--white);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--cream);
}

/* ---------- Utility ---------- */
.gold { color: var(--gold); }
.check { color: var(--success); font-weight: bold; margin-right: 0.3em; }
.cross { color: var(--error-muted); font-weight: bold; margin-right: 0.3em; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 254, 249, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 30px rgba(26, 58, 47, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 1001;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--text-secondary);
}

.nav.scrolled .nav__link:hover {
  color: var(--primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav__cta-btn:hover {
  transform: translateY(-1px);
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(168deg, var(--warm-white) 0%, var(--cream) 50%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(26,58,47,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(26, 58, 47, 0.08);
  border: 1px solid rgba(26, 58, 47, 0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
}

.hero__proof-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero__proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

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

.hero__mobile-cta {
  display: none;
}

/* ---------- Form Card ---------- */
.hero__form-wrap {
  position: relative;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

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

.form-card__header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.form-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.form-card__sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.form__group {
  margin-bottom: 1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form__input,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

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

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 47, 0.1);
  background: var(--white);
}

.form__input.error,
.form__select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px var(--error-bg);
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__error {
  display: block;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.3rem;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.form__error.visible {
  opacity: 1;
}

.form__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

/* Form Success State */
.form-card__success {
  text-align: center;
  padding: 2rem 0;
}

.form-card__success .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--success), #38a169);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  animation: scaleIn 0.4s var(--ease);
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-card__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-card__success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Form Urgency */
.form-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  background: rgba(26, 58, 47, 0.06);
  border: 1px solid rgba(26, 58, 47, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--primary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

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

.btn__loading {
  display: none;
  animation: spin 1s linear infinite;
}

.btn.loading .btn__text { visibility: hidden; }
.btn.loading .btn__loading { display: block; position: absolute; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.trust-bar__icon {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Section Headers ---------- */
.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section__tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(26, 58, 47, 0.08);
  border: 1px solid rgba(26, 58, 47, 0.15);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.step__number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
}

.step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.step__title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.steps__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  background: var(--white);
  border:  1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.why-card:hover {
  border-color: rgba(200,149,46,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.why-card__title {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.why-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Comparison Table ---------- */
.comparison {
  background: var(--cream);
}

.compare-table {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.compare-table__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--cream);
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--border);
}

.compare-table__row:nth-child(even) {
  background: rgba(26, 58, 47, 0.02);
}

.compare-table__cell {
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.compare-table__cell--label {
  font-weight: 600;
  color: var(--text-primary);
}

.compare-table__cell--us {
  color: var(--success);
  font-weight: 500;
}

.compare-table__cell--them {
  color: var(--error-muted);
}

[role="columnheader"] {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

[role="columnheader"].compare-table__cell--us {
  color: var(--primary);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--warm-white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border:  1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-3px);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- Areas ---------- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.area-card {
  background: var(--white);
  border:  1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.area-card:hover {
  border-color: rgba(200,149,46,0.2);
  transform: translateY(-2px);
}

.area-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.area-card__city {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.area-card__desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.areas__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Situations ---------- */
.situations {
  background: var(--cream);
}

.situations__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.situation-tag {
  padding: 0.7rem 1.3rem;
  background: var(--white);
  border:  1px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.situation-tag:hover {
  border-color: rgba(200,149,46,0.3);
  color: var(--gold-light);
  background: var(--gold-glow);
}

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}

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

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 1.3rem;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.final-cta__phone {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.final-cta__phone a {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links h4 {
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer__hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__disclaimer {
  max-width: 700px;
  margin: 0.8rem auto 0;
  font-size: 0.72rem !important;
  line-height: 1.5;
  color: var(--gray-500) !important;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-3px);
}

/* ---------- Animations ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for grid children */
.why-grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.why-grid [data-animate]:nth-child(2) { transition-delay: 80ms; }
.why-grid [data-animate]:nth-child(3) { transition-delay: 160ms; }
.why-grid [data-animate]:nth-child(4) { transition-delay: 240ms; }
.why-grid [data-animate]:nth-child(5) { transition-delay: 320ms; }
.why-grid [data-animate]:nth-child(6) { transition-delay: 400ms; }

.testimonials__grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.testimonials__grid [data-animate]:nth-child(2) { transition-delay: 100ms; }
.testimonials__grid [data-animate]:nth-child(3) { transition-delay: 200ms; }

.areas__grid [data-animate]:nth-child(1) { transition-delay: 0ms; }
.areas__grid [data-animate]:nth-child(2) { transition-delay: 50ms; }
.areas__grid [data-animate]:nth-child(3) { transition-delay: 100ms; }
.areas__grid [data-animate]:nth-child(4) { transition-delay: 150ms; }
.areas__grid [data-animate]:nth-child(5) { transition-delay: 200ms; }
.areas__grid [data-animate]:nth-child(6) { transition-delay: 250ms; }
.areas__grid [data-animate]:nth-child(7) { transition-delay: 300ms; }

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__sub { margin: 0 auto 2rem; }

  .hero__proof { justify-content: center; }

  .hero__mobile-cta { display: inline-flex; margin-top: 1.5rem; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .areas__grid { grid-template-columns: repeat(3, 1fr); }

  .footer__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  .steps { gap: 1rem; }
  .step__connector { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 0.8rem 1rem; }
  .nav.scrolled { padding: 0.6rem 1rem; }

  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    z-index: 999;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .nav__link::after { display: none; }

  .hero { padding-top: 70px; min-height: auto; }
  .hero__inner { padding: 2rem 0 3rem; }

  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  .hero__proof { flex-wrap: wrap; gap: 1rem; }
  .hero__proof-divider { display: none; }

  .form-card { padding: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .step__connector { display: none; }

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

  .compare-table__cell { padding: 0.7rem 0.6rem; font-size: 0.78rem; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial-card:last-child { max-width: 100%; }

  .areas__grid { grid-template-columns: repeat(2, 1fr); }

  .trust-bar__inner { gap: 1.5rem; }
  .trust-bar__item { font-size: 0.75rem; }
  .trust-bar__item svg { width: 20px; height: 20px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .back-to-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero__headline { font-size: 1.7rem; }
  .hero__badge { font-size: 0.7rem; }

  .section__title { font-size: 1.5rem; }

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

  .compare-table { font-size: 0.75rem; }
  .compare-table__cell { padding: 0.6rem 0.5rem; font-size: 0.72rem; }

  .form-card { padding: 1.2rem; }

  .situations__grid { gap: 0.5rem; }
  .situation-tag { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .back-to-top, .form-urgency { display: none; }
  body { background: white; color: black; }
  .section { background: white; }
  * { color: black !important; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
}