*,
*::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");

/* ═══════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════ */
.cl-hero {
    font-family: "Poppins", sans-serif;
    position: relative;
    width: 100%;
    max-width: 1532px;
    min-height: 574px;
    padding: 119px 56px 0px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(
        135deg,
        #dbeafe 0%,
        #bfdbfe 28%,
        #e9d5ff 62%,
        #fce7f3 100%
    );
    border-radius: 28px;
    overflow: hidden;
}

/* Dot Grid */
.cl-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.1) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

/* Glow blobs */
.cl-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(37, 99, 235, 0.13) 0%,
        transparent 65%
    );
    top: -150px;
    right: -80px;
    pointer-events: none;
}

.cl-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(236, 72, 153, 0.1) 0%,
        transparent 65%
    );
    bottom: -110px;
    left: -50px;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   LEFT CONTENT
═══════════════════════════════════════ */
.cl-hero__content {
    position: relative;
    z-index: 2;
    width: 44%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}

.cl-hero__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #1e3a8a;
    margin-bottom: 14px;
    opacity: 0.65;
}

.cl-hero__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(48px, 3vw, 52px);
    font-weight: 900;
    line-height: 1.06;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.cl-hero__accent {
    display: block;
    background: linear-gradient(
        90deg,
        #2563eb 0%,
        #6366f1 35%,
        #ec4899 70%,
        #2563eb 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 3.5s linear infinite;
}

@keyframes gradShift {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 200% center;
    }
}

.cl-hero__desc {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.85;
    margin: 18px 0 26px;
    max-width: 430px;
    opacity: 0.82;
}

/* Tag Pills */
.cl-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.cl-hero__tag {
    padding: 7px 16px;
    border: 1.5px solid rgba(37, 99, 235, 0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #1e3a8a;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.22s;
    backdrop-filter: blur(4px);
}

.cl-hero__tag:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* CTA Button */
.cl-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2563eb, #6366f1 50%, #ec4899);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 800;
    padding: 14px 34px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.38);
    width: fit-content;
}

.cl-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
    filter: brightness(1.08);
    color: #fff;
}

.cl-arr {
    font-size: 20px;
    transition: transform 0.2s;
}

.cl-hero__btn:hover .cl-arr {
    transform: translateX(5px);
}

/* ═══════════════════════════════════════
   RIGHT ILLUSTRATION
═══════════════════════════════════════ */
.cl-hero__illus {
    position: relative;
    z-index: 2;
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 363px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ORBIT RINGS
═══════════════════════════════════════ */
.cl-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(37, 99, 235, 0.2);
    top: 50%;
    left: 50%;
}

.cl-orbit--outer {
    width: 440px;
    height: 440px;
    transform: translate(-50%, -50%);
    animation: orbitCW 28s linear infinite;
}

.cl-orbit--mid {
    width: 320px;
    height: 320px;
    transform: translate(-50%, -50%);
    border-color: rgba(236, 72, 153, 0.18);
    animation: orbitCCW 18s linear infinite;
}

.cl-orbit--inner {
    width: 210px;
    height: 210px;
    transform: translate(-50%, -50%);
    border-color: rgba(99, 102, 241, 0.16);
    animation: orbitCW 11s linear infinite;
}

@keyframes orbitCW {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes orbitCCW {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Orbit dots — counter-rotate to stay upright */
.cl-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.cl-orbit--outer .cl-orbit-dot {
    animation: orbitCCW 28s linear infinite;
}

.cl-orbit--mid .cl-orbit-dot {
    background: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
    top: auto;
    bottom: -5px;
    animation: orbitCW 18s linear infinite;
}

.cl-orbit--inner .cl-orbit-dot {
    background: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    animation: orbitCCW 11s linear infinite;
}

/* ═══════════════════════════════════════
   FLOATING ICON BADGES
═══════════════════════════════════════ */
.cl-icon-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 10px 14px 10px 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.95);
    z-index: 5;
    cursor: pointer;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.cl-icon-badge:hover {
    transform: translateY(-4px) scale(1.04) !important;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18);
}

.cl-icon-badge svg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.cl-badge-stat {
    display: flex;
    flex-direction: column;
}

.cl-badge-num {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1.1;
}

.cl-badge-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge positions & float animations */
.cl-icon--seoad {
    top: 3%;
    left: -4%;
    animation: float1 4.5s ease-in-out infinite;
}

.cl-icon--leedseo {
    top: 7%;
    right: -3%;
    animation: float2 3.8s ease-in-out infinite 0.6s;
}

.cl-icon--rank {
    bottom: 30%;
    left: -7%;
    animation: float1 5.2s ease-in-out infinite 1.1s;
}

.cl-icon--traffic {
    bottom: 10%;
    right: 1%;
    animation: float2 4s ease-in-out infinite 0.3s;
}

.cl-icon--keyword {
    top: 44%;
    left: -9%;
    animation: float1 3.6s ease-in-out infinite 1.8s;
}

.cl-icon--autopost {
    top: 40%;
    right: -4%;
    animation: float2 4.8s ease-in-out infinite 0.9s;
}

@keyframes float1 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ═══════════════════════════════════════
   CENTRAL LISTINGS BOARD
═══════════════════════════════════════ */
.cl-board {
    position: relative;
    z-index: 4;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 64px rgba(37, 99, 235, 0.16);
    overflow: hidden;
    width: 318px;
    border: 1px solid rgba(255, 255, 255, 0.95);
}

/* Browser chrome */
.cl-board__chrome {
    background: #1e293b;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
}

.cl-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.cl-dot.r {
    background: #ef4444;
}
.cl-dot.y {
    background: #f59e0b;
}
.cl-dot.g {
    background: #22c55e;
}

.cl-board__url {
    flex: 1;
    background: #0f172a;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 9px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 6px;
}

.cl-board__btn-sm {
    background: #2563eb;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Filter bar */
.cl-filter-bar {
    display: flex;
    gap: 4px;
    padding: 8px 9px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.cl-filter-chip {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}

.cl-filter-chip.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.cl-filter-chip:hover:not(.active) {
    background: #f1f5f9;
}

/* Listings feed */
.cl-listings {
    background: #f8fafc;
    padding: 7px 7px 0;
}

.cl-listing {
    background: #fff;
    border-radius: 11px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 9px 10px;
    margin-bottom: 6px;
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.cl-listing:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.cl-listing--featured {
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #eff6ff, #fff);
    animation: pulseBorder 2.6s ease-in-out infinite;
}

@keyframes pulseBorder {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.28);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0);
    }
}

.cl-listing__thumb {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    flex-shrink: 0;
    overflow: hidden;
}

.cl-listing__thumb svg {
    width: 40px;
    height: 40px;
    display: block;
}

.cl-listing__body {
    flex: 1;
    overflow: hidden;
}

.cl-listing__tags {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.cl-tag {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
}

.cl-tag.featured {
    background: #dbeafe;
    color: #1d4ed8;
}
.cl-tag.seo {
    background: #dcfce7;
    color: #15803d;
}
.cl-tag.cat {
    background: #f1f5f9;
    color: #475569;
}
.cl-tag.hot {
    background: #fce7f3;
    color: #be185d;
}

.cl-listing__title {
    font-size: 10px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.35;
}

.cl-listing__meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.cl-listing__meta span {
    font-size: 8px;
    color: #64748b;
    font-weight: 500;
}

.cl-listing__price {
    font-size: 10px;
    font-weight: 800;
    color: #2563eb !important;
    margin-left: auto;
}

.cl-listing__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 7.5px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 6px;
    color: #fff;
}

.cl-listing__badge.new {
    background: #059669;
}
.cl-listing__badge.live {
    background: #7c3aed;
}

/* Stat bar */
.cl-stat-bar {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    padding: 7px 2px;
}

.cl-sbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    padding: 2px 4px;
}

.cl-sbar-val {
    font-size: 11px;
    font-weight: 800;
    color: #1e3a8a;
}

.cl-sbar-lbl {
    font-size: 7px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cl-sbar-divider {
    width: 1px;
    background: #e2e8f0;
    margin: 4px 0;
}

/* Slide-in stagger for listings */
.cl-listing:nth-child(1) {
    animation: slideIn 0.5s ease both 0.2s;
}
.cl-listing:nth-child(2) {
    animation: slideIn 0.5s ease both 0.45s;
}
.cl-listing:nth-child(3) {
    animation: slideIn 0.5s ease both 0.7s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════
   CL-HERO RESPONSIVE FIX
   Replace the existing @media blocks at
   the bottom of your cl-hero CSS with
   these rules.
═══════════════════════════════════════ */

/* ── 1280px cap — section fills page ── */
.cl-hero {
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

/* ── 1100px: tighten padding ── */
@media (max-width: 1100px) {
    .cl-hero {
        padding: 50px 36px;
        gap: 20px;
    }
    .cl-hero__content {
        width: 46%;
    }
    .cl-hero__illus {
        width: 52%;
    }
}

/* ── 900px: stack vertically ── */
@media (max-width: 900px) {
    .cl-hero {
        flex-direction: column;
        padding: 50px 24px 56px;
        text-align: center;
        min-height: auto;
        gap: 56px;
        border-radius: 20px;
    }

    .cl-hero__content {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .cl-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cl-hero__tags {
        justify-content: center;
    }

    .cl-hero__illus {
        width: 100%;
        min-height: 480px;
    }

    .cl-orbit--outer {
        width: 380px;
        height: 380px;
    }
    .cl-orbit--mid {
        width: 280px;
        height: 280px;
    }
    .cl-orbit--inner {
        width: 190px;
        height: 190px;
    }

    /* Badges — pull closer to center so they don't clip */
    .cl-icon--seoad {
        top: 2%;
        left: 2%;
    }
    .cl-icon--leedseo {
        top: 2%;
        right: 2%;
    }
    .cl-icon--rank {
        bottom: 22%;
        left: 0%;
    }
    .cl-icon--traffic {
        bottom: 6%;
        right: 2%;
    }
    .cl-icon--keyword {
        top: 42%;
        left: 0%;
    }
    .cl-icon--autopost {
        top: 42%;
        right: 0%;
    }
}

/* ── 680px: shrink orbits & badges ── */
@media (max-width: 680px) {
    .cl-hero {
        padding: 44px 16px 48px;
    }

    .cl-hero__title {
        font-size: 36px;
    }

    .cl-hero__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cl-hero__illus {
        min-height: 420px;
    }

    .cl-orbit--outer {
        width: 320px;
        height: 320px;
    }
    .cl-orbit--mid {
        width: 236px;
        height: 236px;
    }
    .cl-orbit--inner {
        width: 158px;
        height: 158px;
    }

    /* Scale badges down uniformly */
    .cl-icon-badge {
        transform: scale(0.82) !important;
        transform-origin: center center;
    }

    /* Re-anchor badge positions after scale */
    .cl-icon--seoad {
        top: 1%;
        left: -2%;
    }
    .cl-icon--leedseo {
        top: 1%;
        right: -2%;
    }
    .cl-icon--rank {
        bottom: 20%;
        left: -4%;
    }
    .cl-icon--traffic {
        bottom: 4%;
        right: -2%;
    }
    .cl-icon--keyword {
        top: 42%;
        left: -5%;
    }
    .cl-icon--autopost {
        top: 42%;
        right: -3%;
    }

    .cl-board {
        width: 290px;
    }
}

/* ── 480px: minimal layout ── */
@media (max-width: 480px) {
    .cl-hero {
        padding: 40px 12px 44px;
        border-radius: 16px;
    }

    .cl-hero__title {
        font-size: 30px;
    }

    .cl-hero__desc {
        font-size: 13px;
    }

    .cl-hero__illus {
        min-height: 380px;
    }

    .cl-orbit--outer {
        width: 270px;
        height: 270px;
    }
    .cl-orbit--mid {
        width: 198px;
        height: 198px;
    }
    .cl-orbit--inner {
        width: 130px;
        height: 130px;
    }

    .cl-icon-badge {
        transform: scale(0.74) !important;
        transform-origin: center center;
    }

    /* Hide the two side-middle badges on very small screens */
    .cl-icon--keyword,
    .cl-icon--autopost {
        display: none;
    }

    .cl-icon--seoad {
        top: 0%;
        left: -6%;
    }
    .cl-icon--leedseo {
        top: 0%;
        right: -6%;
    }
    .cl-icon--rank {
        bottom: 18%;
        left: -8%;
    }
    .cl-icon--traffic {
        bottom: 2%;
        right: -5%;
    }

    .cl-board {
        width: 260px;
    }

    .cl-board__url {
        font-size: 8px;
    }

    .cl-filter-chip {
        font-size: 8px;
        padding: 3px 8px;
    }
}
/* ==================================================
   MOBILE ORDER
   Heading → Image → Text → Button
================================================== */
@media (max-width: 768px) {
    .cl-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
        padding: 120px 18px 40px;
    }

    /* allow children to reorder */
    .cl-hero__content {
        width: 100%;
        max-width: 100%;
        display: contents;
    }

    /* 1 → Eyebrow */
    .cl-hero__eyebrow {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
    }

    /* 2 → Heading */
    .cl-hero__title {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
        font-size: clamp(34px, 8vw, 42px);
    }

    /* 3 → Illustration */
    .cl-hero__illus {
        order: 3;
        width: 100%;
        min-height: 218px;
        margin-bottom: 18px;
    }

    /* 4 → Description */
    .cl-hero__desc {
        order: 4;
        width: 100%;
        max-width: 620px;
        margin: 0 auto 22px;
    }

    /* Tags */
    .cl-hero__tags {
        order: 5;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* 5 → CTA */
    .cl-hero__btn {
        order: 6;
        width: 100%;
        max-width: 191px;
        justify-content: center;
        margin: 0 auto;
    }

    /* illustration sizing */
    .cl-board {
        width: min(290px, 92vw);
    }

    .cl-orbit--outer {
        width: 300px;
        height: 300px;
    }

    .cl-orbit--mid {
        width: 220px;
        height: 220px;
    }

    .cl-orbit--inner {
        width: 150px;
        height: 150px;
    }
}

/* extra small */
@media (max-width: 480px) {
    .cl-hero {
        padding: 138px 14px 30px;
    }

    .cl-hero__title {
        font-size: 36px;
    }

    .cl-board {
        width: min(260px, 92vw);
    }

    .cl-icon--keyword,
    .cl-icon--autopost {
        display: none;
    }
}
*,
*::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: 55%;

        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;
    }
}
