/* ========================================
   AVIATE ASSOCIATES
   Precision. Authority. Partnership.
   ======================================== */

:root {
    --navy-deep: #0a1628;
    --navy: #0f1f3a;
    --navy-light: #162a4a;
    --navy-mid: #1a3055;
    --gold: #c9a84c;
    --gold-light: #e8d5a0;
    --gold-dark: #a08636;
    --white: #f0f0f0;
    --white-pure: #ffffff;
    --gray-100: #e0e3e8;
    --gray-200: #c8cdd5;
    --gray-300: #8e99a8;
    --gray-400: #5e6b7d;
    --gray-500: #3d4757;

    --font-display: 'Saira Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--white);
    background: var(--navy-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.08s linear;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.7rem 0;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 38px;
    filter: brightness(0) invert(1);
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled .nav-logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
}

.nav-links a {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: transparent !important;
    border: 1px solid rgba(201, 168, 76, 0.6) !important;
    padding: 0.55rem 1.5rem !important;
    color: var(--gold) !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.15em !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy-deep) !important;
    border-color: var(--gold) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.35s var(--ease-out-expo);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroZoom 25s ease-out forwards;
    will-change: transform;
}

@keyframes heroZoom {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.65) 0%,
        rgba(10, 22, 40, 0.82) 45%,
        rgba(10, 22, 40, 0.95) 100%
    );
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.035;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.4) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 780px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2.5rem;
}

.hero-logo img {
    height: 220px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.hero-divider {
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2.5rem;
}

.hero-headline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    line-height: 2;
    color: var(--gray-200);
    letter-spacing: 0.03em;
}

.hero-scroll-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 3.5rem;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.hero-scroll-cta:hover {
    transform: translateY(4px);
}

.hero-scroll-cta svg {
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
}

/* ========================================
   SECTIONS — SHARED
   ======================================== */
.section {
    position: relative;
    padding: clamp(5rem, 12vw, 9rem) 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.section-label-center {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.label-num {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.label-title {
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.section-heading {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.text-gold {
    color: var(--gold);
}

.text-center {
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.section-grid-reverse .section-image {
    order: -1;
}

.section-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-200);
    margin-bottom: 1.3rem;
}

.section-body p:last-child {
    margin-bottom: 0;
}

.section-body strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Image Frames */
.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    z-index: -1;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--navy-deep);
}

/* ========================================
   CUSTOMERS SECTION
   ======================================== */
.customers {
    position: relative;
    overflow: hidden;
}

.customers-bg {
    position: absolute;
    inset: 0;
}

.customers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.customers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.94) 0%,
        rgba(10, 22, 40, 0.88) 50%,
        rgba(10, 22, 40, 0.94) 100%
    );
}

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

.customers .section-heading {
    margin-bottom: 3.5rem;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 0.85rem;
    max-width: 950px;
    margin: 0 auto;
}

.customer-badge {
    background: rgba(15, 31, 58, 0.65);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.15rem 1rem;
    text-align: center;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-100);
    transition: all 0.45s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.customer-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 168, 76, 0.06),
        rgba(201, 168, 76, 0.12),
        rgba(201, 168, 76, 0.06),
        transparent
    );
    transition: left 0.6s ease;
}

.customer-badge:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-3px);
    color: var(--gold-light);
    background: rgba(15, 31, 58, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.customer-badge:hover::before {
    left: 100%;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    position: relative;
    overflow: hidden;
}

.services-bg-image {
    position: absolute;
    inset: 0;
}

.services-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.96) 0%,
        rgba(15, 31, 58, 0.92) 50%,
        rgba(10, 22, 40, 0.96) 100%
    );
}

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

.services-header {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-200);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.service-card {
    background: rgba(15, 31, 58, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 2rem 1.75rem;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    background: rgba(15, 31, 58, 0.75);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-wide {
    grid-column: 2 / 3;
}

.service-card-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    color: rgba(201, 168, 76, 0.2);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color 0.4s ease;
}

.service-card:hover .service-card-num {
    color: rgba(201, 168, 76, 0.4);
}

.service-card-line {
    width: 28px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.25rem;
    transition: width 0.4s var(--ease-out-expo);
}

.service-card:hover .service-card-line {
    width: 48px;
}

.service-card-title {
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-300);
}

.services-callout {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.services-callout-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.services-callout p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold-light);
    font-weight: 500;
    font-style: italic;
}

/* ========================================
   MISSION SECTION
   ======================================== */
.mission {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.mission-bg {
    position: absolute;
    inset: 0;
}

.mission-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.94) 0%,
        rgba(10, 22, 40, 0.82) 60%,
        rgba(10, 22, 40, 0.75) 100%
    );
}

.mission-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.025;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
}

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

.mission-content {
    max-width: 700px;
}

.mission-body p {
    font-size: 1.12rem;
    line-height: 1.95;
    color: var(--gray-200);
    margin-bottom: 1.5rem;
}

.mission-body p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--navy-deep);
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-200);
    margin-bottom: 2.75rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    background: rgba(15, 31, 58, 0.45);
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: all 0.35s ease;
    text-align: left;
}

.contact-item:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(15, 31, 58, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.contact-label {
    display: block;
    font-family: var(--font-condensed);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-value {
    display: block;
    font-size: 1.05rem;
    color: var(--gray-100);
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 2.75rem;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    background: var(--navy-deep);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-text {
    font-size: 0.78rem;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.5s; }

/* Hero Reveal — starts from further */
.hero .reveal {
    transform: translateY(50px);
}

.hero .reveal.visible {
    transform: translateY(0);
}

/* Customer badges — start hidden, stagger via JS */
.customer-badge {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    transition:
        opacity 0.6s var(--ease-out-expo),
        transform 0.6s var(--ease-out-expo),
        border-color 0.4s ease,
        color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.customer-badge.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service cards — stagger via JS */
.service-card {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition:
        opacity 0.6s var(--ease-out-expo),
        transform 0.6s var(--ease-out-expo),
        border-color 0.5s ease,
        background 0.5s ease,
        box-shadow 0.5s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-grid-reverse .section-image {
        order: 0;
    }

    .image-frame img {
        height: 320px;
    }

    .customers-grid {
        grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-wide {
        grid-column: auto;
    }

    .mission-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 7rem 2.5rem 2rem;
        transition: right 0.5s var(--ease-out-expo);
        border-left: 1px solid rgba(201, 168, 76, 0.12);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }

    .hero-logo img {
        height: 90px;
    }

    .hero-headline {
        line-height: 1.8;
    }

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

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .customer-badge {
        padding: 0.9rem 0.75rem;
        font-size: 0.78rem;
        letter-spacing: 0.08em;
    }

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

    .image-frame img {
        height: 260px;
    }

    .image-accent {
        bottom: -10px;
        right: -10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .mission {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 70px;
    }

    .hero-headline {
        font-size: 0.95rem;
    }

    .hero-scroll-cta {
        margin-top: 2.5rem;
    }

    .section {
        padding: clamp(3.5rem, 10vw, 5rem) 0;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.82rem;
    }
}
