
:root {
    --ink: #12324a;
    --ink-strong: #082b46;
    --muted: #66788a;
    --line: #dfe7ed;
    --paper: #fffdfa;
    --paper-soft: #f8fbfd;
    --canvas: #f2f6fa;
    --blue: #165c92;
    --blue-dark: #0d4964;
    --teal: #0b7c82;
    --green: #25805c;
    --gold: #a77a32;
    --danger: #b74b49;
    --shadow-sm: 0 8px 24px rgba(16, 52, 77, .07);
    --shadow-md: 0 18px 48px rgba(16, 52, 77, .12);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 5%, rgba(22, 92, 146, .08), transparent 26rem),
        radial-gradient(circle at 92% 12%, rgba(167, 122, 50, .08), transparent 28rem),
        linear-gradient(180deg, #f6f9fc 0%, #eef4f8 100%);
    color: var(--ink);
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.85;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(30deg, rgba(13, 73, 100, .035) 12%, transparent 12.5%, transparent 87%, rgba(13, 73, 100, .035) 87.5%, rgba(13, 73, 100, .035)),
        linear-gradient(150deg, rgba(13, 73, 100, .035) 12%, transparent 12.5%, transparent 87%, rgba(13, 73, 100, .035) 87.5%, rgba(13, 73, 100, .035));
    background-size: 72px 126px;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

svg {
    display: block;
}

.skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: .7rem 1rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-shell {
    width: min(1500px, calc(100% - 36px));
    margin: 18px auto 40px;
    border: 1px solid rgba(18, 50, 74, .09);
    border-radius: 34px;
    background: rgba(255, 253, 250, .92);
    box-shadow: 0 30px 90px rgba(17, 54, 80, .12);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 88px;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid rgba(18, 50, 74, .08);
    background: rgba(255, 253, 250, .91);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.brand-mark {
    width: 52px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px 16px 20px 20px;
    background: linear-gradient(145deg, var(--blue-dark), var(--teal));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.24), 0 10px 24px rgba(13,73,100,.20);
}

.brand-mark svg {
    width: 38px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-mark .mark-lines {
    stroke-width: 2;
    opacity: .9;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.5;
}

.brand-copy strong {
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    color: var(--ink-strong);
}

.brand-copy small {
    margin-top: 2px;
    color: var(--muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: .65rem .9rem;
    border: 0;
    background: transparent;
    border-radius: 12px;
    color: #526777;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue-dark);
    background: rgba(22,92,146,.06);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    right: 22%;
    left: 22%;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 46px;
    padding: .7rem 1.05rem;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--blue-dark), var(--teal));
    box-shadow: 0 10px 24px rgba(13,73,100,.20);
    transition: transform .2s ease, box-shadow .2s ease;
}

.header-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(13,73,100,.28);
}

.header-login svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.hero {
    position: relative;
    margin: 22px;
    min-height: 580px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(249,245,236,.96)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(18, 50, 74, .08), var(--shadow-sm);
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding: clamp(42px, 6vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    color: var(--teal);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: -.01em;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), transparent);
}

.hero h1 {
    margin: 18px 0 18px;
    color: var(--ink-strong);
    font-size: clamp(2.15rem, 4.2vw, 4.6rem);
    line-height: 1.28;
    letter-spacing: -.055em;
}

.hero h1 span {
    display: block;
    color: var(--blue-dark);
}

.hero-copy > p {
    max-width: 680px;
    margin: 0;
    color: #566d7e;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 50px;
    padding: .78rem 1.2rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 12px 28px rgba(22,92,146,.24);
}

.btn-primary:hover,
.btn-light:hover {
    transform: translateY(-2px);
}

.btn-quiet {
    color: var(--ink);
    border: 1px solid rgba(18,50,74,.14);
    background: rgba(255,255,255,.74);
}

.btn-quiet:hover {
    background: #fff;
}

.hero-note {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6b7c89;
    font-size: .94rem;
}

.hero-note-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(167,122,50,.10);
}

.hero-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.86) contrast(.98);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,253,250,.94) 0%, rgba(255,253,250,.22) 28%, rgba(7,34,50,.08) 100%),
        linear-gradient(180deg, transparent 56%, rgba(4,32,47,.35) 100%);
}

.hero-quote {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 3;
    max-width: 360px;
    padding: 17px 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 18px;
    color: #fff;
    background: rgba(6,45,63,.52);
    backdrop-filter: blur(10px);
}

.hero-quote p {
    margin: 0;
    line-height: 1.9;
    font-size: .95rem;
}

.quote-mark {
    font-size: 2.2rem;
    line-height: 1;
    opacity: .8;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 42%;
    height: 100%;
    pointer-events: none;
    opacity: .28;
    background:
        radial-gradient(circle at center, transparent 55%, rgba(13,73,100,.12) 56% 57%, transparent 58%) 0 0/42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent);
}

.services-section,
.support-section {
    padding: clamp(54px, 6vw, 88px) clamp(22px, 4vw, 62px);
}

.services-section {
    background: linear-gradient(180deg, rgba(247,250,252,.62), rgba(255,253,250,.86));
}

.section-heading {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    gap: 30px;
    align-items: end;
}

.section-heading h2,
.support-intro h2 {
    margin: 9px 0 0;
    color: var(--ink-strong);
    font-size: clamp(1.7rem, 3vw, 2.75rem);
    line-height: 1.45;
    letter-spacing: -.04em;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 390px;
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18,50,74,.09);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 100% 0%, rgba(22,92,146,.06), transparent 10rem),
        #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(22,92,146,.20);
    box-shadow: var(--shadow-md);
}

.service-card--login {
    background:
        radial-gradient(circle at 100% 0%, rgba(22,92,146,.15), transparent 13rem),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.card-topline {
    position: absolute;
    top: 0;
    right: 22%;
    left: 22%;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: .75;
}

.service-card:nth-child(2) .card-topline {
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.service-card:nth-child(3) .card-topline {
    background: linear-gradient(90deg, transparent, #2b68b2, transparent);
}

.service-card:nth-child(4) .card-topline {
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.service-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 20px 20px 25px 25px;
    color: var(--blue-dark);
    background: linear-gradient(145deg, rgba(22,92,146,.14), rgba(255,255,255,.92));
    box-shadow: inset 0 0 0 1px rgba(22,92,146,.14);
}

.service-icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon--green {
    color: var(--green);
    background: linear-gradient(145deg, rgba(37,128,92,.13), rgba(255,255,255,.95));
}

.service-icon--blue {
    color: #2b68b2;
}

.service-icon--teal {
    color: var(--teal);
    background: linear-gradient(145deg, rgba(11,124,130,.13), rgba(255,255,255,.95));
}

.service-number {
    position: absolute;
    top: 26px;
    left: 24px;
    color: rgba(18,50,74,.16);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.service-card h3 {
    margin: 22px 0 10px;
    color: var(--ink-strong);
    font-size: 1.3rem;
    line-height: 1.55;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
}

.card-action {
    width: 100%;
    min-height: 46px;
    margin-top: auto;
    padding: .7rem .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    border: 1px solid rgba(18,50,74,.10);
    border-radius: 14px;
    color: var(--ink);
    font-weight: 700;
    background: #f7fafc;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.card-action:hover {
    color: var(--blue-dark);
    border-color: rgba(22,92,146,.20);
    background: #eef5fb;
}

.card-action--active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 10px 22px rgba(22,92,146,.20);
}

.card-action--active:hover {
    color: #fff;
    background: linear-gradient(135deg, #1a69a7, #0c405a);
}

.card-action svg {
    width: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: clamp(30px, 5vw, 76px);
    align-items: center;
    overflow: hidden;
}

.support-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -180px;
    bottom: -220px;
    border: 1px solid rgba(167,122,50,.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgba(167,122,50,.025),
        0 0 0 72px rgba(167,122,50,.02);
}

.support-intro {
    position: relative;
    z-index: 2;
}

.support-intro p {
    color: var(--muted);
}

.support-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.support-card {
    padding: 22px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(18,50,74,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow-sm);
}

.support-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--blue);
    background: rgba(22,92,146,.09);
}

.support-icon--gold {
    color: var(--gold);
    background: rgba(167,122,50,.10);
}

.support-icon--green {
    color: var(--green);
    background: rgba(37,128,92,.10);
}

.support-icon svg {
    width: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-card h3 {
    margin: 0 0 4px;
    color: var(--ink-strong);
    font-size: 1.08rem;
}

.support-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.cta-section {
    position: relative;
    margin: 0 clamp(22px, 4vw, 62px) 56px;
    min-height: 220px;
    padding: clamp(28px, 4vw, 50px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 26px;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.17), transparent 18rem),
        linear-gradient(135deg, #103e59, #0d6d77);
    box-shadow: 0 20px 46px rgba(13,73,100,.22);
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background:
        linear-gradient(30deg, transparent 45%, rgba(255,255,255,.22) 46% 48%, transparent 49%) 0 0/42px 72px,
        linear-gradient(150deg, transparent 45%, rgba(255,255,255,.17) 46% 48%, transparent 49%) 0 0/42px 72px;
}

.cta-copy,
.cta-section .btn {
    position: relative;
    z-index: 2;
}

.cta-copy span {
    color: #bde4e4;
    font-weight: 700;
}

.cta-copy h2 {
    margin: 7px 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.45;
}

.cta-copy p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.btn-light {
    min-width: 210px;
    color: var(--blue-dark);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.site-footer {
    padding: 26px clamp(22px, 4vw, 62px) 30px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px 30px;
    align-items: center;
    border-top: 1px solid rgba(18,50,74,.08);
    background:
        radial-gradient(circle at 0 50%, rgba(167,122,50,.07), transparent 18rem),
        linear-gradient(180deg, #fffdfa, #f8f6f1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(167,122,50,.10);
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--ink-strong);
}

.footer-brand small {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-links button {
    padding: .45rem .7rem;
    border: 0;
    border-radius: 10px;
    color: #607382;
    background: transparent;
    cursor: pointer;
}

.footer-links button:hover {
    color: var(--blue-dark);
    background: rgba(22,92,146,.06);
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(18,50,74,.07);
    color: #7a8994;
    font-size: .83rem;
    text-align: center;
}

.mobile-dock {
    display: none;
}

.toast {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 100;
    width: min(430px, calc(100% - 32px));
    padding: 16px;
    display: grid;
    grid-template-columns: 44px 1fr 34px;
    gap: 12px;
    align-items: start;
    border: 1px solid rgba(18,50,74,.10);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 60px rgba(15,52,76,.18);
    backdrop-filter: blur(12px);
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(167,122,50,.11);
    font-size: 1.3rem;
}

.toast strong {
    color: var(--ink-strong);
}

.toast p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.toast-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    color: #7a8994;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.toast-close:hover {
    background: #f2f5f7;
}

@media (max-width: 1160px) {
    .site-header {
        grid-template-columns: minmax(280px, 1fr) auto;
    }

    .desktop-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr 1fr;
        min-height: 540px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-copy {
        padding: 44px;
    }

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

    .support-section {
        grid-template-columns: 1fr;
    }

    .support-intro {
        max-width: 780px;
    }
}

@media (max-width: 820px) {
    body {
        padding-bottom: 76px;
    }

    .site-shell {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-header {
        min-height: 72px;
        padding: 10px 14px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand-mark {
        width: 44px;
        height: 48px;
        border-radius: 14px;
    }

    .brand-mark svg {
        width: 32px;
    }

    .brand-copy strong {
        font-size: .9rem;
    }

    .brand-copy small {
        font-size: .75rem;
    }

    .header-login {
        display: none;
    }

    .hero {
        margin: 12px;
        min-height: 0;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .hero-copy {
        order: 2;
        padding: 32px 22px 28px;
    }

    .hero-visual {
        order: 1;
        min-height: 290px;
        max-height: 360px;
    }

    .hero-image-overlay {
        background: linear-gradient(180deg, transparent 50%, rgba(255,253,250,.28) 100%);
    }

    .hero-quote {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
    }

    .hero-pattern {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .services-section,
    .support-section {
        padding: 46px 16px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .service-card {
        min-height: 330px;
    }

    .support-card {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 18px;
    }

    .cta-section {
        margin: 0 14px 36px;
        padding: 30px 22px;
        grid-template-columns: 1fr;
        text-align: right;
    }

    .btn-light {
        min-width: 0;
    }

    .site-footer {
        padding: 24px 18px 96px;
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .mobile-dock {
        position: fixed;
        right: 12px;
        left: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 70;
        height: 66px;
        padding: 7px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border: 1px solid rgba(18,50,74,.10);
        border-radius: 20px;
        background: rgba(255,255,255,.94);
        box-shadow: 0 18px 50px rgba(15,52,76,.18);
        backdrop-filter: blur(14px);
    }

    .mobile-dock a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-radius: 14px;
        color: #72828f;
        font-size: .72rem;
    }

    .mobile-dock a.active {
        color: var(--blue-dark);
        background: rgba(22,92,146,.07);
    }

    .mobile-dock svg {
        width: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 90px;
        width: auto;
    }
}

@media (max-width: 460px) {
    .brand-copy strong {
        max-width: 220px;
        white-space: normal;
        line-height: 1.5;
    }

    .brand-copy small {
        display: none;
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-quote {
        padding: 13px 15px;
    }

    .hero-quote p {
        font-size: .84rem;
    }

    .service-card {
        padding: 24px 20px 18px;
    }

    .support-card {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   ABJ LANDING v2 — TYPOGRAPHY + HERO FADE POLISH
   ========================================================= */

body {
    font-family:
        "Segoe UI",
        "Noto Sans Arabic",
        "Noto Sans",
        Tahoma,
        Arial,
        sans-serif;
    line-height: 1.95;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.support-intro h2,
.service-card h3,
.support-card h3,
.cta-copy h2 {
    letter-spacing: 0;
    text-wrap: balance;
}

.brand-copy strong {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    font-weight: 800;
    line-height: 1.55;
}

.brand-copy small {
    font-size: .82rem;
    line-height: 1.7;
}

/* ----- HERO: seamless photo-to-content fade ----- */

.hero {
    position: relative;
    display: block;
    min-height: 560px;
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 18%, rgba(11, 124, 130, .045), transparent 19rem),
        linear-gradient(135deg, #fffdfa 0%, #fbf8f1 100%);
}

.hero-copy {
    position: relative;
    z-index: 6;
    width: 58%;
    min-height: 560px;
    margin-left: auto;
    padding:
        clamp(52px, 5.6vw, 84px)
        clamp(40px, 5vw, 78px)
        clamp(48px, 5vw, 76px)
        clamp(34px, 3.8vw, 58px);
    justify-content: center;
}

.hero h1 {
    max-width: 12ch;
    margin: 16px 0 18px;
    font-size: clamp(2.15rem, 3.15vw, 3.55rem);
    line-height: 1.36;
    font-weight: 850;
    color: var(--ink-strong);
}

.hero h1 span {
    display: block;
    color: var(--blue-dark);
}

.hero-copy > p {
    max-width: 620px;
    font-size: clamp(.98rem, 1.08vw, 1.12rem);
    line-height: 2.08;
    color: #5f7486;
}

.hero-visual {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 1;
    width: 62%;
    min-height: 100%;
    overflow: hidden;
    isolation: isolate;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to right,
            rgba(255, 253, 250, 0) 0%,
            rgba(255, 253, 250, 0) 58%,
            rgba(255, 253, 250, .14) 68%,
            rgba(255, 253, 250, .52) 82%,
            rgba(255, 253, 250, .90) 94%,
            rgba(255, 253, 250, 1) 100%
        ),
        linear-gradient(
            to top,
            rgba(6, 35, 50, .25) 0%,
            rgba(6, 35, 50, .07) 24%,
            rgba(6, 35, 50, 0) 50%
        );
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.9) contrast(.98) brightness(1.02);
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 68%,
        rgba(0,0,0,.92) 76%,
        rgba(0,0,0,.62) 86%,
        rgba(0,0,0,.20) 96%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 68%,
        rgba(0,0,0,.92) 76%,
        rgba(0,0,0,.62) 86%,
        rgba(0,0,0,.20) 96%,
        transparent 100%
    );
}

.hero-image-overlay {
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,.08), transparent 20rem),
        linear-gradient(
            to top,
            rgba(5, 32, 48, .20) 0%,
            rgba(5, 32, 48, .03) 32%,
            transparent 55%
        );
}

.hero-pattern {
    z-index: 3;
    width: 52%;
    right: 0;
    left: auto;
    opacity: .20;
    background:
        radial-gradient(
            circle at center,
            transparent 56%,
            rgba(13,73,100,.11) 57% 58%,
            transparent 59%
        ) 0 0 / 42px 42px;
    -webkit-mask-image: linear-gradient(to left, #000 0%, rgba(0,0,0,.45) 55%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0%, rgba(0,0,0,.45) 55%, transparent 100%);
}

.hero-quote {
    left: 22px;
    right: auto;
    bottom: 22px;
    max-width: 360px;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.34);
    background: linear-gradient(135deg, rgba(8, 50, 67, .72), rgba(8, 50, 67, .48));
    box-shadow: 0 14px 34px rgba(5, 32, 48, .22);
    backdrop-filter: blur(12px);
}

.eyebrow {
    font-size: .94rem;
    font-weight: 800;
}

/* ----- cleaner, more refined headings ----- */

.section-heading h2,
.support-intro h2 {
    font-size: clamp(1.75rem, 2.65vw, 2.72rem);
    line-height: 1.5;
    font-weight: 850;
}

.section-heading > p,
.support-intro p {
    line-height: 2;
}

.service-card h3 {
    font-size: 1.24rem;
    line-height: 1.7;
    font-weight: 800;
}

.service-card p {
    line-height: 2;
}

.support-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
}

.cta-copy h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.55rem);
    line-height: 1.55;
    font-weight: 850;
}

/* ----- tablet ----- */

@media (max-width: 1160px) {
    .hero {
        min-height: 520px;
    }

    .hero-copy {
        width: 61%;
        min-height: 520px;
        padding: 48px 42px 44px 32px;
    }

    .hero-visual {
        width: 64%;
    }

    .hero h1 {
        max-width: 12ch;
        font-size: clamp(2rem, 3.5vw, 3.15rem);
    }
}

/* ----- mobile: vertical fade, no hard edge ----- */

@media (max-width: 820px) {
    .hero {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        order: 1;
        width: 100%;
        min-height: 300px;
        max-height: 380px;
    }

    .hero-visual img {
        -webkit-mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 68%,
            rgba(0,0,0,.90) 76%,
            rgba(0,0,0,.58) 88%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 68%,
            rgba(0,0,0,.90) 76%,
            rgba(0,0,0,.58) 88%,
            transparent 100%
        );
    }

    .hero-visual::after {
        background:
            linear-gradient(
                to bottom,
                transparent 0%,
                transparent 58%,
                rgba(255, 253, 250, .12) 72%,
                rgba(255, 253, 250, .72) 90%,
                #fffdfa 100%
            );
    }

    .hero-copy {
        order: 2;
        width: 100%;
        min-height: 0;
        margin: -28px 0 0;
        padding: 28px 22px 30px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.42;
    }

    .hero h1 span {
        display: inline;
    }

    .hero-pattern {
        display: block;
        width: 100%;
        height: 48%;
        top: auto;
        bottom: 0;
        opacity: .12;
        -webkit-mask-image: linear-gradient(to top, #000, transparent);
        mask-image: linear-gradient(to top, #000, transparent);
    }

    .hero-quote {
        left: 14px;
        right: 14px;
        bottom: 20px;
        max-width: none;
    }
}

@media (max-width: 460px) {
    .brand-copy strong {
        font-size: .88rem;
        line-height: 1.6;
    }

    .hero-visual {
        min-height: 250px;
    }

    .hero-copy {
        margin-top: -20px;
        padding: 24px 18px 26px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 9.5vw, 2.55rem);
        line-height: 1.45;
    }

    .hero-copy > p {
        font-size: .96rem;
        line-height: 2.05;
    }
}



/* =========================================================
   ABJ LANDING v3 — new hero image + headline polish
   ========================================================= */

.hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.25rem, 3.25vw, 3.85rem);
    line-height: 1.32;
    font-weight: 900;
}

.hero h1 span {
    margin-top: .15em;
}

.hero-copy > p {
    max-width: 34rem;
}

.hero-visual img {
    object-position: center center;
    filter: saturate(.95) contrast(1) brightness(1.01);
}

.hero-visual::after {
    background:
        linear-gradient(
            to right,
            rgba(255, 253, 250, 0) 0%,
            rgba(255, 253, 250, 0) 50%,
            rgba(255, 253, 250, .12) 62%,
            rgba(255, 253, 250, .48) 77%,
            rgba(255, 253, 250, .88) 90%,
            rgba(255, 253, 250, 1) 100%
        ),
        linear-gradient(
            to top,
            rgba(6, 35, 50, .22) 0%,
            rgba(6, 35, 50, .06) 24%,
            rgba(6, 35, 50, 0) 50%
        );
}

@media (max-width: 820px) {
    .hero h1 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3.15rem);
        line-height: 1.38;
    }

    .hero h1 span {
        display: block;
        margin-top: .1em;
    }

    .hero-copy > p {
        font-size: 1rem;
        line-height: 2;
    }
}

/* =========================================================
   ABJ LANDING v4
   HERO PHOTO LEFT + VECTOR HEADLINE RIGHT
   ========================================================= */

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

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(520px, .94fr);
    min-height: 610px;
    margin: 22px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 16%, rgba(11, 124, 130, .042), transparent 20rem),
        linear-gradient(135deg, #fffdfa 0%, #fbf8f2 100%);
    box-shadow:
        inset 0 0 0 1px rgba(18, 50, 74, .08),
        0 8px 24px rgba(16, 52, 77, .07);
}

.hero-copy {
    grid-column: 2;
    position: relative;
    z-index: 6;
    width: 100%;
    min-height: 610px;
    margin: 0;
    padding: clamp(52px, 5.4vw, 84px) clamp(40px, 5.6vw, 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.hero-school-line {
    display: grid;
    grid-template-columns: minmax(28px, 84px) auto minmax(28px, 84px);
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin: 0 auto 26px;
    color: #0d4964;
}

.hero-school-line span {
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(11,124,130,.82)
    );
}

.hero-school-line span:last-child {
    background: linear-gradient(
        90deg,
        rgba(11,124,130,.82),
        transparent
    );
}

.hero-school-line b {
    font-size: clamp(.9rem, 1vw, 1.08rem);
    line-height: 1.7;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.hero-title-art {
    display: block;
    width: min(100%, 690px);
    height: auto;
    margin: 0 auto 8px;
}

.hero-summary {
    max-width: 710px !important;
    margin: 0 auto !important;
    color: #718699 !important;
    font-size: clamp(.98rem, 1.05vw, 1.12rem) !important;
    line-height: 2.1 !important;
    text-align: center;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    min-height: 610px;
    overflow: hidden;
    isolation: isolate;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.94) contrast(1.01) brightness(1.01);
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 70%,
        rgba(0,0,0,.96) 78%,
        rgba(0,0,0,.74) 86%,
        rgba(0,0,0,.34) 94%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 70%,
        rgba(0,0,0,.96) 78%,
        rgba(0,0,0,.74) 86%,
        rgba(0,0,0,.34) 94%,
        transparent 100%
    );
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to right,
            transparent 0%,
            transparent 58%,
            rgba(255,253,250,.10) 68%,
            rgba(255,253,250,.46) 82%,
            rgba(255,253,250,.90) 94%,
            #fffdfa 100%
        ),
        linear-gradient(
            to top,
            rgba(5,32,48,.12) 0%,
            rgba(5,32,48,0) 34%
        );
}

.hero-image-overlay {
    display: none;
}

.hero-pattern {
    position: absolute;
    z-index: 2;
    inset: 0 0 0 auto;
    width: 48%;
    height: 100%;
    opacity: .13;
    pointer-events: none;
    background:
        linear-gradient(30deg, transparent 44%, rgba(13,73,100,.09) 45% 47%, transparent 48%) 0 0/54px 92px,
        linear-gradient(150deg, transparent 44%, rgba(13,73,100,.06) 45% 47%, transparent 48%) 0 0/54px 92px;
    -webkit-mask-image: linear-gradient(to left, #000 0%, rgba(0,0,0,.5) 58%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0%, rgba(0,0,0,.5) 58%, transparent 100%);
}

@media (max-width: 1160px) {
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
        min-height: 560px;
    }

    .hero-copy,
    .hero-visual {
        min-height: 560px;
    }

    .hero-copy {
        padding: 46px 38px;
    }

    .hero-title-art {
        width: min(100%, 610px);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        min-height: 360px;
        max-height: 430px;
    }

    .hero-visual img {
        -webkit-mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 70%,
            rgba(0,0,0,.90) 80%,
            rgba(0,0,0,.55) 90%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 70%,
            rgba(0,0,0,.90) 80%,
            rgba(0,0,0,.55) 90%,
            transparent 100%
        );
    }

    .hero-visual::after {
        background:
            linear-gradient(
                to bottom,
                transparent 0%,
                transparent 58%,
                rgba(255,253,250,.16) 72%,
                rgba(255,253,250,.78) 90%,
                #fffdfa 100%
            );
    }

    .hero-copy {
        order: 2;
        width: 100%;
        min-height: 0;
        margin: -26px 0 0;
        padding: 26px 22px 34px;
    }

    .hero-school-line {
        margin-bottom: 18px;
    }

    .hero-title-art {
        width: min(100%, 620px);
    }

    .hero-summary {
        max-width: 42rem !important;
    }

    .hero-pattern {
        width: 100%;
        height: 52%;
        top: auto;
        bottom: 0;
        opacity: .08;
        -webkit-mask-image: linear-gradient(to top, #000, transparent);
        mask-image: linear-gradient(to top, #000, transparent);
    }
}

@media (max-width: 560px) {
    .hero {
        margin: 10px;
        border-radius: 22px;
    }

    .hero-visual {
        min-height: 280px;
        max-height: 330px;
    }

    .hero-copy {
        padding: 22px 16px 28px;
    }

    .hero-school-line {
        grid-template-columns: 26px auto 26px;
        gap: 8px;
    }

    .hero-school-line b {
        font-size: .82rem;
        white-space: normal;
    }

    .hero-title-art {
        width: 100%;
        margin-bottom: 4px;
    }

    .hero-summary {
        font-size: .94rem !important;
        line-height: 2 !important;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 22px;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

