:root {
    --bg: #f7f9fc;
    --bg2: #eef4ff;
    --panel: #ffffff;
    --panel2: #f3f6fb;
    --text: #111827;
    --muted: #667085;
    --line: #e5eaf2;
    --blue: #356dff;
    --cyan: #20b9e8;
    --purple: #7956e8;
    --shadow: 0 24px 70px rgba(31,55,99,.12);
    --radius: 26px;
    --container: 1180px;
    --brand-blue: #236BA6;
    --brand-red: #B43150;
    --brand-blue-dark: #1B5687;
    --brand-blue-light: #4A8BC2;
    --brand-red-dark: #922840;
    --brand-red-light: #CC5B73;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter,system-ui,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.3;
    overflow-x: hidden
}

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

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

button {
    cursor: pointer
}

.container {
    width: min(calc(100% - 20px),var(--container));
    margin: auto
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 20;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E")
}

.section-grid {
    position: relative;
    overflow: hidden;
    /* Direct background image */
    background-image: url("https://images.unsplash.com/photo-1568952433726-3896e3881c65?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8dGVjaG5vbG9neXxlbnwwfHwwfHx8MA%3D%3D");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Keep content above background */
.section-grid > * {
    position: relative;
    z-index: 1;
}


/* ============================================================
   ZTECHNETICS ACADEMY — HEADER
============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}


    /* ============================================================
   SCROLLED HEADER
============================================================ */

    .site-header.scrolled {
        background: rgba(255, 255, 255, 0.96);
        border-color: #e2e8f0;
        box-shadow: 0 8px 30px rgba(15, 23, 42, .07);
    }


/* ============================================================
   HEADER CONTAINER
============================================================ */

.header-container {
    width: min(1280px, calc(100% - 40px));
    min-height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* ============================================================
   BRAND
============================================================ */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    flex-shrink: 0;
}


/* ============================================================
   LOGO
============================================================ */

.brand-logo {
    position: absolute;
    width: 185px;
    height: 77px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;
    /*position: relative;
    width: 148px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 15px;*/
}


    .brand-logo img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        padding: 3px;
        display: block;
        object-fit: contain;
        user-select: none;
        transition: transform .4s ease;
    }



/* ============================================================
   WORDMARK
============================================================ */

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    color: #0f172a;
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -.035em;
}

.brand-academy {
    margin-top: 6px;
    color: #2563eb;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}


/* ============================================================
   NAVIGATION
============================================================ */

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}


/* ============================================================
   NAV LINKS
============================================================ */

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 11px;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

    .nav-link:hover {
        color: #2563eb;
        background: #eff6ff;
        transform: translateY(-1px);
    }


    /* ============================================================
   ACTIVE LINK
============================================================ */

    .nav-link.active {
        color: #1d4ed8;
        background: #eff6ff;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 5px;
            width: 16px;
            height: 3px;
            transform: translateX(-50%);
            border-radius: 99px;
            background: linear-gradient( 90deg, #2563eb, #14b8a6 );
        }


/* ============================================================
   CTA
============================================================ */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    margin-left: 8px;
    padding: 0 17px;
    border: 1px solid #2563eb;
    border-radius: 12px;
    background: linear-gradient( 135deg, #2563eb, #1d4ed8 );
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .20);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

    .nav-cta svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform .3s ease;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        background: linear-gradient( 135deg, #3b82f6, #2563eb );
        box-shadow: 0 12px 28px rgba(37, 99, 235, .28);
    }

        .nav-cta:hover svg {
            transform: translate(2px, -2px);
        }


/* ============================================================
   MOBILE TOGGLE
============================================================ */

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .05);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

    .nav-toggle:hover {
        border-color: #bfdbfe;
        background: #eff6ff;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 5px;
        background: #334155;
        transition: transform .3s ease, opacity .2s ease, width .3s ease;
    }


    /* ============================================================
   MOBILE TOGGLE — OPEN
============================================================ */

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 900px) {

    .header-container {
        width: min(100% - 32px, 760px);
        min-height: 74px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 16px;
    }

    .main-nav {
        gap: 2px;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 12px;
    }

    .nav-cta {
        padding: 0 13px;
        font-size: 12px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 720px) {

    .header-container {
        position: relative;
        width: calc(100% - 28px);
        min-height: 70px;
    }


    /* Logo */

    .brand-logo {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-academy {
        font-size: 11px;
    }


    /* Toggle */

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1100;
    }


    /* Mobile navigation */

    .main-nav {
        position: absolute;
        z-index: 1050;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        margin: 0;
        padding: 10px;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        background: #ffffff !important;
        box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(.98);
        transform-origin: top center;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    }


        /* Open */

        .main-nav.open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }


    .nav-link {
        width: 100%;
        min-height: 45px;
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 11px;
        font-size: 13px;
    }

        .nav-link.active::after {
            left: 8px;
            bottom: 50%;
            width: 3px;
            height: 18px;
            transform: translateY(50%);
        }


    .nav-cta {
        width: 100%;
        min-height: 46px;
        margin: 5px 0 0;
        justify-content: center;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 420px) {

    .header-container {
        width: calc(100% - 20px);
    }

    .brand-text {
        display: none;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }
}


/* ============================================================
   REDUCE MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .site-header *,
    .site-header *::before,
    .site-header *::after {
        transition: none !important;
        animation: none !important;
    }
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font: 700 24px "Space Grotesk";
    color: #fff;
    background: linear-gradient(135deg,var(--blue),var(--purple));
    box-shadow: 0 8px 30px rgba(91,140,255,.25)
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1
}

    .brand-copy strong {
        font: 700 15px "Space Grotesk";
        letter-spacing: .04em
    }

    .brand-copy small {
        font-size: 8px;
        letter-spacing: .32em;
        color: #8f9bb1;
        margin-top: 5px
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    color: #59677d
}

    .main-nav a {
        transition: .2s
    }

        .main-nav a:hover, .main-nav a.active {
            color: #111827
        }

    .main-nav .nav-cta {
        padding: 10px 14px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 999px;
        background: rgba(255,255,255,.05);
        color: #fff
    }

        .main-nav .nav-cta span {
            color: var(--cyan)
        }

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    width: 42px;
    height: 42px
}

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        margin: 5px auto;
        border-radius: 4px
    }

.hero {
    min-height: 600px;
    padding: 20px 0 20px;
    overflow: hidden
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center
}

.section-label,
.form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .19em;
    color: var(--brand-blue-light);
}

.section-label-why {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .19em;
    color: #fff;
}
    .section-label-why h2{
        color:#fff;
    }

    /* =========================
   PULSE
========================= */
    .pulse {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 0 14px rgba(56, 189, 248, .55);
    }


/* =========================
   HERO LOGO
========================= */

.hero-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px 0 18px;
}

.hero-z {
    font: 700 82px/.75 "Space Grotesk", sans-serif;
    background: linear-gradient( 135deg, #0f172a 5%, #3b82f6 50%, #7dd3fc 100% );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-logo-name {
    display: block;
    font: 700 27px "Space Grotesk", sans-serif;
    letter-spacing: .08em;
    color: #fff;
}

.hero-logo-sub {
    display: block;
    color: #7b8da6;
    font-size: 11.5px;
    letter-spacing: .45em;
    margin-top: 7px;
}


/* =========================
   HEADINGS
========================= */

h1
{
    font-family: "Space Grotesk", sans-serif;
    color: #e2e8f0;
}


/* =========================
   HERO H1
========================= */

.hero h1 {
    font-size: clamp(52px, 6vw, 86px);
    line-height: .98;
    letter-spacing: -.055em;
    max-width: 760px;
    color: #ffffff;
}


    /* Gradient heading words */

    .hero h1 span,
    .section-head h2 span,
    .roadmap-copy h2 span,
    .final-cta h2 span,
    .course-cta h2 span {
        background: linear-gradient( 100deg, #2563eb 0%, #38bdf8 55%, #7dd3fc 100% );
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }


/* =========================
   HERO TEXT
========================= */

.hero-text {
    max-width: 620px;
    margin: 25px 0 30px;
    color: #fafcff;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
}


/* =========================
   HERO ACTIONS
========================= */

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


/* =========================
   BUTTON
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 13px;
    padding: 14px 19px;
    font-weight: 700;
    font-size: 13px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

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


/* =========================
   PRIMARY BUTTON
========================= */

.btn-primary {
    background: linear-gradient( 135deg, #2563eb, #38bdf8 );
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .20);
}

    .btn-primary:hover {
        box-shadow: 0 18px 40px rgba(37, 99, 235, .28);
    }


/* =========================
   GHOST BUTTON
========================= */

.btn-ghost {
    background: #ffffff;
    border-color: #dbe5f1;
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(30, 64, 175, .05);
}

    .btn-ghost:hover {
        background: #f8fbff;
        border-color: #bfdbfe;
        box-shadow: 0 10px 25px rgba(30, 64, 175, .08);
    }


/* =========================
   DARK BUTTON
========================= */

.btn-dark {
    background: linear-gradient( 135deg, #e0f2fe, #dbeafe );
    border-color: #d5e7f8;
    color: #172033;
}

    .btn-dark:hover {
        background: linear-gradient( 135deg, #eff6ff, #e0f2fe );
        color:black;
    }


/* =========================
   LIGHT BUTTON
========================= */

.btn-light {
    background: #ffffff;
    color: #172033;
    border: 1px solid #e1e8f2;
    box-shadow: 0 8px 25px rgba(30, 64, 175, .08);
}

    .btn-light:hover {
        background: #f8fbff;
    }


/* =========================
   HERO STATS
========================= */

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

    .hero-stats div {
        display: flex;
        flex-direction: column;
    }

    .hero-stats strong {
        font: 700 22px "Space Grotesk", sans-serif;
        color: #c1c5cd;
    }

    .hero-stats span {
        font-size: 11.5px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: .1em;
        margin-top: 2px;
    }


/* =========================
   HERO FORM WRAPPER
========================= */

.hero-form-wrap {
    position: relative;
}


    /* Soft blue glow behind form */

    .hero-form-wrap::before {
        content: "";
        position: absolute;
        inset: -45px;
        background: radial-gradient( circle at center, rgba(96, 165, 250, .18) 0%, rgba(125, 211, 252, .10) 35%, transparent 70% );
        filter: blur(25px);
        pointer-events: none;
        z-index: 0;
    }


/* =========================
   OPTIONAL WHITE FORM
========================= */

.enquiry-card {
    position: relative;
    z-index: 1;
    background: linear-gradient( 145deg, #ffffff 0%, #ffffff 55%, #f0f8ff 100% );
    border: 1px solid #e1eaf5;
    box-shadow: 0 25px 70px rgba(37, 99, 235, .10);
    border-radius: 24px;
}
.form-glow {
    position: absolute;
    inset: -35px;
    background: radial-gradient(circle,rgba(91,140,255,.2),transparent 65%);
    filter: blur(20px)
}

.enquiry-card {
    position: relative;
    padding: 13px 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg,#ffffff,#f5f8fd);
    border-radius: 27px;
    box-shadow: var(--shadow)
}

.form-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start
}

.form-kicker {
    color: #6f9cff;
    font-size: 11px
}

.form-heading h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-top: 6px
}

.form-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(91,140,255,.12);
    color: #79a8ff
}

.form-intro {
    color: #667085;
    font-size: 12px;
    margin: 1px 0 18px;
}

.field {
    margin-top: 10px
}

    .field label {
        display: block;
        font-size: 12px;
        color: var(--brand-blue-dark);
        margin-bottom: 7px;
        font-weight: 600;
    }

    .field input, .field select, .field textarea {
        width: 100%;
        border: 1px solid rgba(255,255,255,.09);
        background: #f8fafc;
        color: #172033;
        border-radius: 11px;
        padding: 12px 13px;
        outline: none;
        transition: .2s
    }

    .field textarea {
        resize: vertical;
        min-height: 105px
    }

        .field input::placeholder, .field textarea::placeholder {
            color: #58657c
        }

    .field select {
        color: #344054
    }

        .field select option {
            background: #fff;
            color: #111827
        }

        .field input:focus, .field select:focus, .field textarea:focus {
            border-color: #638fff;
            box-shadow: 0 0 0 3px rgba(91,140,255,.1)
        }

.btn-submit {
    width: 100%;
    margin-top: 18px;
    background: var(--brand-blue-light);
    color: #fff
}

.form-note {
    font-size: 11px;
    color: #637087;
    text-align: center;
    margin-top: 11px
}

.form-success {
    margin-top: 12px;
    padding: 10px;
    border-radius: 9px;
    background: rgba(64,220,151,.08);
    font-size: 12px;
    text-align: center;
    border: 1px solid #b7ebcd;
}

  

.trust-strip { 
    border-bottom: 1px solid var(--line);
    background: var(--brand-red-light)
}

.trust-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
}

    .trust-inner div {
        color: white;
    }

    .trust-inner b {
        color: #ffd0d0;
        margin-right: 7px
    }

.programs, .why {
    padding: 30px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: end;
    margin-bottom: 55px
}

    .section-head h2 {
        font-size: 48px;
        line-height: 1.02;
        letter-spacing: -.04em;
        margin-top: 10px
    }

    .section-head > p {
        max-width: 390px;
        color: #fff;
        font-size: 14px
    }

/* ==========================================================
   PROGRAMS
========================================================== */

.programs {
    position: relative; 
    background: #f7f9fc;
}


/* ==========================================================
   COURSE GRID
========================================================== */

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


/* ==========================================================
   CARD
========================================================== */

.course-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(20, 42, 75, .06);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}

    .course-card:hover {
        transform: translateY(-8px);
        border-color: rgba(74, 125, 255, .30);
        box-shadow: 0 25px 60px rgba(24, 55, 100, .13);
    }


/* ==========================================================
   IMAGE AREA
========================================================== */

.course-media {
    position: relative;
    height: 215px;
    overflow: hidden;
    background: #10284b;
}

    .course-media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .5s ease;
    }

.course-card:hover .course-media img {
    transform: scale(1.08);
    filter: saturate(1.08);
}


/* ==========================================================
   IMAGE OVERLAY
========================================================== */

.course-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(6, 19, 39, .12) 0%, rgba(6, 19, 39, .04) 40%, rgba(6, 19, 39, .52) 100% );
    pointer-events: none;
}


/* ==========================================================
   COURSE NUMBER
========================================================== */

.course-number {
    position: absolute;
    top: 17px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   TAG
========================================================== */

.course-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1px;
    background: rgba(7, 22, 44, .60);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   FLOATING ICON
========================================================== */

.course-icon {
    position: absolute;
    left: 24px;
    bottom: 3px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    border-radius: 18px;
    background: linear-gradient( 135deg, #518cff, #7258ef );
    border: 4px solid #ffffff;
    box-shadow: 0 5px 15px rgba(60, 100, 225, .20);
    z-index: 4;
    transition: transform .35s ease, box-shadow .35s ease;
}

.course-card:hover .course-icon {
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 12px 22px rgba(63, 107, 235, .40);
}


/* ==========================================================
   CARD BODY
========================================================== */

.course-body {
    padding: 32px 20px 16px;
}


/* SMALL CATEGORY */
.course-label {
    margin-bottom: 9px;
    color: #6680a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


/* ==========================================================
   TITLE
========================================================== */

.course-body h3 {
    margin: 0 0 12px;
    color: #10233f;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.5px;
    font-weight: 800;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.course-body p {
    min-height: 70px;
    margin: 0;
    color: #718097;
    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================
   META
========================================================== */

.course-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 21px;
}

    .course-meta span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 10px;
        color: #5d6d84;
        background: #f4f7fb;
        border: 1px solid #e8edf4;
        border-radius: 9px;
        font-size: 11px;
        font-weight: 700;
    }

    .course-meta i {
        color: #638fff;
        font-style: normal;
        font-size: 10px;
    }


/* ==========================================================
   LINK
========================================================== */

.course-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    padding-top: 17px;
    color: #172d4d;
    text-decoration: none;
    border-top: 1px solid #edf0f5;
    font-size: 13px;
    font-weight: 800;
    transition: color .25s ease;
}

    .course-link b {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #487fff;
        background: #f0f5ff;
        border-radius: 50%;
        font-size: 17px;
        transition: transform .3s ease, background .3s ease;
    }

.course-card:hover .course-link {
    color: #477fff;
}

    .course-card:hover .course-link b {
        transform: translate(3px,-3px);
        background: #e5edff;
    }


/* ==========================================================
   FEATURED
========================================================== */

.course-card.featured {
    border-color: rgba(72,127,255,.30);
}


/* ==========================================================
   VIEW ALL BUTTON
========================================================== */

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    color: #ffffff;
    background: #102642;
    border-radius: 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(16,38,66,.15);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .btn-dark:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(16,38,66,.22);
    }


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {

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


@media (max-width: 680px) {

    .programs {
        padding: 75px 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-media {
        height: 200px;
    }

    .course-body {
        padding: 42px 21px 21px;
    }

        .course-body h3 {
            font-size: 21px;
        }

        .course-body p {
            min-height: auto;
        }
}

.center-action {
    text-align: center;
    margin-top: 38px
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    gap:16px;
}

.benefit {
    min-height: 250px;
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    background: linear-gradient( 145deg, rgba(255,255,255,.98), rgba(248,251,255,.96) );
    box-shadow: 0 8px 25px rgba(15,23,42,.045), 0 2px 6px rgba(37,99,235,.025);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s ease, box-shadow .4s ease, background .4s ease;
}


.benefit-no {
    position: absolute;
    right: 20px;
    top: 20px;
    font: 600 11px "Space Grotesk";
    color: #7a879a
}

.benefit-icon {
    font-size: 45px;
    color: #6d9cff;
    display: block;
    margin: 8px 0 15px
}

.benefit h3 {
    font-size: 17px;
    margin-bottom: 9px
}

.benefit p {
    font-size: 12px;
    color: #78869e
}
/* =========================================================
   ZTECHNETICS — PREMIUM LIGHT ROADMAP
========================================================= */

.roadmap {
    position: relative;
    padding: 20px 0 20px;
    background: transparent;
}


/* =========================================================
   MAIN ROADMAP CARD
========================================================= */

.roadmap-card {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 75px;
    padding: 64px;
    overflow: hidden;
    border: 1px solid #e4ebf5;
    border-radius: 30px;
    background: linear-gradient( 135deg, #ffffff 0%, #f8fbff 52%, #f1f7ff 100% );
    box-shadow: 0 25px 70px rgba(15, 23, 42, .07), 0 8px 25px rgba(37, 99, 235, .04);
}


    /* =========================================================
   DECORATIVE BLUE GLOW
========================================================= */

    .roadmap-card::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        right: -220px;
        top: -270px;
        z-index: -2;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(59, 130, 246, .15) 0%, rgba(96, 165, 250, .06) 38%, transparent 70% );
        filter: blur(5px);
        pointer-events: none;
    }


    /* SECOND DECORATION */

    .roadmap-card::after {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        left: -190px;
        bottom: -220px;
        z-index: -2;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(14, 165, 233, .08), transparent 68% );
        pointer-events: none;
    }


/* =========================================================
   COPY
========================================================= */

.roadmap-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    /* =========================================================
   LABEL
========================================================= */

    .roadmap-copy .section-label {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        color: #3b82f6;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.8px;
        text-transform: uppercase;
    }


        .roadmap-copy .section-label::before {
            content: "";
            width: 24px;
            height: 2px;
            border-radius: 10px;
            background: linear-gradient( 90deg, #2563eb, #60a5fa );
        }


    /* =========================================================
   HEADING
========================================================= */

    .roadmap-copy h2 {
        max-width: 570px;
        margin: 16px 0;
        color: #0f172a;
        font-size: clamp(40px, 4.2vw, 56px);
        line-height: .98;
        font-weight: 850;
        letter-spacing: -2.5px;
    }


        .roadmap-copy h2 span {
            color: #2563eb;
            background: linear-gradient( 90deg, #2563eb, #3b82f6, #06b6d4 );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


    /* =========================================================
   DESCRIPTION
========================================================= */

    .roadmap-copy p {
        max-width: 440px;
        margin: 0 0 28px;
        color: #64748b;
        font-size: 14px;
        line-height: 1.8;
    }


/* =========================================================
   ROADMAP STEPS
========================================================= */

.roadmap-steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 13px;
}


/* =========================================================
   STEP CARD
========================================================= */

.road-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 72px;
    padding: 16px 20px;
    border: 1px solid #e4ebf4;
    border-radius: 17px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 5px 18px rgba(15, 23, 42, .035);
    transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}


    /* =========================================================
   STEP HOVER
========================================================= */

    .road-step:hover {
        transform: translateX(7px);
        border-color: rgba(59, 130, 246, .25);
        background: linear-gradient( 100deg, #ffffff, #f7fbff );
        box-shadow: 0 12px 30px rgba(37, 99, 235, .08);
    }


    /* =========================================================
   STEP NUMBER
========================================================= */

    .road-step > span {
        position: relative;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 13px;
        color: #2563eb;
        background: linear-gradient( 135deg, #eff6ff, #e0f2fe );
        border: 1px solid #dbeafe;
        font-family: "Space Grotesk", sans-serif;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .5px;
        box-shadow: 0 6px 15px rgba(37, 99, 235, .08);
        transition: transform .35s ease, background .35s ease, color .35s ease;
    }


    .road-step:hover > span {
        transform: scale(1.07);
        color: #ffffff;
        background: linear-gradient( 135deg, #2563eb, #3b82f6 );
        border-color: transparent;
    }


    /* =========================================================
   STEP CONTENT
========================================================= */

    .road-step div {
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }


    .road-step b {
        color: #172033;
        font-size: 14px;
        line-height: 1.3;
        font-weight: 800;
        letter-spacing: -.2px;
    }


    .road-step small {
        color: #7b8799;
        font-size: 11.5px;
        line-height: 1.45;
    }


    /* =========================================================
   STEP ARROW
========================================================= */

    .road-step::after {
        content: "→";
        margin-left: auto;
        color: #94a3b8;
        font-size: 17px;
        opacity: .55;
        transform: translateX(-3px);
        transition: transform .3s ease, color .3s ease, opacity .3s ease;
    }


    .road-step:hover::after {
        color: #2563eb;
        opacity: 1;
        transform: translateX(2px);
    }


/* =========================================================
   CONNECTING LINE
========================================================= */

.roadmap-steps::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 35px;
    bottom: 35px;
    width: 1px;
    background: linear-gradient( 180deg, rgba(37, 99, 235, .22), rgba(37, 99, 235, .05) );
    z-index: -1;
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1050px) {

    .roadmap-card {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px;
    }

    .roadmap-copy h2 {
        max-width: 650px;
    }

    .roadmap-copy p {
        max-width: 600px;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 750px) {

    .roadmap {
        padding-bottom: 80px;
    }

    .roadmap-card {
        gap: 38px;
        padding: 40px 30px;
        border-radius: 24px;
    }

    .roadmap-copy h2 {
        font-size: 42px;
        letter-spacing: -1.8px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 520px) {

    .roadmap {
        padding: 10px 0 65px;
    }

    .roadmap-card {
        gap: 32px;
        padding: 32px 20px;
        border-radius: 21px;
    }

    .roadmap-copy h2 {
        font-size: 36px;
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .roadmap-copy p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .roadmap-steps {
        gap: 10px;
    }

    .road-step {
        min-height: 68px;
        gap: 13px;
        padding: 13px 14px;
        border-radius: 15px;
    }

        .road-step > span {
            flex-basis: 38px;
            width: 38px;
            height: 38px;
            border-radius: 11px;
        }

        .road-step b {
            font-size: 13px;
        }

        .road-step small {
            font-size: 10.5px;
        }

        .road-step::after {
            display: none;
        }

    .roadmap-steps::before {
        left: 33px;
        top: 32px;
        bottom: 32px;
    }
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .roadmap *,
    .roadmap *::before,
    .roadmap *::after {
        transition: none !important;
    }
}

.final-cta {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,#eaf1ff,#f8fbff);
    border-top: 1px solid var(--line)
}

.final-cta-inner {
    text-align: center;
    position: relative
}

.final-cta h2 {
    font-size: 62px;
    line-height: 1;
    margin: 18px 0
}

.final-cta p {
    color: #667085;
    margin-bottom: 27px
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none
}

.orb-one {
    width: 250px;
    height: 250px;
    background: rgba(80,120,255,.18);
    left: 5%;
    top: 0
}

.orb-two {
    width: 220px;
    height: 220px;
    background: rgba(151,109,255,.14);
    right: 7%;
    bottom: -80px
}

.courses-hero {
    padding: 80px 0 60px;
    text-align: center;
    min-height: 400px
}

.courses-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center
}

.courses-brand-mark {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin: 28px 0 25px;
    background: linear-gradient(135deg,#5b8cff,#9674ff);
    font: 700 48px "Space Grotesk";
    box-shadow: 0 20px 55px rgba(91,140,255,.2)
}

.courses-hero h1 {
    font: 700 clamp(54px,7vw,84px)/.98 "Space Grotesk";
    letter-spacing: -.055em;
    margin: 14px 0
}

    .courses-hero h1 span {
        background: linear-gradient(100deg,#79a3ff,#62d9ff,#a17dff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

.courses-hero p {
    color: #eff6ff;
    max-width: 590px;
    font-size: 14px;
    font-weight: 700;
}

.filter-row {
    display: flex;
    gap: 8px;
    margin-top: 35px;
    flex-wrap: wrap;
    justify-content: center
}

.filter {
    border: 1px solid var(--line);
    background: rgba(30,73,140,.035);
    color: #8d9bb2;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 11.5px
}

    .filter.active, .filter:hover {
        background: #111827;
        color: #fff;
        border-color: #111827;
        box-shadow: 0 8px 20px rgba(17,24,39,.12)
    }

.all-courses {
    padding: 20px 0 120px
}

.catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #68768d;
    font-size: 11px
}

    .catalog-head b {
        color: #fff
    }

    .catalog-head a {
        color: #759cff
    }

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

.catalog-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    border: 1px solid var(--line);
    border-radius: 21px;
    overflow: hidden;
    background: #ffffff;
    transition: .3s
}

    .catalog-card:hover {
        transform: translateY(-4px);
        border-color: rgba(91,140,255,.35)
    }

    .catalog-card.hidden {
        display: none
    }

.catalog-image {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 19px;
    background-image: radial-gradient(circle at 30% 20%,rgba(255,255,255,.18),transparent 28%),linear-gradient(145deg,#1a3265,#0b1428)
}

    .catalog-image > span {
        font-size: 11px;
        color: #8fa8d7
    }

    .catalog-image > strong {
        font: 700 42px "Space Grotesk";
        color: #dce8ff
    }

.gen-bg {
    background-image: radial-gradient(circle at 70% 25%,rgba(108,214,255,.24),transparent 30%),linear-gradient(145deg,#164054,#11172d)
}

.prompt-bg {
    background-image: radial-gradient(circle at 40% 70%,rgba(168,122,255,.3),transparent 32%),linear-gradient(145deg,#2b2055,#10172c)
}

.python-bg {
    background-image: radial-gradient(circle at 70% 30%,rgba(255,220,91,.18),transparent 30%),linear-gradient(145deg,#173d4b,#111a2d)
}

.ml-bg {
    background-image: radial-gradient(circle at 30% 30%,rgba(91,140,255,.3),transparent 30%),linear-gradient(145deg,#152d55,#101524)
}

.dl-bg {
    background-image: radial-gradient(circle at 70% 30%,rgba(177,114,255,.28),transparent 30%),linear-gradient(145deg,#332052,#111425)
}

.cv-bg {
    background-image: radial-gradient(circle at 30% 65%,rgba(87,225,255,.2),transparent 30%),linear-gradient(145deg,#15434c,#101729)
}

.nlp-bg {
    background-image: radial-gradient(circle at 70% 20%,rgba(107,151,255,.25),transparent 30%),linear-gradient(145deg,#24325d,#111526)
}

.agent-bg {
    background-image: radial-gradient(circle at 30% 25%,rgba(104,255,194,.16),transparent 30%),linear-gradient(145deg,#153a39,#0d1822)
}

.biz-bg {
    background-image: radial-gradient(circle at 65% 35%,rgba(255,201,104,.15),transparent 30%),linear-gradient(145deg,#44311c,#151820)
}

.catalog-body {
    padding: 22px
}

    .catalog-body .course-top > span:last-child {
        font-size: 8px;
        color: #748196
    }

    .catalog-body h2 {
        font-size: 22px;
        line-height: 1.12;
        margin: 15px 0 10px
    }

    .catalog-body p {
        color: #77859d;
        font-size: 11px
    }

    .catalog-body ul {
        list-style: none;
        margin: 16px 0
    }

    .catalog-body li {
        font-size: 11.5px;
        color: #5f6c80;
        margin: 6px 0
    }

        .catalog-body li:before {
            content: "✓";
            color: #6f9dff;
            margin-right: 7px
        }

.catalog-footer {
    border-top: 1px solid var(--line);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    color: #748196;
    font-size: 11.5px
}

    .catalog-footer a {
        color: #82a6ff;
        font-weight: 700
    }

.empty-state {
    display: none;
    text-align: center;
    padding: 70px;
    color: #65738b;
    font-size: 13px
}

.course-cta {
    padding: 80px 0;
    background: #f0f4fa;
    border-top: 1px solid var(--line)
}

.course-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.course-cta h2 {
    font-size: 46px;
    line-height: 1;
    margin-top: 10px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease,transform .7s ease
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

/* Premium light enquiry form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px
}

.input-shell, .select-shell, .textarea-shell {
    position: relative
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #7892c6;
    z-index: 2
}

.input-shell input {
    padding-left: 35px !important
}

.select-arrow {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #7892c6;
    font-size: 15px
}

.select-shell select {
    appearance: none;
    padding-right: 35px !important
}

.textarea-count {
    position: absolute;
    right: 11px;
    bottom: 8px;
    font-size: 11px;
    color: #98a2b3;
    background: #f8fafc;
    padding: 2px 5px;
    border-radius: 5px
}

.enquiry-card {
    box-shadow: 0 30px 80px rgba(39,67,111,.14),0 2px 8px rgba(39,67,111,.04)
}

    .enquiry-card:before {
        content: "";
        position: absolute;
        left: 24px;
        right: 24px;
        top: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--blue),var(--cyan),var(--purple));
        border-radius: 99px
    }

.field input, .field select, .field textarea {
    border-color: #dce3ee;
    box-shadow: 0 1px 2px rgba(16,24,40,.02)
}

    .field input:hover, .field select:hover, .field textarea:hover {
        border-color: #bdc9dc
    }

/* ============================================================
   ZTECHNETICS ACADEMY — FOOTER
============================================================ */

.zt-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ============================================================
   BACKGROUND
============================================================ */

.zt-footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.zt-grid {
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image: linear-gradient( to right, rgba(15, 23, 42, .035) 1px, transparent 1px ), linear-gradient( to bottom, rgba(15, 23, 42, .035) 1px, transparent 1px );
    background-size: 36px 36px;
}

.zt-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 999px;
    filter: blur(80px);
}

.zt-glow-blue {
    right: -220px;
    top: -220px;
    background: rgba(37, 99, 235, .055);
}

.zt-glow-teal {
    left: -220px;
    bottom: -220px;
    background: rgba(20, 184, 166, .05);
}


/* ============================================================
   MAIN
============================================================ */

.zt-footer-main {
    position: relative;
    max-width: 1380px;
    margin: 0 auto;
    padding: 20px;
}


/* ============================================================
   BRAND PANEL
============================================================ */

.zt-brand-panel {
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    padding: 38px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 28px;
    background: linear-gradient( 135deg, #020617 0%, #0f172a 55%, #172554 100% );
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12);
}

.zt-brand-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.zt-brand-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(70px);
    pointer-events: none;
}

.zt-brand-glow-blue {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -120px;
    background: rgba(59, 130, 246, .2);
}

.zt-brand-glow-teal {
    width: 250px;
    height: 250px;
    left: 35%;
    bottom: -150px;
    background: rgba(45, 212, 191, .1);
}


/* ============================================================
   LOGO
============================================================ */

.zt-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.zt-logo-box {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.zt-logo {
    width: 18%;
    height: 18%;
    object-fit: contain;
    display: block;
    transition: transform .4s ease;
}
/* 
.zt-logo-wrap:hover .zt-logo {
  transform: scale(1.05);
} */

.zt-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

    .zt-wordmark span {
        color: #ffffff;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -.03em;
    }

    .zt-wordmark small {
        margin-top: 7px;
        color: #38bdf8;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .22em;
        text-transform: uppercase;
    }

.zt-brand-info > p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   CTA BUTTON
============================================================ */

.zt-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    padding: 15px 20px;
    border-radius: 13px;
    background: #2563eb;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(30, 64, 175, .3);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

    .zt-primary-btn svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .zt-primary-btn:hover {
        transform: translateY(-3px);
        background: #3b82f6;
        box-shadow: 0 18px 35px rgba(30, 64, 175, .35);
    }

    .zt-primary-btn .zt-arrow {
        transition: transform .3s ease;
    }

    .zt-primary-btn:hover .zt-arrow {
        transform: translate(2px, -2px);
    }


/* ============================================================
   CONTENT GRID
============================================================ */

.zt-footer-grid {
    grid-template-columns: minmax(0, 0.80fr) minmax(180px, .65fr) minmax(0, 1fr);
}

.zt-contact-card {
    grid-template-columns: 20px minmax(0, 1fr) 18px;
    width: 80%;
    min-width: 0;
    box-sizing: border-box;
}

.zt-contact-info {
    min-width: 0;
}

    .zt-contact-info strong {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

/* ============================================================
   BRAND SECTION
============================================================ */

.zt-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2563eb;
    font-family: monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .zt-eyebrow span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #2563eb;
    }


/* ============================================================
   TRUST CARD
============================================================ */

.zt-trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 340px;
    margin-top: 24px;
    padding: 12px;
    border: 1px solid #dbeafe;
    border-radius: 16px;
    background: rgba(239, 246, 255, .75);
}

.zt-trust-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ffffff;
    color: #2563eb;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .06);
}

    .zt-trust-icon svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.zt-trust-card span {
    display: block;
    color: #2563eb;
    font-family: monospace;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.zt-trust-card strong {
    display: block;
    margin-top: 4px;
    color: #334155;
    font-size: 12px;
}


/* ============================================================
   SOCIAL
============================================================ */

.zt-social-section {
    margin-top: 27px;
}

    .zt-social-section > p {
        margin: 0 0 12px;
        color: #94a3b8;
        font-family: monospace;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

.zt-socials {
    display: flex;
    gap: 8px;
}

/* ================================
   FOOTER GRID — FIXED
================================ */

.zt-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.80fr) minmax(180px, .65fr) minmax(0, 1fr);
    gap: 55px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.zt-footer-brand,
.zt-footer-column,
.zt-contact-column {
    min-width: 0;
    max-width: 100%;
}


    /* ================================
   FOOTER BRAND
================================ */

    .zt-footer-brand h3 {
        margin: 12px 0 16px;
        font-size: clamp(24px, 2vw, 36px);
        line-height: 1.08;
        letter-spacing: -1.5px;
        max-width: 480px;
    }

        .zt-footer-brand h3 strong {
            display: block;
            color: #2563eb;
        }


    /* ================================
   SECTION HEADING
================================ */

    .zt-footer-brand h4,
    .zt-footer-column h4,
    .zt-contact-column h4 {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0 0 14px;
        font-size: 15px;
        font-weight: 800;
        color: #111827;
    }

        .zt-footer-brand h4 span,
        .zt-footer-column h4 span,
        .zt-contact-column h4 span {
            width: 22px;
            height: 2px;
            flex: 0 0 22px;
            border-radius: 99px;
            background: linear-gradient(90deg, #2563eb, #60a5fa);
        }


/* ================================
   EMAIL CARD — MAIN FIX
================================ */

.zt-contact-card {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .zt-contact-card:hover {
        transform: translateY(-2px);
        border-color: #bfdbfe;
        box-shadow: 0 16px 35px rgba(37, 99, 235, .10);
    }


/* ================================
   EMAIL ICON
================================ */

.zt-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient( 145deg, #eff6ff, #dbeafe );
    color: #2563eb;
    flex-shrink: 0;
}

    .zt-contact-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


/* ================================
   EMAIL TEXT
================================ */

.zt-contact-info {
    min-width: 0;
    overflow: hidden;
}

    .zt-contact-info span {
        display: block;
        margin-bottom: 5px;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: #94a3b8;
    }

    .zt-contact-info strong {
        display: block;
        min-width: 0;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 750;
        color: #172033;
        /* Prevent overflow */
        overflow-wrap: anywhere;
        word-break: break-word;
    }


/* ================================
   ARROW
================================ */

.zt-contact-arrow {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    fill: none;
    stroke: #94a3b8;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease, stroke .25s ease;
}

.zt-contact-card:hover .zt-contact-arrow {
    transform: translate(2px, -2px);
    stroke: #2563eb;
}


/* ================================
   EXPLORE LINKS
================================ */

.zt-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zt-footer-column li {
    margin-bottom: 11px;
}

.zt-footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}

    .zt-footer-column a i {
        font-size: 19px;
        line-height: 1;
        color: #2563eb;
    }

    .zt-footer-column a:hover {
        color: #2563eb;
        transform: translateX(3px);
    }


/* ================================
   LOCATION CARD
================================ */

.zt-location-card {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .zt-location-card:hover {
        transform: translateY(-2px);
        border-color: #bfdbfe;
        box-shadow: 0 15px 35px rgba(15, 23, 42, .08);
    }

.zt-location-content {
    display: flex;
    gap: 13px;
    padding: 17px;
    min-width: 0;
}

.zt-location-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
}

    .zt-location-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.zt-location-info {
    min-width: 0;
}

.zt-location-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
}

    .zt-location-title span {
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: #94a3b8;
    }

    .zt-location-title svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        fill: none;
        stroke: #94a3b8;
        stroke-width: 1.5;
    }

.zt-location-info strong {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 650;
    color: #334155;
    overflow-wrap: anywhere;
}


/* ================================
   MINI MAP
================================ */

.zt-mini-map {
    position: relative;
    height: 105px;
    overflow: hidden;
    background: linear-gradient( 135deg, #f8fafc, #eff6ff );
}

.zt-map-lines {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient( 35deg, transparent 46%, #cbd5e1 47%, transparent 48% ), linear-gradient( 115deg, transparent 46%, #dbeafe 47%, transparent 48% );
    background-size: 75px 55px;
}

.zt-map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.zt-pin {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    color: #2563eb;
}

    .zt-pin svg {
        width: 100%;
        height: 100%;
    }

.zt-pin-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .14);
    animation: ztMapPulse 2s infinite;
}

@keyframes ztMapPulse {
    0% {
        transform: scale(.7);
        opacity: .8;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.zt-map-label {
    position: absolute;
    left: 14px;
    bottom: 11px;
    padding: 5px 9px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .9);
    font-size: 9px;
    font-weight: 700;
    color: #475569;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .06);
}


/* ================================
   SOCIAL
================================ */

.zt-social-section {
    margin-top: 27px;
}

    .zt-social-section p {
        margin: 0 0 10px;
        font-size: 11px;
        font-weight: 750;
        color: #64748b;
    }

.zt-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zt-social {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #fff;
    color: #64748b;
    transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

    .zt-social svg {
        width: 17px;
        height: 17px;
        fill: currentColor;
    }

    .zt-social:hover {
        transform: translateY(-2px);
        color: #2563eb;
        border-color: #bfdbfe;
        background: #eff6ff;
    }


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .zt-footer-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px 30px;
    }

    .zt-footer-brand {
        grid-column: 1 / -1;
    }

        .zt-footer-brand h3 {
            max-width: 600px;
        }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .zt-footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .zt-footer-brand,
    .zt-footer-column,
    .zt-contact-column {
        grid-column: auto;
        width: 100%;
    }

        .zt-footer-brand h3 {
            font-size: 31px;
            line-height: 1.08;
            letter-spacing: -1px;
        }

    .zt-contact-card {
        grid-template-columns: 45px minmax(0, 1fr) 18px;
        gap: 11px;
        padding: 13px;
        border-radius: 17px;
    }

    .zt-contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 13px;
    }

    .zt-contact-info strong {
        font-size: 14px;
    }

    .zt-contact-arrow {
        width: 17px;
        height: 17px;
    }

    .zt-location-content {
        padding: 14px;
    }
}


/* ================================
   VERY SMALL MOBILE
================================ */

@media (max-width: 380px) {

    .zt-footer-grid {
        padding-left: 14px;
        padding-right: 14px;
    }

    .zt-contact-card {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .zt-contact-arrow {
        display: none;
    }

    .zt-contact-icon {
        width: 42px;
        height: 42px;
    }

    .zt-contact-info strong {
        font-size: 13px;
    }
}

.zt-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #94a3b8;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .04);
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

    .zt-social svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    .zt-social:hover {
        transform: translateY(-4px);
        border-color: #2563eb;
        background: #2563eb;
        color: #ffffff;
        box-shadow: 0 12px 24px rgba(37, 99, 235, .2);
    }


/* ============================================================
   LINKS
============================================================ */

.zt-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.zt-footer-column li {
    margin-bottom: 14px;
}

.zt-footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

    .zt-footer-column a:hover {
        transform: translateX(5px);
        color: #2563eb;
    }

    .zt-footer-column a i {
        color: #cbd5e1;
        font-size: 18px;
        font-style: normal;
        line-height: 1;
        transition: color .2s ease;
    }

    .zt-footer-column a:hover i {
        color: #2563eb;
    }

    .zt-footer-column a b {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #cbd5e1;
        transition: background .2s ease;
    }

    .zt-footer-column a:hover b {
        background: #2563eb;
    }


/* ============================================================
   CONTACT CARD
============================================================ */


.zt-location-card {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 17px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, .035);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.zt-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

    .zt-contact-card:hover,
    .zt-location-card:hover {
        transform: translateY(-3px);
        border-color: #bfdbfe;
        box-shadow: 0 15px 30px rgba(15, 23, 42, .08);
    }

.zt-contact-icon,
.zt-location-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    transition: background .3s ease, color .3s ease;
}

.zt-email-icon {
    background: #eff6ff;
    color: #2563eb;
}

.zt-contact-card:hover .zt-email-icon {
    background: #2563eb;
    color: #ffffff;
}

.zt-contact-icon svg,
.zt-location-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zt-contact-info {
    min-width: 0;
}

    .zt-contact-info span,
    .zt-location-title span {
        display: block;
        color: #94a3b8;
        font-family: monospace;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .zt-contact-info strong {
        display: block;
        margin-top: 4px;
        overflow: hidden;
        color: #334155;
        font-size: 13px;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.zt-contact-arrow {
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex-shrink: 0;
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color .3s ease, transform .3s ease;
}

.zt-contact-card:hover .zt-contact-arrow {
    stroke: #2563eb;
    transform: translate(2px, -2px);
}


/* ============================================================
   LOCATION
============================================================ */

.zt-location-card {
    overflow: hidden;
}

.zt-location-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
}

.zt-location-icon {
    background: #f0fdfa;
    color: #0d9488;
}

.zt-location-card:hover .zt-location-icon {
    background: #0d9488;
    color: #ffffff;
}

.zt-location-info {
    min-width: 0;
    flex: 1;
}

.zt-location-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

    .zt-location-title svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        fill: none;
        stroke: #cbd5e1;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .3s ease;
    }

.zt-location-card:hover .zt-location-title svg {
    stroke: #0d9488;
}

.zt-location-info > strong {
    display: block;
    margin-top: 6px;
    color: #334155;
    font-size: 13px;
    line-height: 1.55;
}


/* ============================================================
   MINI MAP
============================================================ */

.zt-mini-map {
    position: relative;
    height: 100px;
    margin: 0 12px 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
}

.zt-map-lines {
    position: absolute;
    inset: 0;
    opacity: .75;
    background-image: linear-gradient( 35deg, transparent 46%, rgba(37, 99, 235, .12) 47%, rgba(37, 99, 235, .12) 49%, transparent 50% ), linear-gradient( 120deg, transparent 47%, rgba(20, 184, 166, .10) 48%, rgba(20, 184, 166, .10) 50%, transparent 51% );
    background-size: 50px 50px, 65px 65px;
}

.zt-map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.zt-pin-pulse {
    position: absolute;
    width: 55px;
    height: 55px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(59, 130, 246, .10);
    animation: ztPulse 2s infinite;
}

@keyframes ztPulse {
    0% {
        transform: translate(-50%, -50%) scale(.7);
        opacity: .8;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.zt-pin {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
}

    .zt-pin svg {
        width: 17px;
        height: 17px;
    }

.zt-map-label {
    position: absolute;
    left: 9px;
    bottom: 8px;
    padding: 6px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: #64748b;
    font-family: monospace;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .06);
    backdrop-filter: blur(8px);
}


/* ============================================================
   COPYRIGHT
============================================================ */

.zt-copyright {
    position: relative;
    border-top: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #172554 100%);
}

.zt-copyright-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.zt-copyright p {
    margin: 0;
    color: #ffffff;
    font-family: monospace;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}

.zt-copyright strong {
    color: var(--brand-blue-light);
}

.zt-built {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .zt-built > span {
        width: 1px;
        height: 13px;
        background: #e2e8f0;
    }

    .zt-built p {
        text-transform: uppercase;
        letter-spacing: .08em;
    }


/* ============================================================
   BRAND LINE
============================================================ */

.zt-brand-line {
    height: 4px;
    background: linear-gradient( to right, #2563eb, #6366f1, #14b8a6 );
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .zt-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 45px;
    }

    .zt-footer-brand {
        grid-column: span 3;
    }

    .zt-contact-column {
        grid-column: span 3;
        max-width: 600px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 700px) {

    .zt-footer-main {
        padding: 45px 18px 45px;
    }

    .zt-brand-panel {
        margin-bottom: 45px;
        padding: 25px 20px;
        border-radius: 22px;
    }

    .zt-brand-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .zt-brand-info > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .zt-logo-box {
        width: 62px;
        height: 62px;
        border-radius: 13px;
    }

    .zt-wordmark span {
        font-size: 17px;
    }

    .zt-primary-btn {
        width: 100%;
        justify-content: center;
    }

    .zt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .zt-footer-brand {
        grid-column: span 2;
    }

    .zt-contact-column {
        grid-column: span 2;
        max-width: none;
    }

    .zt-footer-brand h3 {
        font-size: 25px;
    }

    .zt-copyright-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 17px 18px;
    }

    .zt-built > span {
        display: none;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 450px) {

    .zt-footer-grid {
        grid-template-columns: 1fr;
    }

    .zt-footer-brand,
    .zt-contact-column {
        grid-column: span 1;
    }

        .zt-footer-brand h3 {
            font-size: 23px;
        }

    .zt-location-info > strong {
        font-size: 12px;
    }

    .zt-contact-info strong {
        font-size: 12px;
    }

    .zt-social {
        width: 38px;
        height: 38px;
    }
}


@media(max-width:1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero {
        padding-top: 125px
    }

    .hero-content {
        max-width: 780px
    }

    .hero-form-wrap {
        max-width: 650px
    }

    .course-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .benefit-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .roadmap-card {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-copy {
        text-align: left
    }

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

@media(max-width:760px) {
    .form-row {
        grid-template-columns: 1fr
    }

    .container {
        width: min(calc(100% - 28px),var(--container))
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 6px;
        right: 6px;
        top: 76px;
        padding: 14px;
        border: 1px solid var(--line);
        background: rgba(9,14,27,.98);
        border-radius: 17px;
        flex-direction: column;
        align-items: stretch;
        gap: 5px
    }

        .main-nav.open {
            display: flex
        }

        .main-nav a {
            padding: 10px 12px
        }

    .hero {
        min-height: auto;
        padding: 120px 0 60px
    }

    .hero-logo {
        margin-top: 24px
    }

    .hero-z {
        font-size: 65px
    }

    .hero-logo-name {
        font-size: 22px
    }

    .hero h1 {
        font-size: 50px
    }

    .hero-text {
        font-size: 14px
    }

    .hero-stats {
        gap: 20px
    }

    .trust-inner {
        overflow: auto;
        justify-content: flex-start;
        padding: 20px 0
    }

        .trust-inner > span {
            display: none
        }

        .trust-inner div {
            white-space: nowrap
        }

    .programs, .why {
        padding: 80px 0
    }

    .section-head {
        display: block;
        margin-bottom: 35px
    }

        .section-head h2 {
            font-size: 39px;
            margin-bottom: 18px
        }

    .course-grid, .catalog-grid {
        grid-template-columns: 1fr
    }

    .benefit-grid {
        grid-template-columns: 1fr
    }

    .roadmap {
        padding-bottom: 80px
    }

    .roadmap-card {
        padding: 32px 22px
    }

    .roadmap-copy h2 {
        font-size: 42px
    }

    .final-cta {
        padding: 15px 0
    }

        .final-cta h2 {
            font-size: 45px
        }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-links {
        flex-wrap: wrap
    }

    .catalog-card {
        grid-template-columns: 125px 1fr
    }

    .catalog-image {
        min-height: 300px
    }

    .courses-hero {
        padding-top: 130px
    }

        .courses-hero h1 {
            font-size: 52px
        }

    .course-cta-inner {
        display: block
    }

    .course-cta h2 {
        font-size: 40px;
        margin-bottom: 25px
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 43px
    }

    .hero-logo {
        gap: 11px
    }

    .hero-z {
        font-size: 55px
    }

    .hero-logo-name {
        font-size: 18px
    }

    .hero-logo-sub {
        font-size: 8px
    }

    .enquiry-card {
        padding: 21px
    }

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

    .hero-stats {
        justify-content: space-between
    }

        .hero-stats strong {
            font-size: 19px
        }

    .catalog-card {
        grid-template-columns: 1fr
    }

    .catalog-image {
        min-height: 150px
    }

    .catalog-body h2 {
        font-size: 20px
    }
}
.field-error {
    display: block;
    margin-top: 6px;
    padding-left: 2px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    animation: errorFadeIn 0.2s ease;
}

.field-error::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-right: 6px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    font-size: 10px;
    font-weight: 700;
    vertical-align: -1px;
}

@keyframes errorFadeIn {
    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.success-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.success-modal {
    width: 100%;
    max-width: 430px;
    padding: 40px 30px;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.25);
    animation: successModalIn .35s ease-out;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #10b981;
    font-size: 36px;
    font-weight: 700;
}

.success-modal h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 26px;
    font-weight: 700;
}

.success-modal p {
    margin: 0 auto 22px;
    max-width: 350px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.success-modal small {
    display: block;
    margin-top: 10px;
    color: #94a3b8;
    font-size: 12px;
}

.success-loader {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    border: 2px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: successSpin .8s linear infinite;
}

@keyframes successModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 760px) {

    /* --------------------------------------------------------
       HEADER
       -------------------------------------------------------- */

    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid #e5eaf2;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }


        /* --------------------------------------------------------
       HEADER CONTAINER
       -------------------------------------------------------- */

        .site-header .header-container {
            position: relative;
            width: calc(100% - 28px);
            min-height: 70px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
        }


        /* --------------------------------------------------------
       BRAND
       -------------------------------------------------------- */

        .site-header .brand {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            flex-shrink: 0;
            height: 58px;
        }


        /* --------------------------------------------------------
       LOGO
       IMPORTANT:
       The Academy logo is horizontal, so don't use a square
       82x82 container.
       -------------------------------------------------------- */

        .site-header .brand-logo {
            position: relative !important;
            width: 102px !important;
            height: 54px !important;
            min-width: 102px;
            min-height: 54px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
            margin: 0;
            padding: 0;
            border-radius: 10px;
            background: transparent;
        }


            .site-header .brand-logo img {
                position: relative;
                z-index: 2;
                width: 100% !important;
                height: 100% !important;
                display: block;
                padding: 2px !important;
                object-fit: contain;
                object-position: center;
                user-select: none;
                -webkit-user-drag: none;
                transition: transform .25s ease;
            }


            .site-header .brand-logo:hover img {
                transform: scale(1.03);
            }


        /* --------------------------------------------------------
       BRAND TEXT
       -------------------------------------------------------- */

        .site-header .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            line-height: 1;
        }


        .site-header .brand-name {
            color: #0f172a;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: -.03em;
            white-space: nowrap;
        }


        .site-header .brand-academy {
            margin-top: 5px;
            color: #2563eb;
            font-size: 9px;
            font-weight: 800;
            letter-spacing: .18em;
            text-transform: uppercase;
            white-space: nowrap;
        }


        /* --------------------------------------------------------
       HAMBURGER BUTTON
       -------------------------------------------------------- */

        .site-header .nav-toggle {
            position: relative;
            z-index: 10001;
            display: flex !important;
            width: 46px !important;
            height: 46px !important;
            min-width: 46px;
            min-height: 46px;
            padding: 0;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            border: 1px solid #dbe5f1;
            border-radius: 14px;
            background: #f8fbff;
            box-shadow: 0 6px 18px rgba(37, 99, 235, .08), inset 0 1px 0 rgba(255,255,255,.9);
            cursor: pointer;
            transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
        }


            .site-header .nav-toggle:hover {
                background: #eff6ff;
                border-color: #bfdbfe;
                box-shadow: 0 8px 22px rgba(37, 99, 235, .12);
            }


            .site-header .nav-toggle:active {
                transform: scale(.96);
            }


            /* Hamburger lines */

            .site-header .nav-toggle span {
                display: block;
                width: 20px;
                height: 2px;
                margin: 0;
                border-radius: 999px;
                background: #334155;
                transition: transform .3s ease, opacity .2s ease, width .3s ease, background .25s ease;
            }


            /* Open hamburger */

            .site-header .nav-toggle.active span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
                background: #2563eb;
            }

            .site-header .main-nav .nav-cta {
                width: 100% !important;
                min-height: 46px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 6px;
                margin: 4px 0 0 !important;
                padding: 0 14px !important;
                border: 1px solid #2563eb !important;
                border-radius: 13px !important;
                background: linear-gradient( 135deg, #2563eb 0%, #1d4ed8 100% ) !important;
                color: #ffffff !important;
                font-size: 12px !important;
                font-weight: 800 !important;
                box-shadow: 0 10px 24px rgba(37, 99, 235, .20);
                transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
            }


                .site-header .main-nav .nav-cta span {
                    color: #ffffff !important;
                }


}