/* AI Lighting — tighter, asymmetric, Azoogi-native */

.ai-main {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
}

.ai-num {
    display: block;
    font-size: var(--fs-kicker);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 8px;
}

/* —— Hero —— */
.ai-hero {
    position: relative;
    min-height: var(--hero-min);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
    width: 100%;
}

.ai-hero-media {
    position: absolute;
    inset: 0;
}

.ai-hero-media img,
.ai-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.ai-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.45) 48%,
            rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.ai-hero-copy {
    position: relative;
    z-index: 1;
    padding: var(--hero-pad-y-top) var(--hero-pad-x) var(--hero-pad-y-bottom);
    max-width: none;
    margin: 0 auto;
    width: 100%;
}

.ai-hero-copy>* {
    max-width: var(--site-max, 1400px);
}

.ai-hero-copy .kicker {
    color: #8cc63f;
    margin-bottom: 10px;
}

.ai-hero-copy h1 {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #fff;
}

.ai-hero-copy h1 span {
    font-family: var(--font-outline);
}

.ai-hero-copy p {
    margin: 0;
    max-width: 70ch;
    font-size: var(--fs-lead);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

/* —— Bands —— */
.ai-band {
    padding: 50px 0;
}

.ai-band--soft {
    background: var(--card-bg);
}

/* —— Intro split —— */
.ai-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}

.ai-split-copy .kicker {
    margin-bottom: 10px;
}

.ai-split-copy h2 {
    margin: 0 0 14px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.ai-split-copy h2 span {
    color: var(--accent);
}

.ai-split-copy p {
    margin: 0;
    max-width: 38ch;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--muted);
}

.ai-caps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ai-caps li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.ai-caps .ai-num {
    margin: 0;
}

.ai-caps h3 {
    margin: 0;
    font-size: var(--fs-card-title-sm);
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
}

/* —— Feature / spectrum —— */
.ai-feature {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(24px, 3.5vw, 48px);
    align-items: center;
}

.ai-feature-copy .kicker {
    margin-bottom: 10px;
}

.ai-feature-copy h2 {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.ai-feature-copy h2 span {
    color: var(--accent);
}

.ai-feature-copy>p {
    margin: 0 0 16px;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--muted);
    max-width: 40ch;
}

.ai-ticks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.ai-ticks li {
    position: relative;
    padding-left: 18px;
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--ink);
}

.ai-ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.ai-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ai-compare figure {
    margin: 0;
    position: relative;
}

.ai-compare img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #111;
    border-radius: 4px;
}

.ai-compare figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    margin: 0;
    padding: 5px 10px;
    font-size: var(--fs-caption);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 2px;
}

.ai-compare .is-accent figcaption {
    background: var(--accent);
}

/* —— Row heads —— */
.ai-row-head {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: end;
    margin-bottom: 28px;
    text-align: center;
}

.ai-row-head .kicker {
    margin-bottom: 8px;
}

.ai-row-head h2 {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.ai-row-head h2 span {
    color: var(--accent);
}

.ai-row-head>p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--muted);
    max-width: 42ch;
    justify-self: end;
}

/* —— Insights (sticky stack — same engine as homepage / audience) —— */
.ai-insights.card-in {
    text-align: left;
    padding: 80px 0 50px 0;
    background: var(--bg);
}

.ai-insights .ai-row-head {
    margin-bottom: 0;
}

.ai-insights .wrap-sm {
    max-width: 1200px;
}

.ai-insights #cards {
    --numcards: 2;
    /* --card-height: min(48svh, 400px); */
    text-align: left;
}

.ai-insights .card__content {
    background: var(--bg-2);
    max-height: var(--card-height);
    min-height: 40svh;
}

@media (min-width: 1400px) {
    .ai-insights .wrap-sm {
        max-width: 1200px;
    }
}

.ai-insights .card__content>div .ai-num {
    margin-bottom: 0;
}

.ai-insights .card__content>div h2 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.15;
    margin: 0;
    color: var(--ink);
}

.ai-insights .card__content>div p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--muted);
}

.ai-page .card__content>figure {
    padding: clamp(16px, 2vw, 24px);
}

.ai-page .card__content>figure>img {
    object-fit: contain;
    object-position: center;
}

/* —— App / QR —— */
.ai-app-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(24px, 3.5vw, 48px);
    align-items: center;
}

.ai-app-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ai-app-phones figure {
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 3 / 4;
}

.ai-app-phones img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ai-app-copy .kicker {
    margin-bottom: 10px;
}

.ai-app-copy h2 {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.ai-app-copy h2 span {
    color: var(--accent);
}

.ai-app-copy>p {
    margin: 0 0 22px;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: var(--muted);
    max-width: 36ch;
}

.ai-app-qr {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.ai-app-qr img {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    display: block;
    background: var(--always-white);
}

.ai-app-qr p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.5;
    color: var(--muted);
}

/* —— CCT —— */
.ai-cct {
    position: relative;
    min-height: 280px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    width: 100%;
}

.ai-cct-media {
    position: absolute;
    inset: 0;
}

.ai-cct-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ai-cct::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.4) 85%,
            rgba(0, 0, 0, 0.25) 100%);
}

.ai-cct-inner {
    position: relative;
    z-index: 1;
    padding-top: clamp(20px, 3vw, 32px);
    padding-bottom: clamp(20px, 3vw, 32px);
}

.ai-cct-inner .kicker,
.ai-cct-inner h2,
.ai-cct-inner p {
    max-width: 560px;
}

.ai-cct-inner .kicker {
    color: #8cc63f;
    margin-bottom: 10px;
}

.ai-cct-inner h2 {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: var(--fs-h2-section);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-align: center;
}

.ai-cct-inner h2 span {
    color: var(--accent);
}

.ai-cct-inner p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

/* —— Space —— */
.ai-space {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(18px, 2.5vw, 32px);
    align-items: stretch;
}

.ai-space-visual {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    min-height: 280px;
}

.ai-space-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: none;
}

.ai-space-visual img.is-active {
    display: block;
}

.ai-accordion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 6px 20px;
}

.ai-acc-item {
    border-top: 1px solid var(--line);
}

.ai-acc-item:first-child {
    border-top: 0;
}

.ai-acc-btn {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: var(--ink);
}

.ai-acc-btn .ai-num {
    margin: 0;
}

.ai-acc-btn h3 {
    margin: 0;
    font-size: var(--fs-card-title-sm);
    font-weight: 600;
}

.ai-acc-btn .chev {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(-45deg);
    transition: transform 0.22s ease;
}

.ai-acc-item.is-open .ai-acc-btn .chev {
    transform: rotate(45deg);
}

.ai-acc-item.is-open .ai-acc-btn h3 {
    color: var(--accent);
}

.ai-acc-panel {
    display: none;
    padding: 0 0 16px 36px;
    color: var(--muted);
    font-size: var(--fs-body);
    line-height: 1.55;
}

.ai-acc-item.is-open .ai-acc-panel {
    display: block;
}

.ai-acc-panel p {
    margin: 0;
}

/* —— CTA —— */
.ai-cta-wrap {
    max-width: var(--site-max, 1400px);
    margin: 0 auto;
    padding: var(--section-y) 28px calc(var(--section-y) + 16px);
}

.ai-cta {
    padding: 22px 28px;
    border: none;
    border-radius: 4px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    background: var(--card-bg);
    text-decoration: none;
    color: inherit;
    transition: background 0.25s ease;
}

.ai-cta:hover {
    background: var(--card-hover);
}

.ai-cta-check {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(58, 160, 40, 0.12);
    display: grid;
    place-items: center;
}

.ai-cta-check svg {
    width: 18px;
    height: 18px;
    display: block;
}

.ai-cta-check svg path {
    stroke: var(--accent);
}

.ai-cta-copy h3 {
    margin: 0 0 4px;
    font-family: var(--font-sans);
    font-size: var(--fs-card-title-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.3;
}

.ai-cta-copy p {
    margin: 0;
    font-size: var(--fs-body);
    line-height: 1.45;
    color: var(--muted);
}

.ai-cta .btn.primary {
    white-space: nowrap;
}

@media (max-width: 1024px) {

    .ai-split,
    .ai-feature,
    .ai-row-head,
    .ai-space,
    .ai-app-grid {
        grid-template-columns: 1fr;
    }

    .ai-row-head>p {
        justify-self: start;
        max-width: none;
    }

    .ai-space-visual,
    .ai-space-visual img {
        min-height: 240px;
    }

    .ai-app-phones figure {
        aspect-ratio: 4 / 5;
    }

    .ai-cct {
        min-height: 240px;
    }

    .ai-cct::after {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.85) 100%);
    }

    .ai-cta {
        grid-template-columns: auto 1fr;
    }

    .ai-cta .btn.primary {
        grid-column: 1 / -1;
        justify-self: start;
        width: max-content;
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .ai-insights #cards {
        --numcards: 2;
        --card-height: min(56svh, 400px);
    }
}

@media (max-width: 1024px) {
    .ai-insights .card__content {
        height: auto;
        max-height: none;
    }
}

@media (max-width: 640px) {
    .ai-caps {
        grid-template-columns: 1fr;
    }

    .ai-compare {
        grid-template-columns: 1fr;
    }

    .ai-hero-copy h1 {
        max-width: none;
        font-size: var(--fs-h2);
    }

    .ai-app-qr {
        flex-direction: column;
        align-items: flex-start;
    }

    .ai-cta-wrap {
        padding: var(--section-y) 16px calc(var(--section-y) + 16px);
    }

    .ai-cta {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .ai-acc-panel {
        padding-left: 0;
    }

    .ai-accordion {
        padding: 4px 14px;
    }
}