/* ==========================================================================
   ATLANTA ROOFING PRO - MODERN DESIGN SYSTEM & STYLESHEET
   Version: v1.18
   Palette Inspired by Official Atlanta Roofing Pro Crest:
   - Deep Midnight Blue / Slate (#060B19, #0B132B, #0F172A)
   - Neon Electric Cyan (#00E5FF, #38BDF8, #0284C7)
   - Atlanta Bold Crimson (#FF2A55, #E63946, #D90429)
   - Crisp Ice White (#F8FAFC, #E0F2FE)
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #060b19;
  --bg-card: rgba(14, 23, 47, 0.85);
  --bg-card-hover: rgba(20, 33, 66, 0.95);
  --bg-surface: #0b132b;
  --bg-surface-elevated: #111d42;

  --neon-cyan: #00e5ff;
  --cyan-hover: #38bdf8;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  --cyan-subtle: rgba(0, 229, 255, 0.12);

  --atl-crimson: #ff2a55;
  --crimson-hover: #e63946;
  --crimson-glow: rgba(255, 42, 85, 0.35);
  --crimson-subtle: rgba(255, 42, 85, 0.12);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #060b19;

  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 229, 255, 0.4);
  --border-crimson: rgba(255, 42, 85, 0.4);

  /* Gradients */
  --grad-cyan: linear-gradient(135deg, #00e5ff 0%, #0284c7 100%);
  --grad-crimson: linear-gradient(135deg, #ff2a55 0%, #990024 100%);
  --grad-dark: linear-gradient(180deg, #060b19 0%, #0b132b 100%);
  --grad-hero-overlay: linear-gradient(
    180deg,
    rgba(6, 11, 25, 0.88) 0%,
    rgba(6, 11, 25, 0.94) 50%,
    #060b19 100%
  );
  --grad-brand: linear-gradient(90deg, #00e5ff 0%, #ffffff 50%, #ff2a55 100%);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.4);
  --shadow-glow-cyan: 0 0 30px rgba(0, 229, 255, 0.25);
  --shadow-glow-crimson: 0 0 30px rgba(255, 42, 85, 0.25);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 229, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(255, 42, 85, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-cyan {
  color: var(--neon-cyan);
}

.text-crimson {
  color: var(--atl-crimson);
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Version Tag Badge */
.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  user-select: none;
}

.version-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 11, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-icon-crest {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  transition: var(--transition);
}

.brand-wrapper:hover .brand-icon-crest {
  transform: scale(1.05);
  border-color: var(--atl-crimson);
  color: var(--atl-crimson);
  box-shadow: 0 0 18px rgba(255, 42, 85, 0.4);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.brand-title span {
  color: var(--neon-cyan);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--atl-crimson);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--neon-cyan);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.phone-cta:hover {
  border-color: var(--neon-cyan);
  background: var(--cyan-subtle);
  color: var(--neon-cyan);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #060b19;
  background: var(--grad-cyan);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.35);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.55);
}

.btn-crimson {
  background: var(--grad-crimson);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 42, 85, 0.35);
}

.btn-crimson:hover {
  box-shadow: 0 8px 25px rgba(255, 42, 85, 0.55);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION & LEAD MATCHER
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding-block: 4rem 5rem;
  overflow: hidden;
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero-overlay);
}

.hero-content-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Hero Text */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-crest-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(14, 23, 47, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-cyan);
}

.hero-crest-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-crest-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: #ffffff;
  line-height: 1.12;
}

/* The exact quote from user prompt */
.hero-matchmaker-statement {
  position: relative;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 229, 255, 0.05);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.55;
  backdrop-filter: blur(10px);
}

.hero-matchmaker-statement strong {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Hero Top Logo Panel (Fills width of column) */
.hero-logo-panel {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  background: rgba(14, 23, 47, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 229, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hero-logo-panel:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 35px rgba(0, 229, 255, 0.35);
  transform: translateY(-2px);
}

.hero-panel-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 559;
  display: block;
  object-fit: contain;
}

/* Hero Main Content Logo Showcase (Legacy/Fallback) */
.hero-logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(14, 23, 47, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(0, 229, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 229, 255, 0.15);
  transition: var(--transition);
}

.hero-logo-container:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

.hero-logo-frame {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
  background: #060b19;
}

.hero-main-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--atl-crimson);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-logo-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
}

.hero-logo-sub {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .hero-logo-container {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .hero-logo-frame {
    width: 120px;
    height: 120px;
  }
  .hero-logo-caption {
    align-items: center;
  }
}

.hero-trust-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
  margin-top: 0.5rem;
}

.trust-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
}

.trust-bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan-subtle);
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

/* Hero Matcher Card (Right Col) */
.hero-form-col {
  position: relative;
}

.matcher-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow-cyan);
  overflow: hidden;
}

.matcher-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
}

.matcher-header {
  margin-bottom: 1.75rem;
  position: relative;
}

.matcher-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.matcher-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--neon-cyan);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.matcher-tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--atl-crimson);
  box-shadow: 0 0 10px var(--atl-crimson);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.matcher-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.matcher-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Progress Tracker */
.progress-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}

.progress-track-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.progress-track-fill {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 33.33%;
  height: 3px;
  background: var(--grad-cyan);
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.4s ease;
}

.progress-step-node {
  position: relative;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: var(--transition);
}

.progress-step-node.active {
  border-color: var(--neon-cyan);
  background: #0b1736;
  color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.progress-step-node.completed {
  border-color: var(--atl-crimson);
  background: var(--atl-crimson);
  color: #ffffff;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.form-step.active {
  display: block;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.form-label-hint {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neon-cyan);
}

/* Home Style Selection Cards (Ranch vs Two-Story) */
.style-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.style-card-radio {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  white-space: nowrap;
}

.style-card-label {
  display: flex;
  flex-direction: column;
  background: rgba(11, 19, 43, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.style-card-label:hover {
  border-color: rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
  background: rgba(17, 29, 66, 0.85);
}

.style-card-radio:checked + .style-card-label {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
}

.style-card-radio:checked + .style-card-label .style-check-icon {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: #060b19;
  transform: scale(1.1);
}

.style-image-wrapper {
  position: relative;
  width: 100%;
  height: 110px;
  overflow: hidden;
}

.style-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.style-card-label:hover .style-image-wrapper img {
  transform: scale(1.05);
}

.style-check-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(6, 11, 25, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.75rem;
  transition: var(--transition);
}

.style-card-info {
  padding: 0.85rem;
}

.style-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.style-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.style-card-detail {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.35;
}

/* Square Footage Slider & Presets */
.sqft-display-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.sqft-val-wrapper {
  display: flex;
  align-baseline: baseline;
  gap: 0.35rem;
}

.sqft-val-number {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--neon-cyan);
  font-family: var(--font-heading);
}

.sqft-val-unit {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}

.sqft-est-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 42, 85, 0.15);
  border: 1px solid rgba(255, 42, 85, 0.4);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
}

.sqft-slider-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1e293b;
  outline: none;
  margin-block: 0.5rem;
  cursor: pointer;
}

.sqft-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--neon-cyan);
  cursor: pointer;
  box-shadow: 0 0 12px var(--neon-cyan);
  border: 2px solid #ffffff;
  transition: transform 0.15s ease;
}

.sqft-slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.sqft-presets-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.sqft-preset-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.sqft-preset-btn:hover, .sqft-preset-btn.active {
  background: var(--cyan-subtle);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ZIP Code Field */
.zip-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.zip-icon {
  position: absolute;
  left: 1rem;
  color: var(--neon-cyan);
  pointer-events: none;
}

.input-text {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  background: var(--bg-surface-elevated);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.input-text:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  background: #0f1c3f;
}

.input-text::placeholder {
  color: var(--text-dim);
}

.zip-detected-area {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 0.5rem;
  min-height: 22px;
}

.zip-detected-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0, 229, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.zip-quick-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.zip-tag-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.zip-tag-btn {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.zip-tag-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: var(--cyan-subtle);
}

/* City Navigation Pill Links on Service Area Directory */
.city-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-pill-link:hover {
  background: rgba(0, 229, 255, 0.22);
  border-color: var(--neon-cyan);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.2);
}

.city-pill-link:active {
  transform: translateY(0);
}

/* Step 2 Option Grids */
.option-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.chip-radio {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  white-space: nowrap;
}

.chip-label {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  background: var(--bg-surface-elevated);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.chip-label:hover {
  border-color: rgba(0, 229, 255, 0.4);
  background: #13214b;
}

.chip-radio:checked + .chip-label {
  border-color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.chip-label-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.chip-label-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Step 3 Contact Inputs */
.contact-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-container-plain {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.input-container-plain label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
}

.input-plain {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--bg-surface-elevated);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.input-plain:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  background: #0f1c3f;
}

/* Form Action Buttons */
.form-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.btn-back {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-next, .btn-submit-match {
  flex: 1;
  min-height: 52px;
}

.form-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 1rem;
  text-align: center;
}

/* Match Dynamic Estimate Widget */
.live-match-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 229, 255, 0.06);
  border: 1px dashed rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.match-stat-col {
  display: flex;
  flex-direction: column;
}

.match-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.match-stat-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.match-stat-val.highlight {
  color: var(--neon-cyan);
}

/* Match Confirmation Modal / State */
.match-success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 25, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem 1rem;
  align-items: center;
  justify-content: center;
}

.match-success-overlay.active {
  display: flex;
}

.match-success-card {
  background: var(--bg-card);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.35);
  animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.success-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.success-close-btn:hover {
  background: var(--atl-crimson);
}

.success-icon-badge {
  width: 68px;
  height: 68px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.15);
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.matched-contractors-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block: 1.5rem;
}

.contractor-match-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.contractor-match-item:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
}

.contractor-info {
  display: flex;
  flex-direction: column;
}

.contractor-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
}

.contractor-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.contractor-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fbbf24;
}

.contractor-specialty {
  font-size: 0.75rem;
  color: var(--neon-cyan);
  background: rgba(0, 229, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HOW THE MATCHMAKER WORKS SECTION
   ========================================================================== */
.section {
  padding-block: 6rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--atl-crimson);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.step-number-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-subtle);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.step-card:nth-child(2) .step-number-badge {
  background: var(--crimson-subtle);
  border-color: var(--atl-crimson);
  color: var(--atl-crimson);
}

.step-title {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   WHY ATLANTA ROOFING PRO / VALUE PILLARS
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pillar-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.pillar-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.pillar-card:nth-child(2) .pillar-icon-box,
.pillar-card:nth-child(4) .pillar-icon-box {
  background: rgba(255, 42, 85, 0.1);
  border-color: var(--atl-crimson);
  color: var(--atl-crimson);
}

.pillar-content h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pillar-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   ATLANTA COVERAGE & ZIP DIRECTORY
   ========================================================================== */
.coverage-box {
  background: linear-gradient(180deg, rgba(14, 23, 47, 0.9) 0%, rgba(6, 11, 25, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-glow-cyan);
}

.county-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.county-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  cursor: pointer;
  transition: var(--transition);
}

.county-tag:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: translateY(-2px);
  background: var(--cyan-subtle);
}

.county-tag span {
  font-size: 0.75rem;
  color: var(--atl-crimson);
  font-weight: 800;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-4px);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.reviewer-location {
  font-size: 0.78rem;
  color: var(--neon-cyan);
}

.reviewer-home-badge {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--neon-cyan);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  font-size: 1.25rem;
  color: var(--neon-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--atl-crimson);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-inline: 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #03060f;
  border-top: 1px solid var(--border-subtle);
  padding-block: 4rem 2rem;
  position: relative;
}

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

.footer-brand-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-block: 1rem 1.5rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sticky Mobile Quick-Match CTA Bar */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 11, 25, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glow);
  padding: 0.75rem 1.25rem;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .steps-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .phone-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .steps-grid, .reviews-grid, .pillars-grid {
    grid-template-columns: 1fr;
  }

  .style-options-grid {
    grid-template-columns: 1fr;
  }

  .option-select-grid {
    grid-template-columns: 1fr;
  }

  .contact-input-row {
    grid-template-columns: 1fr;
  }

  .matcher-card {
    padding: 1.5rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

/* Button Spinner Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

