﻿/* =========================================
   Sofia Sans Webfonts
========================================= */

/* Thin (100) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-100-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-100-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-100-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-100-italic.woff") format("woff");
}

/* Light (300) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-300-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-300-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-300-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-300-italic.woff") format("woff");
}

/* Regular (400) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-400-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-400-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-400-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-400-italic.woff") format("woff");
}

/* SemiBold (600) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-600-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-600-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-600-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-600-italic.woff") format("woff");
}

/* Bold (700) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-700-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-700-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-700-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-700-italic.woff") format("woff");
}

/* Black (900) */
@font-face {
    font-family: "Sofia Sans";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-900-normal.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-900-normal.woff") format("woff");
}

@font-face {
    font-family: "Sofia Sans";
    font-style: italic;
    font-weight: 900;
    font-display: swap;
    src: url("/Styles/Fonts/webfonts/sofia-sans-latin-900-italic.woff2") format("woff2"), url("/Styles/Fonts/webfonts/sofia-sans-latin-900-italic.woff") format("woff");
}

/* =========================================
   Theme variables
========================================= */
:root {
    --fw-bg: #000;
    --fw-bg-2: #444;
    --fw-bg-3: #eee;
    --fw-bg-4: #fcfcfc;
    --fw-accent: #777;
    --fw-text: #17212a;
    --fw-muted: #6b7a85;
    --fw-border: #ddd;
    --fw-danger: #d93025;
    --fw-surface: #ffffff;
    --fw-shadow: 0 10px 15px rgba(0,0,0,.06);
    --fw-radius: 0px;
    --form-max: 1120px;
    /* dynamic sizes (updated by JS) */
    --nav-h: 72px;
}

/* =========================================
   Base + sticky footer skeleton
========================================= */
html, body {
    height: 100%;
}

body {
    margin: 0;
    background: #fff;
    font-family: "Sofia Sans",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
}

form {
    display: flex;
    flex-direction: column;
    min-height: 100svh; /* sticky footer base */
}

.page-main {
    flex: 1 1 auto; /* take remaining space between nav and footer */
    display: flex;
    flex-direction: column;
    min-block-size: 0;
}

/* Your footer control root and inner element */
#Footer {
    flex: 0 0 auto;
    margin-top: auto;
}

    #Footer .content {
        margin-top: auto;
    }

/* =========================================
   Header bar + menu (unchanged)
========================================= */
.header {
    position: sticky;
    top:0;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index:1500;
}

.header-bar {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right,#00e5d1 0%,#00b8f4 30%,#008dfd 60%,#2f5cff 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}

h1 {
    font-weight: 100;
    font-size: 2em;
}

.logo {
    width: 200px;
    height: 100px;
    fill: #fff;
    margin: 15px;
    display: inline-block;
    vertical-align: middle;
    background: url(/Styles/Theme/Images/FloodwiseWhite.png) center/contain no-repeat;
}

.inner-header {
    margin: 0;
    padding: 0;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.waves {
    position: fixed;
    width: 100%;
    height: 10vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
    bottom: 15vh;
    left: 0;
}

/* Footer content block */
.content {
    text-align: center;
    background: #fcfcfc;
    border-top: 1px solid #ccc;
    color: #333;
    bottom: 0;
    left: 0;
    padding: 10px;
    line-height: 15px;
    flex-direction: row;
    flex-wrap: wrap;
}

    .content .FooterLogo {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #eee;
        padding: 10px;
    }

        .content .FooterLogo img {
            width: 80px;
        }

    .content p {
        padding: 0;
        margin: 5px 0 0;
        max-width: 1000px;
    }

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

    .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }

    100% {
        transform: translate3d(85px,0,0);
    }
}

@media (max-width:768px) {
    .header {
        flex-direction: column;
    }
}

/* Navigation */
nav {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 14px 16px;
    text-align: center;
    border-radius: 5px;
    transition: .5s all;
}

    nav a:hover {
        background: #fff;
        color: #575757;
    }

.menu-icon {
    display: none;
    color: #fff;
    cursor: pointer;
    padding: 14px 16px;
    text-align: right;
}

@media screen and (max-width:600px) {
    .menu-icon {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
    }

    .menu-toggle:checked + .menu-icon + .menu {
        display: flex;
    }
}

/* =========================================
   Background Video + Hero (fixed)
========================================= */
/* Video sits under the header; height accounts for header */
.background-video {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100vw;
    height: calc(100svh - var(--nav-h));
    object-fit: cover;
    z-index: -1;
}

/* Full-viewport hero under the header */
.Hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(16px,4vh,48px) 16px;
    min-height: calc(100svh - var(--nav-h));
    color: #fff;
    z-index: 1; /* over the video */
}

/* Headline (no absolute positioning) */
.HomeHeader {
    margin: 0;
    font-weight: 800;
    line-height: 1.05;
    font-size: clamp(2rem,6vw,4rem);
    max-width: min(90vw,12ch);
}

/* =========================================
   Legacy bits (kept in case you still use them)
========================================= */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 88vh;
}

/* =========================================
   About Section (unchanged)
========================================= */
.HomeAbout {
    background: #fff;
    color: var(--fw-text);
}

    .HomeAbout .HA-wrap {
        width: min(96vw,1120px);
        margin: 0 auto;
        padding: clamp(24px,4vw,40px) 0;
    }

    /* Intro */
    .HomeAbout .HA-intro h2 {
        font-size: clamp(1.6rem,3.2vw,2.2rem);
        margin: 0 0 8px;
    }

    .HomeAbout .lead {
        color: #526573;
        margin: 0 0 16px;
    }

    .HomeAbout .HA-cta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Buttons */
    .HomeAbout .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        border-radius: 0;
        cursor: pointer;
        border: 1px solid transparent;
        text-decoration: none;
    }

        .HomeAbout .btn i {
            font-size: 16px;
        }

        .HomeAbout .btn.btn-primary {
            background: var(--fw-bg);
            color: #fff;
            box-shadow: 0 8px 20px rgba(15,58,74,.18);
        }

            .HomeAbout .btn.btn-primary:hover {
                filter: brightness(1.06);
            }

        .HomeAbout .btn.btn-ghost {
            background: #f4f9fc;
            color: #0d3f4f;
            border: 1px solid #d9e4ea;
        }

            .HomeAbout .btn.btn-ghost:hover {
                background: #eef6fb;
            }

    /* Stats */
    .HomeAbout .HA-stats {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(4,minmax(140px,1fr));
        margin: 20px 0 6px;
    }

@media (max-width:960px) {
    .HomeAbout .HA-stats {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:520px) {
    .HomeAbout .HA-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.HomeAbout .HA-stat {
    border: 1px solid #e6edf2;
    border-radius: 0;
    background: #fbfdff;
    padding: 14px;
    text-align: center;
}

    .HomeAbout .HA-stat .n {
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--fw-bg);
    }

    .HomeAbout .HA-stat .t {
        color: #6b7b86;
        font-size: .92rem;
        margin-top: 2px;
    }

/* Feature grid */
.HomeAbout .HA-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3,minmax(220px,1fr));
    margin-top: 14px;
}

@media (max-width:960px) {
    .HomeAbout .HA-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:640px) {
    .HomeAbout .HA-grid {
        grid-template-columns: 1fr;
    }
}

.HomeAbout .HA-card {
    border: 1px solid #e6edf2;
    background: #fff;
    border-radius: 0;
    box-shadow: var(--fw-shadow);
    padding: 16px;
}

    .HomeAbout .HA-card .ico {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #e8f4fb;
        color: var(--fw-bg);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .HomeAbout .HA-card h3 {
        margin: 0 0 6px;
        font-size: 1.1rem;
    }

    .HomeAbout .HA-card p {
        margin: 0;
        color: #4a5b65;
    }

/* Promise band */
.HomeAbout .HA-band {
    display: grid;
    gap: 16px;
    align-items: center;
    grid-template-columns: 1.6fr 1fr;
    background: linear-gradient(90deg,#fbfeff,#f3faff);
    border: 1px solid #e6edf2;
    border-radius: 0;
    padding: 16px;
    margin-top: 16px;
}

@media (max-width:900px) {
    .HomeAbout .HA-band {
        grid-template-columns: 1fr;
    }
}

.HomeAbout .band-text h3 {
    margin: 0 0 6px;
}

.HomeAbout .band-text p {
    margin: 0;
    color: #4a5b65;
}

.HomeAbout .band-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .HomeAbout .band-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #30424a;
        margin: 6px 0;
    }

    .HomeAbout .band-list i {
        color: var(--fw-bg);
    }

/* CTA strip (resend) */
.HA-ctaStrip {
    background: #0d3f4f;
    color: #fff;
}

    .HA-ctaStrip .strip {
        display: grid;
        gap: 12px;
        align-items: center;
        grid-template-columns: 1.3fr 1fr;
    }

@media (max-width:900px) {
    .HA-ctaStrip .strip {
        grid-template-columns: 1fr;
    }
}

.HA-ctaStrip h3 {
    margin: 0;
}

.HA-sub {
    display: flex;
    gap: 10px;
}

    .HA-sub input {
        flex: 1;
        border: 1px solid #1e5c70;
        border-radius: 0;
        background: #093241;
        color: #fff;
        padding: 12px 14px;
    }

        .HA-sub input::placeholder {
            color: #c7dae1;
        }

    .HA-sub .btn-primary {
        background: #0ea2c7;
        border-color: #0ea2c7;
        color: #083141;
    }

        .HA-sub .btn-primary:hover {
            filter: brightness(1.06);
        }

/* Chat strip */
.HA-chatStrip {
    background: #082d39;
    color: #fff;
}

    .HA-chatStrip .chat {
        display: grid;
        gap: 12px;
        align-items: center;
        grid-template-columns: 1.3fr auto;
    }

@media (max-width:900px) {
    .HA-chatStrip .chat {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .HA-chatBtns {
        justify-content: center;
    }
}

.HA-chatStrip h3 {
    margin: 0;
}

.HA-chatBtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .HA-chatBtns .btn-primary {
        background: #0ea2c7;
        border-color: #0ea2c7;
        color: #083141;
    }

        .HA-chatBtns .btn-primary:hover {
            filter: brightness(1.07);
        }

    .HA-chatBtns .btn-ghost {
        background: transparent;
        border: 1px solid #2b4f59;
        color: #b8d7e2;
    }

        .HA-chatBtns .btn-ghost:hover {
            background: #093c4c;
        }

/* a11y helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

/* helper note text */
.HA-note {
    margin: 6px 0 0;
    color: #cfe6ee;
    line-height: 1.4;
    max-width: 60ch;
}

@media (max-width:900px) {
    .HA-note {
        margin-bottom: 8px;
    }
}


/* =========================================
   Floodwise Gradient Hero (self-contained)
========================================= */

:root {
    --fw-grad-start: #00e5d1;
    --fw-grad-mid1: #00b8f4;
    --fw-grad-mid2: #008dfd;
    --fw-grad-end: #2f5cff;
}

.Hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100svh - var(--nav-h));
    background: linear-gradient( 120deg, var(--fw-grad-start) 0%, var(--fw-grad-mid1) 25%, var(--fw-grad-mid2) 60%, var(--fw-grad-end) 100% );
    color: #fff;
    overflow: hidden;
}

    .Hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.15);
        mix-blend-mode: multiply;
        z-index: 0;
    }

.Hero-wrap {
    position: relative;
    z-index: 1;
    width: min(92vw, 900px);
}

.Hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 16px;
}

.Hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 300;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 65ch;
}

/* ---- Buttons (local to hero) ---- */
.Hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.Hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

    .Hero-btn i {
        font-size: 1rem;
    }

/* Primary (bright) button */
.Hero-btn-primary {
    background: #fff;
    color: #083141;
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

    .Hero-btn-primary:hover {
        background: #f5f9ff;
        color: #021e2e;
        transform: translateY(-1px);
    }

/* Ghost (transparent) button */
.Hero-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}

    .Hero-btn-ghost:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: #fff;
        transform: translateY(-1px);
    }


/* ===== Feedback message styles ===== */
.HA-message {
    margin-top: 10px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: left;
    max-width: 400px;
}

    .HA-message.show {
        opacity: 1;
        transform: translateY(0);
    }

    .HA-message.success {
        color: #0c5132;
        background: #d1f2e0;
        border: 1px solid #9be0b8;
        padding: 8px 12px;
        border-radius: 4px;
    }

    .HA-message.error {
        color: #842029;
        background: #f8d7da;
        border: 1px solid #f5c2c7;
        padding: 8px 12px;
        border-radius: 4px;
    }

/* ===== Express Interest panels (no clipping, no manual heights) ===== */
.HA-sub-wrapper {
    display: grid; /* stack children on top of each other */
    align-items: center;
    width: 100%;
    max-width: 560px; /* room for two inputs + button */
    row-gap: 0;
}

.HA-sub,
.HA-thanks {
    grid-area: 1 / 1; /* both occupy the same grid cell */
    transition: opacity .45s ease, transform .45s ease, filter .45s ease;
}

/* --- Form layout --- */
.HA-sub {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

    .HA-sub input {
        flex: 1 1 260px;
        min-width: 220px;
    }

    .HA-sub .btn {
        flex: 0 0 auto;
    }

/* --- Thank-you panel --- */
.HA-thanks {
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.15);
    border: 1px solid rgba(255,255,255,.2);
    padding: 20px;
    border-radius: 4px;
    opacity: 0; /* hidden by default */
    transform: translateY(8px);
    pointer-events: none; /* don't block inputs until shown */
}

    .HA-thanks i {
        font-size: 2.2rem;
        color: #00e5d1;
        margin-bottom: 8px;
    }

    .HA-thanks h4 {
        margin: 0 0 6px;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .HA-thanks p {
        margin: 0;
        color: #eaf8fb;
    }

    /* --- When thanks is shown --- */
    .HA-thanks.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        z-index: 2;
    }

.HA-sub.hide {
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(.3px);
}


.AirHero {
    background: linear-gradient(135deg, #1de9b6 0%, #1565c0 60%, #0d47a1 100%);
    min-height: calc(100svh - var(--nav-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(48px, 8vh, 96px) 20px;
    color: #fff;
}

.AirHero-wrap {
    max-width: 760px;
}

.AirHero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
}

.AirHero p {
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.65;
    color: rgba(255,255,255,.9);
}

.AirBtn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 11px 24px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.14);
    text-decoration: none;
}

.AirSection {
    background: #fff;
    padding: clamp(44px, 6vw, 70px) 20px;
}

.AirWrap {
    width: min(94vw, 980px);
    margin: 0 auto;
}

.AirSection h2 {
    color: #0f172a;
    font-weight: 800;
    margin: 0 0 10px;
}

.AirLead {
    color: #475569;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 0 42px;
}

.AirTwoCol {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}

.AirTwoCol h3 {
    color: #1565c0;
}

.AirTwoCol p,
.AirCard p,
.AirTypeGrid p,
.AirSteps p {
    color: #475569;
    line-height: 1.7;
}

.AirImage {
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}

.AirImage img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.AirCards,
.AirTypeGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
}

.AirCard,
.AirTypeGrid article {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    padding: 22px 20px;
}

.AirIcon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f4fb;
    color: #1565c0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.AirCard h4,
.AirTypeGrid h4 {
    margin: 0 0 8px;
    color: #0f172a;
}

.AirBlue {
    background: #f0f4ff;
}

.AirTypeGrid {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.AirTypeGrid article {
    background: #fff;
    border-color: #dbeafe;
}

.AirTypeGrid h4 {
    color: #1565c0;
}

.AirSteps {
    background: linear-gradient(135deg, #e0f2fe 0%, #ede9fe 100%);
    padding: clamp(24px, 4vw, 38px);
}

.AirSteps a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #1565c0;
    text-decoration: none;
    margin-top: 14px;
    line-height: 1.5;
}

.AirWarning {
    background: #fff8f0;
    border-top: 1px solid #fed7aa;
    padding: clamp(36px, 5vw, 56px) 20px;
}

.AirWarning h2 {
    color: #c2410c;
    margin: 0 0 20px;
}

.AirWarningGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px 20px;
}

.AirWarningGrid p {
    color: #7c2d12;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .AirTwoCol,
    .AirCards,
    .AirTypeGrid,
    .AirWarningGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .AirTwoCol,
    .AirCards,
    .AirTypeGrid,
    .AirWarningGrid {
        grid-template-columns: 1fr;
    }

    .AirHero {
        min-height: auto;
    }
}

