/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a:hover,
.btn-link:hover {
    color: #fff;
    text-decoration: none;
}
/* ============================================================
    HERO
    ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 75vh;
    padding: 47px 64px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    background: linear-gradient(
        135deg,
        #f7ffff 0%,
        #e8fcff 20%,
        #d7f7ff 50%,
        #c5f0fa 100%
    );
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.13) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.18) 0%,
        transparent 65%
    );
    top: -160px;
    right: -100px;
    pointer-events: none;
}
.blob-bl {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(190, 18, 60, 0.12) 0%,
        transparent 65%
    );
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

/* ── CONTENT ── */
.hero__content {
    position: relative;
    z-index: 2;
    width: 50%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.hero__eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.hero__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 800;
    line-height: 1.06;
    color: #1fb9ce;
    margin-bottom: 8px;
}
.hero__accent {
    display: block;
    color: var(--teal);
    position: relative;
}
.hero__accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--rose-mid));
    border-radius: 2px;
    animation: lineGrow 1s ease 0.6s both;
    transform-origin: left;
}
@keyframes lineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.hero__sub-title {
    display: block;
    color: var(--text-dark);
    opacity: 0.85;
}

.hero__desc {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 26px 0 32px;
    max-width: 518px;
}
.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.hero__tag {
    padding: 8px 18px;
    border: 1.5px solid rgba(13, 148, 136, 0.3);
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.22s;
    backdrop-filter: blur(6px);
}
.hero__tag:hover {
    background: var(--teal);
    color: green;
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(13, 148, 136, 0.35);
}
.hero__cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--teal);
    color: #000;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(13, 148, 136, 0.38);
    background-color: skyblue;
}
.hero__btn:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(13, 148, 136, 0.48);
}
.hero__btn svg {
    transition: transform 0.2s;
}
.hero__btn:hover svg {
    transform: translateX(4px);
}
.hero__link {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(190, 18, 60, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}
.hero__link:hover {
    border-color: var(--rose);
}

/* stats */
.stats-row {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1.5px solid rgba(13, 148, 136, 0.15);
}
.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}
.stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── ILLUSTRATION ── */
.hero__illus {
    position: relative;
    z-index: 2;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatUp 5s ease-in-out infinite;
}
@keyframes floatUp {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}
.hero__img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
    filter: drop-shadow(0 24px 60px rgba(13, 148, 136, 0.22))
        drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.hero__img-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.2) 0%,
        rgba(190, 18, 60, 0.08) 50%,
        transparent 70%
    );
    z-index: -1;
    animation: glowPulse 3.5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.07);
    }
}

/* floating badges */
.fbadge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(13, 148, 136, 0.22);
    border-radius: 50px;
    padding: 9px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
}
.fbadge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.fb1 {
    top: 10%;
    left: -4%;
    animation: bf 3.5s ease-in-out infinite;
}
.fb2 {
    top: 44%;
    right: -6%;
    animation: bf 4s ease-in-out infinite 0.7s;
}
.fb3 {
    bottom: 14%;
    left: -2%;
    animation: bf 3.8s ease-in-out infinite 1.3s;
}
@keyframes bf {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 28px 60px;
        min-height: auto;
    }
    .hero__content {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__tags {
        justify-content: center;
    }
    .hero__illus {
        width: 100%;
    }
    .hero__img-wrap {
        max-width: 380px;
    }
    .fb1,
    .fb2,
    .fb3 {
        display: none;
    }
    .stats-row {
        justify-content: center;
    }
}
@media (max-width: 580px) {
    .hero {
        padding: 105px 18px 0px;
    }
    .hero__title {
        font-size: 34px;
    }
    .hero__btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .stats-row {
        gap: 20px;
    }
    .stat-num {
        font-size: 22px;
    }
}
.hero__title {
    font-size: clamp(3.5rem, 3vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title .letter,
.hero__accent .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: letterReveal 0.6s ease forwards;
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) rotate(8deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.hero__accent {
    color: #1fb9ce; /* Change to your brand color */
}
/* ==========================================================
   HERO TYPOGRAPHY
========================================================== */

/* Eyebrow */
.hero__eyebrow {
    font-family: "Poppins", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    line-height: 1.4 !important;
}

/* Main Heading */
.hero__title {
    font-family: "Poppins", sans-serif !important;
    font-size: clamp(3.5rem, 3vw, 4.8rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #1fb9ce;
    margin-bottom: 20px;
}

/* Accent Text */
.hero__accent {
    font-weight: 800 !important;
    color: #1fb9ce;
}

/* Secondary Line */
.hero__sub-title {
    display: block;
    font-family: "Poppins", sans-serif !important;
    font-size: inherit;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #111827;
}

/* Description */
.hero__desc {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.9 !important;
    color: #4b5563;
}

/* Tags */
.hero__tag {
    font-family: "Poppins", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* CTA Button */
.hero__btn {
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* CTA Link */
.hero__link {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* Stats Number */
.stat-num {
    font-family: "Poppins", sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

/* Stats Label */
.stat-label {
    font-family: "Poppins", sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 920px) {
    .hero__title {
        font-size: 3rem !important;
        line-height: 1.15 !important;
    }

    .hero__desc {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .stat-num {
        font-size: 24px !important;
    }
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 580px) {
    .hero__eyebrow {
        font-size: 10px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
    }

    .hero__title {
        font-size: 2.25rem !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        margin-bottom: 14px !important;
    }

    .hero__accent {
        font-weight: 800 !important;
    }

    .hero__sub-title {
        font-weight: 700 !important;
        line-height: 1.2 !important;
    }

    .hero__desc {
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.75 !important;
        margin: 20px 0 28px !important;
    }

    .hero__tag {
        font-size: 11px !important;
        font-weight: 600 !important;
    }

    .hero__btn {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .hero__link {
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .stat-num {
        font-size: 20px !important;
        font-weight: 800 !important;
    }

    .stat-label {
        font-size: 10px !important;
        font-weight: 600 !important;
        letter-spacing: 0.8px !important;
    }
}
/* =========================
   IMAGE FLOAT ANIMATION
========================= */

.aeo-hero__illus {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aeo-hero__img {
    width: 100%;
    max-width: 620px;
    height: 33vh;
    object-fit: contain;
    position: relative;
    z-index: 2;

    animation: perplexityFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Floating Animation */
@keyframes perplexityFloat {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* =========================
   GLOW EFFECT
========================= */

.aeo-hero__illus::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(80, 120, 255, 0.18) 0%,
        rgba(160, 90, 255, 0.12) 45%,
        transparent 75%
    );
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* =========================
   ROTATING RING
========================= */

.aeo-hero__illus::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;

    z-index: 0;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.perplexity-badge {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.badge-1 {
    top: 14%;
    left: 7%;
    animation: badgeFloat 3.5s infinite ease-in-out;
}

.badge-2 {
    top: 22%;
    right: -2%;
    animation: badgeFloat 4s infinite ease-in-out 0.8s;
}

.badge-3 {
    bottom: 15%;
    left: 0;
    animation: badgeFloat 3.8s infinite ease-in-out 1.5s;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* ==========================================================
   MOBILE ORDER
   Heading → Image → Text → Button
========================================================== */

@media (max-width: 920px) {
    .hero {
        display: flex;
        flex-direction: column;
        gap: 0px;
        padding: 105px 24px 50px;
    }

    /* Enable child reordering */
    .hero__content {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        display: contents;
    }

    /* 1 → Heading */
    .hero__eyebrow,
    .hero__title {
        order: 1;
        text-align: center;
    }

    /* 2 → Image */
    .hero__illus {
        order: 2;
        width: 100%;
        margin: 0 auto;
    }

    .hero__img-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero__img {
        width: 100%;
        height: auto;
    }

    /* 3 → Description */
    .hero__desc {
        order: 3;
        text-align: center;
        margin: 18px auto;
        max-width: 100%;
    }

    /* Optional → Tags */
    .hero__tags {
        order: 4;
        justify-content: center;
        margin-bottom: 20px;
    }

    /* 4 → CTA */
    .hero__cta-row {
        order: 5;
        justify-content: center;
        width: 100%;
    }

    .hero__btn {
        width: fit-content;
        min-width: 220px;
        justify-content: center;
    }

    /* Stats below CTA */
    .stats-row {
        order: 6;
        justify-content: center;
        margin-top: 28px;
    }

    /* Hide floating badges */
    .fb1,
    .fb2,
    .fb3,
    .badge-1,
    .badge-2,
    .badge-3 {
        display: none;
    }
}

@media (max-width: 580px) {
    .hero {
        padding: 122px 18px 40px;
    }

    .hero__title {
        font-size: 2.1rem !important;
        line-height: 1.15 !important;
    }

    .hero__desc {
        font-size: 14px !important;
    }

    .hero__img-wrap {
        max-width: 280px;
    }

    .hero__btn {
        width: 100%;
        max-width: 260px;
    }
}
/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.wc-root {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(160deg, #e8f0fe 0%, #f0e8ff 40%, #e0f5ff 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,
        rgba(0, 120, 212, 0.12) 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,
        rgba(0, 188, 242, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.wc-top {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}
.wc-badge {
    display: inline-block;
    background: #e6f1fb;
    border: 1px solid #b5d4f4;
    color: #0078d4;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.wc-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: #0078d4;
    line-height: 1.2;
    margin: 0 0 14px;
    max-width: 620px;
}
.wc-heading span {
    color: #b4009e;
}
.wc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.wc-card {
    background: #fff;
    border: 1px solid #e6f1fb;
    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(0, 120, 212, 0.14);
}
.wc-card.accent-green {
    border-color: #d1fae5;
}
.wc-card.accent-amber {
    border-color: #fef3c7;
}
.wc-card.accent-coral {
    border-color: #e0f5ff;
}
.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-blue {
    background: #e6f1fb;
    color: #0078d4;
}
.icon-green {
    background: #d1fae5;
    color: #059669;
}
.icon-amber {
    background: #fef3c7;
    color: #d97706;
}
.icon-coral {
    background: #e0f5ff;
    color: #00bcf2;
}
.icon-purple {
    background: #f0e8ff;
    color: #b4009e;
}
.wc-card-number {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #e6f1fb;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.wc-card-title {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.wc-card-desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 600px) {
    .wc-root {
        padding: 48px 20px;
    }
    .wc-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   GROWTH CYCLE
   ============================================================ */
.gc-root {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(150deg, #edf7ee 0%, #faf7f0 50%, #f5efe3 100%);
    padding: 56px 32px 0;
    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,
        rgba(0, 120, 212, 0.12) 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,
        rgba(0, 204, 106, 0.1) 0%,
        transparent 65%
    );
    border-radius: 50%;
    pointer-events: none;
}
.gc-badge {
    display: inline-block;
    background: #e6f1fb;
    border: 1px solid #b5d4f4;
    color: #0078d4;
    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;
}
.gc-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 600;
    color: #0078d4;
    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: #b4009e;
}
.gc-sub {
    font-size: 17px;
    color: #3a3a5c;
    max-width: 460px;
    margin: 0 auto 40px;
    line-height: 1.65;
    opacity: 0;
    animation: gc-fade-up 0.6s ease forwards 0.4s;
}
.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 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;
    }
}

.gc-arc {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
}
.gc-arc--purple {
    stroke: #0078d4;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 0.75s;
}
.gc-arc--green {
    stroke: #00bcf2;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 1.3s;
}
.gc-arc--amber {
    stroke: #b4009e;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 1.85s;
}
.gc-arc--blue {
    stroke: #00cc6a;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: gc-draw-arc 1.1s ease forwards 2.4s;
}

.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;
}

.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;
}

.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;
}

.gc-pulse-ring {
    fill: none;
    stroke: #0078d4;
    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;
}

.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;
}

@media (max-width: 600px) {
    .gc-root {
        padding: 36px 14px 44px;
    }
    .gc-sub {
        font-size: 14px;
    }
}

/* ============================================================
   GROWTH FRAMEWORK (Roadmap Track)
   ============================================================ */
.growth-section {
    background: #edeef9;
    padding-top: 80px;
    padding-bottom: 80px;
}
.rt-track {
    position: relative;
    padding-left: 72px;
    max-width: 860px;
    margin: 0 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: #0078d4;
    border-radius: 2px;
    z-index: 1;
    transition: height 0.4s ease;
}
.rt-step {
    position: relative;
    margin-bottom: 20px;
}
.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: #0078d4;
}
.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, #0078d4);
    border-width: 2px;
}
.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);
}
.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: #3a3a5c;
    padding-left: 20px;
    position: relative;
    margin: 0;
    line-height: 1.6;
}
.rt-bullet::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--step-color, #0078d4);
    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: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    flex-shrink: 0;
}
.rt-outcome-val {
    font-size: 16px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .growth-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .rt-track {
        padding-left: 56px;
    }
    .rt-dot-col {
        left: -56px;
        width: 40px;
        padding-top: 20px;
    }
    .rt-rail,
    .rt-rail-fill {
        left: 17px;
    }
    .rt-card-body {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 575px) {
    .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-card-head {
        padding: 14px 16px;
        gap: 10px;
    }
    .rt-phase-tag {
        font-size: 10px;
        padding: 3px 8px;
    }
    .rt-card-title {
        font-size: 15px;
    }
    .rt-card-body {
        padding: 14px 16px 18px;
        gap: 9px;
    }
    .rt-bullet {
        font-size: 14px;
    }
    .rt-outcome-val {
        font-size: 14px;
    }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-board {
    padding: 60px 24px 80px;
    background: #efe0e6;
    border-radius: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}
.faq-notes {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    text-align: left;
    align-items: start;
}
.faq-note {
    background: #fff;
    border-radius: 12px;
    border: 0.5px solid #d0ddf0;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
.faq-note.open {
    box-shadow: 0 6px 24px rgba(0, 120, 212, 0.1);
    border-color: rgba(0, 120, 212, 0.35);
}
.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-blue {
    background: #e6f1fb;
    color: #0078d4;
}
.faq-num-cyan {
    background: #e0f5ff;
    color: #00bcf2;
}
.faq-note.open .faq-num-blue {
    background: #0078d4;
    color: #fff;
}
.faq-note.open .faq-num-cyan {
    background: #00bcf2;
    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: #0078d4;
}
.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #d0ddf0;
    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: #0078d4;
    border-color: #0078d4;
    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: 400px;
    padding: 0 22px 22px 68px;
}
.faq-a {
    font-size: 15px;
    font-weight: 500;
    color: #3a3a5c;
    line-height: 1.85;
    border-top: 0.5px solid #e8f0fe;
    padding-top: 14px;
}
@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;
    }
}
@media (max-width: 768px) {
    .faq-notes {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   PROMO BANNER
   ============================================================ */

/* ── 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;
}

/* ============================================
   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: 53px 40px;
    background-color: #fff;
    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: 42px;
    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: 11.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: 22px;
    }

    .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: 10.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: 25px;
    font-weight: 600;
    vertical-align: super;
    margin-right: 2px;
    color: red;
}

.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;
}
/* ======================================
   GLOBAL TYPOGRAPHY CONSISTENCY
====================================== */

/* Main headings */
h1,
h2,
h3,
h4,
h5,
h6,
.aeo-hero__title,
.wc-heading,
.gc-heading,
.growth-heading,
.about-heading,
.pr-heading,
.promo-heading,
.card-title,
.wc-card-title,
.pr-plan-name,
.rt-card-title {
    font-weight: 700 !important;
}

/* Paragraphs & descriptions */
p,
.aeo-hero__desc,
.wc-subtext,
.wc-card-desc,
.gc-sub,
.growth-subtext,
.rt-bullet,
.faq-a,
.about-intro,
.about-tagline,
.card-desc,
.pr-sub,
.pr-best-for,
.pr-features li,
.pr-price-period,
.pr-note,
.promo-sub,
.promo-stat__label {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.8;
}

/* Small labels / badges */
.aeo-hero__eyebrow,
.wc-badge,
.gc-badge,
.growth-eyebrow,
.pr-badge,
.pr-plan-tag,
.promo-eyebrow,
.rt-phase-tag,
.faq-num,
.badge {
    font-size: 17px;
    font-weight: 600;
}

/* Card headings */
.wc-card-title,
.card-title,
.pr-plan-name,
.rt-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

/* Section headings */
.wc-heading,
.gc-heading,
.growth-heading,
.about-heading,
.pr-heading,
.promo-heading {
    font-weight: 800;
    line-height: 1.2;
}
.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: 100%;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
    }
}
/* Mobile → show only number (01, 02...) */
@media (max-width: 575px) {
    .rt-phase-tag {
        font-size: 11px; /* hide original text */
        min-width: 29px;
        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: 77%;

        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;
    }
}
