:root {
  --bg-base: #111711;
  --bg-section: #161D16;
  --bg-card: #1E281E;
  --bg-elevated: #222E22;
  --moss-border: rgba(255,255,255,0.07);
  --lavender: #C4B5FD;
  --lavender-deep: #A78BFA;
  --lavender-glow: rgba(196,181,253,0.15);
  --lavender-subtle: rgba(196,181,253,0.07);
  --white: #FFFFFF;
  --text-body: rgba(255,255,255,0.62);
  --text-muted: rgba(255,255,255,0.38);
  --gold: #C8A96E;
  --success: #6EE7B7;
  --divider: rgba(255,255,255,0.07);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-hover: 0 12px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(196,181,253,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-body);
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--lavender);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  z-index: 10000;
  padding: 10px 16px;
  background: var(--lavender);
  color: #111711;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 24px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--lavender-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,181,253,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  background: var(--lavender-subtle);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.announcement-banner {
  position: relative;
  z-index: 1001;
  background: linear-gradient(90deg, #1A1A2E 0%, #16213E 50%, #1A1A2E 100%);
  border-bottom: 1px solid var(--lavender-subtle);
  color: var(--white);
  font-size: 13px;
  padding: 11px 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.announcement-banner.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-banner.removed {
  display: none !important;
}

.banner-inner {
  position: relative;
  min-height: 22px;
  padding: 0 50px 0 24px;
}

.banner-slides {
  position: relative;
  min-height: 24px;
}

.banner-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.banner-slide.active {
  position: relative;
  opacity: 1;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: default;
  transition: background 0.25s ease;
}

.banner-dot.active {
  background: var(--lavender);
}

.banner-close {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s ease;
}

.banner-close:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17,23,17,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--divider);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 18px;
  height: 18px;
  color: var(--lavender);
  flex-shrink: 0;
}

.nav-desktop {
  display: none;
}

.nav-desktop a {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--white);
  text-decoration: none;
}

.header-cta {
  display: none;
  padding: 10px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lavender);
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #0a0a14;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile:not([hidden]) {
  display: flex !important;
}

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  width: 100%;
  text-align: center;
  border-radius: 14px;
  transition: background 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.nav-mobile a:hover,
.nav-mobile a:active {
  background: rgba(255,255,255,0.08);
}

.nav-mobile .btn-mobile-cta {
  background: var(--lavender, #a78bfa) !important;
  color: #000 !important;
  margin-top: 16px;
  width: 100%;
  font-size: 1.1rem;
  padding: 16px 24px;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-mobile-cta {
  width: 100%;
  max-width: 280px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .header-cta {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
}

.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 64px;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17,23,17,0.88) 0%, rgba(17,23,17,0.72) 60%, rgba(30,20,50,0.80) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-left {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--lavender-subtle);
  border: 1px solid rgba(196,181,253,0.3);
  border-radius: var(--radius-pill);
  color: var(--lavender);
  font-size: 12px;
  font-weight: 600;
}

.hero-star {
  width: 12px;
  height: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  border-bottom: 2px solid var(--lavender);
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--lavender);
  margin-left: -10px;
  object-fit: cover;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-proof {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.hero-quote-wrap {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

.quote-widget {
  background: rgba(17,23,17,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(196,181,253,0.08);
  position: relative;
}

.quote-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: 8px;
}

.quote-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.quote-subtext {
  color: var(--text-body);
  font-size: 13px;
  margin-bottom: 20px;
}

.quote-input,
.quote-select,
.quote-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23C4B5FD' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.quote-textarea {
  background-image: none;
  padding-right: 16px;
}

.quote-input::placeholder,
.quote-textarea::placeholder {
  color: var(--text-muted);
}

.quote-input:focus,
.quote-select:focus,
.quote-textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(196,181,253,0.12);
}

.quote-input.error {
  border-color: var(--lavender);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.quote-grid label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.quote-btn {
  margin-top: 12px;
  margin-bottom: 0;
}

.quote-privacy {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.quote-success {
  text-align: center;
  padding: 24px 0;
}

.quote-success-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--success);
}

.quote-success-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.quote-success-text {
  color: var(--text-body);
  font-size: 15px;
  margin-bottom: 8px;
}

.quote-success-note {
  color: var(--lavender);
  font-size: 13px;
  margin: 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 400px;
    gap: 64px;
  }
  .hero-quote-wrap {
    margin-left: 0;
  }
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.addon-grid::-webkit-scrollbar {
  width: 4px;
}
.addon-grid::-webkit-scrollbar-track {
  background: var(--bg-card);
}
.addon-grid::-webkit-scrollbar-thumb {
  background: var(--lavender);
  border-radius: 4px;
}

.addon-tile {
  background: var(--bg-elevated);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.addon-tile:hover {
  border-color: rgba(196,181,253,0.3);
  background: rgba(196,181,253,0.05);
}

.addon-tile.addon-selected {
  border-color: var(--lavender);
  background: var(--lavender-subtle);
  box-shadow: 0 0 0 2px rgba(196,181,253,0.15);
}

.addon-tile .addon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-bottom: 6px;
}

.addon-tile .addon-icon svg {
  width: 26px;
  height: 26px;
  stroke: #C4B5FD;
  transition: stroke 0.2s;
}

.addon-tile.addon-selected .addon-icon svg {
  stroke: var(--lavender-deep);
}

.addon-tile .addon-label {
  font-size: 10px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  display: block;
}

.addon-tile.addon-selected .addon-label {
  color: var(--lavender);
}

.quote-summary {
  background: var(--lavender-subtle);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.quote-summary-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--lavender);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.quote-summary-text {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.8;
}

.widget-back {
  display: inline-block;
  color: var(--lavender);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  opacity: 0.75;
  transition: opacity 0.2s;
  font-family: Inter, sans-serif;
}
.widget-back:hover { opacity: 1; }

.widget-step-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--lavender);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.addon-included-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
  padding: 0 4px;
}

.field-error {
  color: #FC8181;
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

.widget-success {
  text-align: center;
  padding: 24px 0;
  display: none;
}

.widget-success .success-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--success);
}

.widget-success h3 {
  color: white;
  font-size: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 10px;
}

.widget-success p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.widget-success .success-note {
  color: var(--lavender);
  font-size: 12px;
}

.widget-step {
  transition: opacity 0.3s ease;
}
.widget-step.step-hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.trust-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 28px 0;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 48px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lavender);
}

.section {
  padding: 64px 0;
}

.section-base {
  background: var(--bg-base);
}

.section-alt {
  background: var(--bg-section);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }
}

.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--moss-border);
  border-radius: var(--radius-md);
  padding: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(196,181,253,0.25);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), transparent);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lavender-subtle);
  border: 1px solid rgba(196,181,253,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 26px;
  height: 26px;
  color: var(--lavender);
}

.service-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card > p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.service-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-body);
}

.service-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lavender);
  font-size: 14px;
  font-weight: 600;
}

.service-link:hover {
  color: var(--lavender-deep);
  text-decoration: none;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}

.checklist-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.checklist-tab {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  background: transparent;
  border: 1.5px solid var(--divider);
  cursor: pointer;
  transition: all 0.2s ease;
}

.checklist-tab:hover {
  border-color: rgba(196,181,253,0.3);
  color: rgba(196,181,253,0.7);
}

.checklist-tab.active {
  background: var(--lavender);
  color: #111711;
  border-color: var(--lavender);
  font-weight: 700;
}

.checklist-panel {
  display: none;
}

.checklist-panel.active {
  display: block;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 40px;
}

.checklist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.checklist-table thead {
  background: var(--bg-elevated);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.checklist-table th {
  padding: 14px 20px;
  text-align: left;
}

.checklist-table th:first-child {
  width: 55%;
}

.checklist-table th:not(:first-child) {
  text-align: center;
  width: 15%;
}

.checklist-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--divider);
}

.checklist-table td:first-child {
  color: rgba(255,255,255,0.82);
}

.checklist-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

.cell-tick {
  color: var(--lavender);
  font-weight: 700;
  font-size: 16px;
  display: block;
  text-align: center;
}

.cell-dash {
  color: var(--text-muted);
  display: block;
  text-align: center;
}

.cell-addon {
  color: var(--gold);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  display: block;
}

.addons-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}

.addons-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.addons-subtext {
  margin: 0 0 24px;
  color: var(--text-body);
  font-size: 14px;
}

.addon-card {
  background: var(--bg-card);
  border: 1.5px solid var(--moss-border);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  list-style: none;
  font-family: inherit;
}
.addon-card:focus {
  outline: 2px solid var(--lavender);
  outline-offset: 2px;
}
.addon-card:hover {
  border-color: rgba(196,181,253,0.3);
  transform: translateY(-2px);
}
.addon-card.addon-selected {
  border-color: var(--lavender);
  background: rgba(196,181,253,0.1);
}
.addon-card.addon-selected .addon-label {
  color: #fff;
}
.addon-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.addon-card .addon-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin: 0;
}

.quote-addons-heading {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin: 0 0 10px;
}
.quote-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.quote-addon-card {
  padding: 10px 8px;
}
.quote-addon-card img {
  width: 52px;
  height: 52px;
}
.quote-addon-card .addon-label {
  font-size: 10px;
}

.addons-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.addons-grid .addon-card {
  background: var(--bg-card);
  border: 1px solid var(--moss-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: stretch;
  text-align: left;
  cursor: default;
}
.addons-grid .addon-card:hover {
  border-color: rgba(196,181,253,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.addons-grid .addon-card .addon-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.addons-grid .addon-card .addon-img-wrap img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover;
  object-position: center;
  transform: scale(0.85);
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: block;
}
.addons-grid .addon-card:hover .addon-img-wrap img {
  transform: scale(0.9);
}
.addons-grid .addon-card .addon-card-body {
  padding: 14px 14px 16px;
}
.addons-grid .addon-card .addon-card-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 3px;
  display: block;
}
.addons-grid .addon-card .addon-card-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .addons-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 48px;
  position: relative;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--lavender-subtle);
  border: 2px solid var(--lavender);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--lavender);
}

.how-step h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
}

.how-step p {
  margin: 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .how-steps::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 20%;
    right: 20%;
    height: 2px;
    border-top: 2px dashed rgba(196,181,253,0.2);
    z-index: 0;
  }
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--moss-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.3s ease;
}

.why-card:hover {
  border-color: rgba(196,181,253,0.2);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--lavender-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon {
  width: 22px;
  height: 22px;
  color: var(--lavender);
}

.why-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--moss-border);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 3px solid var(--lavender);
  transition: all 0.3s ease;
}

.review-quote-mark {
  font-size: 48px;
  color: var(--lavender-deep);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -10px;
  display: block;
}

.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(196,181,253,0.3);
  object-fit: cover;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2px;
}

.review-city {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.areas-pills {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.areas-pills li {
  padding: 10px 24px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-pill);
  color: var(--text-body);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.areas-pills li:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  background: var(--lavender-subtle);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.area-pill {
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  color: var(--text-body);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.area-pill:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  background: var(--lavender-subtle);
}

.areas-copy {
  text-align: center;
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: color 0.25s ease;
}

.faq-q:hover {
  color: var(--lavender);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1.5px solid var(--divider);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease, border-color 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--lavender);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a p {
  margin: 0 0 20px;
  padding: 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}

.cta-section {
  background: linear-gradient(135deg, #1A1425 0%, #111711 50%, #1A2219 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 100px 24px;
  text-align: center;
}

.cta-deco {
  font-size: 20px;
  letter-spacing: 8px;
  color: var(--lavender);
  opacity: 0.6;
  margin-bottom: 16px;
}

.cta-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-subtitle {
  margin: 0 0 28px;
  color: var(--text-body);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-badge {
  display: inline-block;
  margin: 0;
  background: var(--lavender-subtle);
  border: 1px solid rgba(196,181,253,0.25);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  color: var(--lavender);
  font-size: 13px;
  font-weight: 600;
}

.contact-layout {
  display: grid;
  gap: 48px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  background: var(--lavender-subtle);
  border: 1px solid rgba(196,181,253,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-circle svg {
  width: 18px;
  height: 18px;
  color: var(--lavender);
}

.contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.contact-value[href] {
  color: var(--lavender);
}

.contact-value[href]:hover {
  color: var(--lavender-deep);
  text-decoration: underline;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}

.req {
  color: var(--lavender);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  margin-bottom: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23C4B5FD' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.contact-form textarea {
  background-image: none;
  resize: vertical;
  min-height: 100px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(196,181,253,0.1);
}

.contact-form input.error {
  border-color: var(--lavender);
}

.contact-submit {
  margin-top: 8px;
  padding: 15px;
  font-size: 15px;
}

.contact-submit:hover {
  background: var(--lavender-deep);
  transform: translateY(-2px);
}

.contact-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(110,231,183,0.15);
  color: var(--success);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.form-success.hidden {
  display: none !important;
}

.form-success + .error-msg,
.contact-form .error-msg {
  color: var(--lavender);
  font-size: 13px;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
}

.site-footer {
  background: #0A0F0A;
  border-top: 1px solid var(--divider);
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 20px;
  height: 20px;
  color: var(--lavender);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-phone {
  color: var(--lavender);
  font-weight: 600;
}

.footer-phone:hover {
  color: var(--lavender-deep);
  text-decoration: none;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--lavender);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: 28px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

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

.footer-legal a:hover {
  color: var(--lavender);
  text-decoration: none;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: var(--lavender);
}
.footer-social svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 18px 24px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  background: var(--lavender);
  box-shadow: 0 -4px 24px rgba(196,181,253,0.2);
}

.floating-cta a {
  display: block;
  width: 100%;
  text-align: center;
  color: #111711;
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.floating-cta a:hover {
  color: #111711;
  text-decoration: none;
}

.floating-cta:hover {
  background: var(--lavender-deep);
}

@media (min-width: 768px) {
  .floating-cta {
    display: none !important;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-card);
}

::-webkit-scrollbar-thumb {
  background: var(--lavender);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lavender-deep);
}

@media print {
  .announcement-banner,
  .site-header,
  .menu-toggle,
  .nav-desktop,
  .nav-mobile,
  .hero-ctas,
  .hero-quote-wrap,
  .cta-section,
  .floating-cta,
  .btn,
  .service-link,
  .footer-legal {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 24px 0;
  }
  body {
    background: #fff;
    color: #111;
  }
  .section-title,
  .hero-title,
  .service-card h3,
  .why-card h3 {
    color: #111;
  }
  .section-subtitle,
  .service-card > p,
  .why-card p {
    color: #333;
  }
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

@media (max-width: 768px) {

  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.75rem; line-height: 1.25; }
  .section-subtitle { font-size: 14px; line-height: 1.7; }

  .site-header .header-inner { padding: 0 20px; }
  .header-cta { display: none !important; }
  .nav-desktop { display: none !important; }
  .site-header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .hero {
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 80px 20px 32px;
    gap: 0;
    width: 100%;
  }

  .hero-left { width: 100%; margin-bottom: 24px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; margin-bottom: 16px; display: inline-flex; }
  .hero-title { font-size: 1.9rem; line-height: 1.2; margin-bottom: 12px; }
  .hero-subtitle { font-size: 14px; line-height: 1.65; margin-bottom: 0; }
  .hero-ctas { display: none; }
  .hero-social { margin-top: 16px; }
  .hero-avatars img { width: 32px; height: 32px; }
  .hero-proof { font-size: 13px; }

  .hero-quote-wrap {
    display: block !important;
    width: 100% !important;
    margin-top: 20px;
  }
  .quote-widget {
    background: rgba(20, 20, 35, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 20px !important;
    padding: 24px 20px !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .widget-step-label { font-size: 11px; letter-spacing: 0.08em; }
  .quote-title { font-size: 18px !important; margin-bottom: 6px; }
  .quote-subtext { font-size: 13px; }
  .quote-input { font-size: 16px !important; padding: 14px 16px !important; border-radius: 12px !important; }
  .quote-select { font-size: 16px !important; padding: 14px 16px !important; border-radius: 12px !important; }
  .quote-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .quote-btn {
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 14px !important;
    min-height: 52px;
    margin-top: 8px;
  }
  .quote-privacy { font-size: 12px; text-align: center; }
  .addon-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }

  .trust-strip { padding: 24px 0; }
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .trust-list li { font-size: 13px; }

  .services-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .service-card { padding: 24px 20px; }

  .checklist-tabs { flex-wrap: wrap; gap: 8px; }
  .checklist-tab { font-size: 13px; padding: 8px 12px; }
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .checklist-table { font-size: 13px; min-width: 460px; }

  .addons-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px; }
  .addons-grid .addon-card .addon-img-wrap { height: 100px; }
  .addons-grid .addon-card .addon-img-wrap img {
    height: 100px !important;
    transform: scale(0.82);
  }
  .addons-grid .addon-card:hover .addon-img-wrap img {
    transform: scale(0.88);
  }
  .addon-card-title { font-size: 11px; }
  .addon-card-desc { display: none; }

  .how-steps { flex-direction: column; gap: 28px; }

  .why-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .why-card { padding: 18px 14px; }
  .why-card h3 { font-size: 14px; }
  .why-card p { font-size: 13px; }

  .reviews-grid { grid-template-columns: 1fr !important; gap: 14px; }

  .areas-grid { gap: 8px; }
  .area-pill { font-size: 12px; padding: 7px 12px; }

  div[style*="grid-template-columns: repeat(auto-fit"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .faq-q { font-size: 14px; padding: 16px; }

  .cta-title { font-size: 1.5rem; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-buttons .btn { width: 100%; }

  .contact-layout { flex-direction: column; gap: 36px; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; }

  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-social { justify-content: center; }

  .floating-cta { display: none !important; }

  .mobile-sticky-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15,15,25,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 10px 16px 14px;
    gap: 10px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  }
  .mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .msb-book { background: var(--lavender, #a78bfa); color: #000 !important; }
  .msb-call { background: rgba(255,255,255,0.08); color: white !important; border: 1px solid rgba(255,255,255,0.15); }
  body { padding-bottom: 78px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 1.65rem; }
  .why-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .quote-grid { grid-template-columns: 1fr !important; }
}
.quote-select option { background-color: #1a1a2e !important; color: white !important; } select option { background-color: #1a1a2e !important; color: white !important; }

.quote-progress-wrap{text-align:center;margin-bottom:4px}
.quote-progress-bar{width:120px;height:4px;background:rgba(255,255,255,0.12);border-radius:99px;margin:0 auto 6px}
.quote-progress-fill{height:100%;background:#C4B5FD;border-radius:99px;transition:width 0.4s}
.quote-modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.82);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:998}

.quote-modal-card{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:999;width:min(700px,92vw);max-height:88vh;overflow-y:auto;background:var(--bg-base);border:1px solid rgba(255,255,255,0.1);border-radius:20px;box-shadow:0 32px 100px rgba(0,0,0,0.8);display:none}


.quote-modal-card::-webkit-scrollbar{width:4px}
.quote-modal-card::-webkit-scrollbar-thumb{background:var(--moss-border);border-radius:99px}
.quote-modal-header{position:sticky;top:0;background:var(--bg-card);border-bottom:1px solid var(--moss-border);padding:16px 24px 12px;display:flex;flex-direction:column;align-items:center;gap:8px;z-index:10}
.quote-modal-back{align-self:flex-start;background:none;border:none;color:var(--text-muted);font-size:14px;cursor:pointer;padding:0}
.quote-modal-back:hover{color:var(--white)}
.quote-modal-body{padding:24px 28px 32px}
.quote-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:20px}
.quote-field label{display:block;font-size:13px;font-weight:600;color:var(--white);margin-bottom:6px}
.quote-field-full{margin-bottom:20px}
.quote-field-full>label{display:block;font-size:13px;font-weight:600;color:var(--white);margin-bottom:10px}
.quote-choose-hint,.quote-optional-hint{font-weight:400;color:#C4B5FD;font-size:12px;margin-left:6px}
.quote-type-btns{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.quote-type-btn{background:var(--bg-elevated);border:1.5px solid var(--moss-border);border-radius:var(--radius-md);padding:14px 10px;cursor:pointer;display:flex;flex-direction:column;align-items:center;gap:4px;transition:all 0.2s;color:var(--white)}
.quote-type-btn strong{font-size:13px;font-weight:700}
.quote-type-btn span{font-size:11px;color:var(--text-muted)}
.quote-type-btn:hover{border-color:var(--lavender);background:var(--lavender-subtle)}
.quote-type-btn.selected{border-color:var(--lavender);background:var(--lavender-subtle)}
.quote-type-btn.selected strong{color:var(--lavender)}
.quote-freq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quote-freq-btn {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 14px 8px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--moss-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quote-freq-btn:hover {
  border-color: var(--lavender);
  background: var(--lavender-subtle);
}

.quote-freq-btn.selected {
  border-color: var(--lavender);
  background: var(--lavender-subtle);
  color: var(--lavender);
}

.most-popular-badge {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C4B5FD;
  border: 1px solid #C4B5FD;
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 4px;
}
.quote-modal-help{text-align:center;margin-top:12px;color:#C4B5FD}
.quote-modal-help a{color:#C4B5FD}
.quote-modal-help a:hover{text-decoration:underline}
.quote-contact-section{border-top:1px solid var(--moss-border);padding-top:20px;margin-top:8px}
.quote-contact-label{font-size:15px!important;font-weight:700!important;color:var(--white)!important;margin-bottom:14px!important;display:block}
.quote-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:20px}
.quote-field-full-row{grid-column:1/-1}
@media(max-width:600px){
  .quote-modal-body{padding:20px 16px 28px}
  .quote-grid-2{grid-template-columns:1fr 1fr;gap:10px}
  .quote-type-btns{grid-template-columns:repeat(3,1fr);gap:6px}
  .quote-type-btn{padding:10px 4px}
  .quote-type-btn strong{font-size:11px}
  .quote-freq-grid{grid-template-columns:repeat(2,1fr)}
  .quote-contact-grid{grid-template-columns:1fr}
  .quote-field-full-row{grid-column:1}
  .quote-modal-card{width:96vw;max-height:95vh;border-radius:var(--radius-md)}
}

.quote-modal-body .quote-input{appearance:none!important;-webkit-appearance:none!important;background:var(--bg-elevated)!important;border:1.5px solid var(--moss-border)!important;border-radius:var(--radius-sm)!important;color:var(--white)!important;padding:12px 14px!important;width:100%!important;font-size:14px!important}
.quote-modal-body .quote-input:focus{border-color:var(--lavender)!important;outline:none!important}
.quote-reveal-section{animation:revealDown 0.35s ease}
@keyframes revealDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}

body.modal-active { overflow: hidden; }
body.modal-active .quote-modal-overlay { display: block !important; }
body.modal-active .quote-modal-card { display: block !important; }
.quote-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 998 !important;
}
.quote-modal-card {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 999 !important;
  width: min(700px, 92vw) !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  background: var(--bg-base) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 32px 100px rgba(0,0,0,0.8) !important;
}

body.modal-active{overflow:hidden!important}
body.modal-active .quote-modal-overlay{display:block!important;position:fixed!important;inset:0!important;background:rgba(0,0,0,0.85)!important;backdrop-filter:blur(10px)!important;-webkit-backdrop-filter:blur(10px)!important;z-index:9998!important}
body.modal-active .quote-modal-card{display:block!important;position:fixed!important;top:50%!important;left:50%!important;transform:translate(-50%,-50%)!important;z-index:9999!important;width:min(700px,92vw)!important;max-height:88vh!important;overflow-y:auto!important;background:var(--bg-base)!important;border:1px solid rgba(255,255,255,0.1)!important;border-radius:20px!important;box-shadow:0 32px 100px rgba(0,0,0,0.9)!important}

body.modal-active { overflow: hidden !important; }
body.modal-active .quote-modal-overlay {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.72) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  z-index: 9990 !important;
}
body.modal-active .quote-modal-card {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9999 !important;
  width: min(620px, 90vw) !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
  background: rgba(30,40,30,0.97) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8) !important;
}
#quote-step-2 {
  position: static !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
@media(max-width:600px){
  body.modal-active .quote-modal-card {
    width: 94vw !important;
    max-height: 92vh !important;
    top: 50% !important;
  }
}
