
:root {
    --gold: #C8A96B;
    --gold-l: #E7D7B5;
    --gold-d: #B68B3D;
    --gold-b: #D4AF37;
    --bg: #FAF8F3;
    --bg2: #F3EDE2;
    --dark: #111111;
    --dark2: #1A1A1A;
    --mid: #5C564F;
    --white: #FFFFFF;
    --glass: rgba(255,255,255,0.78);
    --gb: rgba(200,169,107,0.22);
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans',sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: rgba(250,248,243,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--gb);
    transition: padding .3s,box-shadow .3s;
}

    nav.scrolled {
        padding: 12px 5%;
        box-shadow: 0 4px 40px rgba(0,0,0,0.07)
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.nav-logo-mark img {
    width: 200px;
}

.nav-logo-mark svg {
    width: 20px;
    height: 20px
}

.nav-logo-text {
    line-height: 1
}

    .nav-logo-text b {
        display: block;
        font-family: 'Playfair Display',serif;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .14em;
        color: var(--dark)
    }

    .nav-logo-text small {
        font-size: 8px;
        letter-spacing: .32em;
        color: var(--gold-d);
        text-transform: uppercase;
        margin-top: 3px;
        display: block
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

    .nav-links a {
        font-size: 11px;
        font-weight: 400;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--mid);
        text-decoration: none;
        transition: color .25s
    }

        .nav-links a:hover {
            color: var(--gold-d)
        }

.nav-cta {
    padding: 10px 26px;
    border: 1px solid var(--gold);
    font-family: 'DM Sans',sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-d);
    text-decoration: none;
    background: transparent;
    transition: all .3s;
    white-space: nowrap
}

    .nav-cta:hover {
        background: var(--gold);
        color: #fff
    }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px
}

    .nav-hamburger span {
        width: 22px;
        height: 1.5px;
        background: var(--dark);
        display: block;
        transition: all .3s
    }

.mob-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    background: rgba(250,248,243,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px
}

    .mob-menu.open {
        display: flex
    }

    .mob-menu a {
        font-family: 'Playfair Display',serif;
        font-size: 26px;
        color: var(--dark);
        text-decoration: none;
        font-weight: 400;
        transition: color .25s
    }

        .mob-menu a:hover {
            color: var(--gold-d)
        }

.mob-close {
    position: absolute;
    top: 22px;
    right: 5%;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mid)
}

/* ===== BUTTONS ===== */
.btn-gold {
    padding: 15px 34px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold-b));
    color: #fff;
    font-family: 'DM Sans',sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 28px rgba(200,169,107,.35);
    transition: all .3s
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(200,169,107,.5)
    }

.btn-ghost {
    padding: 15px 34px;
    background: transparent;
    border: 1px solid rgba(200,169,107,.4);
    color: var(--dark);
    font-family: 'DM Sans',sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .3s
}

    .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold-d);
        background: rgba(200,169,107,.05)
    }

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?w=2000&q=85&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(250,248,243,0.97) 0%,rgba(250,248,243,0.88) 45%,rgba(250,248,243,0.50) 100%)
}

#particleCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--gold)
}

.hero-eyebrow span {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-d)
}

h1.hero-h1 {
    font-family: 'Playfair Display',serif;
    font-size: clamp(40px,5.5vw,72px);
    font-weight: 700;
    line-height: 1.06;
    color: var(--dark);
    margin-bottom: 22px
}

    h1.hero-h1 em {
        font-style: italic;
        background: linear-gradient(130deg,#9A7B2E,#D4AF37,#F2D272);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid);
    max-width: 480px;
    margin-bottom: 40px
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-visual {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-img-frame {
    position: absolute;
    inset: 30px;
    overflow: hidden;
    border: 1px solid rgba(200,169,107,.25)
}

    .hero-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.88) saturate(.75)
    }

    .hero-img-frame::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(200,169,107,.18) 0%,transparent 50%,rgba(17,17,17,.45) 100%)
    }

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,169,107,.18);
    animation: spin linear infinite;
    pointer-events: none
}

.hero-orbit-1 {
    width: 480px;
    height: 480px;
    animation-duration: 28s
}

    .hero-orbit-1::after {
        content: '';
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold-b);
        box-shadow: 0 0 16px rgba(212,175,55,.9)
    }

.hero-orbit-2 {
    width: 380px;
    height: 380px;
    animation-duration: 18s;
    animation-direction: reverse;
    border-style: dashed;
    border-color: rgba(200,169,107,.12)
}

    .hero-orbit-2::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -4px;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold)
    }

.hero-orbit-3 {
    width: 280px;
    height: 280px;
    animation-duration: 11s;
    border-color: rgba(200,169,107,.08)
}

.hero-badge {
    position: absolute;
    z-index: 5;
    width: 122px;
    height: 122px;
    border-radius: 50%;
    background: rgba(250,248,243,.92);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(200,169,107,.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 20px 60px rgba(200,169,107,.22)
}

    .hero-badge svg {
        width: 36px;
        height: 36px
    }

    .hero-badge span {
        font-size: 9px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: var(--gold-d);
        font-weight: 500
    }

.fc {
    position: absolute;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(200,169,107,.22);
    padding: 12px 18px;
    z-index: 6;
    box-shadow: 0 8px 36px rgba(0,0,0,.08)
}

.fc-1 {
    top: 55px;
    right: 5px;
    animation: fl1 6.5s ease-in-out infinite
}

.fc-2 {
    bottom: 90px;
    left: -15px;
    animation: fl2 8s ease-in-out infinite
}

.fc-3 {
    top: 190px;
    left: -20px;
    animation: fl1 5.5s ease-in-out infinite 1.3s
}

.fc-lbl {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px
}

.fc-val {
    font-family: 'Playfair Display',serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1
}

.fc-sub {
    font-size: 10px;
    color: var(--mid);
    margin-top: 2px
}

@keyframes spin {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes fl1 {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes fl2 {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(10px)
    }
}

/* ===== SECTION COMMONS ===== */
.sec {
    position: relative
}

.si {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px
}

    .eyebrow::before, .eyebrow::after {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--gold)
    }

    .eyebrow span {
        font-size: 10px;
        letter-spacing: .34em;
        text-transform: uppercase;
        color: var(--gold-d)
    }

.sec-title {
    font-family: 'Playfair Display',serif;
    font-size: clamp(30px,4vw,52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dark)
}

    .sec-title em {
        font-style: italic;
        background: linear-gradient(130deg,var(--gold-d),var(--gold-b));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

.sec-sub {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.82;
    color: var(--mid);
    margin-top: 14px;
    max-width: 600px
}

.center {
    text-align: center
}

    .center .sec-sub {
        margin-left: auto;
        margin-right: auto
    }

.gold-rule {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
    margin: 20px auto 0
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .78s ease,transform .78s ease
}

    .rv.vis {
        opacity: 1;
        transform: none
    }

    .rv.d1 {
        transition-delay: .1s
    }

    .rv.d2 {
        transition-delay: .2s
    }

    .rv.d3 {
        transition-delay: .3s
    }

    .rv.d4 {
        transition-delay: .4s
    }

    .rv.d5 {
        transition-delay: .5s
    }

/* ===== ABOUT ===== */
#about {
    padding: 120px 0 100px;
    background: var(--bg)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.about-img-wrap {
    position: relative;
    padding-bottom: 40px;
    padding-right: 30px
}

.about-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid rgba(200,169,107,.22);
    display: block;
    filter: saturate(.9)
}

.about-accent-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 200px;
    object-fit: cover;
    border: 4px solid var(--bg);
    outline: 1px solid rgba(200,169,107,.25);
    filter: saturate(.9)
}

.about-badge-box {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--dark);
    padding: 22px 26px;
    text-align: center;
    z-index: 2
}

.about-badge-num {
    font-family: 'Playfair Display',serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-b);
    line-height: 1
}

.about-badge-lbl {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 4px
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200,169,107,.12);
    border: 1px solid rgba(200,169,107,.12);
    margin-top: 44px
}

.sc {
    background: var(--bg);
    padding: 26px 22px;
    text-align: center
}

.sc-num {
    font-family: 'Playfair Display',serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg,var(--gold-d),var(--gold-b));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sc-lbl {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: 5px
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px
}

.af {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid transparent;
    transition: all .3s;
    cursor: default
}

    .af:hover {
        border-color: rgba(200,169,107,.2);
        background: rgba(200,169,107,.04)
    }

.af-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(200,169,107,.28);
    display: flex;
    align-items: center;
    justify-content: center
}

    .af-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold-d);
        fill: none;
        stroke-width: 1.5
    }

.af-title {
    font-family: 'Playfair Display',serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px
}

.af-text {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.65
}

/* ===== ECOSYSTEM ===== */
#ecosystem {
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden
}

    #ecosystem .sec-title {
        color: #fff
    }

    #ecosystem .sec-sub {
        color: rgba(255,255,255,.42)
    }

.eco-header {
    text-align: center;
    margin-bottom: 60px
}
/* Ecosystem banner image */
.eco-banner {
    position: relative;
    height: 260px;
    margin-bottom: 60px;
    overflow: hidden;
    border: 1px solid rgba(200,169,107,.1)
}

    .eco-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.25) saturate(.4)
    }

.eco-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(200,169,107,.08),rgba(17,17,17,.6))
}

.eco-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(200,169,107,.08);
    border: 1px solid rgba(200,169,107,.08)
}

.eco-card {
    background: var(--dark2);
    padding: 34px 26px;
    border: 1px solid transparent;
    transition: all .4s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

    .eco-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--gold-d),var(--gold-b));
        transform: scaleX(0);
        transition: transform .4s
    }

    .eco-card:hover {
        background: #161616;
        border-color: rgba(200,169,107,.18);
        transform: translateY(-4px)
    }

        .eco-card:hover::after {
            transform: scaleX(1)
        }

.eco-icon {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(200,169,107,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s
}

.eco-card:hover .eco-icon {
    border-color: var(--gold);
    background: rgba(200,169,107,.07)
}

.eco-icon svg {
    width: 21px;
    height: 21px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5
}

.eco-title {
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 9px
}

.eco-text {
    font-size: 13px;
    color: rgba(255,255,255,.36);
    line-height: 1.65
}

.eco-arrow {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transition: opacity .3s
}

.eco-card:hover .eco-arrow {
    opacity: 1
}

/* ===== WHY AI ===== */
#why-ai {
    padding: 120px 0;
    background: var(--bg2)
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 64px
}

.why-img-stack {
    position: relative;
    height: 500px
}

.why-img-main {
    width: 80%;
    height: 380px;
    object-fit: cover;
    border: 1px solid rgba(200,169,107,.2);
    display: block;
    filter: saturate(.9)
}

.why-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 54%;
    height: 240px;
    object-fit: cover;
    border: 3px solid var(--bg2);
    outline: 1px solid rgba(200,169,107,.2);
    filter: saturate(.9)
}

.why-img-tag {
    position: absolute;
    top: 20px;
    left: -14px;
    background: linear-gradient(135deg,var(--gold-d),var(--gold-b));
    padding: 9px 18px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    z-index: 2
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.cc {
    padding: 26px 22px;
    background: var(--white);
    border: 1px solid rgba(200,169,107,.14);
    position: relative;
    overflow: hidden;
    transition: all .3s
}

    .cc::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg,var(--gold-d),var(--gold-b))
    }

    .cc:hover {
        border-color: rgba(200,169,107,.4);
        transform: translateY(-4px);
        box-shadow: 0 16px 50px rgba(200,169,107,.1)
    }

.cc-num {
    font-family: 'Playfair Display',serif;
    font-size: 30px;
    font-weight: 700;
    color: rgba(200,169,107,.13);
    line-height: 1;
    margin-bottom: 10px
}

.cc-title {
    font-family: 'Playfair Display',serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px
}

.cc-text {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.7
}

/* ===== INDUSTRIES ===== */
#industries {
    padding: 120px 0;
    background: var(--bg)
}

.ind-header {
    text-align: center;
    margin-bottom: 60px
}

    .ind-header .sec-sub {
        margin: 14px auto 0
    }

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

.ic {
    border: 1px solid rgba(200,169,107,.14);
    background: var(--white);
    transition: all .4s;
    cursor: default;
    overflow: hidden;
    position: relative
}

.ic-img-wrap {
    position: relative;
    height: 155px;
    overflow: hidden
}

.ic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.65) brightness(.92);
    transition: all .5s
}

.ic:hover .ic-img {
    filter: saturate(1.05) brightness(1);
    transform: scale(1.04)
}

.ic-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 50%,rgba(17,17,17,.55))
}

.ic-body {
    padding: 22px 20px
}

.ic-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg,rgba(200,169,107,.1),rgba(212,175,55,.05));
    border: 1px solid rgba(200,169,107,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

    .ic-icon svg {
        width: 19px;
        height: 19px;
        stroke: var(--gold-d);
        fill: none;
        stroke-width: 1.5
    }

.ic-name {
    font-family: 'Playfair Display',serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px
}

.ic-desc {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 12px
}

.ic-stat {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold-d);
    padding-top: 12px;
    border-top: 1px solid rgba(200,169,107,.14)
}

.ic:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(200,169,107,.14)
}

/* ===== AI LEADERS ===== */
#ai-leaders {
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden
}

    #ai-leaders .sec-title {
        color: #fff
    }

    #ai-leaders .sec-sub {
        color: rgba(255,255,255,.4)
    }

.leaders-header {
    text-align: center;
    margin-bottom: 64px
}

.leaders-quote {
    max-width: 800px;
    margin: 0 auto 64px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,107,.12);
    padding: 48px 56px;
    text-align: center;
    position: relative
}

    .leaders-quote::before {
        content: '\201C';
        position: absolute;
        top: 10px;
        left: 26px;
        font-family: 'Playfair Display',serif;
        font-size: 96px;
        color: rgba(200,169,107,.1);
        line-height: 1
    }

.lq-text {
    font-family: 'Playfair Display',serif;
    font-size: clamp(18px,2.5vw,26px);
    font-style: italic;
    color: rgba(255,255,255,.82);
    line-height: 1.55;
    margin-bottom: 20px
}

.lq-attr {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold)
}
/* AI Leaders image strip */
.al-banner {
    position: relative;
    height: 180px;
    margin-bottom: 40px;
    overflow: hidden
}

    .al-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.2) saturate(.3)
    }

.al-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(17,17,17,.8),rgba(200,169,107,.05),rgba(17,17,17,.8))
}

.al-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 40px;
    flex-wrap: wrap
}

    .al-banner-text span {
        font-size: 11px;
        letter-spacing: .28em;
        text-transform: uppercase;
        color: rgba(255,255,255,.35);
        transition: color .3s
    }

        .al-banner-text span:hover {
            color: var(--gold)
        }

.al-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(200,169,107,.08)
}

.al-card {
    background: var(--dark2);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid transparent;
    transition: all .4s
}

    .al-card:hover {
        background: #161616;
        border-color: rgba(200,169,107,.2);
        transform: translateY(-4px)
    }

.al-logo {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px
}

    .al-logo svg {
        height: 30px;
        fill: rgba(255,255,255,.45);
        transition: fill .3s
    }

.al-card:hover .al-logo svg {
    fill: rgba(200,169,107,.8)
}

.al-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px
}

.al-text {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.65
}

/* ===== LEADERSHIP ===== */
#leadership {
    padding: 120px 0;
    background: var(--bg)
}

.lead-header {
    text-align: center;
    margin-bottom: 68px
}

.lead-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px
}

.lc {
    border: 1px solid rgba(200,169,107,.14);
    background: var(--white);
    overflow: hidden;
    transition: all .4s
}

    .lc:hover {
        border-color: var(--gold);
        transform: translateY(-6px);
        box-shadow: 0 24px 70px rgba(200,169,107,.14)
    }

.lc-img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg2)
}

.lc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s;
    filter: saturate(.85)
}

.lc:hover .lc-img {
    transform: scale(1.04);
    filter: saturate(1)
}

.lc-role-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg,rgba(17,17,17,.9),transparent);
    padding: 44px 22px 18px
}

.lc-role {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500
}

.lc-body {
    padding: 28px 26px
}

.lc-name {
    font-family: 'Playfair Display',serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px
}

.lc-bio {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.72;
    margin-bottom: 20px
}

.lc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.lc-tag {
    padding: 5px 11px;
    border: 1px solid rgba(200,169,107,.22);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--gold-d);
    text-transform: uppercase
}

/* ===== ADVANTAGES ===== */
#advantages {
    padding: 100px 0;
    background: linear-gradient(135deg,#111111 0%,#0D0D0D 100%);
    position: relative;
    overflow: hidden
}

    #advantages::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(200,169,107,.05) 0%,transparent 70%)
    }

.adv-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start
}

.adv-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px
}

.ai-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(200,169,107,.1);
    transition: all .3s
}

    .ai-item:hover {
        border-color: rgba(200,169,107,.28);
        background: rgba(200,169,107,.04)
    }

.ai-chk {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center
}

    .ai-chk svg {
        width: 13px;
        height: 13px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2
    }

.ai-txt {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.68);
    letter-spacing: .02em
}

.adv-visual {
    position: relative
}

.adv-main-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border: 1px solid rgba(200,169,107,.1);
    display: block;
    filter: brightness(.55) saturate(.4);
    margin-bottom: 0
}

.adv-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(180deg,rgba(17,17,17,.3),rgba(17,17,17,.7));
    pointer-events: none
}

.market-overlay {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(200,169,107,.12);
    border-top: none;
    padding: 32px 32px 28px
}

.mo-title {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 13px
}

.bar-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.42);
    width: 80px;
    flex-shrink: 0;
    text-align: right
}

.bar-bg {
    flex: 1;
    height: 7px;
    background: rgba(255,255,255,.05);
    position: relative;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--gold-d),var(--gold-b));
    transition: width 1.6s cubic-bezier(.25,.46,.45,.94);
    width: 0
}

.bar-val {
    font-family: 'Playfair Display',serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    width: 50px
}

.market-note {
    margin-top: 18px;
    font-size: 10px;
    color: rgba(255,255,255,.50);
    letter-spacing: .08em;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.04)
}

/* ===== ROADMAP ===== */
#roadmap {
    padding: 120px 0;
    background: var(--bg);
    overflow: hidden
}

.rm-header {
    text-align: center;
    margin-bottom: 72px
}

.rm-banner {
    position: relative;
    height: 220px;
    margin-bottom: 64px;
    border: 1px solid rgba(200,169,107,.14);
    overflow: hidden
}

    .rm-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.3) saturate(.4)
    }

.rm-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(250,248,243,.05),rgba(200,169,107,.05))
}

.rm-banner-timeline {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%
}

.rm-tl-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px
}

.rm-tl-point {
    text-align: center;
    flex-shrink: 0;
    width: 80px
}

.rm-tl-year {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px
}

.rm-tl-name {
    font-family: 'Playfair Display',serif;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2
}

.rm-tl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-b);
    box-shadow: 0 0 12px rgba(212,175,55,.7);
    margin: 10px auto 0
}

.rm-tl-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,var(--gold-d),var(--gold-b))
}

.rm-wrap {
    position: relative
}

.rm-line {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,var(--gold-l),var(--gold),var(--gold-d),var(--gold),var(--gold-l),transparent)
}

.rm-steps {
    display: flex;
    gap: 0;
    position: relative
}

.rm-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    cursor: default
}

.rm-dot {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(200,169,107,.3);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: all .4s
}

    .rm-dot.active {
        border: 2px solid var(--gold);
        background: linear-gradient(135deg,rgba(200,169,107,.14),rgba(212,175,55,.06));
        box-shadow: 0 0 28px rgba(200,169,107,.28)
    }

    .rm-dot span {
        font-family: 'Playfair Display',serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--gold-d)
    }

.rm-year {
    font-family: 'Playfair Display',serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px
}

.rm-phase {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-d);
    margin-bottom: 10px
}

.rm-desc {
    font-size: 12px;
    color: var(--mid);
    line-height: 1.7
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 120px 0;
    background: var(--bg2)
}

.testi-header {
    text-align: center;
    margin-bottom: 60px
}
/* testimonials background strip */
.testi-banner {
    position: relative;
    height: 160px;
    margin-bottom: 60px;
    overflow: hidden
}

    .testi-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.18) saturate(.3)
    }

.testi-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,var(--bg2),rgba(243,237,226,.1),var(--bg2))
}

.testi-carousel {
    overflow: hidden;
    position: relative
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease
}

.tc {
    min-width: calc(33.333% - 16px);
    padding: 38px 32px;
    background: var(--white);
    border: 1px solid rgba(200,169,107,.14);
    flex-shrink: 0;
    position: relative
}

    .tc::before {
        content: '\201C';
        position: absolute;
        top: 18px;
        right: 26px;
        font-family: 'Playfair Display',serif;
        font-size: 72px;
        color: rgba(200,169,107,.1);
        line-height: 1
    }

.tc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px
}

.ts {
    width: 11px;
    height: 11px;
    background: var(--gold-b);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%)
}

.tc-text {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 26px;
    font-weight: 400;
    white-space: nowrap;
    text-wrap: wrap;
    width: 250px;
    height: 250px;
    overflow: auto;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--gold-l),var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display',serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark2)
}

.tc-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 1px
}

.tc-pos {
    font-size: 11px;
    color: var(--gold-d)
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px
}

.cdot {
    width: 26px;
    height: 2px;
    background: rgba(200,169,107,.2);
    border: none;
    cursor: pointer;
    transition: all .3s;
    padding: 0
}

    .cdot.active {
        background: var(--gold);
        width: 42px
    }

/* ===== FAQ ===== */
#faq {
    padding: 120px 0;
    background: var(--bg)
}

.faq-header {
    text-align: center;
    margin-bottom: 60px
}
/* FAQ graphic */
.faq-img-strip {
    position: relative;
    height: 140px;
    margin-bottom: 56px;
    overflow: hidden;
    border: 1px solid rgba(200,169,107,.14)
}

    .faq-img-strip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.2) saturate(.3)
    }

.faq-img-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,var(--bg),rgba(250,248,243,.05),var(--bg))
}

.faq-img-strip-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px
}

    .faq-img-strip-text span {
        font-size: 11px;
        letter-spacing: .26em;
        text-transform: uppercase;
        color: #fff
    }

    .faq-img-strip-text strong {
        color: var(--gold-d)
    }

.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.fi {
    border: 1px solid rgba(200,169,107,.14);
    background: var(--white);
    overflow: hidden;
    transition: border-color .3s
}

    .fi.open {
        border-color: rgba(200,169,107,.32)
    }

.fi-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    font-family: 'Playfair Display',serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    gap: 18px;
    user-select: none
}

.fi-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border: 1px solid rgba(200,169,107,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
    border-radius: 50%
}

    .fi-icon svg {
        width: 12px;
        height: 12px;
        stroke: var(--gold-d);
        fill: none;
        stroke-width: 1.5
    }

.fi.open .fi-icon {
    transform: rotate(45deg);
    border-color: var(--gold)
}

.fi-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.fi.open .fi-a {
    max-height: 200px
}

.fi-a-inner {
    padding: 0 26px 22px;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.8
}

/* ===== CONTACT ===== */
#contact {
    padding: 120px 0;
    background: var(--dark)
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px
}

    .contact-inner .sec-title {
        color: #fff
    }

    .contact-inner .sec-sub {
        color: rgba(255,255,255,.38);
        max-width: 420px
    }

.contact-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border: 1px solid rgba(200,169,107,.12);
    display: block;
    margin-top: 36px;
    filter: brightness(.7) saturate(.6)
}

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cdi {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.cd-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(200,169,107,.18);
    display: flex;
    align-items: center;
    justify-content: center
}

    .cd-icon svg {
        width: 17px;
        height: 17px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.5
    }

.cd-lbl {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px
}

.cd-val {
    font-size: 14px;
    color: rgba(255,255,255,.65)
}

.contact-form {
    padding: 44px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(200,169,107,.13)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.ff {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px
}

    .ff label {
        font-size: 9px;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: rgba(255,255,255,.35)
    }

    .ff input, .ff select, .ff textarea {
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(200,169,107,.13);
        padding: 13px 15px;
        font-family: 'DM Sans',sans-serif;
        font-size: 14px;
        color: #fff;
        outline: none;
        width: 100%;
        transition: border-color .3s;
        appearance: none
    }

        .ff input::placeholder, .ff textarea::placeholder {
            color: rgba(255,255,255,.22)
        }

        .ff input:focus, .ff select:focus, .ff textarea:focus {
            border-color: rgba(200,169,107,.45)
        }

    .ff textarea {
        min-height: 96px;
        resize: none
    }

    .ff select option {
        background: #222;
        color: #fff
    }

.form-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px
}

.btn-ghost-white {
    padding: 15px 28px;
    background: transparent;
    border: 1px solid rgba(200,169,107,.25);
    color: rgba(255,255,255,.55);
    font-family: 'DM Sans',sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s
}

    .btn-ghost-white:hover {
        border-color: var(--gold);
        color: var(--gold-l)
    }

/* ===== DISCLAIMER ===== */
#disclaimer {
    padding: 50px 0;
    background: #0A0A0A
}

.disc-box {
    border: 1px solid rgba(200,169,107,.09);
    padding: 32px 36px;
    max-width: 920px;
    margin: 0 auto
}

.disc-title {
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.disc-text {
    font-size: 11px;
    color: rgba(255,255,255,.50);
    line-height: 1.85
}

/* ===== FOOTER ===== */
footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(200,169,107,.08)
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 44px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px
}

.footer-brand-logo {
    display: inline-flex;
    margin-bottom: 18px
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    max-width: 270px
}

.footer-socials {
    display: flex;
    gap: 9px
}

.fs-a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(200,169,107,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    font-size: 13px;
    transition: all .3s
}

    .fs-a:hover {
        border-color: var(--gold);
        color: var(--gold)
    }

.fc-col h5 {
    font-size: 9px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.fc-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .fc-col ul li a {
        font-size: 13px;
        color: rgba(255,255,255,.5);
        text-decoration: none;
        transition: color .25s
    }

        .fc-col ul li a:hover {
            color: var(--gold-l)
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.04);
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,.50)
}

.footer-disc {
    font-size: 10px;
    color: rgb(255 255 255 / 50%);
    max-width: 380px;
    text-align: right;
    line-height: 1.5
}

/* ===== IMAGE QUOTE BAND ===== */
.quote-band {
    position: relative;
    height: 280px;
    overflow: hidden
}

    .quote-band img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(.18) saturate(.4)
    }

.quote-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(17,17,17,.8),rgba(200,169,107,.06),rgba(17,17,17,.8))
}

.quote-band-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 5%
}

.qb-text {
    font-family: 'Playfair Display',serif;
    font-size: clamp(20px,3vw,32px);
    font-style: italic;
    color: rgba(255,255,255,.85);
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 800px
}

.qb-attr {
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold)
}

/* ===== MOBILE ===== */
@media(max-width:1024px) {
    .eco-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

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

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

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

    .adv-inner {
        grid-template-columns: 1fr
    }

    .rm-steps {
        flex-wrap: wrap
    }

    .rm-step {
        min-width: 160px;
        margin-bottom: 32px
    }

    .rm-line {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-sub {
        margin: 0 auto 36px
    }

    .hero-eyebrow {
        justify-content: center
    }

    .hero-btns {
        justify-content: center
    }

    .hero-visual {
        height: 320px;
        display: none
    }

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

    .about-img-wrap {
        padding-bottom: 50px;
        padding-right: 20px
    }

    .about-accent-img {
        display: block;
        bottom: -10px;
        right: -10px
    }

    .why-layout {
        grid-template-columns: 1fr
    }

    .why-img-stack {
        display: none
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .contact-img {
        display: none
    }

    .rm-tl-inner {
        display: none
    }

    .rm-banner-timeline {
        display: none
    }
}

@media(max-width:768px) {
    .mob-menu {
        gap: 15px;
    }

    .nav-links, .nav-cta {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

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

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

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

    .footer-disc {
        text-align: left
    }

    .testi-track .tc {
        min-width: 88vw
    }

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

    .adv-list {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .leaders-quote {
        padding: 32px 28px
    }

    .contact-form {
        padding: 28px 20px
    }

    #about {
        padding: 80px 0 70px
    }

    #ecosystem, #why-ai, #industries, #ai-leaders, #leadership, #advantages, #roadmap, #testimonials, #faq, #contact {
        padding: 80px 0
    }

    h1.hero-h1 {
        font-size: clamp(36px,9vw,52px)
    }

    .sec-title {
        font-size: clamp(26px,7vw,38px)
    }

    .sec-sub {
        font-size: 14px
    }

    .lq-text {
        font-size: 17px
    }

    .fi-q {
        font-size: 15px;
        padding: 18px 20px
    }

    .fi-a-inner {
        padding: 0 20px 18px;
        font-size: 13px
    }

    .tc-text {
        font-size: 15px
    }

    .eco-banner {
        height: 180px
    }

    .faq-img-strip {
        display: none
    }

    .al-banner {
        display: none
    }

    .quote-band {
        height: 220px
    }

    .qb-text {
        font-size: 18px
    }
}

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

    .sec-title {
        font-size: 26px
    }

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

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

    nav {
        padding: 14px 5%
    }

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

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

    .rm-steps {
        flex-direction: column;
        align-items: center
    }

    .rm-step {
        min-width: auto;
        width: 100%;
        max-width: 300px
    }

    .about-accent-img {
        display: none
    }

    .about-badge-box {
        top: 8px;
        left: 8px;
        padding: 16px 18px
    }

    .about-badge-num {
        font-size: 26px
    }

    .sc-num {
        font-size: 28px
    }

    .about-main-img {
        height: 280px
    }

    .lc-img-wrap {
        height: 250px
    }

    .btn-gold, .btn-ghost {
        padding: 13px 24px;
        font-size: 11px
    }

    .hero-btns {
        gap: 10px
    }

    .disc-box {
        padding: 24px 20px
    }

    .testi-banner {
        display: none
    }
}
