*,
*::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;
}

/* ── Section Layout ── */
.gemini-hero {
    position: relative;
    width: 100%;

    margin: 0 auto;
    min-height: 75vh;
    padding: 140px 64px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background:
        radial-gradient(circle at top, #ff5a5a 0%, transparent 45%),
        radial-gradient(circle at left, #f5d742 0%, transparent 45%),
        radial-gradient(circle at right, #4285f4 0%, transparent 45%),
        radial-gradient(circle at bottom, #00c97a 0%, transparent 45%);
    overflow: hidden;
}

/* ── Dot Grid Background ── */
.gemini-hero__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(100, 100, 10, 0.08) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
}

/* ── Glow Blobs ── */
.gemini-hero::before {
    content: "";
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(66, 133, 244, 0.1) 0%,
        transparent 65%
    );
    top: -180px;
    right: -60px;
    pointer-events: none;
}
.gemini-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(234, 67, 53, 0.07) 0%,
        transparent 65%
    );
    bottom: -130px;
    left: -60px;
    pointer-events: none;
}

/* ── Left Content ── */
.gemini-hero__content {
    position: relative;
    z-index: 2;
    width: 46%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    left: 20px;
}

.gemini-hero__eyebrow {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 14px;
    opacity: 0.7;
}

.gemini-hero__title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(53px, 3.2vw, 62px);
    font-weight: 900;
    line-height: 1.02;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.gemini-hero__accent {
    background: linear-gradient(
        90deg,
        #4285f4 0%,
        #ea4335 30%,
        #646158 60%,
        #34a853 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gemini-hero__desc {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 506px;
}

/* ── Tag Pills ── */
.gemini-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.gemini-hero__tag {
    padding: 9px 20px;
    border: 1.8px solid rgba(66, 133, 244, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: #1a1a2e;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.22s;
    backdrop-filter: blur(4px);
}

.gemini-hero__tag:hover {
    background: #4285f4;
    color: #fff;
    border-color: #4285f4;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
}

/* ── CTA Button ── */
.gemini-hero__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #4285f4, #ea4335 50%, #fbbc04);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding: 12px 36px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 24px rgba(66, 133, 244, 0.38);
    width: fit-content;
    min-width: 200px;
}

.gemini-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(66, 133, 244, 0.52);
    filter: brightness(1.08);
}

.gemini-hero__arr {
    font-size: 22px;
    margin-left: auto;
    transition: transform 0.2s;
}

.gemini-hero__btn:hover .gemini-hero__arr {
    transform: translateX(5px);
}

/* ── Right Illustration ── */
.gemini-hero__illus {
    position: relative;
    z-index: 2;
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemini-hero__svg {
    width: 100%;
    max-width: 560px;
    height: auto;
}

/* ── SVG Animations ── */
.gem-orbit-cw {
    transform-origin: 230px 230px;
    animation: gemSpinCW 32s linear infinite;
}
.gem-orbit-ccw {
    transform-origin: 230px 230px;
    animation: gemSpinCCW 20s linear infinite;
}
.gem-node-up {
    animation: gemSpinCCW 32s linear infinite;
}

@keyframes gemSpinCW {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes gemSpinCCW {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes gemHubPulse {
    0% {
        r: 80;
        opacity: 0.55;
    }
    100% {
        r: 118;
        opacity: 0;
    }
}
.gem-hub-p1 {
    animation: gemHubPulse 2.8s ease-out infinite;
}
.gem-hub-p2 {
    animation: gemHubPulse 2.8s ease-out infinite 1.4s;
}

@keyframes gemTwinkle {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.3);
    }
}
.gem-sp1 {
    animation: gemTwinkle 2.4s ease-in-out infinite;
}
.gem-sp2 {
    animation: gemTwinkle 3.1s ease-in-out infinite 1.1s;
}

/* Gemini star spin */
@keyframes gemStarSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
.gem-star {
    transform-origin: 230px 218px;
    animation: gemStarSpin 6s ease-in-out infinite;
}

.gem-icon-node {
    transition: filter 0.2s;
    cursor: pointer;
}
.gem-icon-node:hover {
    filter: drop-shadow(0 6px 18px rgba(66, 133, 244, 0.45));
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .gemini-hero {
        padding: 120px 40px 70px;
        gap: 24px;
    }
}
@media (max-width: 900px) {
    .gemini-hero {
        flex-direction: column;
        text-align: center;
        padding: 110px 24px 60px;
        min-height: auto;
        gap: 40px;
    }
    .gemini-hero__content {
        width: 100%;
        max-width: 100%;
        align-items: center;
        left: 5px;
    }
    .gemini-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }
    .gemini-hero__tags {
        justify-content: center;
    }
    .gemini-hero__illus {
        width: 100%;
    }
    .gemini-hero__svg {
        max-width: 440px;
    }
}
@media (max-width: 600px) {
    .gemini-hero {
        padding: 132px 18px 40px;
    }
    .gemini-hero__title {
        font-size: 38px;
    }
    .gemini-hero__btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
    .gemini-hero__svg {
        max-width: 100%;
    }
}

/* ==========================================
   GEMINI IMAGE WRAPPER
========================================== */

.gemini-hero__illus {
    position: relative;
    z-index: 2;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemini-hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    animation: geminiFloatUp 4s ease-in-out infinite;
}

@keyframes geminiFloatUp {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-16px);
    }
}

.gemini-hero__img {
    width: 100%;
    max-width: 600px;
    height: 40vh;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

/* Glow Effect */

.gemini-hero__img-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(66, 133, 244, 0.18) 0%,
        rgba(234, 67, 53, 0.12) 30%,
        rgba(251, 188, 4, 0.12) 60%,
        rgba(52, 168, 83, 0.12) 80%,
        transparent 100%
    );
    z-index: 0;
    animation: geminiGlowPulse 3s ease-in-out infinite;
}

@keyframes geminiGlowPulse {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Floating Badges */

.gemini-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(66, 133, 244, 0.18);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.15);
    white-space: nowrap;
    z-index: 3;
}

.gemini-badge-1 {
    top: 10%;
    left: -5%;
    animation: geminiBadgeFloat 3.5s ease-in-out infinite;
}

.gemini-badge-2 {
    top: 40%;
    right: -6%;
    animation: geminiBadgeFloat 4s ease-in-out infinite 0.8s;
}

.gemini-badge-3 {
    bottom: 18%;
    left: -2%;
    animation: geminiBadgeFloat 3.8s ease-in-out infinite 1.4s;
}

@keyframes geminiBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .gemini-hero__illus {
        width: 100%;
    }

    .gemini-hero__img-wrap {
        max-width: 440px;
    }

    .gemini-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .gemini-hero__img {
        height: auto;
        max-width: 100%;
    }

    .gemini-hero__img-wrap {
        max-width: 100%;
    }
}
/* Gemini Image Animation */
.gemini-hero__img {
    width: 131%;

    height: auto;
    display: block;
    object-fit: contain;

    animation: geminiFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 35px rgba(66, 133, 244, 0.25));
}

/* Floating Motion */
@keyframes geminiFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    50% {
        transform: translateY(-20px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Animated Glow Behind Image */
.gemini-hero__illus::before {
    content: "";
    position: absolute;
    width: 443px;
    height: 302px;
    border-radius: 50%;

    animation: geminiGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes geminiGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}
/* ==========================================
   MOBILE ORDER
   Heading → Image → Text → Button
========================================== */
@media (max-width: 900px) {
    .gemini-hero {
        display: flex;
        flex-direction: column;
        padding: 120px 24px 60px;
        gap: 16px;
    }

    .gemini-hero__content {
        width: 100%;
        display: contents; /* allows children to reorder */
    }

    /* 1 → Heading */
    .gemini-hero__eyebrow,
    .gemini-hero__title {
        order: 1;
        text-align: center;
    }

    /* 2 → Image */
    .gemini-hero__illus {
        order: 2;
        width: 100%;
        margin: 0 auto;
    }

    .gemini-hero__img-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .gemini-hero__img {
        width: 79%;
        height: auto;
    }

    /* 3 → Description */
    .gemini-hero__desc {
        order: 3;
        text-align: center;
        margin: 0px auto;
        max-width: 100%;
    }

    /* Hide tags (optional remove if needed) */
    .gemini-hero__tags {
        order: 4;
        justify-content: center;
    }

    /* 4 → Button */
    .gemini-hero__btn {
        order: 5;
        width: fit-content;
        margin: 0 auto;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .gemini-hero {
        padding: 130px 18px 40px;
    }

    .gemini-hero__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .gemini-hero__img-wrap {
        max-width: 320px;
    }

    .gemini-hero__desc {
        font-size: 15px;
    }
}
/* ── 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 {
    font-family: "Poppins", sans-serif;
    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;
    position: relative;
    display: inline-block;
}

.wc-heading span::after {
    content: "";

    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7c3aed, #10b981);
    border-radius: 2px;
    opacity: 0.5;
}

/* ── Subtext ── */
.wc-subtext {
    font-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: red;
    margin: 0 0 8px;
}

.wc-card-desc {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ── Ghost number ── */
.wc-card-number {
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: 16px;
    right: 18px;
    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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ---------- Header ---------- */
.growth-eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d9e75;
    margin-bottom: 10px;
}

.growth-heading {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #e3362e;
    margin-bottom: 14px;
    line-height: 1.2;
}

.growth-subtext {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #000000;
    margin: 0 auto;
    max-width: 540px;
    line-height: 1.6;
}

/* ---------- Track ---------- */
.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 {
    font-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    user-select: none;
}

.rt-phase-tag {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    border-top: 1.5px solid #f3f4f6;
    padding: 20px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

.rt-bullet {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    flex-shrink: 0;
}

.rt-outcome-val {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

/* ── Responsive ── */
@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;
    }
}
@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;
    }
}
@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 ── */
.faq-board {
    font-family: "Poppins", sans-serif;
    padding: 60px 24px 80px;
    background: #f7f5f0;
    border-radius: 20px;
    text-align: center;
}

.faq-board-sub {
    font-family: "Poppins", sans-serif;
    font-size: clamp(13px, 2vw, 16px);
    color: #666;
    margin: 0 0 44px;
    font-weight: 400;
}

.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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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.4s ease;
}

.faq-note.open .faq-body {
    max-height: 300px;
    padding: 0 22px 22px 68px;
}

.faq-a {
    font-family: "Poppins", sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    color: #000000;
    line-height: 1.85;
    border-top: 0.5px solid #f0ede8;
    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 Section ── */
.promo-wrap {
    font-family: "Poppins", sans-serif;
    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;
}

.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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #000000;
    margin-top: 4px;
    white-space: nowrap;
}

/* ── CTA Button ── */
.promo-btn--solid {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6c47ff;
    color: #fff;
    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 {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f7ff;
    border: 1px solid #e4dfff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    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
   ============================================ */

: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;
}

.about-section {
    font-family: "Poppins", sans-serif;
    padding: 71px 40px;
    background-color: var(--about-bg-section);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-eyebrow {
    font-family: "Poppins", sans-serif;
    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;
}

.about-heading {
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: 800;
    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);
}

.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);
}

.about-intro {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: #000000;
    margin: 0 0 32px 0;
}

.about-divider {
    border: none;
    border-top: 1px solid var(--about-border);
    margin: 0 0 28px 0;
}

.about-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: var(--about-text-primary);
    line-height: 1.75;
    margin: 0 0 20px 0;
}

.about-cta {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    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);
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    font-family: "Poppins", sans-serif;
    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);
}

.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 {
    font-size: 26px;
    color: var(--about-text-muted);
    margin-bottom: 16px;
    display: block;
}

.card-title {
    font-family: "Poppins", sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: red;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.card-desc {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .about-section {
        padding: 60px 30px;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .about-heading {
        font-size: 36px;
    }
}
@media (max-width: 600px) {
    .about-section {
        padding: 111px 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;
    }
}
@media (max-width: 400px) {
    .about-section {
        padding: 25px 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 {
    font-family: "Poppins", sans-serif;
    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;
}

/* ── Pricing Section ── */
.pr-root {
    font-family: "Poppins", sans-serif;
    padding: 64px 24px;
}

.pr-top {
    text-align: center;
    margin-bottom: 48px;
}

.pr-badge {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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;
    width: fit-content;
}

.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 {
    font-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    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 {
    font-family: "Poppins", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #d1d5db;
    color: #fff;
    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 {
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 13.5px;
    color: #000000;
    margin-top: 16px;
}

.plain-link,
.plain-link:hover,
.plain-link:focus,
.plain-link:active,
.plain-link:visited {
    color: red;
    text-decoration: none;
}

/* ======================================
   GLOBAL TYPOGRAPHY CONSISTENCY
====================================== */

/* Main headings */
h1,
h2,
h3,
h4,
h5,
h6,
.gemini-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,
.gemini-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: 16px !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.8;
}

/* Small labels / badges */
.gemini-hero__eyebrow,
.wc-badge,
.gc-badge,
.growth-eyebrow,
.pr-badge,
.pr-plan-tag,
.promo-eyebrow,
.rt-phase-tag,
.faq-num,
.badge {
    font-size: 14px;
    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: 51%;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
    }
}
/* Mobile → show only number (01, 02...) */
@media (max-width: 575px) {
    .rt-phase-tag {
        font-size: 11p; /* 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);
}
/* =========================================
   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;
    }
}
@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;
    }
}
