/* =========================================================
   SOUND ADVICE HEARING SOLUTIONS
   COMPLETE WEBSITE STYLESHEET
   WITH MOBILE DROPDOWN SUPPORT
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* Primary Brand Colors */
    --primary: #0f9d8a;
    --primary-dark: #087d6e;
    --primary-deep: #075f55;

    /* Navy Brand Color */
    --navy: #0d2b52;
    --navy-light: #173e6b;
    --navy-soft: #eaf1f8;

    /* Accent */
    --accent: #dff5f1;

    /* Text / Dark */
    --dark: #0d2b52;
    --dark-2: #173e6b;

    --text: #405463;
    --text-light: #71818d;

    /* Backgrounds */
    --white: #ffffff;
    --off-white: #f7fafc;
    --soft: #eef5f8;
    --border: #dce6ed;

    /* Shadows */
    --shadow-sm:
        0 6px 20px rgba(13, 43, 82, 0.06);

    --shadow:
        0 15px 45px rgba(13, 43, 82, 0.10);

    --shadow-lg:
        0 25px 70px rgba(13, 43, 82, 0.15);

    /* Radius */
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --container: 1200px;

    /* Fonts */
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --transition:
        all 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    color: #fff;
    background: var(--primary);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    position: relative;
    z-index: 1100;

    background:
        linear-gradient(
            90deg,
            #102f2d,
            var(--dark),
            #102f2d
        );

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.05);
}

.topbar__inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.topbar__loc {
    display: flex;
    align-items: center;
    gap: 8px;

    white-space: nowrap;
}

.topbar__loc svg {
    flex-shrink: 0;

    color: #80ded1;
}

.topbar__phones {
    display: flex;
    align-items: center;
    gap: 12px;

    white-space: nowrap;
}

.topbar__phones a {
    color: #fff;

    font-weight: 600;

    transition: var(--transition);
}

.topbar__phones a:hover {
    color: #9be4da;
}

.topbar__sep {
    opacity: 0.3;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(15, 61, 57, 0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        box-shadow 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.site-header.scrolled {
    background:
        rgba(255, 255, 255, 0.985);

    box-shadow:
        0 8px 30px rgba(15, 61, 57, 0.10);
}

.nav-inner {
    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.logo__mark {
    display: flex;
    align-items: center;
}

.logo__img {
    width: 190px;
    height: auto;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}

.logo:hover .logo__img {
    transform: scale(1.015);
}

.footer-brand .logo__img {
    width: 175px;
}

.logo__text-primary {
    color: var(--dark);

    font-family: var(--serif);

    font-size: 24px;

    line-height: 1.1;
}

.logo__text-sub {
    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-top: 3px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 24px;

    font-size: 14px;
    font-weight: 600;
}


.nav-links a.active,
.mobile-menu a.active {
    color: #0F9D8A;
    font-weight: 600;
}

.nav-links > a:not(.nav-cta),
.nav-dropdown-toggle {
    position: relative;

    color: var(--dark);

    padding: 31px 0;

    transition: var(--transition);
}

.nav-links > a:not(.nav-cta):hover,
.nav-dropdown-toggle:hover {
    color: var(--primary);
}


/* =========================================================
   NAV UNDERLINE
========================================================= */

.nav-links > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    transform: scaleX(1);

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #58c9ba
        );

    border-radius: 999px;

    transition:
        width 0.3s ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-dropdown-toggle:hover::after {
    width: 100%;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown-toggle span {
    font-size: 10px;

    transition:
        transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;

    top: calc(100% - 4px);
    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    width: 255px;

    padding: 10px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow: var(--shadow-lg);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.dropdown-menu a {
    display: block;

    padding: 12px 14px;

    color: var(--dark);

    font-size: 14px;
    font-weight: 500;

    border-radius: 9px;

    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);

    background: var(--soft);

    padding-left: 18px;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 20px;

    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    border-radius: 999px;

    box-shadow:
        0 8px 20px rgba(15, 157, 138, 0.20);

    transition: var(--transition);
}

.nav-cta:hover {
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary-deep)
        );

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(15, 157, 138, 0.27);
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;

    width: 45px;
    height: 45px;

    padding: 10px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    transition: var(--transition);

    flex-shrink: 0;
}

.hamburger:hover {
    border-color: var(--primary);
    background: var(--soft);
}

.hamburger span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--dark);

    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

/* =========================================================
   MOBILE MENU - WITH DROPDOWN SUPPORT
   (base rule keeps it truly hidden until .open is toggled;
   the responsive media query below only changes layout,
   never re-declares display so .open always wins)
========================================================= */

.mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    padding: 15px 20px 25px;
    background: #ffffff;
    border-top: 1px solid var(--border, #dce6ed);
    box-shadow: 0 20px 35px rgba(15, 61, 57, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile menu top-level items only (not the dropdown submenu links) */
.mobile-menu > a {
    padding: 13px 5px;
    color: var(--dark, #0d2b52);
    border-bottom: 1px solid var(--border, #dce6ed);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu > a:hover {
    color: var(--primary, #0f9d8a);
}

/* Mobile dropdown toggle */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 5px;
    color: var(--dark, #0d2b52);
    border-bottom: 1px solid var(--border, #dce6ed);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: var(--sans, "DM Sans", Arial, sans-serif);
}

.mobile-dropdown-toggle:hover {
    color: var(--primary, #0f9d8a);
}

.mobile-dropdown-toggle .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
}

/* Mobile dropdown submenu */
.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    background: var(--off-white, #f7fafc);
    border-radius: 8px;
    margin-bottom: 5px;
    overflow: hidden;
}

.mobile-dropdown-menu.open {
    display: flex;
}

.mobile-dropdown-menu a {
    padding: 10px 12px;
    color: var(--text, #405463);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(13, 43, 82, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu a:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary, #0f9d8a);
    padding-left: 18px;
    background: rgba(15, 157, 138, 0.05);
}

.mobile-menu .mob-cta {
    margin-top: 12px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--primary, #0f9d8a), var(--primary-dark, #087d6e));
    border: 0;
    border-radius: 999px;
    text-align: center;
    padding: 13px 20px;
    font-weight: 700;
}

.mobile-menu .mob-cta:hover {
    color: #fff !important;
}


/* =========================================================
   RESPONSIVE - SHOW HAMBURGER ON MOBILE
========================================================= */

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }
    .nav-links {
        display: none !important;
    }
}

@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    color: var(--dark);
}

h2 {
    font-family: var(--serif);

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    line-height: 1.15;

    letter-spacing: -0.4px;
}

h3 {
    line-height: 1.3;
}

p {
    color: var(--text);
}

.section-tag,
.section-subtitle {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-primary,
.btn-ghost,
.btn-light {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    border: 1px solid transparent;

    box-shadow:
        0 10px 25px rgba(15, 157, 138, 0.22);
}

.btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary-deep)
        );

    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(15, 157, 138, 0.28);
}

.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
}

.btn-ghost {
    color: var(--dark);

    background: #fff;

    border:
        1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--primary);

    border-color: var(--primary);

    transform: translateY(-2px);
}

.btn-light {
    color: var(--dark);

    background: #fff;
}

.btn-light:hover {
    color: var(--primary);

    transform: translateY(-3px);
}


/* =========================================================
   HERO
   UPDATED BACKGROUND: #0d2b52
========================================================= */

.hero {
    position: relative;

    padding:
        85px 0
        100px;

    background: #0d2b52;

    overflow: hidden;
}

        /* =====================================================
           HEADER
        ====================================================== */

        .site-header {

            position: sticky;

            top: 0;

            z-index: 1000;

            background: rgba(255,255,255,.96);

            backdrop-filter: blur(12px);

            -webkit-backdrop-filter: blur(12px);

            border-bottom: 1px solid transparent;

            transition: .3s ease;

        }


        .site-header.scrolled {

            box-shadow:
                0 8px 30px rgba(12,64,58,.08);

            border-color: var(--border);

        }


        .nav-inner {

            min-height: 88px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 30px;

        }


.hero::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(15, 157, 138, 0.08);
}

.hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -140px;
    bottom: -130px;

    border:
        1px solid rgba(15, 157, 138, 0.10);

    border-radius: 50%;
}

.hero__grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(420px, 0.98fr);

    gap: 70px;

    align-items: center;
}

.hero__content {
    max-width: 650px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 14px;

    margin-bottom: 24px;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 5px rgba(15, 157, 138, 0.12);
}

.hero__h1 {
    margin-bottom: 25px;

    color: #ffffff;

    font-family: var(--serif);

    font-size: clamp(
        3rem,
        5.5vw,
        5.2rem
    );

    line-height: 1.02;

    letter-spacing: -1px;
}

.hero__h1 em {
    color: var(--primary);

    font-weight: 400;
}

.hero__desc {
    max-width: 620px;

    margin-bottom: 32px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 13px;

    margin-bottom: 45px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero__stats {
    display: flex;

    flex-wrap: wrap;

    gap: 0;
}

.hero__stats > div {
    min-width: 145px;

    padding-right: 28px;
    margin-right: 28px;

    border-right:
        1px solid rgba(255, 255, 255, 0.18);
}

.hero__stats > div:last-child {
    border-right: 0;
}

.stat__num {
    color: #ffffff;

    font-family: var(--serif);

    font-size: 28px;

    line-height: 1.1;
}

.stat__label {
    margin-top: 4px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero__img-wrap {
    position: relative;

    min-height: 570px;
}

.hero__img {
    width: 100%;
    height: 570px;

    object-fit: cover;

    border-radius: 32px;

    box-shadow: var(--shadow-lg);
}

.hero__img-wrap::after {
    content: "";

    position: absolute;

    inset: 15px -15px -15px 15px;

    z-index: -1;

    border:
        1px solid rgba(15, 157, 138, 0.20);

    border-radius: 32px;
}

.hero__card {
    position: absolute;

    left: -30px;
    bottom: 35px;

    display: flex;
    align-items: center;

    gap: 13px;

    max-width: 360px;

    padding: 17px 20px;

    background:
        rgba(255, 255, 255, 0.97);

    border-radius: 15px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(10px);
}

.hero__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    background: var(--soft);

    border-radius: 12px;
}

.hero__card-title {
    color: var(--dark);

    font-size: 14px;
    font-weight: 700;
}

.hero__card-sub {
    margin-top: 2px;

    color: var(--text-light);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background:
        linear-gradient(
            135deg,
            var(--dark),
            #0d3431
        );

    color: #fff;
}

.trust-strip__grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.trust-item {
    padding: 30px 25px;

    text-align: center;

    border-right:
        1px solid rgba(255, 255, 255, 0.10);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item__val {
    color: #80ded1;

    font-family: var(--serif);

    font-size: 28px;

    line-height: 1.2;
}

.trust-item__val.dark {
    color: #fff;
}

.trust-item__label {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.intro-section {
    padding: 105px 0;
}

.intro-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap: 80px;

    align-items: center;
}

.intro-content {
    max-width: 680px;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-content p {
    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 16px;
}

.intro-content p:last-of-type {
    margin-bottom: 25px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.service-card__link:hover {
    color: var(--primary-dark);
    gap: 11px;
}

.intro-highlight {
    padding: 42px;

    background:
        linear-gradient(
            145deg,
            var(--soft),
            #f8fcfb
        );

    border-radius: var(--radius-lg);

    border:
        1px solid var(--border);

    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    color: var(--primary);

    background: #fff;

    border-radius: 15px;

    box-shadow: var(--shadow-sm);
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
}

.intro-highlight h3 {
    margin-bottom: 12px;

    font-family: var(--serif);

    font-size: 27px;
}

.intro-highlight p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header {
    max-width: 720px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   SIGNS SECTION
========================================================= */

.signs-section {
    padding: 105px 0;

    background: var(--off-white);
}

.signs-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.sign-card {
    position: relative;

    padding: 32px;

    min-height: 235px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}

.sign-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(15, 157, 138, 0.35);

    box-shadow: var(--shadow);
}

.sign-number {
    display: inline-block;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.sign-card h3 {
    margin-bottom: 12px;

    font-family: var(--serif);

    font-size: 21px;
}

.sign-card p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;
}

.center-cta {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}


/* =========================================================
   TEAM SECTION
========================================================= */

.team-section {
    padding: 105px 0;

    background: #fff;
}

.team-section .container {
    display: grid;

    grid-template-columns:
        minmax(350px, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;
}

.team-image {
    position: relative;
}

.team-image::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 20px;

    width: 100%;
    height: 100%;

    border:
        1px solid rgba(15, 157, 138, 0.20);

    border-radius: 25px;

    z-index: 0;
}

.team-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    max-height: 620px;

    object-fit: cover;

    border-radius: 25px;

    box-shadow: var(--shadow);
}

.team-content h2 {
    margin-bottom: 25px;
}

.team-content p {
    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 15px;
}

.team-content blockquote {
    margin:
        30px 0;

    padding:
        22px 25px;

    color: var(--dark);

    background: var(--soft);

    border-left:
        4px solid var(--primary);

    border-radius:
        0 12px 12px 0;

    font-family: var(--serif);

    font-size: 21px;

    line-height: 1.5;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    padding: 105px 0;

    background: var(--off-white);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.why-card {
    padding: 32px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.why-number {
    margin-bottom: 25px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}

.why-card h3 {
    margin-bottom: 13px;

    font-family: var(--serif);

    font-size: 21px;
}

.why-card p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================================================
   TECHNOLOGY SECTION
========================================================= */

.technology-section {
    padding: 105px 0;
}

.technology-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 70px;

    align-items: center;
}

.technology-content h2 {
    margin-bottom: 22px;
}

.technology-content > p {
    margin-bottom: 16px;

    color: var(--text-light);

    font-size: 15px;
}

.technology-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin: 30px 0;
}

.technology-list > div {
    padding: 17px;

    background: var(--off-white);

    border:
        1px solid var(--border);

    border-radius: 12px;
}

.technology-list strong {
    display: block;

    margin-bottom: 4px;

    color: var(--dark);

    font-size: 13px;
}

.technology-list span {
    color: var(--text-light);

    font-size: 12px;

    line-height: 1.5;
}

.technology-image img {
    width: 100%;
    height: 560px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: var(--shadow);
}


/* =========================================================
   PATIENT JOURNEY
========================================================= */

.journey-section {
    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            #0d3431
        );
}

.journey-section .section-tag {
    color: #80ded1;
}

.journey-section h2 {
    color: #fff;
}

.journey-section .section-header p {
    color:
        rgba(255, 255, 255, 0.63);
}

.journey-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 0;
}

.journey-step {
    position: relative;

    padding: 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.10);
}

.journey-step:last-child {
    border-right: 0;
}

.journey-step__num {
    margin-bottom: 24px;

    color: #80ded1;

    font-family: var(--serif);

    font-size: 32px;
}

.journey-step h3 {
    margin-bottom: 13px;

    color: #fff;

    font-family: var(--serif);

    font-size: 21px;
}

.journey-step p {
    color:
        rgba(255, 255, 255, 0.60);

    font-size: 13px;
}


/* =========================================================
   FAMILY SECTION
========================================================= */

.family-section {
    padding: 105px 0;
}

.family-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 75px;

    align-items: center;
}

.family-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 28px;

    box-shadow: var(--shadow);
}

.family-content h2 {
    margin-bottom: 22px;
}

.family-content > p {
    margin-bottom: 17px;

    color: var(--text-light);

    font-size: 15px;
}

.family-list {
    margin:
        25px 0
        30px;
}

.family-list li {
    position: relative;

    padding:
        9px 0 9px 27px;

    color: var(--text);

    font-size: 14px;
}

.family-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 7px;

    color: var(--primary);

    font-weight: 700;
}


/* =========================================================
   TINNITUS PREVIEW
========================================================= */

.tinnitus-preview {
    padding: 80px 0;
}

.tinnitus-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    padding: 55px;

    background:
        linear-gradient(
            135deg,
            #dff5f1,
            #eef9f7
        );

    border-radius: 28px;

    border:
        1px solid rgba(15, 157, 138, 0.16);
}

.tinnitus-box h2 {
    margin-bottom: 17px;
}

.tinnitus-box p {
    max-width: 720px;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 105px 0;

    background: var(--off-white);
}

.faq-list {
    max-width: 850px;

    margin-inline: auto;
}

.faq-item {
    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 12px;

    margin-bottom: 12px;

    overflow: hidden;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color:
        rgba(15, 157, 138, 0.25);
}

.faq-item.active {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 21px 24px;

    border: 0;

    background: transparent;

    color: var(--dark);

    text-align: left;

    font-size: 14px;
    font-weight: 700;
}

.faq-question span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    color: var(--primary);

    border:
        1px solid var(--border);

    border-radius: 50%;

    font-size: 20px;
    font-weight: 400;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.faq-item.active .faq-question span {
    background: var(--soft);
}

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}

.faq-answer p {
    overflow: hidden;

    padding:
        0 24px;

    color: var(--text-light);

    font-size: 14px;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding-bottom: 22px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* =========================================================
   LOCATIONS GENERAL
========================================================= */

.locations-section {
    padding: 105px 0;
}

.locations-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    max-width: 950px;

    margin-inline: auto;
}

.location-card {
    position: relative;

    padding: 35px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    overflow: hidden;
}

.location-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 4px;
    height: 0;

    background:
        linear-gradient(
            180deg,
            var(--primary),
            #67d3c5
        );

    transition: height 0.35s ease;
}

.location-card:hover::before {
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(15, 157, 138, 0.25);

    box-shadow: var(--shadow);
}

.location-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    margin-bottom: 20px;

    color: var(--primary);

    background: var(--soft);

    border-radius: 14px;
}

.location-icon svg {
    width: 26px;
    height: 26px;
}

.location-card h3 {
    margin-bottom: 12px;

    font-family: var(--serif);

    font-size: 25px;
}

.location-card p {
    margin-bottom: 18px;

    color: var(--text-light);

    font-size: 14px;
}

.location-card a {
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.location-card a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            #0d3431
        );
}

.final-cta__inner {
    max-width: 850px;

    margin-inline: auto;

    text-align: center;
}

.final-cta .section-tag {
    color: #80ded1;
}

.final-cta h2 {
    margin-bottom: 20px;

    color: #fff;
}

.final-cta p {
    max-width: 700px;

    margin:
        0 auto 32px;

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 15px;
}

.final-cta__actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 13px;
}

.final-cta .btn-ghost {
    color: #fff;

    background: transparent;

    border-color:
        rgba(255, 255, 255, 0.25);
}

.final-cta .btn-ghost:hover {
    border-color: #80ded1;

    color: #80ded1;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:
        linear-gradient(
            135deg,
            #0c2927,
            #09221f
        );

    color:
        rgba(255, 255, 255, 0.65);
}

.footer-main {
    padding-top: 75px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo__text-primary {
    color: #fff;
}

.footer-brand .logo__text-sub {
    color: #80ded1;
}

.footer-brand p {
    max-width: 360px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;
}

.footer-tagline {
    margin-top: 20px;

    color: #80ded1;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.5px;
}

.footer-col h4 {
    margin-bottom: 20px;

    color: #fff;

    font-size: 14px;
}

.footer-col ul {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-col li,
.footer-col a {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 13px;

    transition: var(--transition);
}

.footer-col a:hover {
    color: #80ded1;

    padding-left: 3px;
}

.footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 3px;

    color: #80ded1;
}

.footer-contact-item a {
    word-break: break-word;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding:
        22px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 11px;
}

.footer-bottom-links {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #80ded1;
}


/* =========================================================
   CONTACT PAGE HERO
========================================================= */

.page-hero {
    position: relative;

    padding:
        82px 0
        86px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(15, 157, 138, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #edf9f6 0%,
            #ffffff 55%,
            #eef8f6 100%
        );

    border-bottom:
        1px solid rgba(15, 157, 138, 0.08);

    overflow: hidden;
}

.page-hero::before {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -170px;
    bottom: -220px;

    border:
        1px solid rgba(15, 157, 138, 0.12);

    border-radius: 50%;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 7%;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(15, 157, 138, 0.045);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .section-tag {
    margin-bottom: 14px;

    padding:
        7px 13px;

    background:
        rgba(15, 157, 138, 0.08);

    border:
        1px solid rgba(15, 157, 138, 0.12);

    border-radius: 999px;
}

.page-hero h1 {
    max-width: 750px;

    margin: 0;

    font-family: var(--serif);

    color: var(--dark);

    font-size: clamp(
        2.7rem,
        5vw,
        4.2rem
    );

    line-height: 1.05;

    letter-spacing: -0.7px;
}

.page-hero h1::after {
    content: "";

    display: block;

    width: 60px;
    height: 3px;

    margin-top: 24px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #6bd3c5
        );

    border-radius: 999px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;

    padding:
        95px 0
        105px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fcfb 100%
        );
}

.contact-section::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -240px;
    top: 100px;

    border-radius: 50%;

    background:
        rgba(15, 157, 138, 0.035);

    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    gap: 35px;

    align-items: start;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrap {
    position: relative;

    padding:
        42px;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        0 20px 60px rgba(15, 61, 57, 0.08);

    overflow: hidden;
}

.contact-form-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #6bd3c5,
            var(--primary-dark)
        );
}

.contact-form-wrap::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(15, 157, 138, 0.045);

    pointer-events: none;
}

.contact-form-wrap h2 {
    position: relative;
    z-index: 1;

    margin-bottom: 8px;

    font-family: var(--serif);

    font-size: 34px;

    line-height: 1.15;
}

.contact-form-wrap h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 15px;

    background: var(--primary);

    border-radius: 999px;
}


/* =========================================================
   CONTACT FORM INTRO
========================================================= */

.contact-form-wrap form {
    position: relative;
    z-index: 1;

    margin-top: 28px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 19px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--dark);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.1px;
}

.form-group label::after {
    content: "";
}


/* =========================================================
   FORM CONTROLS
========================================================= */

.form-control {
    width: 100%;

    min-height: 53px;

    padding:
        13px 16px;

    color: var(--dark);

    background:
        #fbfdfd;

    border:
        1px solid #d6e5e2;

    border-radius:
        11px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.form-control::placeholder {
    color: #9aaba9;

    font-weight: 400;
}

.form-control:hover {
    border-color:
        #b9d4cf;

    background: #fff;
}

.form-control:focus {
    border-color:
        var(--primary);

    background:
        #ffffff;

    box-shadow:
        0 0 0 4px
        rgba(15, 157, 138, 0.09);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 45px;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--primary) 50%
        ),
        linear-gradient(
            135deg,
            var(--primary) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 19px) 23px,
        calc(100% - 14px) 23px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

textarea.form-control {
    min-height: 145px;

    resize: vertical;

    line-height: 1.65;
}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-form-wrap .btn-primary {
    min-height: 55px;

    margin-top: 5px;

    font-size: 14px;

    letter-spacing: 0.1px;

    border: 0;
}

.contact-form-wrap .btn-primary:hover {
    transform:
        translateY(-2px);
}

.contact-form-wrap .btn-primary:disabled {
    opacity: 0.9;

    cursor: default;

    background:
        linear-gradient(
            135deg,
            #0d8a79,
            #087568
        );
}


/* =========================================================
   LOCATIONS WRAPPER
========================================================= */

.locations-wrap {
    position: relative;

    padding:
        42px;

    background:
        #ffffff;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-lg);

    box-shadow:
        0 20px 60px rgba(15, 61, 57, 0.07);

    overflow: hidden;
}

.locations-wrap::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #6bd3c5,
            var(--primary),
            var(--primary-dark)
        );
}

.locations-wrap h2 {
    margin-bottom: 30px;

    font-family: var(--serif);

    font-size: 34px;

    line-height: 1.15;
}

.locations-wrap h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 15px;

    background: var(--primary);

    border-radius: 999px;
}


/* =========================================================
   CONTACT LOCATION GRID
========================================================= */

.locations-wrap .locations-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;

    max-width: none;

    margin: 0;
}


/* =========================================================
   ENHANCED LOCATION CARD
========================================================= */

.locations-wrap .location-card {
    position: relative;

    padding:
        27px;

    background:
        linear-gradient(
            145deg,
            #f9fcfb,
            #f2f9f7
        );

    border:
        1px solid var(--border);

    border-radius:
        17px;

    box-shadow: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.locations-wrap .location-card::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -50px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(15, 157, 138, 0.045);

    pointer-events: none;

    transition:
        transform 0.4s ease;
}

.locations-wrap .location-card:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(15, 157, 138, 0.30);

    box-shadow:
        0 15px 35px rgba(15, 61, 57, 0.08);
}

.locations-wrap .location-card:hover::after {
    transform:
        scale(1.25);
}


/* =========================================================
   LOCATION HEADER
========================================================= */

.location-card__header {
    position: relative;
    z-index: 1;

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 18px;
}

.location-card__header .location-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    margin: 0;

    color: var(--primary);

    background:
        #ffffff;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    font-size: 19px;

    box-shadow:
        0 5px 15px rgba(15, 61, 57, 0.05);
}

.location-card__header h3 {
    margin: 0;

    color: var(--dark);

    font-family: var(--serif);

    font-size: 22px;

    line-height: 1.2;
}


/* =========================================================
   LOCATION ADDRESS
========================================================= */

.location-card__addr {
    position: relative;
    z-index: 1;

    margin-bottom: 19px !important;

    padding-left: 58px;

    color: var(--text-light);

    font-size: 13px !important;

    line-height: 1.65;
}


/* =========================================================
   LOCATION INFORMATION
========================================================= */

.location-info {
    position: relative;
    z-index: 1;

    padding:
        16px 0;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.location-info p {
    display: flex;

    align-items: center;

    gap: 5px;

    margin-bottom: 8px !important;

    color: var(--text);

    font-size: 13px !important;
}

.location-info p:last-child {
    margin-bottom: 0 !important;
}

.location-info strong {
    color: var(--dark);

    font-weight: 700;
}

.location-info a {
    color: var(--primary);

    font-weight: 700;

    transition: var(--transition);
}

.location-info a:hover {
    color: var(--primary-dark);

    text-decoration: underline;

    text-underline-offset: 3px;
}


/* =========================================================
   HOURS
========================================================= */

.hours {
    position: relative;
    z-index: 1;

    padding-top: 18px;
}

.hours h4 {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 11px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 700;
}

.hours h4::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 4px rgba(15, 157, 138, 0.10);
}

.hours p {
    margin-bottom: 3px !important;

    color: var(--text-light);

    font-size: 12px !important;
}

.hours strong {
    color: var(--dark);

    font-size: 13px;
}

.hours p[style] {
    margin-top: 13px !important;
}


/* =========================================================
   APPOINTMENT NOTE
========================================================= */

.hours p strong {
    display: inline-block;

    padding:
        5px 10px;

    color: var(--primary-dark);

    background:
        rgba(15, 157, 138, 0.08);

    border-radius:
        999px;

    font-size: 11px;
}


/* =========================================================
   CONTACT PAGE FORM / LOCATION SHADOW
========================================================= */

.contact-form-wrap,
.locations-wrap {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form-wrap:hover,
.locations-wrap:hover {
    box-shadow:
        0 25px 70px rgba(15, 61, 57, 0.09);
}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal,
.stagger-children {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible,
.stagger-children.visible {
    opacity: 1;

    transform:
        translateY(0);
}

.stagger-children > * {
    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.stagger-children.visible > * {
    opacity: 1;

    transform:
        translateY(0);
}

.stagger-children.visible > *:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children.visible > *:nth-child(2) {
    transition-delay: 0.10s;
}

.stagger-children.visible > *:nth-child(3) {
    transition-delay: 0.15s;
}

.stagger-children.visible > *:nth-child(4) {
    transition-delay: 0.20s;
}

.stagger-children.visible > *:nth-child(5) {
    transition-delay: 0.25s;
}

.stagger-children.visible > *:nth-child(6) {
    transition-delay: 0.30s;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline:
        3px solid rgba(15, 157, 138, 0.35);

    outline-offset: 3px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 16px;
    }

    .nav-cta {
        padding: 0 15px;
    }

    .hero__grid {
        gap: 45px;
    }

    .hero__h1 {
        font-size: 4rem;
    }

    .hero__img-wrap,
    .hero__img {
        height: 500px;
        min-height: 500px;
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .journey-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .journey-step:nth-child(3) {
        border-right: 0;
    }

    .journey-step:nth-child(-n + 3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.10);
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-grid {
        gap: 25px;
    }

    .contact-form-wrap,
    .locations-wrap {
        padding: 32px;
    }
}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 900px) {

    .topbar__inner {
        justify-content: center;
    }

    .topbar__loc {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 750px;

        margin-inline: auto;

        text-align: center;
    }

    .hero__actions,
    .hero__stats {
        justify-content: center;
    }

    .hero__img-wrap {
        max-width: 700px;

        width: 100%;

        margin-inline: auto;
    }

    .intro-grid,
    .technology-grid,
    .family-grid,
    .team-section .container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .intro-content,
    .technology-content,
    .family-content {
        max-width: 750px;

        margin-inline: auto;
    }

    .team-image {
        max-width: 600px;

        margin-inline: auto;
    }

    .team-content {
        max-width: 750px;

        margin-inline: auto;
    }

    .technology-image {
        order: -1;

        max-width: 700px;

        margin-inline: auto;

        width: 100%;
    }

    .family-image {
        max-width: 700px;

        margin-inline: auto;

        width: 100%;
    }

    .family-content {
        text-align: center;
    }

    .family-list {
        text-align: left;

        max-width: 500px;

        margin-inline: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        max-width: 800px;

        margin-inline: auto;
    }

    .locations-wrap {
        width: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .topbar {
        font-size: 12px;
    }

    .topbar__inner {
        min-height: 38px;
    }

    .topbar__phones {
        gap: 8px;
    }

    .nav-inner {
        min-height: 72px;
    }

    .logo__img {
        width: 155px;
    }

    .footer-brand .logo__img {
        width: 155px;
    }

    .hero {
        padding:
            60px 0
            70px;

        background: #0d2b52;
    }

    .hero__h1 {
        font-size:
            clamp(
                2.6rem,
                12vw,
                4rem
            );

        letter-spacing: -0.5px;
    }

    .hero__desc {
        font-size: 15px;

        line-height: 1.7;
    }

    .hero__actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero__actions .btn-primary,
    .hero__actions .btn-ghost {
        width: 100%;
    }

    .hero__stats {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        width: 100%;
    }

    .hero__stats > div {
        min-width: 0;

        padding:
            0 10px;

        margin: 0;

        border-right:
            1px solid rgba(255, 255, 255, 0.18);
    }

    .hero__stats > div:last-child {
        border-right: 0;
    }

    .stat__num {
        font-size: 22px;
    }

    .stat__label {
        font-size: 10px;
    }

    .hero__img-wrap,
    .hero__img {
        height: 390px;
        min-height: 390px;
    }

    .hero__card {
        left: 10px;
        right: 10px;
        bottom: 15px;

        max-width: none;
    }

    .trust-strip__grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item {
        padding:
            22px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.10);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .intro-section,
    .signs-section,
    .team-section,
    .why-section,
    .technology-section,
    .journey-section,
    .family-section,
    .faq-section,
    .locations-section {
        padding: 75px 0;
    }

    h2 {
        font-size: 2.25rem;
    }

    .intro-highlight {
        padding: 30px;
    }

    .signs-grid {
        grid-template-columns: 1fr;
    }

    .sign-card {
        min-height: auto;

        padding: 27px;
    }

    .team-section .container {
        gap: 40px;
    }

    .team-content blockquote {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .technology-list {
        grid-template-columns: 1fr;
    }

    .technology-image img {
        height: 390px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-step {
        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.10);
    }

    .journey-step:last-child {
        border-bottom: 0;
    }

    .family-image img {
        height: 390px;
    }

    .tinnitus-preview {
        padding: 65px 0;
    }

    .tinnitus-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 28px;
    }

    .final-cta {
        padding: 75px 0;
    }

    .final-cta__actions {
        flex-direction: column;
    }

    .final-cta__actions .btn-primary,
    .final-cta__actions .btn-ghost {
        width: 100%;
    }

    .footer-main {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    /* ---------------------------------------------------------
       CONTACT MOBILE
    --------------------------------------------------------- */

    .page-hero {
        padding:
            58px 0
            65px;

        text-align: center;
    }

    .page-hero .section-tag {
        margin-bottom: 13px;
    }

    .page-hero h1 {
        font-size:
            clamp(
                2.35rem,
                10vw,
                3.2rem
            );
    }

    .page-hero h1::after {
        margin-inline: auto;
    }

    .contact-section {
        padding:
            60px 0
            70px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .contact-form-wrap,
    .locations-wrap {
        padding:
            29px 21px;

        border-radius:
            20px;
    }

    .contact-form-wrap h2,
    .locations-wrap h2 {
        font-size: 28px;
    }

    .contact-form-wrap form {
        margin-top: 24px;
    }

    .form-group {
        margin-bottom: 17px;
    }

    .form-control {
        min-height: 51px;
    }

    textarea.form-control {
        min-height: 130px;
    }

    .locations-wrap .location-card {
        padding:
            24px 20px;
    }

    .location-card__header h3 {
        font-size: 20px;
    }

    .location-card__addr {
        padding-left: 0;
    }

    .location-info p {
        flex-wrap: wrap;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .topbar__phones {
        font-size: 11px;
    }

    .logo__img {
        width: 140px;
    }

    .hero {
        padding-top: 45px;

        background: #0d2b52;
    }

    .hero__badge {
        font-size: 10px;

        padding:
            7px 10px;
    }

    .hero__h1 {
        font-size: 2.55rem;
    }

    .hero__stats {
        gap: 5px;
    }

    .stat__num {
        font-size: 20px;
    }

    .stat__label {
        font-size: 9px;
    }

    .hero__img-wrap,
    .hero__img {
        height: 330px;
        min-height: 330px;
    }

    .hero__card {
        padding: 12px;

        gap: 9px;
    }

    .hero__card-icon {
        width: 38px;
        height: 38px;
    }

    .hero__card-title {
        font-size: 12px;
    }

    .hero__card-sub {
        font-size: 9px;
    }

    .trust-item__val {
        font-size: 23px;
    }

    h2 {
        font-size: 2rem;
    }

    .intro-highlight {
        padding: 25px;
    }

    .family-image img,
    .technology-image img {
        height: 320px;
    }

    .footer-bottom-links {
        gap: 12px;
    }


    /* ---------------------------------------------------------
       CONTACT SMALL MOBILE
    --------------------------------------------------------- */

    .page-hero {
        padding:
            48px 0
            55px;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .contact-section {
        padding:
            48px 0
            60px;
    }

    .contact-form-wrap,
    .locations-wrap {
        padding:
            25px 17px;
    }

    .contact-form-wrap h2,
    .locations-wrap h2 {
        font-size: 25px;
    }

    .form-control {
        padding:
            12px 13px;
    }

    .contact-form-wrap .btn-primary {
        min-height: 53px;
    }

    .locations-wrap .location-card {
        padding:
            22px 17px;
    }

    .location-card__header {
        align-items: flex-start;
    }

    .location-card__header .location-icon {
        width: 42px;
        height: 42px;
    }

    .location-card__header h3 {
        font-size: 19px;
    }

    .location-info p {
        font-size: 12px !important;
    }

    .hours p {
        font-size: 11px !important;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

    .reveal,
    .stagger-children,
    .stagger-children > * {
        opacity: 1;

        transform: none;
    }
    
}