/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a:hover,
.btn-link:hover {
    color: #000000;
    text-decoration: none;
}

/* ═══════════════════════════════════ACC═══════
   AIM HERO SECTION
══════════════════════════════════════════ */

.aim-hero *,
.aim-hero *::before,
.aim-hero *::after {
    box-sizing: border-box;
}

.aim-hero {
    font-family: "Poppins", sans-serif;
    position: relative;
    width: 100%;
    max-width: 1520px;
    margin: 0 auto -54px;
    min-height: 78vh;
    padding: 114px 64px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #d9e5f1 0%,
        #c7d8e8 40%,
        #b8cbdf 70%,
        #afc3d4 100%
    );
}

/* Dot Grid */
.aim-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.09) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
}

/* Top Glow */
.aim-hero::after {
    content: "";
    position: absolute;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(13, 148, 136, 0.14) 0%,
        transparent 65%
    );
    top: -180px;
    right: -60px;
    pointer-events: none;
}

/* Bottom Glow */
.aim-blob-bl {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(190, 18, 60, 0.11) 0%,
        transparent 65%
    );
    bottom: -130px;
    left: -60px;
    pointer-events: none;
}

/* CONTENT */

.aim-hero__content {
    position: relative;
    z-index: 2;
    width: 46%;
    max-width: 560px;
    left: 31px;
    display: flex;
    flex-direction: column;
}

.aim-hero .aim-hero__eyebrow {
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 3.5px !important;
    text-transform: uppercase !important;
    background: linear-gradient(
        90deg,
        #4285f4 0%,
        /* Blue */ #34a853 35%,
        /* Green */ #fbbc05 70%,
        /* Yellow */ #ea4335 100% /* Red */
    ) !important;
    line-height: 1.4 !important;
    margin-bottom: 14px !important;
    display: block !important;
}

.aim-hero .aim-hero__title {
    font-size: clamp(49px, 4vw, 62px) !important;
    font-weight: 800 !important;
    line-height: 1.02 !important;
    background: linear-gradient(
        90deg,
        #0078d4 0%,
        /* Microsoft Blue */ #00bcf2 45%,
        /* Cyan */ #5b5fc7 100% /* Purple */
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px !important;
    display: block !important;
}

.aim-hero__accent {
    background: linear-gradient(
        90deg,
        #0078d4 0%,
        /* Microsoft Blue */ #00bcf2 45%,
        /* Cyan */ #5b5fc7 100% /* Purple */
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.aim-hero .aim-hero__desc {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    line-height: 1.8 !important;
    margin: 20px 0 28px !important;
    max-width: 520px !important;
    display: block !important;
}

/* TAGS */

.aim-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.aim-hero__tag {
    padding: 9px 20px;
    border: 1.8px solid rgba(13, 148, 136, 0.28);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: var(--teal);
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: all 0.22s;
    backdrop-filter: blur(4px);
}

.aim-hero__tag:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

/* BUTTON */

.aim-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--teal);
    color: #000000;
    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(13, 148, 136, 0.42);
    width: fit-content;
    min-width: 220px;
}

.aim-hero__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(13, 148, 136, 0.55);
}

.aim-hero__arr {
    font-size: 22px;
    margin-left: auto;
    transition: transform 0.2s;
}

.aim-hero__btn:hover .aim-hero__arr {
    transform: translateX(5px);
}

/* ILLUSTRATION */

.aim-hero__illus {
    position: relative;
    z-index: 2;
    width: 54%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aim-hero__svg-wrap {
    width: 100%;
    max-width: 560px;
}

.aim-hero__svg {
    width: 100%;
    height: 361px;
    display: block;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .aim-hero {
        padding: 111px 32px 67px;
        gap: 16px;
        min-height: 70vh;
    }

    .aim-hero__content {
        left: 0;
        width: 50%;
    }

    .aim-hero .aim-hero__title {
        font-size: clamp(28px, 3.5vw, 48px) !important;
    }

    .aim-hero .aim-hero__desc {
        font-size: 15px !important;
        margin: 16px 0 22px !important;
    }

    .aim-hero__illus {
        width: 50%;
    }

    .aim-hero__svg {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .aim-hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 20px;
        padding: 100px 20px 40px;
    }

    .aim-hero__content {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
        left: auto !important;
    }

    .aim-hero__illus {
        width: 100% !important;
        max-width: 320px;
        order: 2;
        margin: 0 auto;
    }

    .aim-hero__svg,
    .aim-hero__illus img {
        width: 100% !important;
        height: auto;
        display: block;
    }

    .aim-hero__title {
        font-size: 36px !important;
        line-height: 1.15 !important;
    }

    .aim-hero__accent {
        font-size: inherit !important;
    }

    .aim-hero__desc {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    .aim-hero__btn {
        width: auto !important;
        min-width: 120px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .aim-hero {
        padding: 102px 10px 16px;
        gap: 6px;
    }

    .aim-hero__content {
        width: 55%;
    }

    .aim-hero .aim-hero__eyebrow {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
    }

    .aim-hero .aim-hero__title {
        font-size: 30px !important;
    }

    .aim-hero__accent {
        font-size: 18px;
    }

    .aim-hero .aim-hero__desc {
        font-size: 14px !important;
    }

    .aim-hero__btn {
        font-size: 8px;
        padding: 7px 10px;
        border-radius: 7px;
    }

    .aim-hero__arr {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .aim-hero {
        padding: 105px 8px 14px;
        gap: 16px;
    }

    .aim-hero .aim-hero__eyebrow {
        font-size: 7.5px !important;
        letter-spacing: 1px !important;
    }

    .aim-hero,
    aim-hero__title {
        font-size: 41px !important;
    }

    .aim-hero__accent {
        font-size: 19px;
    }

    .aim-hero,
    aim-hero__desc {
        font-size: 12.5px !important;
        line-height: 1.45 !important;
        margin: 4px 0 7px !important;
    }

    .aim-hero__btn {
        font-size: 13.5px;
        padding: 6px 5px;
    }
}

/* ======================================================
   AIM HERO — MOBILE ORDER FIX
   Heading → Image → Text → Button
   ADD THIS AT VERY END OF CSS
====================================================== */

@media only screen and (max-width: 768px) {
    .aim-hero {
        display: flex !important;
        flex-direction: column !important;

        padding: 110px 20px 40px !important;
        min-height: auto !important;

        align-items: center !important;
        justify-content: flex-start !important;

        text-align: center !important;
        gap: 0px !important;
    }

    /* REMOVE WIDTH RESTRICTIONS */
    .aim-hero__content,
    .aim-hero__illus {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        margin: 0 !important;
    }

    /* KEY FIX — dissolve wrapper so children order directly in parent flex */
    .aim-hero__content {
        display: contents !important;
    }

    /* ORDER */

    .aim-hero__eyebrow {
        order: 1 !important;
    }

    .aim-hero__title {
        order: 2 !important;

        font-size: 36px !important;
        line-height: 1.2 !important;

        width: 100% !important;
        margin-bottom: 18px !important;
    }

    .aim-hero__illus {
        order: 3 !important;

        max-width: 320px !important;

        margin: 0 auto 14px !important;

        display: flex !important;
        justify-content: center !important;
    }

    .aim-hero__svg,
    .aim-hero__illus img {
        width: 120% !important;
        height: auto !important;

        max-width: 320px !important;
        margin-top: 26px;
    }

    .aim-hero__desc {
        order: 4 !important;

        font-size: 15px !important;
        line-height: 1.8 !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 auto 20px !important;
    }

    .aim-hero__tags {
        order: 5 !important;

        justify-content: center !important;
    }

    .aim-hero__btn {
        order: 6 !important;

        display: flex !important;

        width: auto !important;
        min-width: 220px !important;

        justify-content: center !important;

        margin: 0 auto !important;

        padding: 14px 30px !important;

        font-size: 15px !important;
    }

    .aim-hero__arr {
        margin-left: 10px !important;
    }
}

/* EXTRA SMALL */

@media only screen and (max-width: 480px) {
    .aim-hero {
        padding: 120px 16px 30px !important;
    }

    .aim-hero__title {
        font-size: 30px !important;
    }

    .aim-hero__illus {
        max-width: 260px !important;
    }

    .aim-hero__desc {
        font-size: 14px !important;
    }

    .aim-hero__btn {
        min-width: 171px !important;
    }
}
/* ============================================================
   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, 2vw, 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: #3a3a5c;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}
@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, #fff4ec 0%, #ffe8ef 50%, #f8edff 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: #fff;
    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-board {
    padding: 60px 24px 80px;
    background: #f7f5f0;
    border-radius: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.faq-board-sub {
    font-size: clamp(13px, 2vw, 16px);
    color: #666;
    margin: 0 0 44px;
    font-weight: 400;
}

.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 #e0ddd7;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.faq-note.open {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(227, 54, 46, 0.3);
}

.faq-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
}

.faq-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.faq-num-red {
    background: #fde8e7;
    color: #e3362e;
}
.faq-num-green {
    background: #eef6e0;
    color: #5a9e0f;
}

.faq-note.open .faq-num-red {
    background: #e3362e;
    color: #fff;
}
.faq-note.open .faq-num-green {
    background: #5a9e0f;
    color: #fff;
}

.faq-q {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    flex: 1;
    transition: color 0.2s ease;
}

.faq-note.open .faq-q {
    color: #e3362e;
}

.faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid #e0ddd7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.35s ease;
}

.faq-icon svg {
    stroke: #aaa;
    stroke-width: 2.5;
    transition: stroke 0.25s ease;
}

.faq-note.open .faq-icon {
    background: #e3362e;
    border-color: #e3362e;
    transform: rotate(180deg);
}

.faq-note.open .faq-icon svg {
    stroke: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.38s ease,
        padding 0.3s ease;
    padding: 0 22px 0 68px;
}

.faq-note.open .faq-body {
    max-height: 400px;
    padding: 0 22px 22px 68px;
}

.faq-a {
    font-size: 16.5px;
    font-weight: 500;
    color: #000000;
    line-height: 1.85;
    border-top: 0.5px solid #f0ede8;
    padding-top: 14px;
}

@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: 126px 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: 37px;
    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);
}

/* Badges */
.badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.badge {
    font-family: "Poppins", sans-serif;
    font-size: 16.5px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: var(--about-radius-pill);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.badge-teal {
    background: var(--color-teal-light);
    color: var(--color-teal-dark);
}
.badge-blue {
    background: var(--color-blue-light);
    color: var(--color-blue-dark);
}
.badge-coral {
    background: var(--color-coral-light);
    color: var(--color-coral-dark);
}
.badge-purple {
    background: var(--color-purple-light);
    color: var(--color-purple-dark);
}

/* Intro */
.about-intro {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: #000000;
    margin: 0 0 32px 0;
}

/* Divider */
.about-divider {
    border: none;
    border-top: 1px solid var(--about-border);
    margin: 0 0 28px 0;
}

/* Tagline */
.about-tagline {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    color: var(--about-text-primary);
    line-height: 1.75;
    margin: 0 0 20px 0;
}

/* CTA */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--color-teal);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: gap 0.2s ease;
}

.about-cta i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.about-cta:hover {
    gap: 13px;
}
.about-cta:hover i {
    transform: translateX(4px);
}

/* ============================================
   RIGHT — 2x2 CARD GRID
   ============================================ */
.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Card */
.about-card {
    background: var(--about-bg-white);
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-lg);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Accent bar */
.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.about-card--teal::before {
    background-color: var(--color-teal);
}
.about-card--blue::before {
    background-color: var(--color-blue);
}
.about-card--coral::before {
    background-color: var(--color-coral);
}
.about-card--purple::before {
    background-color: var(--color-purple);
}

/* Card icon */
.card-icon {
    font-size: 26px;
    color: var(--about-text-muted);
    margin-bottom: 16px;
    display: block;
}

/* Card title */
.card-title {
    font-size: 16.5px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

/* Card description */
.card-desc {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
    .about-section {
        padding: 60px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .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: 48px 16px;
    }

    .about-heading {
        font-size: 24px;
    }

    .badge {
        font-size: 16.5px;
        padding: 4px 11px;
    }

    .card-title {
        font-size: 13.5px;
    }
    .card-desc {
        font-size: 12.5px;
    }
}
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: none;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.about-btn:hover {
    background: #000;
    color: #fff;
    transform: none;
}
.pr-root {
    padding: 64px 24px;
    font-family: "Poppins", sans-serif;
}

.pr-top {
    text-align: center;
    margin-bottom: 48px;
}

.pr-badge {
    display: inline-block;
    background: #e1f5ee;
    color: #085041;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pr-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
}

.pr-heading em {
    font-style: italic;
    color: #1d9e75;
}

.pr-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 48px;
}

.pr-card {
    position: relative;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease;
    overflow: hidden;
}

.pr-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: var(--card-accent);
}

.pr-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
}

.pr-card.featured {
    border-color: #1d9e75;
    background: #f0fbf6;
}

.pr-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #1d9e75;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.pr-plan-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: var(--tag-bg);
    color: var(--tag-color);
}

.pr-plan-name {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.pr-best-for {
    font-size: 15px;
    color: #000000;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pr-best-for::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--card-accent);
    flex-shrink: 0;
}

.pr-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 20px;
}

.pr-price {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.pr-price span.pr-currency {
    font-size: 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: #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 {
    text-align: center;
    font-size: 13.5px;
    color: #000000;
    margin-top: 16px;
}
.cta-outer {
    background: linear-gradient(
        135deg,
        #fce4ec 0%,
        #f3e5f5 20%,
        #e8eaf6 40%,
        #e3f2fd 60%,
        #e8f5e9 80%,
        #fffde7 100%
    );
    padding: 40px 24px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 52px 40px;
    text-align: center;
    max-width: 883px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(160, 120, 220, 0.08);
}

.cta-badge {
    display: inline-block;
    color: #7c6fbf;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cta-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a1033;
    margin: 0 0 14px;
    line-height: 1.3;
}

.cta-sub {
    font-size: 15px;
    color: #6b6880;
    margin: 0 auto 32px;
    max-width: 440px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #5b7cf7, #8b5cf6);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cta-btn-primary:hover {
    opacity: 0.85;
}

.cta-btn-secondary {
    display: inline-block;
    padding: 11px 26px;
    background: transparent;
    color: #5b6af0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    border: 1.5px solid rgba(99, 102, 241, 0.35);
    text-decoration: none;
    transition: background 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(99, 102, 241, 0.06);
}

@media (max-width: 520px) {
    .cta-card {
        padding: 36px 20px;
    }
    .cta-heading {
        font-size: 24px;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 62%;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
    }
}
/* Mobile → show only number (01, 02...) */
@media (max-width: 575px) {
    .rt-phase-tag {
        font-size: 0; /* 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;
    }
}
/* Mobile → show only number (01, 02...) */
@media (max-width: 575px) {
    .rt-phase-tag {
        font-size: 11px; /* hide original text */
        min-width: 34px;
        text-align: center;
        padding: 6px 8px;
    }

    .rt-phase-tag::after {
        content: attr(data-step); /* output only number */
        font-size: 12px;
        font-weight: 700;
    }
}
.pr-currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 999px;
}

.pr-curr-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.pr-curr-btn.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
    /* remove timeline line */
    .rt-rail,
    .rt-rail-fill {
        display: none;
    }

    /* remove timeline dots */
    .rt-dot-col {
        display: none;
    }

    /* adjust cards position after removing dots */
    .rt-track {
        padding-left: 0;
    }
}
/* =========================================
   GET STARTED BUTTONS
========================================= */

.pr-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin-top: 25px;

    padding: 14px 24px;

    border-radius: 12px;

    background: #059669;
    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

    border: 1px solid transparent;
}

.pr-card-btn:hover {
    background: #ffffff;

    color: #111827;

    border-color: #111827;
}

/* Featured Growth Button */

.pr-card.featured .pr-card-btn {
    background: #1d9e75;

    color: #ffffff;
}

.pr-card.featured .pr-card-btn:hover {
    background: #ffffff;

    color: #1d9e75;

    border-color: #1d9e75;
}

/* =========================================
   REQUEST CUSTOM QUOTE BUTTON
========================================= */

.pr-middle-cta {
    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 45px;
}

.pr-cta-ghost {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 38px;

    border-radius: 0px;

    color: #fff;

    border: 2px solid #059669;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.pr-cta-ghost i {
    font-size: 18px;
}

/* Quote hover */

.pr-cta-ghost:hover {
    background: #059669;

    color: #ffffff;

    transform: translateY(-3px);
}
/* =========================================
   REQUEST QUOTE MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .pr-middle-cta {
        margin-top: 35px;
        padding: 0 20px;
    }

    .pr-cta-ghost {
        width: 51%;

        max-width: 257px;

        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: 75%;

        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;
    }
}
