*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: #eaf5d3;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    background: #f8f6f1;
}

/* =============================================
   WIKI HERO — SECTION
============================================= */
.wi-hero {
    position: relative;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    min-height: 51vh;
    padding: 74px 64px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f0f4ff 0%,
        #e8eeff 25%,
        #f5f0ff 60%,
        #ffffff 100%
    );
}

.wi-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.08) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

.wi-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.11),
        transparent 65%
    );
    top: -160px;
    right: -100px;
    pointer-events: none;
}
.wi-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.09),
        transparent 70%
    );
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

/* =============================================
   LEFT CONTENT
============================================= */
.wi-hero__content {
    position: relative;
    z-index: 3;
    width: 44%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    animation: wiSlideIn 0.8s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

@keyframes wiSlideIn {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wi-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6366f1;
    margin-bottom: 16px;
    opacity: 0.85;
}

.wi-hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    animation: wiPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes wiPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.6);
    }
}

.wi-hero__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(49px, 3vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: #1e1b4b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.wi-hero__accent {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 45%, #06b6d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wiGradient 5s linear infinite;
}

@keyframes wiGradient {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}

.wi-hero__desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    color: #3730a3;
    margin: 20px 0 28px;
    max-width: 460px;
    opacity: 0.82;
}

.wi-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 36px;
}

.wi-hero__tag {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    color: #4338ca;
    transition: all 0.25s ease;
    cursor: default;
}

.wi-hero__tag:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(99, 102, 241, 0.28);
}

.wi-hero__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-width: 198px;
    padding: 14px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 55%, #06b6d4 100%);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.38);
    transition: all 0.25s ease;
    border: none;
}

.wi-hero__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    color: #fff;
}

.wi-arr {
    font-size: 20px;
    margin-left: auto;
    transition: 0.25s;
}
.wi-hero__btn:hover .wi-arr {
    transform: translateX(5px);
}

.wi-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
}

.wi-trust__item {
    display: flex;
    flex-direction: column;
}

.wi-trust__num {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1;
}

.wi-trust__lbl {
    font-size: 10px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.wi-trust__div {
    width: 1px;
    height: 34px;
    background: rgba(99, 102, 241, 0.18);
}

/* =============================================
   RIGHT ILLUSTRATION
============================================= */
.wi-hero__illus {
    position: relative;
    z-index: 2;
    width: 45%;
    min-height: 468px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wiIllusIn 0.9s 0.2s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}

@keyframes wiIllusIn {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Orbit rings */
.wi-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(99, 102, 241, 0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wiOrbit 32s linear infinite;
}

.wi-orbit--outer {
    width: 500px;
    height: 500px;
}
.wi-orbit--mid {
    width: 380px;
    height: 380px;
    border-color: rgba(139, 92, 246, 0.14);
    animation-direction: reverse;
    animation-duration: 24s;
}
.wi-orbit--inner {
    width: 270px;
    height: 270px;
    border-color: rgba(6, 182, 212, 0.16);
    animation-duration: 18s;
}

.wi-orbit-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6366f1;
    top: -4.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.55);
}

@keyframes wiOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =============================================
   FLOATING BADGES
============================================= */
.wi-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 10px 15px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 28px rgba(99, 102, 241, 0.1);
    z-index: 5;
    animation: wiFloat 6s ease-in-out infinite;
}

.wi-badge:nth-child(4) {
    animation-duration: 7.2s;
}
.wi-badge:nth-child(5) {
    animation-duration: 5.8s;
    animation-delay: -1.5s;
}
.wi-badge:nth-child(6) {
    animation-duration: 6.5s;
    animation-delay: -3s;
}
.wi-badge:nth-child(7) {
    animation-duration: 7.8s;
    animation-delay: -0.8s;
}
.wi-badge:nth-child(8) {
    animation-duration: 5.5s;
    animation-delay: -2.5s;
}
.wi-badge:nth-child(9) {
    animation-duration: 6.8s;
    animation-delay: -4s;
}

@keyframes wiFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-9px);
    }
}

.wi-badge:hover {
    transform: translateY(-5px) scale(1.04) !important;
    box-shadow: 0 14px 36px rgba(99, 102, 241, 0.2);
}

.wi-badge svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}
.wi-badge__stat {
    display: flex;
    flex-direction: column;
}

.wi-badge__num {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1e1b4b;
    line-height: 1.1;
}

.wi-badge__lbl {
    font-size: 9.5px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.wi-badge--wiki {
    top: 4%;
    left: -2%;
}
.wi-badge--images {
    top: 8%;
    right: -4%;
}
.wi-badge--views {
    bottom: 26%;
    left: -6%;
}
.wi-badge--links {
    bottom: 10%;
    right: -2%;
}
.wi-badge--langs {
    top: 44%;
    right: -6%;
}
.wi-badge--edits {
    top: 42%;
    left: -8%;
}

/* =============================================
   CENTRAL WIKI ARTICLE CARD
============================================= */
.wi-card {
    position: relative;
    z-index: 4;
    width: 440px;
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow:
        0 32px 64px rgba(99, 102, 241, 0.13),
        0 0 0 1px rgba(99, 102, 241, 0.07);
}

/* Header image area — now uses the real Wikipedia image */
.wi-card__img {
    width: 100%;
    height: 165px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 40%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The actual Wikipedia image */
.wi-card__wiki-img {
    height: 148px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.18));
    animation: wiImgFloat 5s ease-in-out infinite;
}

@keyframes wiImgFloat {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-6px) scale(1.02);
    }
}

/* Glowing halo behind the image */
.wi-card__img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.18),
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: wiHalo 4s ease-in-out infinite;
}

@keyframes wiHalo {
    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.wi-card__category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(99, 102, 241, 0.12);
    color: #4338ca;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    z-index: 3;
    font-family: "Poppins", sans-serif;
}

/* Article body */
.wi-card__body {
    padding: 14px 18px 10px;
    border-bottom: 1px solid #f0f0f8;
    overflow: hidden;
}

.wi-card__breadcrumb {
    font-size: 9.5px;
    font-weight: 500;
    color: #6366f1;
    margin-bottom: 6px;
    opacity: 0.75;
}

.wi-card__article-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1e1b4b;
    line-height: 1.35;
    margin-bottom: 8px;
}

.wi-card__article-title span {
    color: #6366f1;
}

.wi-inline-img {
    float: right;
    margin: 0 0 8px 12px;
    width: 90px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
}

.wi-inline-img__pic {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    overflow: hidden;
}

.wi-inline-img__pic img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(99, 102, 241, 0.2));
}

.wi-inline-img__caption {
    padding: 3px 5px;
    font-size: 8.5px;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: "Poppins", sans-serif;
}

.wi-card__abstract {
    font-size: 11px;
    line-height: 1.7;
    color: #475569;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.wi-card__infobar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.wi-ctag {
    font-size: 9px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.2px;
    font-family: "Poppins", sans-serif;
}

.wi-ctag--blue {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.wi-ctag--indigo {
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
}
.wi-ctag--violet {
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #ddd6fe;
}
.wi-ctag--cyan {
    background: #ecfeff;
    color: #0e7490;
    border: 1px solid #a5f3fc;
}
.wi-ctag--good {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Image gallery strip */
.wi-card__gallery {
    padding: 10px 18px 8px;
    border-bottom: 1px solid #f0f0f8;
}

.wi-gallery-label {
    font-size: 9px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.75;
    font-family: "Poppins", sans-serif;
}

.wi-gallery-strip {
    display: flex;
    gap: 8px;
}

.wi-gallery-img {
    flex: 1;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
    position: relative;
}

.wi-gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}
.wi-gallery-img:nth-child(1) {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.wi-gallery-img:nth-child(2) {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.wi-gallery-img:nth-child(3) {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}
.wi-gallery-img:nth-child(4) {
    background: linear-gradient(135deg, #f0fdf4, #bbf7d0);
}

.wi-gallery-img img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: 0.7;
    filter: drop-shadow(0 1px 4px rgba(99, 102, 241, 0.15));
}

/* Action bar */
.wi-card__actions {
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafe;
}

.wi-action-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wi-action-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: 600;
    color: #6366f1;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.14);
    cursor: pointer;
    transition: 0.2s;
    font-family: "Poppins", sans-serif;
}

.wi-action-btn:hover {
    background: #6366f1;
    color: #fff;
    border-color: #6366f1;
}

.wi-edit-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 600;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 4px 10px;
    font-family: "Poppins", sans-serif;
}

.wi-edit-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: wiPulse 1.6s ease-in-out infinite;
}

/* Stat bar */
.wi-card__stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-radius: 0 0 20px 20px;
}

.wi-sbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.wi-sbar-val {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #4338ca;
    line-height: 1;
}

.wi-sbar-lbl {
    font-size: 8.5px;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: "Poppins", sans-serif;
}

.wi-sbar-div {
    width: 1px;
    height: 24px;
    background: rgba(99, 102, 241, 0.15);
}

/* Verified pill */
.wi-verified-pill {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 9.5px;
    font-weight: 700;
    color: #1e1b4b;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
    z-index: 6;
    font-family: "Poppins", sans-serif;
}

.wi-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    flex-shrink: 0;
}

/* ==========================================
   MOBILE ORDER
   Title → Image → Description → Tags → Button
========================================== */

@media (max-width: 900px) {
    .wi-hero {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "image"
            "desc"
            "tags"
            "button";

        padding: 110px 24px 40px;
        gap: 22px;
        text-align: center;

        height: auto;
        min-height: auto;
    }

    /* remove normal flow */
    .wi-hero__content {
        display: contents;
    }

    /* optional */
    .wi-hero__eyebrow {
        display: none;
    }

    /* TITLE */
    .wi-hero__title {
        grid-area: title;
        width: 100%;
        text-align: center;
        font-size: 45px;
        margin-bottom: 0;
    }

    /* IMAGE */
    .wi-hero__illus {
        grid-area: image;

        width: 100%;
        height: 430px;

        display: flex;
        align-items: center;
        justify-content: center;

        min-height: unset;
        margin: 0 auto;
    }

    /* DESCRIPTION */
    .wi-hero__desc {
        grid-area: desc;

        max-width: 100%;
        text-align: center;

        margin: -55px auto 10px;
    }

    /* TAGS */
    .wi-hero__tags {
        grid-area: tags;

        justify-content: center;
        margin-bottom: 0;
    }

    /* BUTTON */
    .wi-hero__btn {
        grid-area: button;

        margin: 0 auto;

        width: fit-content;
        min-width: 172px;

        justify-content: center;
    }

    /* TRUST */
    .wi-trust {
        justify-content: center;
        margin-top: 20px;
    }

    /* CARD */
    .wi-card {
        width: min(100%, 340px);
    }

    /* ORBITS */
    .wi-orbit--outer {
        width: 320px;
        height: 320px;
    }

    .wi-orbit--mid {
        width: 250px;
        height: 250px;
    }

    .wi-orbit--inner {
        width: 180px;
        height: 180px;
    }

    /* HIDE FLOATING BADGES */
    .wi-badge {
        display: none;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 600px) {
    .wi-hero {
        padding: 130px 18px 30px;
        gap: 10px;
    }

    .wi-hero__title {
        font-size: 36px;
        line-height: 1.1;
    }

    .wi-hero__desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .wi-hero__illus {
        height: 360px;
    }

    .wi-card {
        width: 100%;
        max-width: 320px;
    }

    .wi-hero__btn {
        width: auto;
        padding: 14px 24px;
    }
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f8f4ff;
}

/* ── Section wrapper ── */
.wc-root {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(160deg, #f9f5ff 0%, #fff7ed 40%, #f0fdf4 100%);
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
}

.wc-root::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #d8b4fe44 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wc-root::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #bbf7d044 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── Top text block ── */
.wc-top {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

/* ── Badge ── */
.wc-badge {
    display: inline-block;
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ── Heading ── */
.wc-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: #86b413;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 600px;
}

.wc-heading span {
    color: #e3362e;
    display: inline-block;
}

.wc-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #10b981);
    border-radius: 2px;
    opacity: 0.5;
}

/* ── Subtext ── */
.wc-subtext {
    color: #000000;
    font-size: 19px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* ── Grid ── */
.wc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* ── Card ── */
.wc-card {
    background: #ffffff;
    border: 1px solid #f3e8ff;
    border-radius: 18px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
    cursor: default;
}

.wc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(124, 58, 237, 0.12);
}

.wc-card.accent-green {
    border-color: #d1fae5;
}
.wc-card.accent-amber {
    border-color: #fef3c7;
}
.wc-card.accent-coral {
    border-color: #ffe4e6;
}
.wc-card.accent-blue {
    border-color: #dbeafe;
}

/* ── Card icon ── */
.wc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.icon-purple {
    background: #f3e8ff;
    color: #7c3aed;
}
.icon-green {
    background: #d1fae5;
    color: #059669;
}
.icon-amber {
    background: #fef3c7;
    color: #d97706;
}
.icon-coral {
    background: #ffe4e6;
    color: #e11d48;
}
.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}
.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}

/* ── Card text ── */
.wc-card-title {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px;
}

.wc-card-desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ── Ghost number ── */
.wc-card-number {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #f3e8ff;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .wc-root {
        padding: 48px 20px;
    }
    .wc-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   SECTION — .gc-root
   ============================================================ */
.gc-root {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(150deg, #f9f5ff 0%, #f0fdf9 50%, #fff7ed 100%);
    padding: 56px 32px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gc-root::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #d8b4fe33 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.gc-root::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #6ee7b722 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   BADGE
   ============================================================ */
.gc-badge {
    display: inline-block;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
    opacity: 0;
    animation: gc-fade-up 0.6s ease forwards 0.1s;
}

/* ============================================================
   HEADING
   ============================================================ */
.gc-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    color: #86b413;
    margin: 0 0 12px;
    line-height: 1.2;
    opacity: 0;
    animation: gc-fade-up 0.6s ease forwards 0.25s;
}

.gc-heading em {
    font-style: normal;
    color: #e3362e;
}

/* ============================================================
   SUBTEXT
   ============================================================ */
.gc-sub {
    font-size: 17px;
    color: #000000;
    max-width: 460px;
    margin: 0 auto 40px;
    line-height: 1.65;
    opacity: 0;
    animation: gc-fade-up 0.6s ease forwards 0.4s;
}

/* ============================================================
   SVG WRAPPER
   ============================================================ */
.gc-svg-wrap {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    overflow: visible;
    opacity: 0;
    animation: gc-fade-up 0.7s ease forwards 0.55s;
}

.gc-svg-wrap svg {
    width: 100%;
    display: block;
    overflow: visible;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes gc-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gc-draw-arc {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes gc-pop-in {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gc-fade-slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gc-blink {
    0%,
    100% {
        opacity: 0.25;
    }
    50% {
        opacity: 1;
    }
}

@keyframes gc-pulse {
    0% {
        opacity: 0.55;
        r: 68px;
    }
    100% {
        opacity: 0;
        r: 96px;
    }
}

/* ============================================================
   ARCS
   ============================================================ */
.gc-arc {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}

.gc-arc--purple {
    stroke: #7f77dd;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 0.75s;
}

.gc-arc--green {
    stroke: #639922;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 1.3s;
}

.gc-arc--amber {
    stroke: #ba7517;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 1.85s;
}

.gc-arc--blue {
    stroke: #378add;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 2.4s;
}

/* ============================================================
   CONNECTOR DOTS
   ============================================================ */
.gc-dot {
    animation: gc-blink 1.8s ease-in-out infinite;
}

.gc-dot--1 {
    animation-delay: 0s;
}
.gc-dot--2 {
    animation-delay: 0.45s;
}
.gc-dot--3 {
    animation-delay: 0.9s;
}
.gc-dot--4 {
    animation-delay: 1.35s;
}

/* ============================================================
   NODES
   ============================================================ */
.gc-node {
    opacity: 0;
    animation: gc-pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.gc-node:hover {
    filter: brightness(0.93) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.13));
}

.gc-node--top {
    animation-delay: 0.65s;
    transform-origin: 390px 145px;
}
.gc-node--right {
    animation-delay: 1.25s;
    transform-origin: 560px 313px;
}
.gc-node--bottom {
    animation-delay: 1.85s;
    transform-origin: 390px 481px;
}
.gc-node--left {
    animation-delay: 2.45s;
    transform-origin: 220px 313px;
}

/* ============================================================
   CENTER HUB
   ============================================================ */
.gc-hub {
    opacity: 0;
    animation: gc-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 3.1s;
    transform-origin: 390px 313px;
}

/* ============================================================
   PULSE RINGS
   ============================================================ */
.gc-pulse-ring {
    fill: none;
    stroke: #7f77dd;
    stroke-width: 1.5;
    opacity: 0;
}

.gc-pulse-ring--1 {
    animation: gc-pulse 2.5s ease-out infinite 3.5s;
}
.gc-pulse-ring--2 {
    animation: gc-pulse 2.5s ease-out infinite 4.1s;
}

/* ============================================================
   CALLOUT BOXES
   ============================================================ */
.gc-callout {
    opacity: 0;
    animation: gc-fade-slide 0.6s ease forwards;
}

.gc-callout--top {
    animation-delay: 0.95s;
}
.gc-callout--right {
    animation-delay: 1.55s;
}
.gc-callout--bottom {
    animation-delay: 2.15s;
}
.gc-callout--left {
    animation-delay: 2.75s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 600px) {
    .gc-root {
        padding: 36px 14px 44px;
    }
    .gc-sub {
        font-size: 14px;
    }
}
/* ---------- Section wrapper ---------- */
.growth-section {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ---------- Header ---------- */
.growth-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d9e75;
    margin-bottom: 10px;
}

.growth-heading {
    font-size: 36px;
    font-weight: 600;
    color: #e3362e;
    margin-bottom: 14px;
    line-height: 1.2;
}

.growth-subtext {
    font-size: 17px;
    color: #000000;
    margin: 0 auto;
    max-width: 540px;
    line-height: 1.6;
}

/* ---------- Track (rail container) ---------- */
.rt-track {
    position: relative;
    padding-left: 72px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.rt-rail {
    position: absolute;
    left: 23px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    background: #e5e7eb;
    border-radius: 2px;
    z-index: 0;
}

.rt-rail-fill {
    position: absolute;
    left: 23px;
    top: 26px;
    width: 2px;
    height: 0;
    background: #1d9e75;
    border-radius: 2px;
    z-index: 1;
    transition: height 0.4s ease;
}

/* ---------- Each step row ---------- */
.rt-step {
    position: relative;
    margin-bottom: 20px;
}

/* ---------- Dot column ---------- */
.rt-dot-col {
    position: absolute;
    left: -72px;
    top: 0;
    width: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
}

.rt-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2.5px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition:
        border-color 0.25s,
        background 0.25s;
}

.rt-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    transition: background 0.25s;
}

.rt-dot.done .rt-dot-inner {
    background: #1d9e75;
}

/* ---------- Card ---------- */
.rt-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.rt-card:hover {
    border-color: #c0c4cc;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.rt-card.open {
    border-color: var(--step-color, #1d9e75);
    border-width: 2px;
}

/* ---------- Card head ---------- */
.rt-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    user-select: none;
}

.rt-phase-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.rt-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.rt-chevron {
    font-size: 15px;
    color: #9ca3af;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.rt-card.open .rt-chevron {
    transform: rotate(180deg);
}

/* ---------- Card body ---------- */
.rt-card-body {
    border-top: 1.5px solid #f3f4f6;
    padding: 20px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

.rt-bullet {
    font-size: 16px;
    color: #000000;
    padding-left: 20px;
    position: relative;
    margin: 0;
    line-height: 1.6;
}

.rt-bullet::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--step-color, #1d9e75);
    font-weight: 700;
}

.rt-outcome {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1.5px solid #f3f4f6;
}

.rt-outcome-label {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    flex-shrink: 0;
}

.rt-outcome-val {
    font-size: 16px;
    font-weight: 700;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet — 768px to 991px */
@media (max-width: 991px) {
    .growth-heading {
        font-size: 34px;
    }
    .growth-subtext {
        font-size: 16px;
    }
    .rt-card-title {
        font-size: 17px;
    }
    .rt-bullet {
        font-size: 15px;
    }
}

/* Mobile landscape & small tablet — 576px to 767px */
@media (max-width: 767px) {
    .growth-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .growth-heading {
        font-size: 28px;
    }
    .growth-subtext {
        font-size: 15px;
    }
    .rt-track {
        padding-left: 56px;
    }
    .rt-dot-col {
        left: -56px;
        width: 40px;
        padding-top: 20px;
    }
    .rt-rail,
    .rt-rail-fill {
        left: 17px;
    }
    .rt-dot {
        width: 24px;
        height: 24px;
    }
    .rt-card-head {
        padding: 16px 18px;
        gap: 12px;
    }
    .rt-card-title {
        font-size: 16px;
    }
    .rt-phase-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
    .rt-card-body {
        grid-template-columns: 1fr;
        padding: 16px 18px 20px;
        gap: 10px;
    }
    .rt-bullet {
        font-size: 14px;
    }
    .rt-outcome-val {
        font-size: 15px;
    }
}

/* Mobile portrait — up to 575px */
@media (max-width: 575px) {
    .growth-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .growth-eyebrow {
        font-size: 12px;
    }
    .growth-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .growth-subtext {
        font-size: 14px;
    }
    .rt-track {
        padding-left: 48px;
    }
    .rt-dot-col {
        left: -48px;
        width: 36px;
        padding-top: 18px;
    }
    .rt-rail,
    .rt-rail-fill {
        left: 14px;
    }
    .rt-dot {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
    .rt-dot-inner {
        width: 8px;
        height: 8px;
    }
    .rt-step {
        margin-bottom: 14px;
    }
    .rt-card {
        border-radius: 12px;
    }
    .rt-card-head {
        padding: 14px 16px;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .rt-phase-tag {
        font-size: 10px;
        padding: 3px 8px;
        letter-spacing: 0.06em;
    }
    .rt-card-title {
        font-size: 15px;
        line-height: 1.4;
    }
    .rt-chevron {
        font-size: 13px;
    }
    .rt-card-body {
        grid-template-columns: 1fr;
        padding: 14px 16px 18px;
        gap: 9px;
    }
    .rt-bullet {
        font-size: 14px;
        padding-left: 18px;
        line-height: 1.55;
    }
    .rt-outcome {
        gap: 8px;
        padding-top: 12px;
        margin-top: 8px;
    }
    .rt-outcome-label {
        font-size: 11px;
    }
    .rt-outcome-val {
        font-size: 14px;
    }
}
.faq-board {
    padding: 60px 24px 80px;
    background: #f7f5f0;
    border-radius: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.faq-board-sub {
    font-size: clamp(13px, 2vw, 16px);
    color: #666;
    margin: 0 0 44px;
    font-weight: 400;
}

/* ───────── 2 COLUMN FAQ LAYOUT ───────── */

.faq-notes {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    align-items: start;
}

.faq-note {
    background: #fff;
    border-radius: 12px;
    border: 0.5px solid #e0ddd7;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    height: fit-content;
}

.faq-note.open {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 54, 46, 0.3);
}

.faq-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
}

.faq-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.faq-num-red {
    background: #fde8e7;
    color: #e3362e;
}

.faq-num-green {
    background: #eef6e0;
    color: #5a9e0f;
}

.faq-note.open .faq-num-red {
    background: #e3362e;
    color: #fff;
}

.faq-note.open .faq-num-green {
    background: #5a9e0f;
    color: #fff;
}

.faq-q {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    flex: 1;
    transition: color 0.2s ease;
}

.faq-note.open .faq-q {
    color: #e3362e;
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #e0ddd7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.35s ease;
}

.faq-icon svg {
    stroke: #aaa;
    stroke-width: 2.5;
    transition: stroke 0.25s ease;
}

.faq-note.open .faq-icon {
    background: #e3362e;
    border-color: #e3362e;
    transform: rotate(180deg);
}

.faq-note.open .faq-icon svg {
    stroke: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.38s ease,
        padding 0.3s ease;
    padding: 0 22px 0 68px;
}

.faq-note.open .faq-body {
    max-height: 220px;
    padding: 0 22px 22px 68px;
}

.faq-a {
    font-size: 16.5px;
    font-weight: 500;
    color: #000000;
    line-height: 1.85;
    border-top: 0.5px solid #f0ede8;
    padding-top: 14px;
}

/* ───────── TABLET ───────── */

@media (max-width: 900px) {
    .faq-notes {
        grid-template-columns: 1fr;
    }
}

/* ───────── MOBILE ───────── */

@media (max-width: 600px) {
    .faq-board {
        padding: 40px 16px 56px;
        border-radius: 14px;
    }

    .faq-trigger {
        gap: 12px;
        padding: 16px 18px;
    }

    .faq-note.open .faq-body {
        padding: 0 18px 18px 60px;
    }

    .faq-q {
        font-size: 13.5px;
    }

    .faq-a {
        font-size: 13px;
    }
}
/* ── Promo Section ── */

/* ── Promo Section ── */
.promo-wrap {
    position: relative;
    padding: 64px 52px;
    background: #ffffff;
    border: 1px solid #e8e4ff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-family: "Poppins", sans-serif;
}

.promo-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6c47ff, #fb7185, #f59e0b);
}

.promo-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #e5e0ff 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

/* ── Left Content ── */
.promo-left {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}

.promo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0ecff;
    border: 1px solid #d4c9ff;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #5b35d5;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.promo-eyebrow i {
    font-size: 14px;
    color: #5b35d5;
}

.promo-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #1a1025;
    line-height: 1.1;
    margin: 0 0 12px;
}

.promo-heading span {
    color: #6c47ff;
}

.promo-sub {
    font-size: 17px;
    color: #000000;
    margin: 0;
    font-weight: 400;
    max-width: 400px;
    line-height: 1.7;
}

/* ── Right Content ── */
.promo-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    flex-shrink: 0;
}

/* ── Stat Chips ── */
.promo-stats {
    display: flex;
    gap: 12px;
}

.promo-stat {
    background: #f8f7ff;
    border: 1px solid #e4dfff;
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
}

.promo-stat__num {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #6c47ff;
    line-height: 1;
}

.promo-stat__label {
    font-size: 14px;
    color: #000000;
    margin-top: 4px;
    white-space: nowrap;
}

/* ── CTA Button ── */
.promo-btn--solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6c47ff;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(108, 71, 255, 0.25);
}

.promo-btn--solid:hover {
    background: #5b35d5;
    transform: translateY(-2px);
}

.promo-btn--solid i {
    font-size: 18px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .promo-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 24px;
    }

    .promo-right {
        align-items: flex-start;
        width: 100%;
    }

    .promo-stats {
        width: 100%;
    }
}
.promo-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.promo-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f7ff;
    border: 1px solid #e4dfff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #4b4465;
    text-decoration: none;
}

.promo-contact i {
    color: #6c47ff;
    font-size: 15px;
}

@media (max-width: 640px) {
    .promo-contact {
        flex-direction: column;
        width: 100%;
    }

    .promo-contact span {
        width: 100%;
    }

    .promo-btn--solid {
        width: 100%;
        justify-content: center;
    }
}
.promo-contact a:hover {
    color: #4b4465;
    text-decoration: none;
}

a:hover,
.btn-link:hover {
    color: #fff;
    text-decoration: none;
}
/* ============================================
   ABOUT US SECTION — ON-PAGE SEO
   Layout: Content Left | Cards Right (2x2 grid)
   Font: Poppins (assumed loaded globally)
   ============================================ */

:root {
    --color-teal: #1d9e75;
    --color-teal-light: #e1f5ee;
    --color-teal-dark: #0f6e56;
    --color-blue: #378add;
    --color-blue-light: #e6f1fb;
    --color-blue-dark: #185fa5;
    --color-coral: #d85a30;
    --color-coral-light: #faece7;
    --color-coral-dark: #993c1d;
    --color-purple: #7f77dd;
    --color-purple-light: #eeedfe;
    --color-purple-dark: #534ab7;
    --about-text-primary: #111111;
    --about-text-secondary: #4a4a4a;
    --about-text-muted: #888780;
    --about-bg-white: #ffffff;
    --about-bg-section: #f4f4f2;
    --about-border: rgba(0, 0, 0, 0.09);
    --about-radius-lg: 14px;
    --about-radius-pill: 999px;
}

/* ============================================
   SECTION
   ============================================ */
.about-section {
    padding: 80px 40px;
    background-color: var(--about-bg-section);
    font-family: "Poppins", sans-serif;
}

/* ============================================
   TWO-COLUMN CONTAINER
   ============================================ */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================================
   LEFT — CONTENT
   ============================================ */
.about-left {
    display: flex;
    flex-direction: column;
}

/* Eyebrow */
.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--about-text-muted);
    margin-bottom: 20px;
}

.about-eyebrow::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--about-text-muted);
    flex-shrink: 0;
}

/* Heading */
.about-heading {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--about-text-primary);
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.about-heading em {
    font-style: italic;
    font-weight: 800;
    color: var(--color-teal);
}

/* Badges */
.badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    font-family: "Poppins", sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: var(--about-radius-pill);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge-teal {
    background: var(--color-teal-light);
    color: var(--color-teal-dark);
}
.badge-blue {
    background: var(--color-blue-light);
    color: var(--color-blue-dark);
}
.badge-coral {
    background: var(--color-coral-light);
    color: var(--color-coral-dark);
}
.badge-purple {
    background: var(--color-purple-light);
    color: var(--color-purple-dark);
}

/* Intro */
.about-intro {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: #000000;
    margin: 0 0 32px 0;
}

/* Divider */
.about-divider {
    border: none;
    border-top: 1px solid var(--about-border);
    margin: 0 0 28px 0;
}

/* Tagline */
.about-tagline {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: var(--about-text-primary);
    line-height: 1.75;
    margin: 0 0 20px 0;
}

/* CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-teal);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s ease;
}

.about-cta i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.about-cta:hover {
    gap: 13px;
}
.about-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   RIGHT — 2x2 CARD GRID
   ============================================ */
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Card */
.about-card {
    background: var(--about-bg-white);
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-lg);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Accent bar */
.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.about-card--teal::before {
    background-color: var(--color-teal);
}
.about-card--blue::before {
    background-color: var(--color-blue);
}
.about-card--coral::before {
    background-color: var(--color-coral);
}
.about-card--purple::before {
    background-color: var(--color-purple);
}

/* Card icon */
.card-icon {
    font-size: 26px;
    color: var(--about-text-muted);
    margin-bottom: 16px;
    display: block;
}

/* Card title */
.card-title {
    font-size: 16.5px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

/* Card description */
.card-desc {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
    .about-section {
        padding: 60px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-heading {
        font-size: 36px;
    }
}

/* ============================================
   RESPONSIVE — LARGE MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
    .about-section {
        padding: 48px 20px;
    }

    .about-heading {
        font-size: 28px;
        letter-spacing: -0.2px;
    }

    .about-intro {
        font-size: 14px;
    }

    .about-right {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-tagline {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================ */
@media (max-width: 400px) {
    .about-section {
        padding: 36px 16px;
    }

    .about-heading {
        font-size: 24px;
    }

    .badge {
        font-size: 16.5px;
        padding: 4px 11px;
    }

    .card-title {
        font-size: 13.5px;
    }
    .card-desc {
        font-size: 12.5px;
    }
}
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: none;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.about-btn:hover {
    background: #000;
    color: #fff;
    transform: none;
}
.pr-root {
    padding: 64px 24px;
    font-family: "Poppins", sans-serif;
}

.pr-top {
    text-align: center;
    margin-bottom: 48px;
}

.pr-badge {
    display: inline-block;
    background: #e1f5ee;
    color: #085041;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pr-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.pr-heading em {
    font-style: italic;
    color: #1d9e75;
}

.pr-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 48px;
}

.pr-card {
    position: relative;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease;
    overflow: hidden;
}

.pr-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: var(--card-accent);
}

.pr-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
}

.pr-card.featured {
    border-color: #1d9e75;
    background: #f0fbf6;
}

.pr-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #1d9e75;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.pr-plan-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: var(--tag-bg);
    color: var(--tag-color);
}

.pr-plan-name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pr-best-for {
    font-size: 15px;
    color: #000000;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pr-best-for::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--card-accent);
    flex-shrink: 0;
}

.pr-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 20px;
}

.pr-price {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.pr-price span.pr-currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
    color: var(--card-accent);
}

.pr-price-period {
    font-size: 13.5px;
    color: #000000;
    margin-top: 4px;
}

.pr-price-block {
    margin-bottom: 22px;
}

.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pr-features li {
    font-size: 14.5px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.pr-features li i {
    color: var(--card-accent);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pr-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--card-accent);
    background: transparent;
    color: var(--card-accent);
    transition:
        background 0.18s,
        color 0.18s;
    text-decoration: none;
}

.pr-btn:hover,
.pr-card.featured .pr-btn {
    background: var(--card-accent);
    color: #fff;
}

.pr-cta-row {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d9e75;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.18s;
}

.pr-cta-main:hover {
    opacity: 0.88;
}

.pr-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #d1d5db;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color 0.18s,
        color 0.18s;
    background-color: #1d9e75;
}

.pr-cta-ghost:hover {
    border-color: #1d9e75;
    color: #fff;
}

.pr-note {
    text-align: center;
    font-size: 13.5px;
    color: #000000;
    margin-top: 16px;
}
.cta-outer {
    background: linear-gradient(
        135deg,
        #fce4ec 0%,
        #f3e5f5 20%,
        #e8eaf6 40%,
        #e3f2fd 60%,
        #e8f5e9 80%,
        #fffde7 100%
    );
    padding: 40px 24px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 52px 40px;
    text-align: center;
    max-width: 883px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(160, 120, 220, 0.08);
}

.cta-badge {
    display: inline-block;
    color: #7c6fbf;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cta-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a1033;
    margin: 0 0 14px;
    line-height: 1.3;
}

.cta-sub {
    font-size: 15px;
    color: #6b6880;
    margin: 0 auto 32px;
    max-width: 440px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #5b7cf7, #8b5cf6);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cta-btn-primary:hover {
    opacity: 0.85;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: #5b6af0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    border: 1.5px solid rgba(99, 102, 241, 0.35);
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(99, 102, 241, 0.06);
}

@media (max-width: 520px) {
    .cta-card {
        padding: 36px 20px;
    }
    .cta-heading {
        font-size: 24px;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 50%;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
    }
}
/* Mobile → show only number (01, 02...) */
@media (max-width: 575px) {
    .rt-phase-tag {
        font-size: 9px; /* hide original text */
        min-width: 34px;
        text-align: center;
        padding: 6px 8px;
    }

    .rt-phase-tag::after {
        content: attr(data-step); /* output only number */
        font-size: 12px;
        font-weight: 700;
    }
}
.pr-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 999px;
}

.pr-curr-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.pr-curr-btn.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
    /* remove timeline line */
    .rt-rail,
    .rt-rail-fill {
        display: none;
    }

    /* remove timeline dots */
    .rt-dot-col {
        display: none;
    }

    /* adjust cards position after removing dots */
    .rt-track {
        padding-left: 0;
    }
}
/* =========================================
   GET STARTED BUTTONS
========================================= */

.pr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin-top: 25px;

    padding: 14px 24px;

    border-radius: 12px;

    background: #059669;
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

    border: 1px solid transparent;
}

.pr-card-btn:hover {
    background: #ffffff;

    color: #111827;

    border-color: #111827;
}

/* Featured Growth Button */

.pr-card.featured .pr-card-btn {
    background: #1d9e75;

    color: #ffffff;
}

.pr-card.featured .pr-card-btn:hover {
    background: #ffffff;

    color: #1d9e75;

    border-color: #1d9e75;
}

/* =========================================
   REQUEST CUSTOM QUOTE BUTTON
========================================= */

.pr-middle-cta {
    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 45px;
}

.pr-cta-ghost {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 38px;

    border-radius: 0px;

    color: #fff;

    border: 2px solid #059669;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.pr-cta-ghost i {
    font-size: 18px;
}

/* Quote hover */

.pr-cta-ghost:hover {
    background: #059669;

    color: #ffffff;

    transform: translateY(-3px);
}
/* =========================================
   REQUEST QUOTE MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .pr-middle-cta {
        margin-top: 35px;
        padding: 0 20px;
    }

    .pr-cta-ghost {
        width: 51%;

        max-width: 320px;

        padding: 14px 20px;

        font-size: 14px;

        border-radius: 0px;

        gap: 8px;
    }

    .pr-cta-ghost i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pr-middle-cta {
        margin-top: 28px;

        padding: 0 15px;
    }

    .pr-cta-ghost {
        width: 100%;

        max-width: 100%;

        padding: 13px 15px;

        font-size: 13px;
    }

    .pr-cta-ghost i {
        font-size: 15px;
    }
}
/* =========================================
   GET STARTED BUTTON RESPONSIVE
========================================= */

.pr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 48px;

    padding: 14px 22px;

    border-radius: 12px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

/* Tablet */

@media (max-width: 1024px) {
    .pr-card-btn {
        padding: 13px 18px;

        font-size: 14px;

        border-radius: 10px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .pr-card-btn {
        width: 29%;

        min-height: 46px;

        padding: 12px 16px;

        font-size: 14px;

        border-radius: 10px;

        margin-top: 20px;
    }
}

/* Small Mobile */

@media (max-width: 480px) {
    .pr-card-btn {
        min-height: 44px;

        padding: 11px 14px;

        font-size: 13px;

        border-radius: 9px;
    }
}
