/* ============================================================
   JustOptimise — Global Stylesheet
   Design system extracted from mockup-v2
   ============================================================ */

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

:root {
  --navy:        #1a3a5c;
  --navy-light:  #234d7a;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --text:        #1f2937;
  --muted:       #4b5563;
  --light:       #f8f9fa;
  --white:       #ffffff;
  --border:      #e5e7eb;
  --radius:      8px;
  --max:         1160px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ── UTILITIES ─────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--white { background: var(--white); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
.display { font-family: 'Fraunces', Georgia, serif; font-weight: 700; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.7; }
.section-subtitle--light { color: rgba(255,255,255,0.82); }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-pill { border-radius: 20px; }

/* ── NAV ───────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  transition: box-shadow 0.2s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 16px;
}
.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--amber); }
.nav-phone svg { flex-shrink: 0; }
.nav-phone-mobile { display: none; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--navy); background: var(--light); }
.nav-menu a.active { color: var(--navy); font-weight: 700; }
.nav-menu .nav-cta a {
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
}
.nav-menu .nav-cta a:hover { background: var(--amber-dark); color: var(--white); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 6px;
  padding-top: 12px;
  min-width: 200px;
  z-index: 200;
  list-style: none;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  white-space: nowrap;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--navy) url('/assets/img/hero-home.webp') center center / cover no-repeat;
  padding: 108px 24px 100px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.72) 60%, rgba(10,22,40,0.55) 100%);
  pointer-events: none;
}
/* Drone / page-specific hero — inline style overrides the default beach huts bg */
.hero[style] {
  background-image: none;
}
.hero-inner {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  box-sizing: border-box;
}
.hero-content { position: relative; width: 100%; max-width: 620px; box-sizing: border-box; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-title em { font-style: normal; color: var(--amber); }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-image { display: none; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; }
.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  max-width: 720px;
}
.page-hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── SERVICES GRID ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover {
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(245,158,11,0.12);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,58,92,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--amber); }
.service-brand {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--amber);
  background: rgba(245,158,11,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* ── INTRO / ABOUT STRIP ───────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.intro-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-text p:last-of-type { margin-bottom: 28px; }
.intro-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light);
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.intro-image--portrait { aspect-ratio: 3/4; }

/* ── ASSESSMENT CTA BAND ───────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2438 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; max-width: 640px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.assessment-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.assessment-options--light .assessment-option {
  background: var(--white);
  border: 1px solid var(--border);
}
.assessment-options--light .assessment-option h4 { color: var(--navy); }
.assessment-options--light .assessment-option .price-note { color: var(--muted); }
.assessment-options--light .assessment-option p { color: var(--muted); }
.assessment-option {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  min-width: 200px;
}
.assessment-option h4 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.assessment-option .price { font-size: 22px; font-weight: 700; color: var(--amber); }
.assessment-option .price-note {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
}
.assessment-option p { font-size: 13px; color: rgba(255,255,255,0.68); margin-top: 4px; }

/* ── CONTENT SECTIONS ──────────────────────────────────── */
.content-section { padding: 72px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ── PRICING CARDS ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(26,58,92,0.12);
}
.pricing-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pricing-name { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pricing-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.pricing-vat { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3 3 7-7'/%3E%3C/svg%3E");
}

/* ── PACKAGE CARDS (drone) ─────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.package-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.package-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.package-price { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.package-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.package-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.package-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.package-card ul li {
  font-size: 13.5px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.package-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 100%; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq-item h3 { font-size: 16px; color: var(--navy); margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-contact-nudge {
  text-align: center;
  padding: 28px 24px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 8px;
}
.faq-contact-nudge p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }

/* ── SERVICE TABS (drone) ──────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  background: var(--light);
  border-radius: 12px;
  padding: 6px;
  border: 1px solid var(--border);
}
.tab-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s, box-shadow 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--navy); background: rgba(255,255,255,0.7); }
.tab-btn.active {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10);
  font-weight: 700;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── ASSESSMENT OPTIONS WIDE ───────────────────────────── */
.assessment-options--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 640px;
  margin: 24px auto 0;
  text-align: left;
}

/* ── TABLE ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
td {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  line-height: 1.55;
}
tr:nth-child(even) td { background: var(--light); }
td:first-child { white-space: nowrap; font-weight: 500; }
th { white-space: nowrap; }
@media (max-width: 768px) {
  td:first-child { white-space: normal; }
  th { white-space: normal; }
}

/* ── STEP LIST ─────────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 24px; max-width: 100%; }
.step-list--centered { margin: 0 auto; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-content h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── CHECK LIST ────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 2px;
}
.check-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  min-width: 16px;
}

/* ── GOOD-FIT BOX ──────────────────────────────────────── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.fit-box--good { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.04); }
.fit-box--bad { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.03); }
.fit-box h3 { font-size: 16px; margin-bottom: 16px; }
.fit-box--good h3 { color: #166534; }
.fit-box--bad h3 { color: #991b1b; }
.fit-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fit-box ul li { font-size: 14.5px; color: var(--text); padding-left: 18px; position: relative; line-height: 1.5; }
.fit-box--good li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.fit-box--bad li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* ── CALLOUT / NOTE BOX ────────────────────────────────── */
.callout {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.65;
}
.callout a { color: var(--navy); font-weight: 600; }
.note-box {
  background: var(--light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.note-box strong { color: var(--text); }

/* ── GUARANTEE BOX ─────────────────────────────────────── */
.guarantee-box {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2438 100%);
  border-radius: 12px;
  padding: 36px 40px;
  color: var(--white);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.guarantee-icon { font-size: 36px; flex-shrink: 0; }
.guarantee-box h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.guarantee-box p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 8px; }
.guarantee-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.guarantee-box ul li { font-size: 14px; color: rgba(255,255,255,0.7); padding-left: 18px; position: relative; }
.guarantee-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); }

/* ── FORM ──────────────────────────────────────────────── */
.form-section { background: var(--light); padding: 72px 0; }
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 40px 44px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label span { color: var(--muted); font-weight: 400; font-size: 13px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-submit { width: 100%; margin-top: 24px; justify-content: center; font-size: 16px; padding: 14px 24px; }

/* ── CONTACT INFO ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(22px, 3vw, 32px); color: var(--navy); margin-bottom: 20px; }
.contact-info p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,58,92,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-text { font-size: 15px; color: var(--text); }
.contact-item-text a { color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-item-text a:hover { color: var(--amber); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer { background: #0f1c2d; padding: 64px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand-sub { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.3px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 240px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 100%; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { display: none; }
  .intro-image.show-mobile { display: block !important; width: 100%; margin: 0 auto 24px; aspect-ratio: unset; }
  .hero-image.show-mobile { display: block !important; width: 100%; margin: 0 auto 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; }
  .content-grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .cta-band { padding: 48px 24px; }
  .form-section { padding: 48px 0; }
  .form-wrap { padding: 28px 24px; }
  .nav-menu { display: none !important; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px 16px; gap: 2px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
  .nav-menu.open { display: flex !important; }
  .nav-menu li { width: 100%; }
  .nav-menu a { padding: 9px 12px; width: 100%; display: block; font-size: 15px; border-radius: 6px; }
  .nav-menu .nav-cta { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
  .nav-menu .nav-cta a { text-align: center; border-radius: 8px; background: var(--amber); color: var(--white); padding: 11px 12px; }
  .nav-phone { font-size: 0; margin-left: 12px; padding: 6px; white-space: nowrap; }
  .nav-phone svg { width: 20px; height: 20px; }
  .nav-phone-mobile { display: block; }
  .nav-phone-mobile a { font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; padding: 9px 12px; width: 100%; display: block; border-radius: 6px; }
  .nav-phone-mobile a:hover { color: var(--amber); }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-brand-logo { height: 32px; }
  /* Mobile dropdown */
  .nav-dropdown-menu { display: none; position: static; box-shadow: none; border: none; background: var(--light); margin: 4px 0 4px 12px; padding: 4px 0; border-radius: 6px; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown > a::after { content: ' ▾'; }
  .hero { padding: 60px 16px 52px; overflow: hidden; max-width: 100%; box-sizing: border-box; }
  .hero-inner { max-width: 100%; width: 100%; box-sizing: border-box; overflow: hidden; padding: 0; }
  .hero-content { width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; padding: 0; }
  .hero-title { font-size: clamp(22px, 6vw, 34px) !important; word-break: break-word; overflow-wrap: break-word; }
  .hero-trust { flex-wrap: wrap; gap: 8px; }
  .trust-item { white-space: normal; }
  .hero-lead { font-size: 16px; max-width: 100%; }
  .hero-trust { gap: 12px; padding-top: 20px; margin-top: 24px; flex-wrap: wrap; }
  .trust-item { font-size: 12px; }
  .page-hero { padding: 48px 24px 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .table-wrap { font-size: 13px; }
  .assessment-options { flex-direction: column; align-items: center; }
}

/* Light variant for check-list on dark backgrounds */
.check-list--light li { color: rgba(255,255,255,0.88); }
.check-list--light li::before { color: var(--amber); }

/* Compact 2x2 services grid */
.services-grid--compact { grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid--compact { grid-template-columns: 1fr; } }
.services-grid--compact .service-card { padding: 24px 20px; }
.services-grid--compact .service-card h3 { font-size: 16px; }
.services-grid--compact .service-card p { font-size: 14px; }
@media (max-width: 640px) { .services-grid--compact { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .drone-clients-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .drone-clients-grid { grid-template-columns: 1fr !important; } }

/* "All Services" top item in nav dropdown */
.nav-dropdown-all a { font-weight: 700 !important; color: var(--amber) !important; border-bottom: 1px solid var(--border); padding-bottom: 6px !important; margin-bottom: 2px; }

/* Constrained-width section blocks: auto-centre them */
.container > div[style*="max-width"] { margin-left: auto; margin-right: auto; }

/* Photo caption under headshot */
.photo-caption { text-align: center; font-size: 14px; color: var(--muted); margin-top: 10px; font-weight: 500; }

/* ── ABOUT PAGE — BIO SECTION ──────────────────────────── */
.about-bio-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.about-bio-left {
  position: static;
  top: 100px;
}
.about-headshot-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.about-headshot-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-name-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  text-align: center;
}
.about-role-label {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}
.about-quote-block {
  background: var(--light);
  border-left: 4px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
}
.about-quote-block p {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}
.about-bio-right p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
/* Clients strip */
.about-clients-strip {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.about-clients-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-clients-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 768px) {
  .about-bio-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-headshot-wrap { aspect-ratio: 4/3; max-width: 280px; margin: 0 auto 14px; }
  .about-name-label, .about-role-label { text-align: center; }
}


/* ── DEFINITION LIST (label + description rows) ──────── */
.def-list { display: flex; flex-direction: column; gap: 0; }
.def-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.def-row:last-child { border-bottom: none; }
.def-term {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.def-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.guarantee-box .def-term { color: rgba(255,255,255,0.9); }
.guarantee-box .def-desc { color: rgba(255,255,255,0.7); }
.guarantee-box .def-row { border-bottom-color: rgba(255,255,255,0.12); }
@media (max-width: 480px) {
  .def-row { grid-template-columns: 1fr; gap: 2px; }
  .def-term { white-space: normal; }
}

/* Gallery */
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr !important; }
}
