:root {
    --aw-primary: #124E60;
    --aw-primary-hover: #0E3E4D;
    --aw-accent: #299CB7;
    --aw-accent-hover: #1E8AA5;
    --aw-highlight: #B8F5FF;
    --aw-surface: #F7F7F7;
    --aw-white: #FFFFFF;
    --aw-heading: #111827;
    --aw-body: #374151;
    --aw-muted: #6B7280;
    --aw-border: #E5E7EB;
    --aw-success: #22C55E;
    --aw-warning: #F59E0B;
    --aw-error: #DC2626;
    --aw-font: "Host Grotesk", sans-serif;
    --aw-radius-sm: 10px;
    --aw-radius-md: 16px;
    --aw-radius-lg: 28px;
    --aw-shadow-soft: 0 18px 60px rgba(17, 24, 39, 0.08);
    --aw-shadow-card: 0 14px 40px rgba(18, 78, 96, 0.08);
    --aw-container: 1320px;
    --aw-header-height: 82px;
}

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

html {
    scroll-behavior: smooth;
}

.aw-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.aw-site {
    margin: 0;
    min-width: 320px;
    background: var(--aw-white);
    color: var(--aw-body);
    font-family: var(--aw-font);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.aw-menu-open {
    overflow: hidden;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

a:hover {
    color: var(--aw-accent-hover);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--aw-heading);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.75rem);
    word-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 4.4rem);
    word-spacing: -0.04em;
}

h3 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
    color: var(--aw-body);
    text-wrap: pretty;
    word-spacing: -0.04em;
}

::selection {
    background: var(--aw-highlight);
    color: var(--aw-primary);
}

.aw-main {
    overflow: hidden;
}

.aw-container {
    width: min(100% - 48px, var(--aw-container));
    margin-inline: auto;
}

.aw-section {
    padding: clamp(56px, 8vw, 96px) 0;
}

.aw-section--surface {
    background: var(--aw-surface);
}

/* ==========================================================================
   Motion system — shared scroll reveal + hero entrance
   Initialised once from the revamped layout; pages only add markup:
   - data-aw-reveal-root on a section, data-aw-reveal on children
   - optional variants: data-aw-reveal="left|right|zoom|fade"
   - data-aw-hero on hero content wrappers (sequential load reveal)
   ========================================================================== */
[data-aw-reveal] {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition:
        opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-aw-reveal="left"] {
    transform: translate3d(-32px, 0, 0);
}

[data-aw-reveal="right"] {
    transform: translate3d(32px, 0, 0);
}

[data-aw-reveal="zoom"] {
    transform: translate3d(0, 16px, 0) scale(0.96);
}

[data-aw-reveal="fade"] {
    transform: none;
}

[data-aw-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-aw-reveal="zoom"].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

@keyframes aw-hero-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

[data-aw-hero] > * {
    opacity: 0;
    animation: aw-hero-rise 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-aw-hero] > *:nth-child(1) { animation-delay: 60ms; }
[data-aw-hero] > *:nth-child(2) { animation-delay: 170ms; }
[data-aw-hero] > *:nth-child(3) { animation-delay: 280ms; }
[data-aw-hero] > *:nth-child(4) { animation-delay: 390ms; }
[data-aw-hero] > *:nth-child(5) { animation-delay: 500ms; }
[data-aw-hero] > *:nth-child(n+6) { animation-delay: 600ms; }

[data-aw-hero-panel] {
    opacity: 0;
    animation: aw-hero-rise 760ms cubic-bezier(0.22, 1, 0.36, 1) 480ms forwards;
}

@media (prefers-reduced-motion: reduce) {
    [data-aw-reveal],
    [data-aw-reveal].is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    [data-aw-hero] > *,
    [data-aw-hero-panel] {
        opacity: 1;
        animation: none;
    }
}

.aw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--aw-primary);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.aw-eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--aw-accent);
    content: "";
}

.aw-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    padding-top: 18px;
}

.aw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 28px;
    padding: 0 22px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.08);
    transform: translate3d(0, 0, 0);
    transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.aw-header.is-hidden .aw-header__inner {
    transform: translate3d(0, -10rem, 0);
}

.aw-brand {
    display: inline-flex;
    align-items: center;
    color: var(--aw-heading);
    font-weight: 780;
}

.aw-brand:hover {
    color: var(--aw-heading);
}

.aw-brand__logo {
    width: clamp(150px, 15vw, 210px);
    height: auto;
}

.aw-brand__tagline {
    max-width: 90%;
    color: var(--aw-muted);
    font-family: var(--aw-font);
    font-size: clamp(0.5rem, 1vw, 0.68rem);
    font-weight: 580;
    letter-spacing: 0.06em;
    margin-top: -2px;
    text-align: center;
}

.aw-brand__mark {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aw-primary);
    color: var(--aw-white);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.aw-brand__text {
    display: grid;
    gap: 2px;
}

.aw-brand__text span {
    color: var(--aw-heading);
    font-size: 1.05rem;
    line-height: 1;
}

.aw-brand__text small {
    color: var(--aw-muted);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.2;
}

.aw-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 20px);
    color: var(--aw-muted);
    font-size: 0.92rem;
    font-weight: 680;
}

.aw-nav__item {
    position: relative;
}

/* invisible bridge — fills the gap between trigger and dropdown so hover isn't lost */
.aw-nav__item::before {
    content: "";
    position: absolute;
    inset: 100% 0 -10px 0;
    z-index: 19;
    pointer-events: auto;
}

.aw-nav__link,
.aw-nav__trigger {
    position: relative;
    padding: 24px 0;
}

.aw-nav__trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: inherit;
}

.aw-nav__trigger i {
    display: none;
    color: var(--aw-accent);
    font-size: 0.68rem;
    transition: transform 180ms ease;
}

.aw-nav__item:hover .aw-nav__trigger i,
.aw-nav__item:focus-within .aw-nav__trigger i {
    transform: rotate(-90deg);
}

.aw-nav__link::after,
.aw-nav__trigger::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--aw-accent);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 180ms ease, transform 180ms ease;
    content: "";
}

.aw-nav__link:hover,
.aw-nav__link.is-active,
.aw-nav__item:hover .aw-nav__trigger,
.aw-nav__item.is-active .aw-nav__trigger,
.aw-nav__item:focus-within .aw-nav__trigger {
    color: var(--aw-primary);
}

.aw-nav__link:hover::after,
.aw-nav__link.is-active::after,
.aw-nav__item:hover .aw-nav__trigger::after,
.aw-nav__item.is-active .aw-nav__trigger::after,
.aw-nav__item:focus-within .aw-nav__trigger::after {
    opacity: 1;
    transform: scaleX(1);
}

.aw-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 260px;
    padding: 10px;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.13);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 10px, 0) scale(0.98);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(18px);
}

.aw-dropdown--right {
    right: 0;
    left: auto;
    transform: translate3d(0, 10px, 0) scale(0.98);
    transform-origin: top right;
}

.aw-nav__item:hover .aw-dropdown,
.aw-nav__item:focus-within .aw-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(1);
}

.aw-nav__item:hover .aw-dropdown--right,
.aw-nav__item:focus-within .aw-dropdown--right {
    transform: translate3d(0, 0, 0) scale(1);
}

.aw-dropdown a {
    display: grid;
    gap: 3px;
    padding: 13px 14px;
    border-radius: 14px;
}

.aw-dropdown a:hover {
    background: var(--aw-surface);
    color: var(--aw-primary);
}

.aw-dropdown a.is-active {
    background: rgba(184, 245, 255, 0.28);
}

.aw-dropdown a.is-active span {
    color: var(--aw-primary);
}

.aw-dropdown span {
    color: var(--aw-heading);
    font-weight: 760;
    line-height: 1.2;
}

.aw-dropdown small {
    color: var(--aw-muted);
    font-size: 0.78rem;
    font-weight: 540;
    line-height: 1.35;
}

.aw-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.aw-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--aw-border);
    border-radius: 999px;
    background: var(--aw-white);
    color: var(--aw-primary);
    font-size: 1rem;
}

.aw-menu-button__icon {
    line-height: 1;
}

.aw-menu-button__icon--close {
    display: none;
}

body.aw-menu-open .aw-menu-button__icon--open {
    display: none;
}

body.aw-menu-open .aw-menu-button__icon--close {
    display: inline-block;
}

.aw-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    gap: 12px;
    margin-right: 0;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    font-size: 0.94rem;
    font-weight: 760;
    line-height: 1;
    isolation: isolate;
    overflow: visible;
}

.aw-button::before {
    display: none;
    content: none;
}

.aw-button::after {
    display: none;
    content: none;
}

.aw-button__label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.aw-button__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
    height: 1.1em;
    font-size: 1rem;
    transform: none;
    opacity: 1;
}

.aw-button__arrow i {
    line-height: 1;
}

.aw-button:hover .aw-button__arrow,
.aw-button:focus-visible .aw-button__arrow,
.aw-button:active .aw-button__arrow {
    animation: aw-arrow-fade 240ms ease;
}

@keyframes aw-arrow-fade {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.aw-button--small {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 0.88rem;
}

.aw-button--small .aw-button__label {
    min-height: auto;
    padding: 0;
}

.aw-button--small .aw-button__arrow {
    width: 1em;
    height: 1em;
    font-size: 0.82rem;
}

.aw-button--primary {
    background: var(--aw-primary);
    color: var(--aw-white);
    box-shadow: 0 10px 26px rgba(18, 78, 96, 0.18);
}

.aw-button--primary:hover {
    background: #176D84;
    color: var(--aw-white);
}

.aw-button--secondary {
    --aw-button-outline: rgba(41, 156, 183, 0.35);
    border-color: rgba(41, 156, 183, 0.35);
    color: var(--aw-primary);
}

.aw-button--secondary .aw-button__label {
    background: transparent;
}

.aw-button--secondary:hover {
    background: var(--aw-highlight);
    border-color: var(--aw-button-outline);
    color: var(--aw-primary);
}

.aw-button--light {
    background: var(--aw-white);
    color: var(--aw-heading);
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.aw-button--light:hover {
    background: var(--aw-highlight);
    color: var(--aw-heading);
}

.aw-page-hero {
    position: relative;
    min-height: clamp(440px, 58vh, 620px);
    display: grid;
    align-items: end;
    padding: calc(var(--aw-header-height) + 54px) 0 64px;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(18, 78, 96, 0.96), rgba(18, 78, 96, 0.72) 42%, rgba(41, 156, 183, 0.32)),
        radial-gradient(circle at 78% 18%, rgba(184, 245, 255, 0.42), transparent 34%),
        var(--aw-primary);
}

.aw-page-hero::after {
    position: absolute;
    inset: auto -8vw -20vw auto;
    width: min(56vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(184, 245, 255, 0.3);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(18, 78, 96, 0.42) 0 32%, transparent 33%),
        radial-gradient(circle at 50% 50%, transparent 0 43%, rgba(184, 245, 255, 0.08) 44% 100%),
        conic-gradient(
            from -34deg at 50% 50%,
            rgba(41, 156, 183, 0) 0deg,
            rgba(41, 156, 183, 0.62) 64deg,
            rgba(184, 245, 255, 0.42) 132deg,
            rgba(41, 156, 183, 0.18) 206deg,
            rgba(184, 245, 255, 0.52) 286deg,
            rgba(41, 156, 183, 0) 360deg
        ),
        rgba(184, 245, 255, 0.07);
    box-shadow:
        inset 0 0 0 min(8vw, 96px) rgba(184, 245, 255, 0.045),
        inset 0 0 0 min(18vw, 240px) rgba(41, 156, 183, 0.06);
    content: "";
}

.aw-page-hero::before {
    position: absolute;
    top: clamp(96px, 14vw, 172px);
    left: clamp(-92px, -5vw, -38px);
    width: clamp(190px, 24vw, 360px);
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(184, 245, 255, 0.85), rgba(41, 156, 183, 0.38));
    content: "";
    -webkit-mask: url("../images/revamped/hero/airplane-tilt.svg") center / contain no-repeat;
    mask: url("../images/revamped/hero/airplane-tilt.svg") center / contain no-repeat;
    opacity: 0.34;
    transform: rotate(72deg);
    transform-origin: center;
}

.aw-page-hero__inner {
    position: relative;
    z-index: 2;
}

.aw-page-hero__content {
    max-width: 930px;
}

.aw-page-hero .aw-eyebrow {
    color: var(--aw-highlight);
}

.aw-page-hero .aw-eyebrow::before {
    background: var(--aw-highlight);
}

.aw-page-hero h1 {
    max-width: 11ch;
    margin-bottom: 20px;
    color: var(--aw-white);
}

.aw-page-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.aw-section-heading {
    max-width: 790px;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.aw-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.aw-section-heading--center .aw-eyebrow {
    justify-content: center;
}

.aw-section-heading h2 {
    margin-bottom: 16px;
}

.aw-section-heading p {
    margin-bottom: 0;
    color: var(--aw-muted);
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.aw-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.aw-card {
    min-height: 310px;
    padding: clamp(28px, 4vw, 38px);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-lg);
    background: var(--aw-white);
    box-shadow: var(--aw-shadow-card);
}

.aw-card__kicker {
    display: inline-flex;
    margin-bottom: 56px;
    padding: 8px 12px;
    border: 1px solid rgba(41, 156, 183, 0.22);
    border-radius: 999px;
    background: rgba(184, 245, 255, 0.28);
    color: var(--aw-primary);
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aw-card h3 {
    margin-bottom: 14px;
}

.aw-card p {
    margin-bottom: 0;
    color: var(--aw-muted);
}

.aw-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: clamp(32px, 5vw, 56px);
    border-radius: var(--aw-radius-lg);
    background:
        radial-gradient(circle at 92% 18%, rgba(184, 245, 255, 0.38), transparent 30%),
        var(--aw-white);
    box-shadow: var(--aw-shadow-soft);
}

.aw-cta h2 {
    max-width: 850px;
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 4rem);
}

.aw-cta p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--aw-muted);
}

.aw-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.aw-footer {
    background: var(--aw-primary);
    color: rgba(255, 255, 255, 0.78);
    padding: 56px 0 0;
}

.aw-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.aw-footer a:hover {
    color: var(--aw-highlight);
}

.aw-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 380px;
    gap: clamp(32px, 4vw, 52px);
    padding-bottom: 44px;
}

.aw-footer__about {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.aw-footer__brand {
    display: inline-flex;
}

.aw-footer__brand:hover {
    color: inherit;
}

.aw-footer__logo {
    width: 200px;
    height: auto;
}

.aw-footer__tagline {
    max-width: 90%;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--aw-font);
    font-size: clamp(0.48rem, 1vw, 0.66rem);
    font-weight: 580;
    letter-spacing: 0.06em;
    text-align: center;
}

.aw-footer__about p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.88rem;
    line-height: 1.7;
}

.aw-footer__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.aw-footer__links h2,
.aw-footer__subscribe h2 {
    margin-bottom: 16px;
    color: var(--aw-white);
    font-size: 0.84rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aw-footer__links a {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 520;
}

.aw-footer__subscribe h2 {
    margin-bottom: 20px;
}

.aw-subscribe-form__fields {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.aw-subscribe-form__fields input {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--aw-white);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.aw-subscribe-form__fields input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.aw-subscribe-form__fields input:focus {
    border-color: var(--aw-accent);
    background: rgba(255, 255, 255, 0.12);
}

.aw-subscribe-form__message {
    margin: 12px 0 0;
    font-size: 0.82rem;
    min-height: 1.4em;
}

.aw-subscribe-form__message--success {
    color: var(--aw-highlight);
}

.aw-subscribe-form__message--error {
    color: rgba(255, 255, 255, 0.72);
}

.aw-footer__social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.aw-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.94rem;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.aw-social-icon:hover {
    border-color: var(--aw-highlight);
    background: rgba(184, 245, 255, 0.1);
    color: var(--aw-highlight);
}

.aw-footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.82rem;
    text-align: center;
}

.aw-mobile-menu {
    position: fixed;
    inset: calc(var(--aw-header-height) + 18px) 0 0;
    z-index: 45;
    visibility: hidden;
    padding: 0 0 24px;
    background: rgba(17, 24, 39, 0.28);
    opacity: 0;
    transition: opacity 260ms ease, visibility 260ms ease;
    backdrop-filter: blur(8px);
}

.aw-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.aw-mobile-menu__panel {
    display: grid;
    gap: 4px;
    max-height: min(78vh, 760px);
    margin: 0 auto;
    padding: 14px;
    overflow: auto;
    width: min(100% - 28px, 520px);
    border: 1px solid var(--aw-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--aw-shadow-soft);
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(0.98);
    transform-origin: top center;
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(20px);
}

.aw-mobile-menu.is-open .aw-mobile-menu__panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.aw-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: var(--aw-heading);
    font-size: 1rem;
    font-weight: 720;
    text-align: left;
}

.aw-mobile-link:hover,
.aw-mobile-link:focus-visible,
.aw-mobile-item.is-open > .aw-mobile-link {
    background: var(--aw-surface);
    color: var(--aw-primary);
}

.aw-mobile-link.is-active,
.aw-mobile-item.is-active > .aw-mobile-link {
    background: rgba(184, 245, 255, 0.28);
    color: var(--aw-primary);
}

.aw-mobile-link--toggle i {
    color: var(--aw-accent);
    font-size: 0.78rem;
    transition: transform 180ms ease;
}

.aw-mobile-item.is-open > .aw-mobile-link i {
    transform: rotate(-90deg);
}

.aw-mobile-submenu {
    display: grid;
    gap: 2px;
    max-height: 0;
    margin-left: 14px;
    padding-left: 14px;
    overflow: hidden;
    border-left: 1px solid rgba(41, 156, 183, 0.24);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease, padding-top 180ms ease, padding-bottom 180ms ease;
}

.aw-mobile-item.is-open > .aw-mobile-submenu {
    max-height: 360px;
    padding-top: 4px;
    padding-bottom: 8px;
    opacity: 1;
}

.aw-mobile-submenu a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--aw-muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.aw-mobile-submenu a:hover,
.aw-mobile-submenu a:focus-visible {
    background: rgba(184, 245, 255, 0.28);
    color: var(--aw-primary);
}

.aw-mobile-submenu a.is-active {
    background: rgba(184, 245, 255, 0.28);
    color: var(--aw-primary);
    font-weight: 720;
}

.aw-mobile-menu__cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 12px;
    padding: 18px 12px 10px;
    border-top: 1px solid var(--aw-border);
}

.aw-mobile-menu__cta .aw-button {
    width: 100%;
}

.aw-mobile-menu__cta .aw-button:active {
    transform: translateY(1px);
}

.aw-form {
    display: grid;
    gap: 18px;
}

.aw-form label {
    display: grid;
    gap: 8px;
    color: var(--aw-heading);
    font-weight: 700;
}

.aw-form input,
.aw-form textarea,
.aw-form select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-sm);
    background: var(--aw-white);
    color: var(--aw-heading);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.aw-form textarea {
    min-height: 140px;
    resize: vertical;
}

.aw-form input:focus,
.aw-form textarea:focus,
.aw-form select:focus {
    border-color: var(--aw-accent);
    box-shadow: 0 0 0 4px rgba(184, 245, 255, 0.5);
}

@media (max-width: 1080px) {
    .aw-nav {
        display: none;
    }

    .aw-menu-button {
        display: inline-grid;
        place-items: center;
    }
}

@media (max-width: 860px) {
    :root {
        --aw-header-height: 74px;
    }

    .aw-container {
        width: min(100% - 36px, var(--aw-container));
    }

    .aw-header__inner {
        gap: 16px;
        min-height: 62px;
        padding: 0 14px;
    }

    .aw-header__actions .aw-button {
        display: none;
    }

    .aw-brand__mark {
        width: 42px;
        height: 42px;
    }

    .aw-brand__logo {
        width: 150px;
    }

    .aw-page-hero {
        min-height: 470px;
        padding: 104px 0 54px;
    }

    .aw-page-hero h1 {
        max-width: 12ch;
    }

    .aw-card-grid,
    .aw-cta {
        grid-template-columns: 1fr;
    }

    .aw-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .aw-cta__actions {
        justify-content: flex-start;
    }
}

.aw-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--aw-primary);
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 12px, 0) scale(0.9);
    transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(18px);
}

.aw-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.aw-scroll-top:hover {
    background: var(--aw-surface);
    color: var(--aw-accent);
    border-color: rgba(41, 156, 183, 0.28);
}

.aw-locale-bar {
    position: fixed;
    left: 28px;
    bottom: 28px;
    z-index: 40;
    display: flex;
    gap: 10px;
    transform: translate3d(0, 0, 0);
    transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.aw-locale-bar.is-hidden {
    transform: translate3d(0, calc(100% + 28px), 0);
}

.aw-locale-bar__item {
    position: relative;
}

.aw-locale-bar__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--aw-primary);
    font-size: 0.82rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(18px);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.aw-locale-bar__trigger:hover {
    border-color: rgba(41, 156, 183, 0.35);
    box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
}

.aw-locale-bar__trigger i {
    font-size: 0.82rem;
    color: var(--aw-accent);
}

.aw-locale-popover {
    position: absolute;
    left: 0;
    bottom: calc(100% + 12px);
    z-index: 50;
    display: none;
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(229, 231, 235, 0.86);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.14);
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.96);
    transform-origin: bottom left;
    transition: opacity 200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(20px);
}

.aw-locale-bar__item.is-open .aw-locale-popover {
    display: block;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.aw-locale-popover__label {
    padding: 6px 10px 8px;
    color: var(--aw-muted);
    font-size: 0.74rem;
    font-weight: 740;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aw-locale-popover__list {
    display: grid;
    gap: 2px;
    max-height: 290px;
    overflow: auto;
}

.aw-locale-popover__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--aw-heading);
    font-size: 0.92rem;
    font-weight: 620;
    text-align: left;
    transition: background 140ms ease;
}

.aw-locale-popover__option:hover {
    background: var(--aw-surface);
}

.aw-locale-popover__option.is-active {
    color: var(--aw-primary);
    font-weight: 720;
    background: rgba(184, 245, 255, 0.28);
}

.aw-locale-popover__option .fa-check {
    margin-left: auto;
    color: var(--aw-accent);
    font-size: 0.72rem;
}

.aw-locale-popover__symbol {
    margin-left: auto;
    color: var(--aw-muted);
    font-size: 0.78rem;
    font-weight: 580;
}

@media (max-width: 640px) {
    .aw-header .aw-container {
        width: 100%;
    }

    .aw-header__inner {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        padding: 0 16px;
    }

    .aw-header {
        padding: 0;
    }

    .aw-section {
        padding: 48px 0;
    }

    .aw-brand__text small {
        display: none;
    }

    .aw-brand__logo {
        width: 132px;
    }

    .aw-page-hero {
        min-height: 430px;
    }

    .aw-card {
        min-height: auto;
    }

    .aw-card__kicker {
        margin-bottom: 34px;
    }

    .aw-footer__links {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .aw-footer__links a {
        white-space: nowrap;
    }

    .aw-footer__grid {
        grid-template-columns: 1fr;
    }

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

    .aw-footer__social {
        justify-content: center;
    }

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