html {
    scroll-behavior: smooth;
}

/* COMMON */
body {
    background-color: #F6F6FF;
}

a.get-started {
    background: var(--gradient);
    color: #FFF;
    font-size: clamp(16px, 4vw, 24px);
    padding: 12px 30px;
    border-radius: 100px;
    display: flex;
    max-width: max-content;
    position: relative;
    transition: 0.3s !important;
    font-weight: 500;
}

a.get-started:hover {
    padding: 12px 40px;
}

a.get-started:before {
    content: "\ea32";
    font-family: 'icons';
    position: absolute;
    font-size: 10px;
    top: 10px;
    inset-inline-start: 15px;
    transform: scale(0);
    opacity: 0;
}

a.get-started:after {
    content: "\ea32";
    font-family: 'icons';
    position: absolute;
    font-size: 16px;
    top: -15px;
    inset-inline-end: -8px;
    color: var(--key-300);
    transform: scale(0);
    opacity: 0;
}

a.get-started:before,
a.get-started:after {
    animation: shining 0.7s linear alternate infinite;
}

a.get-started:before {
    animation-delay: 0.5s
}

.floaty,
.floaty2 {
    transform: translate(var(--x, 0px), var(--y, 0px));
}

@keyframes shining {
    from {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(45deg);
    }
}

@keyframes float {
    to {
        transform: rotate(var(--rotate, 30deg));
    }
}

/* INTRO */
section.intro {
    padding-top: 7vw;
}

.intro-back {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.intro-back:before {
    content: "";
    background: url(../../images/pages/intro-back.png?2) no-repeat center / cover;
    animation: float 30s linear infinite alternate;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.intro-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.intro-head h1 {
    font-family: var(--font2);
    font-size: clamp(32px, 6vw, 64px);
    color: var(--dark);
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 30px;
}

.intro-head p {
    font-size: clamp(15px, 2vw, 20px);
}

.intro-head p b {
    text-transform: uppercase;
    color: var(--key-200);
}

.intro-head>span {
    font-size: clamp(14px, 1.5vw, 18px);
    color: var(--text-600);
    letter-spacing: 0.02em;
}

.intro-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    margin-top: 30px;
}

.intro-cta p b {
    color: var(--key-300);
}

.users-faces {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    justify-content: center;
    margin-top: 100px;
}

.faces {
    display: flex;
    align-items: center;
}

.faces img,
.faces span {
    width: 50px;
    height: 50px;
    margin-inline-end: -25px;
    border: 2px solid var(--light);
    border-radius: 100px;
}

.faces span {
    background-color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-700);
}

.users-faces p {
    max-width: 160px;
    color: var(--text-800);
}


/* CRM */
section.crm {
    padding: 10vw 0;
    position: relative;
    overflow: hidden;
}

section.crm:before {
    content: "";
    position: absolute;
    top: -10vw;
    inset-inline-end: -50%;
    background: url("../../images/pages/w-shadow.png") no-repeat center / contain;
    width: 70vw;
    height: 100vw;
    z-index: -1;
}

.crm-grid {
    display: grid;
    grid-template-columns: 20fr 60fr 20fr;
    gap: 50px;
}

.crm-item.centered {
    grid-column: 2/3;
    grid-row: 1/3;
    background: var(--gradient);
    border-radius: 20px;
    padding: 20px;
}

.crm-item.centered img {
    width: 100%;
    border-radius: inherit;
    height: 100%;
    object-fit: cover;
}

.crm-item b {
    background-color: var(--text-700);
    color: var(--text-100);
    padding: 8px 20px;
    max-width: max-content;
    border-radius: 100px;
    font-size: 12px;
}

.crm-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.crm-item h3 {
    font-size: 20px;
    color: var(--text-700);
}

.crm-item p {
    font-size: 16px;
}

.crm-head {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.crm-head h2 {
    font-size: clamp(20px, 9vw, 50px);
    color: var(--text-800);
    font-family: var(--font2);
    letter-spacing: -0.05em;
    line-height: 1.2;
}

.crm-head p {
    font-size: clamp(16px, 5vw, 24px);
}

.crm-head a {
    margin-top: 20px;
}

/* COURSES */
section.courses {
    padding: 10vw 0;
    position: relative;
}

section.courses:before {
    content: "";
    position: absolute;
    top: -35vw;
    inset-inline-start: -100%;
    background: url("../../images/pages/w-shadow.png") no-repeat center / contain;
    width: 150vw;
    height: 100vw;
    z-index: -1;
    opacity: .7;
}

ul.courses-list {
    display: flex;
    align-items: center;
    gap: 10px 30px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

ul.courses-list li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--gradient);
    border-radius: 3px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

ul.courses-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--text);
    white-space: nowrap;
}

.courses-start h2 {
    font-size: clamp(24px, 12vw, 60px);
    color: var(--text-800);
    font-family: var(--font2);
    letter-spacing: -0.05em;
    line-height: 1.2;
}

.courses-start h2 span {
    color: var(--key-300);
}

.wrapper.courses-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.courses-start {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.courses-start>b {
    background-color: var(--light);
    color: var(--text-600);
    padding: 8px 15px;
    max-width: max-content;
    border-radius: 100px;
    font-size: 12px;
}

.courses-start p {
    font-size: 20px;
}

.courses-end {
    position: relative;
    display: flex;
    max-width: 630px;
}

.courses-end span:first-of-type {
    transform: rotate(-3deg);
}

.courses-end span:nth-of-type(2) {
    transform: translate(-60px, 70px) rotate(5deg);
    position: relative;
    z-index: 1;
}

.courses-end span:last-of-type {
    transform: translateX(-140px) rotate(-5deg);
}


.courses-end img {
    filter: drop-shadow(0px 10px 15px rgb(0 0 0 / 10%));
    border-radius: 10px;
}

.courses-start:before {
    content: "";
    background: url("../../images/pages/w-color-elemt.png") no-repeat center / contain;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 110%;
    inset-inline-start: -30px;
    animation: float 5s linear infinite alternate;
    --rotate: 180deg
}

.courses-end:after {
    content: "";
    background: url("../../images/pages/w-tools-elemt.png") no-repeat center / contain;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 110%;
    inset-inline-start: -30px;
    transform: rotate(30deg);
    animation: float 5s linear infinite alternate;
    --rotate: -30deg
}

/* INTEGRATION */
.integration-services {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 700px;
}

section.integration {
    /* background-color: var(--text-900); */
    padding: 100px 0;
    position: relative
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.back-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.back-video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-900);
    opacity: .8;
}

.integration-start h2 {
    color: var(--light);
    font-size: clamp(24px, 10vw, 50px);
    font-family: var(--font2);
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.integration-start {
    max-width: 490px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wrapper.integration-wrapper {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.integration-start p {
    font-size: 20px;
    color: var(--text-200);
}

.integration-start b {
    background-color: var(--text-700);
    color: var(--text-100);
    width: max-content;
    padding: 10px 20px;
    border-radius: 100px;
}

.integration-services li {
    background-color: var(--light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    height: 110px;
}


/**/
.builder-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.builder-image span {
    position: absolute;
    animation: parallax linear;
    animation-duration: var(--animation-duration);
    animation-timeline: scroll();
    transition: var(--animation-duration);
    z-index: 1;
}

span.builder-props {
    inset-inline-end: -50px;
    top: 700px;
    transform: rotate(30deg);
    --animation-duration: 10s;
    --rotate: -135deg
}

span.builder-photo {
    inset-inline-end: 80px;
    top: 500px;
    transform: rotate(0);
    --animation-duration: 2s;
    --rotate: 180deg
}

span.builder-sections {
    inset-inline-start: -190px;
    top: 100%;
    transform: rotate(-45deg);
    --animation-duration: 3s;
    --rotate: 90deg
}

.builder-image>img {
    border-radius: 20px;
    border: 10px solid #FFF;
    box-shadow: 0 0 100px rgb(0 0 0 / 10%);
}

.builder-image picture {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-image picture img {
    border-radius: 20px;
    box-shadow: 0 0 50px #d8deee;
}

@keyframes parallax {
    to {
        transform: translateY(-1500px) rotate(var(--rotate));
    }
}

@media all and (max-width: 1280px) {

    .builder-image picture img {
        width: 100%;
    }

    .wrapper.courses-wrapper {
        flex-direction: column;
    }

    .courses-start {
        width: 100%;
    }


    .builder-image span {
        display: none;
    }
}

@media all and (max-width: 960px) {
    .crm-grid {
        grid-template-columns: 1fr 1fr;
    }

    .crm-item.centered {
        grid-column: 1/3;
    }

    .courses-end:after {
        top: -10px !important;
        bottom: auto;
    }

    .wrapper.integration-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    ul.courses-list {
        flex-wrap: wrap;
    }

    .crm-item.centered img {
        height: auto;
    }
}

@media all and (max-width: 768px) {
    .courses-end {
        padding: 0 5vw 100px;
        width: 100%;
        overflow: hidden;
    }

    .courses-end img {
        width: 36vw;
    }

    .faces img,
    .faces span {
        width: 40px;
        height: 40px;
        margin-inline-end: -20px;
    }

    .courses-start:before {
        inset-inline-start: auto;
        inset-inline-end: 10%;
        bottom: 100%;
    }
}

@media all and (max-width: 480px) {
    .crm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crm-item.centered {
        grid-column: 1;
    }

    .integration-services li {
        width: 150px;
        height: 80px;
        border-radius: 10px;
    }

    .integration-services li img {
        height: 25px;
    }
}


/* ═══════════════════════════════
   PRICING SECTION
═══════════════════════════════ */
section.pricing2 {
    padding: 10vw 0 8vw;
    position: relative;
    overflow: hidden;
}

section.pricing2:before {
    content: "";
    position: absolute;
    bottom: -20vw;
    inset-inline-start: -80%;
    background: url("../../images/pages/w-shadow.png") no-repeat center / contain;
    width: 150vw;
    height: 100vw;
    z-index: -1;
    opacity: .5;
}

.pricing2-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 50px;
}

.pricing2-head > b {
    background-color: var(--shade-100);
    color: var(--key-300);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing2-head h2 {
    font-size: clamp(28px, 7vw, 56px);
    color: var(--text-900);
    font-family: var(--font2);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0;
}

.pricing2-head p {
    font-size: clamp(15px, 2.5vw, 20px);
    max-width: 540px;
    color: var(--text-500);
}

/* Toggle — NEW pill-slider design */
.pricing2-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
}

.p2-toggle-track {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--shade-100);
    border: 1.5px solid var(--shade-200);
    border-radius: 100px;
    padding: 4px;
    gap: 0;
    width: max-content;
}

.p2-toggle-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background: var(--gradient);
    border-radius: 100px;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s;
    box-shadow: 0 4px 12px rgb(33 55 255 / 30%);
    pointer-events: none;
    z-index: 0;
}

.p2-toggle-btn {
    position: relative;
    z-index: 1;
    border: none;
    background: transparent;
    border-radius: 100px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-500);
    transition: color 0.25s;
    font-family: inherit;
    white-space: nowrap;
}

.p2-toggle-btn.active {
    color: #fff;
    pointer-events: none;
}

.p2-annual-group {
    position: relative;
    display: flex;
    align-items: center;
}

.p2-annual-group .save-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 8px rgb(34 197 94 / 40%);
}

/* Card Grid */
.pricing2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.pricing2-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1.5px solid var(--shade-200);
    transition: 0.3s;
    position: relative;
}

.pricing2-card:hover {
    border-color: var(--shade-400);
    box-shadow: 0 20px 40px -10px rgb(0 0 0 / 8%);
    transform: translateY(-4px);
}

.pricing2-card.featured {
    background: linear-gradient(160deg, #0017e3 0%, #475aff 100%);
    border-color: transparent;
    color: #fff;
}

.pricing2-card.featured:hover {
    box-shadow: 0 25px 50px -10px rgb(0 23 227 / 40%);
}

.p2-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgb(245 158 11 / 40%);
}

.p2-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-500);
}

.pricing2-card.featured .p2-name {
    color: rgb(255 255 255 / 70%);
}

.p2-desc {
    font-size: 15px;
    color: var(--text-400);
    line-height: 1.5;
    margin: -8px 0;
}

.pricing2-card.featured .p2-desc {
    color: rgb(255 255 255 / 65%);
}

/* Price display */
.p2-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p2-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.p2-price-block .p2-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-700);
    margin-bottom: 6px;
}

.p2-price-block .p2-amount {
    font-size: clamp(38px, 5vw, 52px);
    font-weight: 800;
    color: var(--text-900);
    letter-spacing: -0.04em;
    line-height: 1;
}

.p2-price-block .p2-period {
    font-size: 15px;
    color: var(--text-400);
    align-self: flex-end;
    margin-bottom: 6px;
}

.pricing2-card.featured .p2-price-block .p2-currency,
.pricing2-card.featured .p2-price-block .p2-amount {
    color: #fff;
}

.pricing2-card.featured .p2-price-block .p2-period {
    color: rgb(255 255 255 / 60%);
}

.p2-annual-note {
    font-size: 12px;
    color: var(--text-300);
    font-weight: 500;
}

.pricing2-card.featured .p2-annual-note {
    color: rgb(255 255 255 / 50%);
}

/* Divider */
.p2-divider {
    border: none;
    border-top: 1px solid var(--shade-200);
    margin: 0;
}

.pricing2-card.featured .p2-divider {
    border-top-color: rgb(255 255 255 / 15%);
}

/* CTA Button */
a.p2-cta {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    background-color: var(--shade-100);
    color: var(--text-800);
    transition: 0.2s;
}

a.p2-cta:hover {
    background-color: var(--shade-300);
}

.pricing2-card.featured a.p2-cta {
    background-color: #fff;
    color: var(--key-300);
}

.pricing2-card.featured a.p2-cta:hover {
    background-color: rgb(255 255 255 / 90%);
}

/* Features list */
ul.p2-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

ul.p2-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-700);
    line-height: 1.4;
}

.pricing2-card.featured ul.p2-features li {
    color: rgb(255 255 255 / 85%);
}

ul.p2-features li::before {
    content: "\ea36";
    font-family: 'icons';
    color: var(--key-300);
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}

.pricing2-card.featured ul.p2-features li::before {
    color: #93c5fd;
}

/* Responsive */
@media all and (max-width: 960px) {
    .pricing2-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}


/* ═══════════════════════════════════════════════════
   STORY SECTIONS (problem · how · ai-builder · platform
   · proof · faq · cta) — added 2026-06-16
   Reuses brand tokens only: --key-300, --gradient, --shade-*,
   --text-*, --font2. Radius 10/20px. Logical props for RTL.
═══════════════════════════════════════════════════ */

/* Offset anchored sections below the 100px sticky header */
section[id],
.anchor-offset {
    scroll-margin-top: 120px;
}

/* Shared section header */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 820px;
    margin-bottom: 56px;
}

.section-head.center {
    align-items: center;
    text-align: center;
    margin-inline: auto;
}

.eyebrow {
    background-color: var(--shade-100);
    color: var(--key-300);
    padding: 8px 18px;
    width: max-content;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-head h2 {
    font-size: clamp(26px, 5.5vw, 48px);
    color: var(--text-900);
    font-family: var(--font2);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.section-head p {
    font-size: clamp(15px, 2.5vw, 20px);
    color: var(--text-600);
    max-width: 620px;
}

/* Shared check / cross lists */
ul.list-good,
ul.list-bad {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

ul.list-good li,
ul.list-bad li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-700);
    line-height: 1.5;
}

ul.list-good li::before {
    content: "\ea36";
    font-family: 'icons';
    color: var(--key-300);
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 4px;
}

ul.list-bad li::before {
    content: "✕";
    color: var(--text-400);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
    margin-top: 2px;
}


/* ─── HERO additions ─── */
.hero-eyebrow {
    background: linear-gradient(45deg, rgb(33 55 255 / 10%), rgb(107 122 255 / 12%));
    color: var(--key-300);
    padding: 7px 16px 7px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
}

.hero-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 4px rgb(33 55 255 / 12%);
}

.intro-head p.hero-sub {
    font-size: clamp(16px, 2.4vw, 22px);
    color: var(--text-600);
    max-width: 760px;
    line-height: 1.55;
}

.intro-head .hero-micro {
    font-size: clamp(13px, 1.5vw, 16px);
    color: var(--text-500);
    font-weight: 600;
}

.intro-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

a.intro-secondary {
    color: var(--key-300);
    font-weight: 700;
    font-size: clamp(15px, 2vw, 17px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

a.intro-secondary::after {
    content: "\ea32";
    font-family: 'icons';
    font-size: 9px;
}

a.intro-secondary:hover {
    gap: 12px;
}

html:dir(rtl) a.intro-secondary::after {
    transform: scaleX(-1);
}

.intro-cta-note {
    font-size: 13px;
    color: var(--text-500);
    font-weight: 600;
}


/* ─── PROBLEM ─── */
section.problem {
    padding: clamp(60px, 8vw, 110px) 0;
}

.problem .section-head {
    align-items: center;
    text-align: center;
    margin-inline: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.problem-col {
    background-color: var(--light);
    border: 1.5px solid var(--shade-200);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.problem-col.new {
    border-color: transparent;
    background: linear-gradient(160deg, rgb(33 55 255 / 6%), rgb(107 122 255 / 9%));
    box-shadow: 0 20px 50px -24px rgb(33 55 255 / 45%);
}

.problem-col h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-800);
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-col.new h3 {
    color: var(--key-500);
}


/* ─── HOW IT WORKS ─── */
section.how {
    padding: clamp(60px, 8vw, 110px) 0;
    position: relative;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.how-card {
    background-color: var(--light);
    border: 1.5px solid var(--shade-200);
    border-radius: 20px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.how-card:hover {
    border-color: var(--shade-400);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -18px rgb(0 0 0 / 12%);
}

.how-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    font-family: var(--font2);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -6px rgb(33 55 255 / 50%);
}

.how-card h3 {
    font-size: 22px;
    color: var(--text-800);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.how-card p {
    font-size: 16px;
    color: var(--text-600);
    line-height: 1.6;
}


/* ─── AI BUILDER DEEP-DIVE ─── */
section.aibuilder {
    padding: clamp(60px, 9vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.aibuilder-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.aibuilder-text {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aibuilder-text h2 {
    font-size: clamp(26px, 5vw, 48px);
    color: var(--text-900);
    font-family: var(--font2);
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.aibuilder-desc {
    font-size: 18px;
    color: var(--text-600);
    line-height: 1.6;
}

.aibuilder-list {
    gap: 16px;
}

.aibuilder-text a.get-started {
    margin-top: 6px;
}

.aibuilder-visual {
    position: relative;
    flex-shrink: 0;
    max-width: 560px;
    width: 50%;
}

.aibuilder-visual > img {
    width: 100%;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 40px 80px -30px rgb(33 55 255 / 35%);
}

.aibuilder-chip {
    position: absolute;
    inset-inline-start: -40px;
    bottom: -30px;
    width: 130px;
    filter: drop-shadow(0 16px 30px rgb(0 0 0 / 18%));
}

.aibuilder-chip img {
    width: 100%;
}


/* ─── PLATFORM SHOWCASE ─── */
section.platform {
    padding: clamp(60px, 9vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

section.platform::before {
    content: "";
    position: absolute;
    top: -20vw;
    inset-inline-start: -50%;
    background: url("../../images/pages/w-shadow.png") no-repeat center / contain;
    width: 90vw;
    height: 100vw;
    z-index: -1;
    opacity: 0.5;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platform-card {
    background-color: var(--light);
    border: 1.5px solid var(--shade-200);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: 0.3s;
}

.platform-card:hover {
    border-color: var(--key-100);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -20px rgb(33 55 255 / 28%);
}

.platform-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(160deg, rgb(33 55 255 / 10%), rgb(107 122 255 / 14%));
    color: var(--key-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon svg {
    width: 26px;
    height: 26px;
}

.platform-card h3 {
    font-size: 19px;
    color: var(--text-800);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.platform-card p {
    font-size: 15px;
    color: var(--text-600);
    line-height: 1.6;
}


/* ─── SOCIAL PROOF ─── */
section.proof {
    padding: clamp(50px, 7vw, 90px) 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proof-metric {
    background-color: var(--light);
    border: 1.5px solid var(--shade-200);
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.proof-num {
    font-family: var(--font2);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.proof-label {
    font-size: 14px;
    color: var(--text-600);
    line-height: 1.45;
}


/* ─── FAQ ─── */
section.faq {
    padding: clamp(60px, 8vw, 110px) 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

details.faq-item {
    background-color: var(--light);
    border: 1.5px solid var(--shade-200);
    border-radius: 14px;
    padding: 4px 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

details.faq-item[open] {
    border-color: var(--key-100);
    box-shadow: 0 16px 40px -22px rgb(33 55 255 / 40%);
}

details.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-800);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: "\ea31";
    font-family: 'icons';
    font-size: 8px;
    color: var(--key-300);
    transition: transform 0.25s;
    flex-shrink: 0;
}

details.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 22px;
    font-size: 16px;
    color: var(--text-600);
    line-height: 1.7;
    max-width: 70ch;
}


/* ─── FINAL CTA BAND ─── */
section.cta-band {
    padding: clamp(50px, 7vw, 90px) 0 clamp(70px, 9vw, 120px);
}

.cta-band-inner {
    background: linear-gradient(135deg, var(--key-500), var(--key-100));
    border-radius: 28px;
    padding: clamp(40px, 6vw, 72px) 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px -40px rgb(33 55 255 / 70%);
}

.cta-band-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/pages/pattern.png") repeat;
    opacity: 0.08;
    pointer-events: none;
}

.cta-band-inner h2 {
    font-size: clamp(26px, 5vw, 46px);
    color: #fff;
    font-family: var(--font2);
    letter-spacing: -0.04em;
    line-height: 1.15;
    position: relative;
}

.cta-band-inner p {
    font-size: clamp(15px, 2.4vw, 20px);
    color: rgb(255 255 255 / 85%);
    max-width: 560px;
    position: relative;
}

.cta-band-inner a.get-started {
    margin-top: 10px;
    background: #fff;
    color: var(--key-300);
    position: relative;
}

/* Pricing — no-card subline */
.pricing2-nocard {
    font-size: 13px;
    font-weight: 600;
    color: var(--key-300);
    background-color: var(--shade-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-top: 4px;
}


/* ═══════════════ RESPONSIVE (story sections) ═══════════════ */
@media all and (max-width: 960px) {
    .how-grid,
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .aibuilder-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .aibuilder-text,
    .aibuilder-visual {
        max-width: 100%;
        width: 100%;
    }

    .aibuilder-chip {
        display: none;
    }
}

@media all and (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .intro-cta-row {
        flex-direction: column;
        gap: 14px;
    }
}

@media all and (max-width: 560px) {
    .how-grid,
    .platform-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-card,
    .platform-card,
    .problem-col,
    a.intro-secondary {
        transition: none;
    }
}