/* ============================================================
   EWA Elite Cleaning Service — Louisville, KY
   Main Stylesheet
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #162a52;
  --gold:       #c9a227;
  --gold-light: #e8c547;
  --gold-pale:  #f5e4a0;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --gray-100:   #f1f3f8;
  --gray-200:   #e2e6f0;
  --gray-400:   #9aa3b8;
  --gray-600:   #5a6480;
  --gray-800:   #2c3450;
  --green:      #22c55e;
  --red:        #ef4444;

  --font-body:    'Inter', system-ui, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.12);
  --shadow-md:  0 8px 32px rgba(0,0,0,.18);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.25);
  --shadow-gold: 0 0 30px rgba(201,162,39,.25);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .45s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: rgba(255,255,255,.82); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,162,39,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,162,39,.15);
  transition: all var(--transition);
}
.site-header.scrolled {
  padding: .6rem 0;
  background: rgba(10,22,40,.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--white); }
.logo-sub { font-size: .7rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; align-items: center; }
.main-nav a {
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(201,162,39,.1);
}

.header-cta { font-size: .9rem; padding: .6rem 1.25rem; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ───────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--navy);
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition);
}
.mobile-nav a:hover { background: rgba(201,162,39,.1); border-color: var(--gold); color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,162,39,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(22,42,82,.8) 0%, transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0d1e3a 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(201,162,39,.06) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold-light);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInDown .6s ease both;
}

.hero-title {
  margin-bottom: 1.25rem;
  animation: fadeInUp .7s ease .1s both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeInUp .7s ease .2s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp .7s ease .3s both;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp .7s ease .4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.trust-icon { color: var(--gold); font-weight: 700; }

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  z-index: 1;
  animation: fadeInRight .8s ease .3s both;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  cursor: default;
}
.hero-card:hover {
  background: rgba(201,162,39,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.hero-card-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.hero-card-text { font-weight: 600; font-size: .95rem; color: var(--gold-light); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: rgba(201,162,39,.08);
  border-top: 1px solid rgba(201,162,39,.15);
  border-bottom: 1px solid rgba(201,162,39,.15);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.3);
  color: var(--gold);
  padding: .3rem .9rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section { padding: 6rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition);
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,39,.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201,162,39,.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background: rgba(201,162,39,.06);
}
.service-card:hover::before { opacity: 1; }

.service-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.service-card h3 { margin-bottom: .75rem; color: var(--white); }
.service-card > p { color: rgba(255,255,255,.7); margin-bottom: 1.25rem; font-size: .95rem; }

.service-list { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.service-list li {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: .5rem; }

/* ── WHY SECTION ──────────────────────────────────────────── */
.why-section { padding: 6rem 0; background: rgba(255,255,255,.02); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-content .section-tag { margin-bottom: 1rem; }
.why-content h2 { margin-bottom: 1rem; }
.why-content > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.why-item strong { display: block; margin-bottom: .25rem; color: var(--white); }
.why-item p { font-size: .9rem; color: rgba(255,255,255,.65); margin: 0; }

.why-visual { display: flex; flex-direction: column; gap: 1.25rem; }

.why-badge-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
}
.why-badge-card:hover {
  border-color: rgba(201,162,39,.3);
  background: rgba(201,162,39,.05);
}
.badge-stars { font-size: 1.1rem; margin-bottom: .75rem; }
.badge-quote { font-size: .9rem; color: rgba(255,255,255,.8); font-style: italic; margin-bottom: .75rem; }
.badge-author { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* ── AREAS SECTION ────────────────────────────────────────── */
.areas-section { padding: 6rem 0; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.area-tag {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  transition: all var(--transition);
  cursor: default;
}
.area-tag:hover {
  background: rgba(201,162,39,.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(201,162,39,.15) 0%, rgba(201,162,39,.05) 100%);
  border-top: 1px solid rgba(201,162,39,.2);
  border-bottom: 1px solid rgba(201,162,39,.2);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.75); }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-section { padding: 6rem 0; }

.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(201,162,39,.3); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}
.faq-answer p {
  padding: 0 1.5rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.footer-address { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.footer-address a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-address a:hover { color: var(--gold); }

.footer-links h4 { color: var(--gold); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links li { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-links a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: .25rem; }

/* ── FLOATING CTA ─────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(201,162,39,.5);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(201,162,39,.7);
  animation: none;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 9rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,162,39,.1) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,162,39,.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 2rem; }

.page-hero--commercial { background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(22,100,201,.1) 0%, transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero--deep { background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(34,197,94,.08) 0%, transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero--moveinout { background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(168,85,247,.08) 0%, transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero--contact { background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,162,39,.1) 0%, transparent 60%), linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); }

.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── CONTENT SECTION (inner pages) ───────────────────────── */
.content-section { padding: 5rem 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.content-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(201,162,39,.2);
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 1.5rem; margin-bottom: .75rem; color: var(--gold-light); font-size: 1.2rem; }
.content-main p { color: rgba(255,255,255,.78); margin-bottom: 1rem; line-height: 1.75; }

.content-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; padding-left: .5rem; }
.content-list li {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.content-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── PLAN CARDS ───────────────────────────────────────────── */
.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.plan-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  border-color: rgba(201,162,39,.35);
  background: rgba(201,162,39,.05);
  transform: translateY(-3px);
}
.plan-icon { font-size: 2rem; margin-bottom: .75rem; }
.plan-card h3 { font-size: 1.05rem; margin-bottom: .5rem; color: var(--white); }
.plan-card p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }
.plan-badge {
  position: absolute;
  top: -10px; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.process-step strong { display: block; margin-bottom: .25rem; color: var(--white); }
.process-step p { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.comparison-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  margin: 1.5rem 0;
}
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(201,162,39,.15);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-light);
  text-align: center;
}
.comparison-header > div:first-child { text-align: left; }
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: .85rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  text-align: center;
  align-items: center;
  transition: background var(--transition);
}
.comparison-row:hover { background: rgba(255,255,255,.03); }
.comparison-row > div:first-child { text-align: left; color: rgba(255,255,255,.8); }
.check { color: var(--green); font-weight: 700; font-size: 1.1rem; }
.cross { color: rgba(255,255,255,.3); font-size: 1.1rem; }

/* ── SIDEBAR ──────────────────────────────────────────────── */
.content-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 100px; }

.sidebar-cta {
  background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.05));
  border: 1px solid rgba(201,162,39,.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.sidebar-cta h3 { margin-bottom: .5rem; color: var(--gold-light); }
.sidebar-cta p { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }

.sidebar-trust, .sidebar-services {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-trust h4, .sidebar-services h4 {
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.sidebar-trust ul { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-trust li { font-size: .88rem; color: rgba(255,255,255,.75); }
.sidebar-services ul { display: flex; flex-direction: column; gap: .5rem; }
.sidebar-services a { font-size: .88rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.sidebar-services a:hover { color: var(--gold); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-section { padding: 5rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper h2 { margin-bottom: .5rem; }
.contact-form-wrapper > p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.85); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,162,39,.08);
  box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: var(--red); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-error { font-size: .8rem; color: var(--red); min-height: 1rem; }

.form-checkbox { flex-direction: row; align-items: center; }
.checkbox-label { display: flex; align-items: center; gap: .75rem; cursor: pointer; font-size: .9rem; color: rgba(255,255,255,.75); }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }

.form-disclaimer { font-size: .78rem; color: rgba(255,255,255,.4); text-align: center; margin-top: .5rem; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius-xl);
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--green); margin-bottom: .75rem; }
.form-success p { color: rgba(255,255,255,.75); }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; }

.contact-info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.contact-info-card h3 { color: var(--gold-light); margin-bottom: 1.25rem; font-size: 1.1rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.contact-icon { font-size: 1.25rem; flex-shrink: 0; width: 36px; text-align: center; }
.contact-detail strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: .2rem; }
.contact-detail a, .contact-detail span { font-size: .9rem; color: rgba(255,255,255,.75); transition: color var(--transition); }
.contact-detail a:hover { color: var(--gold); }

.contact-trust-list { display: flex; flex-direction: column; gap: .5rem; }
.contact-trust-list li { font-size: .88rem; color: rgba(255,255,255,.75); }

.contact-services-list { display: flex; flex-direction: column; gap: .5rem; }
.contact-services-list a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color var(--transition); display: block; padding: .3rem 0; }
.contact-services-list a:hover { color: var(--gold); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translate(40px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,162,39,.5); }
  50%       { box-shadow: 0 4px 40px rgba(201,162,39,.8); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 7rem 0 4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { gap: .75rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: .8rem; padding: .75rem 1rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .hero-ctas .btn { width: 100%; }
}
