@media (max-width: 1024px) {

  .division-row--reverse .division-image img {
    object-position: center center;
    min-width: 100%;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .site-header {
    top: 0px;
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    height: 90px;
    padding: 0 0;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    height: calc(90px + env(safe-area-inset-top));
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0;
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .logo img {
    width: 250px;
    position: relative;
    top: 0;
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--volant-gold);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    top: 0;
    flex-shrink: 0;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  }

  .menu-toggle:active {
    transform: scale(0.97);
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    padding-top: 0.1rem;
  }

  .mobile-menu-header img {
    width: 120px;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    margin-left: 0px;
    margin-bottom: -40px;
  }

  .menu-close {
    border: none;
    background: transparent;
    color: #444;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-top: -0.1rem;
    width: auto;
    height: auto;
    border-radius: 0;
  }

  .mobile-menu nav {
    width: 100%;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .mobile-menu ul li {
    width: 100%;
  }

  .mobile-menu nav a {
    display: block;
    color: #4a4a4a;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: color 0.2s ease;
  }

  .mobile-menu nav a:hover {
    color: var(--volant-blue);
  }

  .mobile-dropdown {
    width: 100%;
  }

  .mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: #4a4a4a;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .dropdown-icon {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-dropdown.active .dropdown-icon {
    transform: scaleY(-1);
    transition: none;
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
    background: #ffffff;
  }

  .mobile-dropdown.active .mobile-submenu {
    max-height: 260px;
  }

  .mobile-submenu li {
    width: 100%;
  }

  .mobile-submenu a {
    display: block;
    color: #5a5a5a;
    font-size: 0.98rem;
    font-weight: 400;
    padding: 0.9rem 0.1rem 0.9rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
  }

  .mobile-submenu a:hover {
    color: var(--volant-blue);
  }

  .mobile-cta {
    margin-top: 1.5rem;
    width: 220px;
    max-width: 220px;
    align-self: flex-start;
    border-radius: 2px;
    padding: 0.95rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    border-bottom: none;
  }

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

  .site-footer .container {
    width: min(100% - 2rem, var(--container));
  }

  .footer-main {
    padding: 3rem 0 2.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 2rem;
    max-width: 100%;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    padding: 1rem 0;
  }

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

  .about-preview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-preview-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .safety-preview-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .contact-cta-actions {
    width: 100%;
  }

  .contact-cta-actions .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .division-row--reverse .division-image img {
    object-position: center center;
    min-width: 100%;
  }

  .site-header {
    top: 0px;
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    height: 85px;
    padding: 0;
    height: calc(90px + env(safe-area-inset-top));
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0;
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .logo img {
    width: 210px;
    top: 0;
    transform: none;
    position: relative;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    top: 0;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(8, 18, 29, 0.65) 0%,
        rgba(8, 18, 29, 0.45) 45%,
        rgba(8, 18, 29, 0.6) 100%);
  }

  .hero-content {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    line-height: 1.4;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    max-width: 300px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    line-height: 0.9;
    max-width: 340px;
    margin-bottom: 1rem;
  }

  .hero-subtext {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .btn {
    width: 100%;
    padding: 0.95rem 1.25rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .stat h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
  }

  .stat p {
    font-size: 0.7rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .footer-main {
    padding: 2.5rem 0 2rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    margin-bottom: 1rem;
  }

  .footer-logo img {
    width: 180px;
  }

  .footer-column h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-column ul {
    gap: 0.65rem;
  }

  .footer-column li,
  .footer-column a {
    font-size: 0.93rem;
  }

  .footer-bottom-inner {
    gap: 0.35rem;
  }

  .footer-bottom p {
    font-size: 0.86rem;
  }

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

  .about-preview-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-cta {
    padding: 4rem 0;
  }
}

@media (max-width: 540px) {

  .division-row--reverse .division-image img {
    object-position: center center;
    min-width: 100%;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    top: 0px;
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    height: 80px;
    gap: 1rem;
    padding: 0;
    align-items: center;
    height: calc(90px + env(safe-area-inset-top));
  }

  .logo {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0;
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .logo img {
    width: 180px;
    top: 0;
    transform: none;
    position: relative;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    font-size: 1.05rem;
    top: 0;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    max-width: 260px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
    max-width: 300px;
    margin-bottom: 0.9rem;
    line-height: 0.88;
  }

  .hero-subtext {
    font-size: 0.97rem;
    line-height: 1.62;
    margin-bottom: 1.35rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    margin-bottom: 1.75rem;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 1.25rem;
  }

  .stat h3 {
    font-size: 1.9rem;
  }

  .stat p {
    font-size: 0.74rem;
  }

  .site-footer .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .footer-main {
    padding: 2.15rem 0 1.75rem;
  }

  .footer-grid {
    gap: 1.75rem;
  }

  .footer-logo img {
    width: 165px;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;
  }

  .footer-bottom {
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .footer-bottom-inner {
    padding: 0.9rem 0;
  }

  .footer-bottom p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .about-preview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-stat-number {
    font-size: 2.8rem;
  }

  .contact-cta-actions {
    flex-direction: column;
  }
}