/* =========================================================
   EASY ISO CERTIFICATE
   COMPLETE WEBSITE CSS
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
    --navy: #0a255c;
    --navy-2: #14387e;

    --orange: #ff6f00;
    --orange-dark: #eb6200;

    --green: #2f9d62;

    --white: #ffffff;

    --text: #21324d;
    --muted: #66758f;

    --line: #d8dfeb;

    --soft: #f5f8fd;
    --soft-2: #eef3fb;

    --shadow:
        0 20px 60px rgba(10, 37, 92, 0.08);

    --shadow-sm:
        0 10px 30px rgba(10, 37, 92, 0.08);

    --radius: 22px;
    --radius-sm: 14px;

    --container:
        min(1180px, calc(100% - 2rem));

    --header-h: 94px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {
    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.65;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
    display: block;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


.container {
    width: var(--container);
    margin: 0 auto;
}


.section {
    padding: 92px 0;
    position: relative;
}


.section-tight {
    padding: 72px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.section-label {
    display: inline-flex;
    align-items: center;

    gap: 0.7rem;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: var(--navy);

    margin-bottom: 1rem;
}


.section-label::before {
    content: "";

    width: 34px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--navy)
        );
}


h1,
h2,
h3,
h4 {
    font-family:
        Montserrat,
        Inter,
        system-ui,
        sans-serif;

    color: var(--navy);

    line-height: 1.1;

    letter-spacing: -0.02em;

    margin: 0 0 1rem;
}


h1 {
    font-size:
        clamp(2.7rem, 5vw, 4.6rem);
}


h2 {
    font-size:
        clamp(2rem, 3vw, 3.1rem);
}


h3 {
    font-size:
        clamp(1.15rem, 2vw, 1.45rem);
}


p {
    margin: 0 0 1.05rem;

    color: var(--muted);
}


.lead {
    font-size: 1.07rem;

    max-width: 62ch;
}


.text-orange {
    color: var(--orange);
}


.text-green {
    color: var(--green);
}


/* =========================================================
   COMMON LAYOUT
   ========================================================= */

.grid {
    display: grid;

    gap: 1.4rem;
}


.btn-row {
    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    align-items: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0.7rem;

    padding:
        0.95rem 1.4rem;

    border-radius: 999px;

    font-weight: 700;

    border: 1px solid transparent;

    transition:
        0.25s ease;

    cursor: pointer;
}


.btn-primary {
    background: var(--orange);

    color: var(--white);

    box-shadow:
        0 14px 28px rgba(255, 111, 0, 0.22);
}


.btn-primary:hover {
    transform: translateY(-2px);

    background: var(--orange-dark);
}


.btn-secondary {
    background: var(--white);

    color: var(--navy);

    border-color:
        rgba(10, 37, 92, 0.14);

    box-shadow:
        var(--shadow-sm);
}


.btn-secondary:hover {
    transform: translateY(-2px);

    border-color:
        rgba(10, 37, 92, 0.22);
}


.btn-outline {
    background: transparent;

    color: var(--white);

    border-color:
        rgba(255, 255, 255, 0.28);
}


.btn-outline:hover {
    background:
        rgba(255, 255, 255, 0.08);
}


.link-arrow {
    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    font-weight: 700;

    color: var(--navy);
}


.link-arrow::after {
    content: "→";

    color: var(--orange);

    transition:
        transform 0.25s ease;
}


.link-arrow:hover::after {
    transform:
        translateX(4px);
}


/* =========================================================
   BADGES
   ========================================================= */

.badge-list {
    display: flex;

    flex-wrap: wrap;

    gap: 0.7rem;
}


.badge {
    padding:
        0.55rem 0.9rem;

    border:
        1px solid rgba(10, 37, 92, 0.1);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.85);

    font-weight: 700;

    font-size: 0.92rem;

    color: var(--navy);
}


/* =========================================================
   =========================================================
   HEADER
   =========================================================
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid rgba(10, 37, 92, 0.07);

    backdrop-filter:
        blur(12px)
        saturate(180%);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.site-header.scrolled {
    background:
        rgba(255, 255, 255, 0.98);

    box-shadow:
        0 10px 34px rgba(10, 37, 92, 0.08);
}


/* =========================================================
   HEADER SHELL
   ========================================================= */

.header-shell {
    width:
        min(
            calc(100% - 40px),
            1440px
        );

    min-height:
        var(--header-h);

    margin:
        0 auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        24px;
}


/* =========================================================
   HEADER LOGO
   ========================================================= */

.brand {
    display:
        inline-flex;

    align-items:
        center;

    flex:
        0 0 auto;

    width:
        255px;

    min-width:
        255px;

    text-decoration:
        none;
}


.brand img {
    display:
        block;

    width:
        255px;

    height:
        auto;

    max-width:
        100%;

    object-fit:
        contain;
}


.brand-text {
    display:
        none;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.nav-desktop {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        1 1 auto;

    min-width:
        0;

    gap:
        25px;

    white-space:
        nowrap;
}


.nav-desktop a {
    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 auto;

    width:
        auto;

    min-width:
        max-content;

    padding:
        9px 0;

    color:
        var(--navy);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        14px;

    font-weight:
        650;

    line-height:
        1.2;

    letter-spacing:
        0;

    white-space:
        nowrap;

    text-decoration:
        none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.nav-desktop a:hover {
    color:
        var(--orange);

    transform:
        translateY(-1px);
}


.nav-desktop a.active {
    color:
        var(--orange);
}


/* NAV UNDERLINE */

.nav-desktop a::after {
    content:
        "";

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        1px;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--navy)
        );

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.25s ease;
}


.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    transform:
        scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-end;

    flex:
        0 0 auto;

    gap:
        12px;
}


/* =========================================================
   PHONE BUTTON
   ========================================================= */

.header-phone {
    height:
        54px;

    padding:
        0 22px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    background:
        var(--orange);

    color:
        var(--white);

    border-radius:
        999px;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        15px;

    font-weight:
        750;

    line-height:
        1;

    white-space:
        nowrap;

    text-decoration:
        none;

    box-shadow:
        0 12px 30px
        rgba(255, 111, 0, 0.20);

    transition:
        0.25s ease;
}


.header-phone:hover {
    background:
        var(--orange-dark);

    color:
        var(--white);

    transform:
        translateY(-2px);

    box-shadow:
        0 16px 35px
        rgba(255, 111, 0, 0.28);
}


.phone-icon {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        19px;

    line-height:
        1;
}


/* =========================================================
   GET STARTED
   ========================================================= */

.header-start {
    height:
        54px;

    padding:
        0 27px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--white);

    color:
        var(--navy);

    border:
        1px solid rgba(10, 37, 92, 0.16);

    border-radius:
        999px;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size:
        15px;

    font-weight:
        750;

    white-space:
        nowrap;

    text-decoration:
        none;

    transition:
        0.25s ease;
}


.header-start:hover {
    background:
        var(--navy);

    color:
        var(--white);

    border-color:
        var(--navy);

    transform:
        translateY(-2px);
}


/* =========================================================
   MOBILE TOGGLE
   Compatible with:
   <button class="mobile-toggle">
       <span></span>
   </button>
   ========================================================= */

.mobile-toggle {
    width:
        46px;

    height:
        46px;

    padding:
        0;

    border:
        1px solid rgba(10, 37, 92, 0.12);

    border-radius:
        50%;

    background:
        var(--white);

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    box-shadow:
        var(--shadow-sm);
}


.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
    content:
        "";

    display:
        block;

    width:
        20px;

    height:
        2px;

    background:
        var(--navy);

    border-radius:
        2px;

    transition:
        0.25s ease;
}


.mobile-toggle span::before {
    transform:
        translateY(-6px);
}


.mobile-toggle span::after {
    transform:
        translateY(4px);
}


.mobile-toggle.active span {
    background:
        transparent;
}


.mobile-toggle.active span::before {
    transform:
        rotate(45deg)
        translate(4px, 4px);
}


.mobile-toggle.active span::after {
    transform:
        rotate(-45deg)
        translate(4px, -4px);
}


/* =========================================================
   MOBILE PANEL
   ========================================================= */

.mobile-panel {
    display:
        none;

    position:
        absolute;

    top:
        calc(100% + 10px);

    left:
        15px;

    right:
        15px;

    background:
        var(--white);

    border:
        1px solid rgba(10, 37, 92, 0.08);

    border-radius:
        20px;

    padding:
        10px;

    box-shadow:
        var(--shadow);

    overflow:
        hidden;
}


.mobile-panel.open {
    display:
        block;
}


.mobile-panel nav {
    display:
        grid;

    gap:
        3px;
}


.mobile-panel a {
    display:
        block;

    padding:
        14px 16px;

    border-radius:
        14px;

    color:
        var(--navy);

    font-weight:
        650;

    font-size:
        16px;

    line-height:
        1.3;

    text-decoration:
        none;

    transition:
        0.2s ease;
}


.mobile-panel a:hover,
.mobile-panel a.active {
    color:
        var(--orange);

    background:
        var(--soft);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position:
        relative;

    padding:
        clamp(90px, 12vw, 140px)
        0
        56px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 111, 0, 0.08),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 50%,
            #f9fbfe 100%
        );

    overflow:
        hidden;
}


.hero::before,
.page-hero::before {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    background:
        linear-gradient(
            135deg,
            transparent 0 79%,
            rgba(10, 37, 92, 0.96) 79% 85%,
            transparent 85% 100%
        );

    opacity:
        0.12;
}


.hero-grid,
.page-hero-grid {
    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap:
        3rem;

    align-items:
        center;
}


.hero-copy {
    max-width:
        620px;
}


.eyebrow-box {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        0.6rem;

    padding:
        0.52rem 0.9rem;

    border-radius:
        999px;

    background:
        rgba(10, 37, 92, 0.06);

    color:
        var(--navy);

    font-size:
        0.82rem;

    font-weight:
        800;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;

    margin-bottom:
        1.3rem;
}


.eyebrow-box::before {
    content:
        "";

    width:
        8px;

    height:
        8px;

    background:
        var(--orange);

    border-radius:
        50%;
}


.hero-copy p.lead {
    margin-bottom:
        1.7rem;
}


.hero-iso-list {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.6rem 1rem;

    align-items:
        center;

    margin-top:
        1.8rem;

    color:
        var(--navy);

    font-weight:
        700;
}


.hero-iso-list span {
    position:
        relative;
}


.hero-iso-list span:not(:last-child)::after {
    content:
        "|";

    margin-left:
        1rem;

    color:
        rgba(10, 37, 92, 0.35);
}


.hero-visual {
    position:
        relative;
}


.hero-card-wrap {
    position:
        relative;

    padding:
        1.3rem;

    border-radius:
        30px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 1)
        );

    box-shadow:
        var(--shadow);
}


.hero-card-wrap::before {
    content:
        "";

    position:
        absolute;

    inset:
        -14px auto auto -14px;

    width:
        88px;

    height:
        88px;

    border-top:
        3px solid rgba(255, 111, 0, 0.7);

    border-left:
        3px solid rgba(255, 111, 0, 0.7);

    border-radius:
        20px 0 0 0;
}


.hero-card-wrap::after {
    content:
        "";

    position:
        absolute;

    right:
        -18px;

    bottom:
        30px;

    width:
        120px;

    height:
        120px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #214d9c
        );

    clip-path:
        polygon(
            100% 0,
            0 55%,
            100% 100%
        );

    opacity:
        0.95;

    border-radius:
        22px;
}


.hero-card-wrap img {
    border-radius:
        26px;

    box-shadow:
        0 28px 60px
        rgba(10, 37, 92, 0.14);

    position:
        relative;

    z-index:
        1;
}


.floating-note {
    position:
        absolute;

    left:
        -22px;

    bottom:
        28px;

    z-index:
        2;

    background:
        var(--white);

    border-radius:
        18px;

    padding:
        0.95rem 1rem;

    box-shadow:
        var(--shadow-sm);

    display:
        grid;

    gap:
        0.2rem;
}


.floating-note strong {
    color:
        var(--navy);
}


.floating-note small {
    color:
        var(--muted);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    background:
        var(--white);

    border-top:
        1px solid rgba(10, 37, 92, 0.06);

    border-bottom:
        1px solid rgba(10, 37, 92, 0.06);
}


.trust-strip .container {
    display:
        grid;

    grid-template-columns:
        1.3fr repeat(4, 1fr);

    gap:
        1rem;

    align-items:
        center;

    padding:
        1.3rem 0;
}


.trust-item {
    display:
        flex;

    align-items:
        center;

    gap:
        0.8rem;

    padding:
        0.9rem 1rem;

    border-radius:
        18px;

    background:
        var(--soft);
}


.trust-item .icon {
    width:
        46px;

    height:
        46px;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    color:
        var(--navy);

    background:
        rgba(10, 37, 92, 0.08);

    font-size:
        1.25rem;
}


.trust-item.environment .icon {
    color:
        var(--green);

    background:
        rgba(47, 157, 98, 0.1);
}


/* =========================================================
   COMMON CARDS
   ========================================================= */

.card,
.stat-card,
.info-card,
.process-card {
    background:
        var(--white);

    border:
        1px solid rgba(10, 37, 92, 0.08);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow-sm);
}


.card,
.industry-card {
    transition:
        0.25s ease;
}


.card:hover,
.industry-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 24px 54px
        rgba(10, 37, 92, 0.12);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid,
.split-grid {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        2.2rem;

    align-items:
        center;
}


.feature-points {
    display:
        grid;

    gap:
        1rem;

    margin-top:
        1.5rem;
}


.feature-point {
    display:
        grid;

    grid-template-columns:
        56px 1fr;

    gap:
        0.9rem;

    padding:
        1rem;

    background:
        var(--soft);

    border-radius:
        18px;
}


.feature-point .badge-icon {
    width:
        56px;

    height:
        56px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        16px;

    background:
        var(--white);

    color:
        var(--orange);

    font-size:
        1.3rem;

    box-shadow:
        0 10px 24px
        rgba(10, 37, 92, 0.08);
}


.about-visual {
    padding:
        1.1rem;

    border-radius:
        28px;

    background:
        linear-gradient(
            180deg,
            var(--white),
            #f6f9fe
        );

    box-shadow:
        var(--shadow);
}


.about-visual img {
    border-radius:
        24px;
}


/* =========================================================
   STATS
   ========================================================= */

.stats-row {
    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        1rem;

    margin-top:
        1.5rem;
}


.stat-card {
    padding:
        1.2rem;
}


.stat-card strong {
    display:
        block;

    color:
        var(--navy);

    font-size:
        1.55rem;

    margin-bottom:
        0.35rem;
}


/* =========================================================
   CARD GRID
   ========================================================= */

.cards-2 {
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


.cards-3 {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.cards-4 {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.cards-5 {
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
}


/* =========================================================
   CERTIFICATION / SERVICE / WHY CARDS
   ========================================================= */

.cert-card,
.service-card,
.industry-card,
.benefit-card,
.why-card {
    position:
        relative;

    overflow:
        hidden;

    padding:
        1.55rem;
}


.cert-card::before,
.service-card::before,
.why-card::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    right:
        0;

    width:
        78px;

    height:
        78px;

    background:
        linear-gradient(
            135deg,
            transparent 0 46%,
            rgba(10, 37, 92, 0.98) 46% 100%
        );

    opacity:
        0.09;
}


.cert-top,
.service-top,
.industry-top,
.why-top {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1rem;

    margin-bottom:
        1rem;
}


.cert-number {
    font-weight:
        800;

    color:
        rgba(10, 37, 92, 0.28);

    font-size:
        0.82rem;

    letter-spacing:
        0.15em;
}


.icon-box {
    width:
        54px;

    height:
        54px;

    border-radius:
        16px;

    display:
        grid;

    place-items:
        center;

    background:
        var(--soft);

    color:
        var(--orange);

    font-size:
        1.3rem;

    box-shadow:
        inset
        0 0 0 1px
        rgba(10, 37, 92, 0.05);
}


.icon-box.green {
    color:
        var(--green);
}


.cert-card h3,
.service-card h3,
.why-card h3 {
    margin-bottom:
        0.4rem;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-strip {
    display:
        grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap:
        1rem;

    position:
        relative;
}


.process-strip::before {
    content:
        "";

    position:
        absolute;

    top:
        35px;

    left:
        8%;

    right:
        8%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            rgba(10, 37, 92, 0.22),
            rgba(255, 111, 0, 0.45),
            rgba(10, 37, 92, 0.22)
        );

    z-index:
        0;
}


.process-card {
    position:
        relative;

    z-index:
        1;

    padding:
        1.4rem 1.1rem 1.2rem;

    text-align:
        center;
}


.step-dot {
    width:
        70px;

    height:
        70px;

    border-radius:
        50%;

    margin:
        0 auto 1rem;

    display:
        grid;

    place-items:
        center;

    font-weight:
        800;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--navy),
            #2555aa
        );

    box-shadow:
        0 18px 40px
        rgba(10, 37, 92, 0.22);
}


.process-card:nth-child(2) .step-dot,
.process-card:nth-child(4) .step-dot {
    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ff9141
        );
}


/* =========================================================
   WHY US
   ========================================================= */

.why-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        1.25rem;
}


.why-card {
    padding-top:
        1.8rem;
}


.why-no {
    color:
        rgba(10, 37, 92, 0.23);

    font-weight:
        800;

    letter-spacing:
        0.15em;

    margin-bottom:
        0.8rem;
}


/* =========================================================
   INDUSTRIES
   ========================================================= */

.industry-card {
    padding:
        1.2rem 1.15rem;

    background:
        linear-gradient(
            180deg,
            var(--white),
            #fbfcfe
        );
}


.industry-card .icon-box {
    width:
        48px;

    height:
        48px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.benefits-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.benefit-card {
    padding:
        1.4rem;

    background:
        var(--soft);

    border-radius:
        22px;
}


.benefit-card strong {
    display:
        block;

    color:
        var(--navy);

    margin-bottom:
        0.45rem;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-banner {
    padding:
        2rem;

    border-radius:
        30px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 111, 0, 0.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #081d47,
            #12346c 55%,
            #0b275d 100%
        );

    position:
        relative;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);
}


.cta-banner::after {
    content:
        "";

    position:
        absolute;

    right:
        -20px;

    top:
        0;

    width:
        200px;

    height:
        100%;

    background:
        linear-gradient(
            135deg,
            transparent 0 35%,
            rgba(255, 111, 0, 0.95) 35% 46%,
            transparent 46% 52%,
            rgba(255, 255, 255, 0.92) 52% 54%,
            transparent 54% 100%
        );

    opacity:
        0.9;
}


.cta-content {
    position:
        relative;

    z-index:
        1;

    max-width:
        740px;
}


.cta-banner h2,
.cta-banner p {
    color:
        var(--white);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
    display:
        grid;

    grid-template-columns:
        0.92fr 1.08fr;

    gap:
        1.5rem;
}


.info-card,
.contact-form {
    padding:
        1.5rem;
}


.contact-list {
    display:
        grid;

    gap:
        1rem;
}


.contact-item {
    display:
        grid;

    grid-template-columns:
        54px 1fr;

    gap:
        0.95rem;

    align-items:
        start;
}


.contact-item .icon-box {
    width:
        54px;

    height:
        54px;
}


/* =========================================================
   FORM
   ========================================================= */

.form-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        1rem;
}


.field {
    display:
        grid;

    gap:
        0.45rem;
}


.field.full {
    grid-column:
        1 / -1;
}


label {
    font-weight:
        700;

    color:
        var(--navy);

    font-size:
        0.94rem;
}


input,
select,
textarea {
    width:
        100%;

    border:
        1px solid rgba(10, 37, 92, 0.12);

    background:
        var(--white);

    color:
        var(--text);

    border-radius:
        16px;

    padding:
        0.95rem 1rem;

    outline:
        none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


input:focus,
select:focus,
textarea:focus {
    border-color:
        rgba(255, 111, 0, 0.65);

    box-shadow:
        0 0 0 4px
        rgba(255, 111, 0, 0.08);
}


textarea {
    min-height:
        150px;

    resize:
        vertical;
}


.form-note {
    font-size:
        0.88rem;

    color:
        var(--muted);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background:
        #081b45;

    color:
        rgba(255, 255, 255, 0.82);

    margin-top:
        0;
}


.footer-main {
    padding:
        72px 0 24px;

    display:
        grid;

    grid-template-columns:
        1.25fr 0.85fr 0.85fr 1fr;

    gap:
        1.5rem;
}


.footer-main h4 {
    color:
        var(--white);

    margin-bottom:
        1rem;

    font-size:
        1rem;
}


.footer-logo {
    margin-bottom:
        1rem;
}


.footer-logo img {
    width:
        clamp(170px, 18vw, 230px);

    filter:
        brightness(0) invert(1);
}


.footer-links {
    display:
        grid;

    gap:
        0.7rem;
}


.footer-links a:hover {
    color:
        var(--white);
}


.footer-links span {
    line-height:
        1.6;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);

    padding:
        1rem 0 1.5rem;

    color:
        rgba(255, 255, 255, 0.68);

    display:
        flex;

    justify-content:
        space-between;

    gap:
        1rem;

    flex-wrap:
        wrap;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    position:
        relative;

    padding:
        118px 0 56px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );

    overflow:
        hidden;
}


.page-hero-copy p {
    max-width:
        60ch;
}


/* =========================================================
   MINI HIGHLIGHTS
   ========================================================= */

.mini-highlight {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        0.8rem;

    margin-top:
        1.3rem;
}


.mini-highlight span {
    padding:
        0.65rem 0.95rem;

    border-radius:
        999px;

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

    font-weight:
        700;

    color:
        var(--navy);
}


/* =========================================================
   DUAL COLUMN LIST
   ========================================================= */

.dual-column-list {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        0.8rem 1rem;
}


.bullet {
    display:
        flex;

    gap:
        0.8rem;

    align-items:
        flex-start;

    padding:
        0.95rem 1rem;

    border-radius:
        18px;

    background:
        var(--soft);
}


.bullet i {
    color:
        var(--orange);

    font-style:
        normal;

    font-weight:
        900;
}


/* =========================================================
   NOTE BOX
   ========================================================= */

.note-box {
    padding:
        1.25rem;

    border-left:
        4px solid var(--orange);

    background:
        rgba(255, 111, 0, 0.06);

    border-radius:
        0 18px 18px 0;

    color:
        var(--text);
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity:
        0;

    transform:
        translateY(24px);

    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}


.reveal.visible {
    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   SCREEN READER ONLY
   ========================================================= */

.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;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (max-width: 1320px) {

    .header-shell {
        width:
            calc(100% - 32px);

        gap:
            18px;
    }


    .brand {
        width:
            230px;

        min-width:
            230px;
    }


    .brand img {
        width:
            230px;
    }


    .nav-desktop {
        gap:
            19px;
    }


    .nav-desktop a {
        font-size:
            13px;
    }


    .header-phone {
        padding:
            0 18px;

        font-size:
            14px;
    }


    .header-start {
        padding:
            0 21px;

        font-size:
            14px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 1120px) {

    .header-shell {
        width:
            calc(100% - 28px);

        gap:
            14px;
    }


    .brand {
        width:
            205px;

        min-width:
            205px;
    }


    .brand img {
        width:
            205px;
    }


    .nav-desktop {
        gap:
            13px;
    }


    .nav-desktop a {
        font-size:
            12px;
    }


    .header-phone {
        height:
            50px;

        padding:
            0 14px;

        font-size:
            12px;
    }


    .header-start {
        height:
            50px;

        padding:
            0 15px;

        font-size:
            12px;
    }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 980px) {

    /* HEADER */

    .header-shell {
        min-height:
            78px;

        width:
            calc(100% - 30px);

        gap:
            15px;
    }


    .brand {
        width:
            auto;

        min-width:
            0;

        flex:
            1 1 auto;
    }


    .brand img {
        width:
            215px;
    }


    /* HIDE DESKTOP MENU */

    .nav-desktop {
        display:
            none;
    }


    /* HIDE DESKTOP PHONE */

    .desktop-call {
        display:
            none !important;
    }


    /* HEADER ACTIONS */

    .header-actions {
        gap:
            9px;
    }


    /* GET STARTED */

    .header-start {
        height:
            46px;

        padding:
            0 19px;

        font-size:
            14px;
    }


    /* MOBILE TOGGLE */

    .mobile-toggle {
        display:
            inline-flex;
    }


    /* MAIN LAYOUT */

    .hero-grid,
    .page-hero-grid,
    .about-grid,
    .split-grid,
    .contact-grid,
    .footer-main {
        grid-template-columns:
            1fr;
    }


    .trust-strip .container {
        grid-template-columns:
            1fr 1fr;
    }


    .cards-3,
    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .cards-4 {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .cards-5 {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .process-strip {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-strip::before {
        display:
            none;
    }


    .why-grid {
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --header-h:
            74px;

        --container:
            min(
                100% - 1.25rem,
                1180px
            );
    }


    /* HEADER */

    .header-shell {
        min-height:
            74px;

        width:
            calc(100% - 24px);
    }


    .brand img {
        width:
            185px;
    }


    .header-start {
        display:
            none;
    }


    .mobile-toggle {
        display:
            inline-flex;

        flex:
            0 0 46px;
    }


    /* TRUST */

    .trust-strip .container {
        grid-template-columns:
            1fr;
    }


    /* GRIDS */

    .stats-row,
    .cards-2,
    .cards-3,
    .cards-4,
    .cards-5,
    .benefits-grid,
    .form-grid,
    .why-grid,
    .dual-column-list {
        grid-template-columns:
            1fr;
    }


    /* PROCESS */

    .process-strip {
        grid-template-columns:
            1fr;
    }


    /* HERO */

    .hero {
        padding-top:
            90px;
    }


    .hero-card-wrap::after {
        width:
            90px;

        height:
            90px;
    }


    .floating-note {
        position:
            static;

        margin-top:
            1rem;
    }


    /* BUTTONS */

    .btn {
        width:
            100%;
    }


    .btn-row {
        align-items:
            stretch;
    }


    /* CTA */

    .cta-banner {
        padding:
            1.5rem;
    }


    /* FOOTER */

    .footer-main {
        padding:
            55px 0 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .section {
        padding:
            76px 0;
    }


    .hero,
    .page-hero {
        padding-top:
            88px;
    }


    h1 {
        font-size:
            clamp(
                2.2rem,
                10vw,
                3.2rem
            );
    }


    h2 {
        font-size:
            clamp(
                1.8rem,
                8vw,
                2.4rem
            );
    }


    .brand img {
        width:
            170px;
    }


    .mobile-toggle {
        width:
            44px;

        height:
            44px;
    }


    .hero-iso-list {
        gap:
            0.6rem;
    }


    .hero-iso-list span::after {
        display:
            none !important;
    }


    .cta-banner {
        padding:
            1.35rem;
    }


    .mobile-panel {
        left:
            10px;

        right:
            10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .header-shell {
        width:
            calc(100% - 18px);
    }


    .brand img {
        width:
            150px;
    }


    .mobile-toggle {
        width:
            42px;

        height:
            42px;
    }


    .mobile-panel {
        left:
            8px;

        right:
            8px;
    }

}