:root {
  --navy: #0b2748;
  --navy-2: #123d68;
  --orange: #f6a21a;
  --orange-dark: #d98300;
  --green: #19a05f;
  --ink: #162233;
  --muted: #667085;
  --light: #f4f7fb;
  --line: #dce4ee;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(11, 39, 72, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 0;
}

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

img,
svg {
  max-width: 100%;
}

.section-pad {
  padding: 80px 0;
}

.btn {
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
}

.btn-warning {
  color: #111827;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 24px rgba(246, 162, 26, 0.22);
}

.btn-warning:hover,
.btn-warning:focus {
  color: #111827;
  background: #ffb335;
  border-color: #ffb335;
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.btn-outline-primary {
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.btn-success {
  background: var(--green);
  border-color: var(--green);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 238, 0.9);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  z-index: 1040;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(11, 39, 72, 0.12);
}

.navbar {
  min-height: 76px;
  padding: 10px 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  white-space: normal;
  max-width: 300px;
  line-height: 1.15;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--orange);
  font-size: 1.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}

.header-actions .btn {
  white-space: nowrap;
}

.main-menu {
  align-items: center;
  gap: 6px;
}

.main-menu .nav-link {
  color: var(--navy);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 6px;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
  color: var(--orange-dark);
  background: #fff6e6;
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(246, 162, 26, 0.2);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 74px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 39, 72, 0.96), rgba(18, 61, 104, 0.86)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=75") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8fbff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  color: #e4edf7;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 26px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-bottom: 28px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f6f9fc;
  font-weight: 700;
}

.trust-grid i {
  color: var(--orange);
  font-size: 1.2rem;
}

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

.hero-cta-row .btn-outline-light:hover,
.hero-cta-row .btn-outline-light:focus {
  color: var(--navy);
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #eff6ff;
  font-size: 0.95rem;
}

.quick-proof span {
  padding: 8px 10px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0 6px 6px 0;
}

.lead-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(220, 228, 238, 0.9);
}

.lead-card-header,
.popup-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.lead-card-header h2,
.popup-header h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.5rem;
}

.lead-card-header p,
.popup-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-icon,
.popup-header span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff3d8;
  color: var(--orange-dark);
  font-size: 1.35rem;
}

.form-label {
  font-weight: 700;
  color: #243244;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border-radius: 6px;
  min-height: 46px;
  border-color: #ccd6e2;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 0.2rem rgba(18, 61, 104, 0.14);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.section-heading span {
  display: inline-flex;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.section-heading h2 {
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.16;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.services-section,
.image-proof-section,
.audience-section,
.location-section {
  background: var(--white);
}

.image-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(11, 39, 72, 0.1);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 54, 0.04), rgba(7, 29, 54, 0.86));
  pointer-events: none;
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  color: var(--white);
}

.image-card figcaption span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--orange);
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-card figcaption strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.3;
}

.service-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(11, 39, 72, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 162, 26, 0.6);
  box-shadow: 0 16px 34px rgba(11, 39, 72, 0.12);
}

.service-card > i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef5fb;
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.service-card h3 {
  color: var(--navy);
  font-weight: 900;
  font-size: 1.08rem;
  min-height: 52px;
  margin: 0 0 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}

.why-section,
.ndt-section,
.faq-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-grid div,
.test-list div,
.audience-card,
.location-block {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(11, 39, 72, 0.05);
}

.why-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px;
  font-weight: 800;
  color: var(--navy);
}

.why-grid i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--orange-dark);
  background: #fff3d8;
}

.process-section {
  background: var(--white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.process-step {
  position: relative;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(11, 39, 72, 0.06);
  min-height: 210px;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 14px;
}

.process-step h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
}

.audience-card i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 1.35rem;
}

.test-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.test-list div {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  color: var(--navy);
  font-weight: 800;
}

.test-list i {
  color: var(--green);
}

.location-block {
  height: 100%;
  padding: 24px;
  border-left: 4px solid var(--orange);
}

.location-block h3 {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 8px;
}

.location-block p {
  color: var(--muted);
  margin: 0;
}

.emergency-section {
  padding: 42px 0;
  background: var(--navy);
  color: var(--white);
}

.emergency-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.emergency-box span,
.final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 8px;
}

.emergency-box h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 900;
  margin: 0;
}

.emergency-box p {
  color: #dbe7f3;
  margin: 10px 0 0;
}

.emergency-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--line);
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-button {
  color: var(--navy);
  font-weight: 900;
  min-height: 60px;
}

.accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #fff7e7;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(246, 162, 26, 0.2);
}

.accordion-body {
  color: var(--muted);
}

.final-cta-section {
  padding: 68px 0;
  background: var(--white);
}

.final-cta {
  text-align: center;
  padding: 44px 24px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.final-cta p {
  color: #e6eef7;
  margin-bottom: 24px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.text-lg-start .final-cta-actions {
  justify-content: flex-start;
}

.final-form {
  text-align: left;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.final-form .form-label {
  color: var(--navy);
}

.final-form textarea {
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 52px 0 28px;
  color: #d7e1ed;
  background: #071d36;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-weight: 900;
}

.site-footer h2 {
  font-size: 1.35rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.site-footer p {
  color: #b9c7d8;
  margin-bottom: 14px;
}

.site-footer a {
  color: #f7fbff;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aebed0;
  font-size: 0.9rem;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 29, 54, 0.72);
}

.popup-overlay.is-open {
  display: flex;
}

.popup-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #edf2f7;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 39, 72, 0.22);
  font-size: 1.35rem;
}

.float-btn.whatsapp {
  background: var(--green);
}

.float-btn.call {
  background: var(--navy);
}

.float-btn.quote {
  background: var(--orange);
  color: #111827;
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(11, 39, 72, 0.16);
}

.mobile-bottom-bar a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  color: var(--white);
}

.mobile-bottom-bar a:first-child {
  background: var(--navy);
}

.mobile-bottom-bar a:last-child {
  background: var(--green);
}

.thank-you-page {
  min-height: 100vh;
  padding-bottom: 0;
  background:
    linear-gradient(120deg, rgba(11, 39, 72, 0.94), rgba(18, 61, 104, 0.82)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=75") center/cover no-repeat;
}

.thank-you-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.thank-you-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 48px 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.thank-you-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f7ef;
  color: var(--green);
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.thank-you-card h1 {
  color: var(--navy);
  font-weight: 900;
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1199.98px) {
  .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 58px;
  }

  .thank-you-page {
    padding-bottom: 0;
  }

  .section-pad {
    padding: 60px 0;
  }

  .navbar {
    min-height: 68px;
  }

  .navbar-brand {
    font-size: 1rem;
    max-width: 250px;
  }

  .navbar-collapse {
    padding: 14px 0 6px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
  }

  .main-menu {
    align-items: stretch;
    gap: 2px;
  }

  .main-menu .nav-link {
    padding: 11px 4px;
  }

  .header-actions .btn span {
    display: inline;
  }

  .header-actions {
    gap: 8px;
    margin-left: 0;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .header-actions .btn {
    flex: 1 1 140px;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-section::after {
    display: none;
  }

  .lead-card {
    padding: 20px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    min-height: 180px;
  }

  .emergency-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .emergency-actions {
    justify-content: flex-start;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bottom-bar {
    display: grid;
  }
}

@media (max-width: 767.98px) {
  .trust-grid,
  .why-grid,
  .test-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

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

  .quick-proof {
    display: block;
  }

  .quick-proof span {
    display: block;
    margin-bottom: 8px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .audience-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: 142px;
    padding: 16px;
  }

  .audience-card span {
    line-height: 1.25;
  }

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

  .process-step {
    min-height: auto;
  }

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

  .thank-you-actions .btn {
    width: 100%;
  }

  .popup-dialog {
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .navbar-brand {
    max-width: 190px;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .header-actions .btn {
    min-width: 38px;
    min-height: 38px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }
}
