/* ============================================
   Rooftop Drone Techs — Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-950: #0a0f1e;
  --navy-900: #0d1529;
  --navy-800: #131d3a;
  --navy-700: #1a2744;
  --navy-600: #243352;
  --navy-500: #334770;
  --navy-400: #4a6490;
  --navy-300: #6b87b3;
  --navy-200: #94a8cc;
  --navy-100: #c5d0e6;
  --navy-50: #e8ecf4;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-600: #d97706;
  --amber-300: #fcd34d;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --green-500: #22c55e;
  --red-500: #ef4444;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-950);
  border-color: var(--amber-500);
}
.btn-primary:hover {
  background: var(--amber-400);
  border-color: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--amber-500);
}

.logo-accent {
  color: var(--amber-500);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links .btn {
  color: var(--navy-950);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-drone {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  opacity: 0.15;
  animation: droneBob 4s ease-in-out infinite;
}

@keyframes droneBob {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 20px)); }
}

.drone-svg .rotor {
  animation: rotorSpin 0.3s linear infinite;
  transform-origin: center;
}

@keyframes rotorSpin {
  0% { rx: 22; ry: 4; }
  50% { rx: 18; ry: 6; }
  100% { rx: 22; ry: 4; }
}

.drone-svg .signal-light {
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 24px; }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-top: 16px;
}

/* --- Services / Pricing --- */
.services {
  background: var(--gray-50);
}

.pricing-currency-note {
  font-size: 0.85rem;
  color: var(--amber-600);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 1px var(--amber-500), var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-500);
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-card h3 {
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 16px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--gray-400);
  display: block;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.price-cad {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  font-size: 1.1rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 12px;
}

/* --- Pricing Extras (Rush + B2B notes) --- */
.pricing-extras {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-extra-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
}

.pricing-extra-row p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.pricing-extra-row p strong {
  color: var(--navy-900);
}

.pricing-extra-row a {
  color: var(--amber-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-extra-row a:hover {
  color: var(--amber-500);
}

.pricing-extra-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber-600);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-top: 1px;
}

.pricing-extra-tag-b2b {
  color: var(--navy-700);
  background: var(--navy-50);
  border-color: var(--navy-100);
}

/* --- What You Get section --- */
.what-you-get {
  background: var(--white);
}

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wyg-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.wyg-card:hover {
  border-color: var(--amber-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.wyg-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-50), var(--gray-50));
  border-radius: var(--radius-lg);
  color: var(--navy-700);
}

.wyg-icon svg {
  width: 36px;
  height: 36px;
}

.wyg-card h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 10px;
}

.wyg-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- Your Report section --- */
.your-report {
  background: var(--gray-50);
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.report-mock {
  position: sticky;
  top: 100px;
}

.report-mock-doc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.report-mock-doc::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0.5;
}

.report-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--amber-500);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.report-mock-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-900);
}

.report-mock-logo svg {
  width: 24px;
  height: 24px;
  color: var(--amber-500);
}

.report-mock-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-400);
}

.report-mock-line {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.report-mock-line.report-mock-line-lg {
  height: 12px;
  background: var(--gray-200);
}

.report-mock-line.short {
  width: 60%;
}

.report-mock-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.rating-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating-badge {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.report-mock-image {
  height: 120px;
  background:
    linear-gradient(135deg, rgba(245,158,11,0.15), rgba(13,21,41,0.25)),
    repeating-linear-gradient(
      45deg,
      var(--gray-200),
      var(--gray-200) 6px,
      var(--gray-100) 6px,
      var(--gray-100) 12px
    );
  border-radius: var(--radius-md);
  margin: 14px 0;
  position: relative;
  z-index: 1;
}

.report-checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.report-checklist li {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all var(--transition);
}

.report-checklist li:hover {
  border-color: var(--amber-400);
  transform: translateX(4px);
}

.rc-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber-600);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.report-checklist li > div {
  flex: 1;
}

.report-checklist h4 {
  color: var(--navy-900);
  font-size: 1rem;
  margin-bottom: 6px;
}

.report-checklist p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.rating-scale {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.rating-pill {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.rating-good, .rating-pill.rating-good {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.rating-fair, .rating-pill.rating-fair, .rating-badge.rating-fair {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber-600);
}

.rating-poor, .rating-pill.rating-poor {
  background: rgba(249, 115, 22, 0.15);
  color: #ea580c;
}

.rating-immediate, .rating-pill.rating-immediate {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red-500);
}

/* --- Credentials Bar --- */
.credentials {
  background: var(--navy-950);
  padding: 56px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.cred-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255,255,255,0.06);
}

.cred-icon {
  width: 40px;
  height: 40px;
  color: var(--amber-400);
  margin-bottom: 8px;
}

.cred-icon svg {
  width: 100%;
  height: 100%;
}

.cred-item strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.cred-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* --- Scope & Limitations --- */
.scope {
  background: var(--white);
}

.scope-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 48px 40px;
}

.scope-header {
  text-align: center;
  margin-bottom: 32px;
}

.scope-header h2 {
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.scope-header p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scope-list li {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.scope-x {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: var(--red-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 1px;
}

.scope-list li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.scope-list strong {
  color: var(--navy-900);
  font-size: 0.95rem;
}

.scope-list span {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.6;
}

.scope-footer {
  text-align: center;
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-500);
  margin-top: 1px;
}

.pricing-card .btn-outline {
  color: var(--navy-800);
  border-color: var(--gray-300);
}
.pricing-card .btn-outline:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

/* --- Industries --- */
.industries {
  background: var(--navy-950);
}

.industries .section-tag {
  color: var(--amber-400);
}

.industries .section-header h2 {
  color: var(--white);
}

.industries .section-header p {
  color: rgba(255,255,255,0.5);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

.industry-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.industry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--amber-400);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* --- Benefits --- */
.benefits {
  background: var(--gray-50);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.benefits-text h2 {
  margin-bottom: 16px;
}

.benefits-text > p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--amber-500);
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card h4 {
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy-950);
  padding: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
}

/* --- Contact section --- */
.contact {
  background: var(--white);
}

/* --- Form (shared booking + contact form rules) --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Footer --- */
.footer {
  background: var(--navy-950);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-certifications {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--amber-400);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber-400);
}

.footer-business-line {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 500;
  margin-top: 16px;
}

/* CASL-compliant sender identification block */
.footer-casl {
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-casl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-casl-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-casl-col p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0;
}

.footer-casl-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-casl-col a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   Animations (scroll-triggered)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
    order: -1;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-casl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links .btn {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }

  .hero-drone {
    opacity: 0.08;
    width: 260px;
    right: -20px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-casl-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Booking Wizard
   ============================================ */

.booking-wizard {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

/* --- Step Indicator --- */
.booking-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.bsi-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.bsi-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--gray-200);
  color: var(--gray-500);
  transition: all 0.35s ease;
  border: 2px solid transparent;
}

.bsi-step.active .bsi-number {
  background: var(--amber-500);
  color: var(--navy-950);
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.bsi-step.completed .bsi-number {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.bsi-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.35s ease;
}

.bsi-step.active .bsi-label {
  color: var(--amber-600);
}

.bsi-step.completed .bsi-label {
  color: var(--navy-700);
}

.bsi-connector {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
  margin-bottom: 28px;
  transition: background 0.35s ease;
}

.bsi-connector.active {
  background: var(--amber-500);
}

.bsi-connector.completed {
  background: var(--navy-800);
}

/* --- Booking Steps Common --- */
.booking-step {
  animation: bookingFadeIn 0.35s ease;
}

@keyframes bookingFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.booking-back-btn {
  color: var(--navy-800);
  border-color: var(--gray-300);
}

.booking-back-btn:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

/* --- Step 1: Property Details --- */
.property-section {
  margin-bottom: 28px;
}

.property-section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.property-type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.property-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  text-align: center;
  color: var(--navy-800);
}

.property-type-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.property-type-card.selected {
  border-color: var(--amber-500);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 0 1px var(--amber-500);
}

.property-type-card.selected .ptc-icon {
  color: var(--amber-600);
}

.ptc-icon {
  width: 36px;
  height: 36px;
  color: var(--navy-600);
  transition: color var(--transition);
}

.ptc-icon svg {
  width: 100%;
  height: 100%;
}

.property-type-card span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Sqft selection */
.sqft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sqft-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  text-align: left;
  color: var(--navy-800);
}

.sqft-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.sqft-card.selected {
  border-color: var(--amber-500);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 0 1px var(--amber-500);
}

.sqft-size {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.sqft-tier {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sqft-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 4px;
  letter-spacing: -0.02em;
}

.custom-quote-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}

.custom-quote-note svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber-600);
  margin-top: 1px;
}

.custom-quote-note p {
  font-size: 0.92rem;
  color: var(--navy-800);
  line-height: 1.6;
  margin: 0;
}

/* Price preview */
.price-preview {
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 24px;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.pp-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pp-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}

.pp-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* Step 2: Turnaround */
.turnaround-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.turnaround-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  color: var(--navy-800);
}

.turnaround-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.turnaround-card.selected {
  border-color: var(--amber-500);
  background: rgba(245, 158, 11, 0.04);
  box-shadow: 0 0 0 1px var(--amber-500), var(--shadow-md);
}

.ta-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-500);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ta-badge-rush {
  color: var(--amber-600);
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.ta-icon {
  width: 48px;
  height: 48px;
  color: var(--navy-700);
  margin-bottom: 14px;
}

.turnaround-card.selected .ta-icon {
  color: var(--amber-600);
}

.ta-icon svg {
  width: 100%;
  height: 100%;
}

.turnaround-card h4 {
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.ta-time {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.turnaround-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* --- Step 2: Calendar --- */
.booking-datetime-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.booking-calendar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month-year {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--navy-700);
  transition: all var(--transition);
}

.cal-nav-btn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cal-nav-btn svg {
  width: 18px;
  height: 18px;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition);
  padding: 0;
}

.cal-day:hover:not(.disabled):not(.selected) {
  background: var(--gray-100);
}

.cal-day.today {
  border: 1.5px solid var(--amber-400);
}

.cal-day.selected {
  background: var(--amber-500);
  color: var(--navy-950);
  font-weight: 700;
}

.cal-day.disabled {
  color: var(--gray-300);
  cursor: not-allowed;
}

.cal-day.empty {
  cursor: default;
}

/* --- Time Slots --- */
.booking-timeslots {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.timeslots-placeholder,
.timeslots-loading,
.timeslots-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.timeslots-placeholder svg,
.timeslots-error svg {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
  margin-bottom: 12px;
}

.timeslots-placeholder p,
.timeslots-loading p {
  font-size: 0.92rem;
  color: var(--gray-400);
}

.timeslots-error svg {
  color: var(--red-500);
}

.timeslots-error p {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.timeslots-error .btn {
  color: var(--navy-800);
  border-color: var(--gray-300);
}

.timeslots-error .btn:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.booking-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--amber-500);
  border-radius: 50%;
  animation: spinBooking 0.7s linear infinite;
  margin-bottom: 12px;
}

@keyframes spinBooking {
  to { transform: rotate(360deg); }
}

.timeslots-grid {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.timeslots-date-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 16px;
  text-align: center;
}

.timeslots-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.timeslot-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.timeslot-btn:hover:not(.disabled):not(.selected) {
  border-color: var(--amber-400);
  background: rgba(245, 158, 11, 0.04);
}

.timeslot-btn.selected {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-950);
}

.timeslot-btn.disabled {
  background: var(--gray-100);
  color: var(--gray-300);
  cursor: not-allowed;
  border-color: var(--gray-100);
}

.timeslots-none {
  text-align: center;
  padding: 24px;
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* --- Step 3: Form re-use --- */
.booking-info-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-info-form .form-group {
  margin-bottom: 20px;
}

.booking-info-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form-required {
  color: var(--red-500);
}

.form-error-msg {
  display: block;
  font-size: 0.78rem;
  color: var(--red-500);
  margin-top: 4px;
  min-height: 0;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.booking-info-form .form-group input,
.booking-info-form .form-group select,
.booking-info-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.booking-info-form .form-group input:focus,
.booking-info-form .form-group select:focus,
.booking-info-form .form-group textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.booking-info-form .form-group input::placeholder,
.booking-info-form .form-group textarea::placeholder {
  color: var(--gray-400);
}

.booking-info-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.booking-info-form .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 15, 30, 0.3);
  border-top-color: var(--navy-950);
  border-radius: 50%;
  animation: spinBooking 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}

.booking-submit-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.booking-submit-error p {
  font-size: 0.88rem;
  color: var(--red-500);
  font-weight: 500;
}

/* --- Step 4: Confirmation --- */
.booking-confirmation {
  text-align: center;
  padding: 20px 0;
}

.booking-confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--green-500);
}

.booking-confirm-icon svg {
  width: 100%;
  height: 100%;
}

.booking-confirmation h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--navy-900);
}

.booking-confirm-number {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.booking-confirm-number strong {
  color: var(--amber-600);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.booking-confirm-summary {
  max-width: 400px;
  margin: 0 auto 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bcs-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.bcs-row:last-child {
  border-bottom: none;
}

.bcs-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.bcs-value {
  font-size: 0.92rem;
  color: var(--navy-900);
  font-weight: 600;
}

.booking-confirm-email {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.6;
}

.booking-confirm-email strong {
  color: var(--navy-800);
}

.booking-confirm-quote-note {
  font-size: 0.88rem;
  color: var(--amber-600);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin: 0 auto 24px;
  max-width: 500px;
  line-height: 1.6;
  font-weight: 500;
}

/* --- Contact Bar Below Booking --- */
.booking-contact-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.bcb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.bcb-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--amber-500);
}

/* ============================================
   New Sections — Responsive
   ============================================ */
@media (max-width: 1024px) {
  .wyg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .report-mock {
    position: relative;
    top: 0;
    max-width: 480px;
    margin: 0 auto;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sqft-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .turnaround-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 768px) {
  .wyg-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .scope-card {
    padding: 32px 24px;
  }

  .property-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-extras {
    margin-top: 32px;
  }

  .pricing-extra-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .property-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Booking Wizard — Responsive
   ============================================ */
@media (max-width: 1024px) {
  .booking-datetime-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .booking-wizard {
    padding: 32px 20px;
  }

  .bsi-label {
    display: none;
  }

  .bsi-connector {
    margin-bottom: 0;
    width: 24px;
  }

  .bsi-number {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .booking-steps-indicator {
    margin-bottom: 32px;
  }

  .booking-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .booking-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .booking-info-form .form-row {
    grid-template-columns: 1fr;
  }

  .timeslots-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-contact-bar {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .booking-wizard {
    padding: 24px 16px;
  }

  .cal-day {
    font-size: 0.8rem;
  }

  .bsi-connector {
    width: 14px;
    margin: 0 4px;
  }
}

/* ============================================
   Sub-page hero (smaller than home hero)
   ============================================ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.10), transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero .section-tag {
  color: var(--amber-400);
  margin-bottom: 16px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin-bottom: 18px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 640px;
}

.page-hero-meta {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
}

/* ============================================
   Policy / legal / about content
   ============================================ */
.policy-section {
  background: var(--white);
  padding: 80px 0;
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--navy-900);
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.policy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.1rem;
  color: var(--navy-800);
  margin: 24px 0 8px;
}

.policy-content p {
  margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 20px 24px;
  padding-left: 0;
}

.policy-content ul {
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.policy-content li::marker {
  color: var(--amber-600);
}

.policy-content strong {
  color: var(--navy-900);
}

.policy-content a {
  color: var(--amber-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content a:hover {
  color: var(--amber-500);
}

.policy-callout {
  background: var(--gray-50);
  border-left: 3px solid var(--amber-500);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
}

.policy-callout strong {
  color: var(--navy-900);
}

.policy-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-section {
  background: var(--white);
  padding: 80px 0;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--amber-400);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--gray-50);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--amber-600);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item .faq-body p {
  margin-bottom: 10px;
}

.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   About page
   ============================================ */
.about-section {
  background: var(--white);
  padding: 80px 0;
}

.about-section-alt {
  background: var(--gray-50);
}

.about-block {
  max-width: 820px;
  margin: 0 auto;
}

.about-block + .about-block {
  margin-top: 56px;
}

.about-block h2 {
  font-size: 1.7rem;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.about-block p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-block strong {
  color: var(--navy-900);
}

.about-cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-cred-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.about-cred-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.about-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.about-city {
  font-size: 0.85rem;
  color: var(--navy-700);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
}

/* ============================================
   Footer Resources column (added link group)
   ============================================ */
.footer-links a.footer-link-current {
  color: var(--amber-400);
}

/* ============================================
   City landing pages (local SEO)
   ============================================ */
.city-section {
  background: var(--white);
  padding: 72px 0;
}

.city-section-alt {
  background: var(--gray-50);
}

.city-block {
  max-width: 880px;
  margin: 0 auto;
}

.city-block + .city-block {
  margin-top: 48px;
}

.city-block h2 {
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.city-block p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.city-reasons {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.city-reasons li {
  position: relative;
  padding: 14px 18px 14px 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.city-reasons li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}

.city-reasons li strong {
  color: var(--navy-900);
}

.neighborhoods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.neighborhood-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-800);
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  padding: 8px 16px;
  border-radius: 50px;
}

.neighborhood-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
}

.neighborhoods-note {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-top: 12px;
  font-style: italic;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.use-case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  border-top: 3px solid var(--amber-500);
}

.use-case-card h4 {
  font-size: 1.02rem;
  color: var(--navy-900);
  margin: 0 0 8px;
  line-height: 1.35;
}

.use-case-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

.city-services-recap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
}

.city-services-recap h3 {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin: 0 0 6px;
}

.city-services-recap p {
  font-size: 0.94rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.55;
}

.city-services-recap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .city-services-recap {
    grid-template-columns: 1fr;
  }
}

.related-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.related-city-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--navy-200);
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.related-city-link:hover {
  background: var(--navy-50);
  border-color: var(--amber-500);
  color: var(--navy-900);
}

.related-city-link::after {
  content: '\2192';
  color: var(--amber-500);
  font-weight: 700;
}

/* ============================================
   404 Page
   ============================================ */
.error-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

.error-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.error-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.error-code {
  font-family: var(--font-mono);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 700;
  line-height: 1;
  color: var(--amber-500);
  letter-spacing: -0.05em;
  text-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
  margin-bottom: 16px;
}

.error-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.error-hero p {
  color: var(--navy-100);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-links li a {
  color: var(--navy-200);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.error-links li a:hover {
  color: var(--amber-400);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* ============================================
   Sample Report Download CTA
   ============================================ */
.report-sample-cta {
  margin-top: 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.report-sample-cta-text strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.report-sample-cta-text span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.btn-sample {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  flex-shrink: 0;
}

.btn-sample:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 21, 41, 0.25);
}

.btn-sample svg {
  width: 18px;
  height: 18px;
}

.hero-sample-link {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--navy-200);
}

.hero-sample-link a {
  color: var(--amber-400);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.hero-sample-link a:hover {
  border-bottom-color: var(--amber-400);
}

.about-sample-link,
.faq-sample-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.about-sample-link:hover,
.faq-sample-link:hover {
  background: var(--amber-500);
  border-color: var(--amber-500);
  transform: translateY(-1px);
}

.about-sample-link svg,
.faq-sample-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 600px) {
  .report-sample-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .btn-sample { width: 100%; }
}

/* ============================================
   Scroll-to-Top Button
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-950);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

@media (max-width: 480px) {
  .scroll-top-btn {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}
