/* ==========================================================================
   NIGHTHERON DIGITAL DOLLAR MARKETING - SLEEK INTERFACE THEME
   Extracted from Sleek Interface Design Specification
   Palette: Primary #0f172a | Accent #10b981 | Text-Muted #64748b | Border #e2e8f0
   ========================================================================== */

:root {
  /* Sleek Interface Design Tokens */
  --primary: #0f172a;
  --accent: #10b981;
  --text-muted: #64748b;
  --border: #e2e8f0;

  /* Typography */
  --font-sans: "Helvetica Neue", Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Brand Colors */
  --color-primary: #0f172a;          /* Deep Slate */
  --color-primary-light: #1e293b;    /* Slate 800 */
  --color-accent: #10b981;           /* Sleek Vibrant Emerald */
  --color-accent-hover: #059669;     /* Emerald 600 */
  --color-accent-subtle: #ecfdf5;    /* Emerald 50 */
  --color-accent-border: #a7f3d0;    /* Emerald 200 */

  /* Neutrals & Surfaces */
  --color-bg: #f8fafc;               /* Sleek Canvas */
  --color-surface: #ffffff;          /* Clean Card Surface */
  --color-surface-muted: #f1f5f9;    /* Process & Accent Surface */
  --color-text: #1e293b;             /* Body Text (Slate 800) */
  --color-text-dark: #0f172a;        /* High-Contrast Headings */
  --color-text-muted: #64748b;       /* Secondary Text (Slate 500) */
  --color-text-light: #94a3b8;       /* Meta & Captions (Slate 400) */
  --color-border: #e2e8f0;           /* Sleek Border */
  --color-border-subtle: #f1f5f9;    /* Subtle Line */

  /* Sleek Radii & Shadows */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-header: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);

  /* Container Standard */
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Safe Centralized Container */
.container {
  width: min(var(--container-max), calc(100% - 32px));
  margin: 0 auto;
}

/* Screen Reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   BUTTONS & CONTROLS (SLEEK INTERFACE)
   ========================================================================== */
.btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s ease, transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  min-height: 38px;
}

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

.btn-primary:hover, .btn-primary:focus-visible {
  background: #1e293b;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-secondary, .btn-outline {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary);
}

.btn-secondary:hover, .btn-secondary:focus-visible,
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--color-surface-muted);
  border-color: #cbd5e1;
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
}

.btn-accent:hover, .btn-accent:focus-visible {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
  transform: translateY(-1px);
}

.btn-phone {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--primary);
}

.btn-phone:hover, .btn-phone:focus-visible {
  background: var(--color-surface-muted);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12.5px;
  min-height: 34px;
}

/* ==========================================================================
   1. TOP INFORMATION BAR
   ========================================================================== */
.top-bar {
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.top-bar a {
  color: #ffffff;
}

.top-bar a:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

.badge-24-7 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-bar-zip-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.top-bar-zip-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  background: #ffffff;
  padding: 12px 0;
  box-shadow: var(--shadow-header);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Logo with Sleek Icon Badge */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-icon-wrap {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}

.logo-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--primary);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile Hamburger Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* Mobile Drawer Overlay */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-nav-drawer.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-content {
  background: #ffffff;
  width: 100%;
  max-width: 380px;
  height: 100%;
  padding: 24px 20px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.mobile-nav-drawer.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.mobile-nav-list .nav-link {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-surface-muted);
  display: block;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  background: var(--color-bg);
  padding: 48px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.hero-eyebrow-pill svg {
  width: 14px;
  height: 14px;
}

.hero-h1 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.hero-h1 span.highlight {
  color: var(--accent);
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 90%;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-cta-group .btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 22px;
  font-size: 14px;
}

.hero-cta-group .btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.hero-cta-group .btn-secondary {
  padding: 10px 20px;
  font-size: 14px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-card-wrapper {
  background: var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.hero-card-wrapper img, .hero-card-wrapper svg {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
}

/* ==========================================================================
   SECTION COMMON TYPOGRAPHY & SLEEK CARDS
   ========================================================================== */
.section {
  padding: 64px 0;
}

.section-alt {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 8px;
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* General Sleek Card Primitive */
.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.service-icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-icon-box svg {
  width: 20px;
  height: 20px;
}

.service-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

.service-feature-item {
  font-size: 12.5px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-feature-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.service-card-link:hover {
  color: var(--color-accent-hover);
}

/* ==========================================================================
   5. WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-muted);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
}

.why-icon svg {
  width: 18px;
  height: 18px;
}

.why-h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   6. SERVICE AREAS SECTION
   ========================================================================== */
.service-areas-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.area-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.area-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background-color: var(--color-surface-muted);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.area-h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.area-p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  background-color: var(--color-bg);
  border: 1px solid var(--border);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
}

.area-callout {
  margin-top: 24px;
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.area-callout-text {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   7. OUR PROCESS SECTION
   ========================================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.process-step-card {
  background: var(--color-surface-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-step-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

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

/* ==========================================================================
   8. FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color 0.2s ease;
}

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

.faq-question svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 20px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   9. CONTACT / QUOTE SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.55;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail-text h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
}

.contact-detail-text a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Contact Form */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

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

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

.form-control {
  width: 100%;
  padding: 10px 12px;
  font-size: 13.5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-backend-notice {
  font-size: 12px;
  color: var(--text-muted);
  background-color: var(--color-surface-muted);
  border: 1px dashed var(--border);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  line-height: 1.45;
}

.form-status-box {
  display: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  margin-bottom: 16px;
}

.form-status-box.active {
  display: block;
}

.form-status-box.success {
  background-color: var(--color-accent-subtle);
  border: 1px solid var(--color-accent-border);
  color: #065f46;
}

/* ==========================================================================
   10. FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: #ffffff;
  padding: 56px 0;
  text-align: center;
  position: relative;
}

.final-cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.final-cta-desc {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.final-cta-buttons .btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 22px;
  font-size: 14px;
}

.final-cta-buttons .btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.final-cta-buttons .btn-outline-white {
  padding: 10px 20px;
  font-size: 14px;
}

/* ==========================================================================
   11. FOOTER & SOCIAL LINKS (SLEEK LIGHT/SLATE HYBRID)
   ========================================================================== */
.site-footer {
  background-color: #ffffff;
  color: var(--text-muted);
  padding: 52px 0 20px;
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 320px;
  font-size: 13px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-size: 13px;
}

.footer-nap a {
  color: var(--primary);
  font-weight: 500;
}

.footer-nap a:hover {
  color: var(--accent);
}

/* Social Icons Section */
.social-icons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-icon-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: var(--color-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.social-icon-link:hover, .social-icon-link:focus-visible {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon-link svg {
  width: 15px;
  height: 15px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  color: var(--color-text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS QA)
   ========================================================================== */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-h1 {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  
  .top-bar-inner {
    justify-content: center;
  }

  .header-actions .btn-phone {
    display: none;
  }

  .hero-section {
    padding: 36px 0;
  }

  .hero-h1 {
    font-size: 28px;
  }

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

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

  .service-areas-wrapper {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 10px 0;
  }

  .mobile-nav-drawer {
    top: 58px;
    height: calc(100vh - 58px);
  }

  .hero-h1 {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14.5px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .section-title {
    font-size: 22px;
  }

  .section {
    padding: 44px 0;
  }

  .final-cta-title {
    font-size: 24px;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }
}
