﻿
:root {
    --bg: #08090d;
    --bg2: #0d0f18;
    --bg3: #111420;
    --card-border: rgba(255,255,255,0.07);
    --accent: #4f6ef7;
    --accent2: #7c3aed;
    --accent3: #06b6d4;
    --grad: linear-gradient(135deg, #4f6ef7, #7c3aed);
    --text: #f0f2ff;
    --muted: #8892b0;
    --muted2: #5a6480;
    --font: 'Outfit', sans-serif;
    --font2: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font2);
    line-height: 1.7;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79,110,247,0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(79,110,247,0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(79,110,247,0.3);
    }

    50% {
        border-color: rgba(124,58,237,0.6);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

/* ── MESH BG / HERO ── */
.mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .22;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: #4f6ef7;
    top: -200px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: 0;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: 0;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

.page-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 58vh;
    padding: 120px 20px 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,110,247,0.12);
    border: 1px solid rgba(79,110,247,0.3);
    color: #a5b4ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f6ef7;
    animation: pulse 1.5s infinite;
}

.page-hero h1 {
    font-family: var(--font);
    font-size: clamp(36px,5vw,62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    animation: fadeUp .7s ease .15s both;
}

.grad-text {
    background: linear-gradient(135deg,#4f6ef7 0%,#a78bfa 40%,#06b6d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.page-hero p {
    color: var(--muted);
    font-size: 16px;
    margin: 20px auto 0;
    max-width: 560px;
    line-height: 1.8;
    animation: fadeUp .7s ease .3s both;
}

.hero-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    animation: fadeUp .7s ease .45s both;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

    .trust-pill .ci {
        color: #4f6ef7;
        font-weight: 700;
    }

/* ── SECTION BASE ── */
section {
    padding: 80px 5%;
    position: relative;
}

.sec-dark {
    background: var(--bg2);
}

.sec-darker {
    background: var(--bg3);
}

.section-tag {
    display: inline-block;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.25);
    color: #a5b4ff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(26px,3.5vw,42px);
    font-weight: 800;
    letter-spacing: -.8px;
    line-height: 1.2;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    margin-top: 10px;
    max-width: 600px;
}

.tc {
    text-align: center;
}

.mx {
    margin-left: auto;
    margin-right: auto;
}

/* ── PRICING GRID ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: stretch;
}

/* ── PRICING CARD ── */
.price-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94),border-color .35s,box-shadow .35s;
    position: relative;
    overflow: hidden;
}

    .price-card:hover {
        transform: translateY(-8px);
        border-color: rgba(79,110,247,0.4);
        box-shadow: 0 24px 60px rgba(79,110,247,0.14);
    }

    .price-card.popular {
        background: rgba(79,110,247,0.07);
        border: 1.5px solid rgba(79,110,247,0.5);
        box-shadow: 0 20px 60px rgba(79,110,247,0.18);
        transform: scale(1.03);
    }

        .price-card.popular:hover {
            transform: scale(1.03) translateY(-8px);
            box-shadow: 0 30px 70px rgba(79,110,247,0.26);
        }

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: white;
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font);
    padding: 5px 18px;
    border-radius: 0 0 14px 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/*.plan-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform .3s;
}*/
.plan-icon {
    font-size: 20px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 15px;
    background: rgba(79, 110, 247, 0.08);
    color: #4f6ef7;
}
.price-card.popular .plan-icon {
    background: linear-gradient(135deg, #4f6ef7, #7c3aed);
    color: white;
}
.price-card:hover .plan-icon {
    transform: scale(1.1) rotate(-5deg);
}

.plan-name {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.plan-tagline {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-divider {
    height: .5px;
    background: var(--card-border);
    margin: 0 0 20px;
}

.feat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 10px;
}

.feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

    .feat-list li {
        font-size: 13px;
        color: var(--muted);
        display: flex;
        align-items: flex-start;
        gap: 8px;
        transition: color .2s,transform .2s;
    }

        .feat-list li:hover {
            color: var(--text);
            transform: translateX(4px);
        }

        .feat-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--grad);
            flex-shrink: 0;
            margin-top: 7px;
        }

.ideal-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--muted2);
    margin: 14px 0 8px;
}

.ideal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.ideal-tag {
    font-size: 11px;
    color: #a5b4ff;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.2);
    border-radius: 20px;
    padding: 3px 10px;
}

.plan-cta {
    margin-top: auto;
}

.btn-plan-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--grad);
    color: white;
    padding: 13px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform .2s,box-shadow .2s;
    box-shadow: 0 6px 24px rgba(79,110,247,0.35);
}

    .btn-plan-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(79,110,247,0.5);
        color: white;
    }

.btn-plan-outline {
    display: block;
    width: 100%;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--text);
    padding: 13px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color .2s,background .2s,transform .2s;
}

    .btn-plan-outline:hover {
        border-color: rgba(79,110,247,0.5);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }

/* ── FEATURE COMPARISON TABLE ── */
.table-wrap {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 18px;
    border: 1px solid var(--card-border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

    .compare-table th {
        background: rgba(79,110,247,0.08);
        font-family: var(--font);
        font-size: 14px;
        font-weight: 700;
        padding: 16px 18px;
        text-align: left;
        border-bottom: 1px solid var(--card-border);
        color: var(--text);
    }

        .compare-table th:first-child {
            border-radius: 17px 0 0 0;
        }

        .compare-table th:last-child {
            border-radius: 0 17px 0 0;
        }

    .compare-table td {
        padding: 14px 18px;
        font-size: 13px;
        color: var(--muted);
        border-bottom: .5px solid var(--card-border);
        transition: background .2s,color .2s;
    }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

    .compare-table tr:hover td {
        background: rgba(79,110,247,0.04);
        color: var(--text);
    }

    .compare-table td:first-child {
        color: var(--text);
        font-weight: 500;
    }

.tick {
    color: #4f6ef7;
    font-weight: 700;
    font-size: 15px;
}

.cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 15px;
}

.pop-col {
    color: #a5b4ff !important;
    font-weight: 600 !important;
}

/* ── WHY PRICING ── */
.adv-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform .3s,border-color .3s,box-shadow .3s;
}

    .adv-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79,110,247,0.4);
        box-shadow: 0 15px 40px rgba(79,110,247,0.12);
    }

/*.adv-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}*/

.adv-icon {
    font-size: 26px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.adv-card:hover .adv-icon i {
    transform: rotate(8deg) scale(1.15);
    transition: 0.3s ease;
}
    .adv-icon.blue {
        background: rgba(79,110,247,0.15);
    }

    .adv-icon.purple {
        background: rgba(124,58,237,0.15);
    }

    .adv-icon.cyan {
        background: rgba(6,182,212,0.15);
    }

    .adv-icon.pink {
        background: rgba(236,72,153,0.15);
    }

.adv-body h4 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.adv-body p {
    color: var(--muted);
    font-size: 13px;
}

.grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
}

.g4 {
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
}

.g2 {
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
}

/* ── COMPARE EXCEL ── */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}

.compare-card {
    border-radius: 20px;
    padding: 32px;
}

    .compare-card.bad {
        background: rgba(239,68,68,0.05);
        border: 1px solid rgba(239,68,68,0.2);
    }

    .compare-card.good {
        background: rgba(79,110,247,0.06);
        border: 1px solid rgba(79,110,247,0.3);
        box-shadow: 0 20px 50px rgba(79,110,247,0.12);
    }

.compare-title {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .compare-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: var(--muted);
        transition: color .2s;
    }

        .compare-list li:hover {
            color: var(--text);
        }

.xi {
    color: #ef4444;
    font-size: 16px;
    font-weight: 700;
}

.ci {
    color: #4f6ef7;
    font-size: 16px;
    font-weight: 700;
}

.compare-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.comp-link {
    font-size: 12px;
    color: #a5b4ff;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.2);
    border-radius: 20px;
    padding: 5px 14px;
    text-decoration: none;
    transition: background .2s,border-color .2s;
}

    .comp-link:hover {
        background: rgba(79,110,247,0.2);
        border-color: rgba(79,110,247,0.5);
        color: white;
    }

/* ── ROI ── */
.roi-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    transition: transform .3s,border-color .3s,background .3s;
}

    .roi-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(79,110,247,0.4);
        background: rgba(79,110,247,0.06);
    }

/*.roi-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}*/

.roi-icon {
    font-size: 26px;
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(79, 110, 247, 0.08);
    color: #4f6ef7;
}
.roi-card:nth-child(1) .roi-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.roi-card:nth-child(2) .roi-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.roi-card:nth-child(3) .roi-icon {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
}

.roi-card:nth-child(4) .roi-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}
.roi-card h4 {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.roi-card p {
    color: var(--muted);
    font-size: 13px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .3s;
}

    .faq-item:hover {
        border-color: rgba(79,110,247,0.4);
    }

.faq-q {
    padding: 18px 22px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

    .faq-q .faq-arrow {
        font-size: 18px;
        color: #4f6ef7;
        transition: transform .3s;
        flex-shrink: 0;
    }

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease,padding .35s ease;
}

.faq-item.open .faq-a {
    max-height: 120px;
    padding: 0 22px 18px;
}

.faq-a p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--bg2);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-orb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #4f6ef7;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    top: -100px;
    left: -100px;
}

.cta-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #7c3aed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    bottom: -100px;
    right: -100px;
}

.final-cta h2 {
    font-family: var(--font);
    font-size: clamp(32px,5vw,56px);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.final-cta p {
    color: var(--muted);
    font-size: 17px;
    margin: 16px auto 36px;
    max-width: 500px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--grad);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform .2s,box-shadow .2s;
    box-shadow: 0 8px 30px rgba(79,110,247,0.4);
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(79,110,247,0.55);
        color: white;
    }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color .2s,background .2s,transform .2s;
    backdrop-filter: blur(8px);
    display: inline-block;
}

    .btn-outline:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }

.ci i {
    color: #22c55e; /* green success color */
    margin-right: 6px;
    font-size: 14px;
    padding-bottom:7px;
    
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.1);
    color: #e5e7eb;
    font-size: 13px;
}
.cmp-icon i {
    font-size: 20px;
    margin-right: 8px;
}

/* Bad side (red) */
.xi i {
    color: #ef4444;
    margin-right: 8px;
}

/* Good side (green) */
.ci i {
    color: #22c55e;
    margin-right: 8px;
}

.compare-card.bad:hover {
    border-color: #ef4444;
}

.compare-card.good:hover {
    border-color: #22c55e;
}

.tick i {
    color: #22c55e; /* green */
    font-size: 16px;
}

.cross i {
    color: #ef4444; /* red */
    font-size: 16px;
}

.pop-col {
    background: rgba(79, 110, 247, 0.08);
    font-weight: 500;
}

.compare-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
    transition: 0.3s;
}


/* ===== UNIQUE CTA BUTTONS (NO GLOBAL CONFLICT) ===== */

.crm-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.crm-btn-primary-lg {
    background: var(--grad);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-primary-lg:hover {
        transform: translateY(-2px);
    }

.crm-btn-outline-lg {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-outline-lg:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .price-card.popular {
        transform: scale(1);
    }

        .price-card.popular:hover {
            transform: translateY(-8px);
        }

    .g4 {
        grid-template-columns: repeat(2,1fr);
    }

    .compare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width:768px) {
    body {
        overflow-x: hidden;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .g4, .g2 {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 110px;
    }

        .page-hero h1 {
            font-size: 32px;
        }

        .page-hero p {
            font-size: 15px;
        }

    .section-title {
        font-size: 26px;
    }

    .section-sub {
        font-size: 14px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .final-cta {
        padding: 70px 16px;
    }

        .final-cta h2 {
            font-size: 28px;
        }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

        .cta-btns a {
            width: 100%;
            max-width: 260px;
            text-align: center;
        }

    .cta-orb1 {
        width: 180px;
        height: 180px;
    }

    .cta-orb2 {
        width: 200px;
        height: 200px;
    }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mesh-bg {
        overflow: hidden;
    }

    .orb1, .orb2, .orb3 {
        transform: scale(0.6);
    }
}

@media (max-width:480px) {
    .page-hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }

    .final-cta h2 {
        font-size: 24px;
    }
}

