 :root {
     --blue: #0052e0;
     --blue-dk: #003db3;
     --blue-lt: #e8f0fe;
     --cyan: #22d3ee;
     --violet: #a78bfa;
     --green: #10b981;
     --amber: #f59e0b;
     --red: #ef4444;

     --bg: #ffffff;
     --bg2: #f8fafc;
     --bg3: #f1f5f9;
     --border: #e2e8f0;
     --border2: #cbd5e1;

     --text: #0f172a;
     --text2: #334155;
     --text3: #64748b;
     --text4: #94a3b8;

     --hero-bg: #050c1f;

     --radius-sm: 6px;
     --radius: 12px;
     --radius-lg: 20px;
     --radius-xl: 28px;

     --shadow: 0 4px 16px rgba(0, 0, 0, .08);
     --shadow-lg: 0 20px 48px rgba(0, 0, 0, .12), 0 8px 16px rgba(0, 0, 0, .06);

     --font: 'Plus Jakarta Sans', sans-serif;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font);
     color: var(--text);
     background: var(--bg);
     -webkit-font-smoothing: antialiased;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 svg {
     display: block;
     fill: none;
     stroke: currentColor;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .container {
     width: 100%;
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .sec {
     padding: 88px 0;
 }

 .section-tag {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     background: var(--blue-lt);
     color: var(--blue);
     font-size: .76rem;
     font-weight: 700;
     letter-spacing: .05em;
     text-transform: uppercase;
     padding: 5px 13px;
     border-radius: 999px;
     margin-bottom: 16px;
 }

 .section-tag svg {
     width: 12px;
     height: 12px;
     stroke-width: 2.5;
 }

 .sec-title {
     font-size: clamp(1.75rem, 2.8vw, 2.5rem);
     font-weight: 800;
     line-height: 1.2;
     letter-spacing: -.022em;
     color: var(--text);
     margin-bottom: 12px;
 }

 .sec-sub {
     font-size: 1rem;
     line-height: 1.72;
     color: var(--text3);
     max-width: 560px;
 }

 .btn-p {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: var(--blue);
     color: #fff;
     font-family: var(--font);
     font-size: .95rem;
     font-weight: 700;
     padding: 14px 26px;
     border-radius: var(--radius);
     border: none;
     cursor: pointer;
     transition: background .18s, transform .15s, box-shadow .18s;
     box-shadow: 0 4px 18px rgba(0, 82, 224, .28);
 }

 .btn-p:hover {
     background: var(--blue-dk);
     transform: translateY(-2px);
     box-shadow: 0 8px 28px rgba(0, 82, 224, .38);
 }

 .btn-p svg {
     width: 16px;
     height: 16px;
 }

 .link-more {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     color: var(--blue);
     font-weight: 700;
     font-size: .9rem;
     transition: gap .18s;
 }

 .link-more:hover {
     gap: 10px;
 }

 .link-more svg {
     width: 16px;
     height: 16px;
 }

 .rv {
     opacity: 0;
     transform: translateY(22px);
     transition: opacity .6s ease, transform .6s ease;
 }

 .rv.visible {
     opacity: 1;
     transform: none;
 }

 /* ══════════════════════════════════════════
       1. HERO
    ══════════════════════════════════════════ */
 .hero-wrap {
     background: var(--hero-bg);
     position: relative;
     overflow: hidden;
 }

 .hg {
     position: absolute;
     border-radius: 50%;
     filter: blur(90px);
     pointer-events: none;
 }

 .hg1 {
     width: 580px;
     height: 580px;
     background: rgba(0, 82, 224, .2);
     top: -160px;
     left: -100px;
 }

 .hg2 {
     width: 420px;
     height: 420px;
     background: rgba(34, 211, 238, .1);
     top: 80px;
     right: -60px;
 }

 .hg3 {
     width: 340px;
     height: 340px;
     background: rgba(167, 139, 250, .08);
     bottom: -80px;
     left: 42%;
 }

 .hero {
     text-align: center;
     padding: 32px 24px 32px;
     max-width: 860px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: rgba(255, 255, 255, .07);
     border: 1px solid rgba(255, 255, 255, .12);
     color: rgba(255, 255, 255, .8);
     font-size: .76rem;
     font-weight: 600;
     padding: 6px 14px;
     border-radius: 999px;
     margin-bottom: 24px;
 }

 .hero-badge-dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--green);
     box-shadow: 0 0 8px var(--green);
     animation: blink 2s infinite;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1
     }

     50% {
         opacity: .3
     }
 }

 .hero h1 {
     font-size: clamp(2.2rem, 4.5vw, 3.6rem);
     font-weight: 800;
     line-height: 1.1;
     color: #fff;
     letter-spacing: -.025em;
     margin-bottom: 20px;
 }

 .hero h1 .hl {
     background: linear-gradient(135deg, #60a5fa, var(--cyan));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-sub {
     font-size: 1.08rem;
     line-height: 1.72;
     color: rgba(255, 255, 255, .55);
     max-width: 600px;
     margin: 0 auto 36px;
 }

 /* Toggle monthly/annual */
 .billing-toggle {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: rgba(255, 255, 255, .06);
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: 999px;
     padding: 6px 8px 6px 16px;
     margin-bottom: 56px;
 }

 .bt-label {
     font-size: .84rem;
     color: rgba(255, 255, 255, .6);
     font-weight: 600;
 }

 .bt-label.active {
     color: #fff;
 }

 .bt-switch {
     width: 44px;
     height: 24px;
     background: rgba(255, 255, 255, .15);
     border-radius: 999px;
     position: relative;
     cursor: pointer;
     transition: background .25s;
     flex-shrink: 0;
     border: none;
 }

 .bt-switch.on {
     background: var(--blue);
 }

 .bt-switch::after {
     content: '';
     position: absolute;
     top: 3px;
     left: 3px;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: #fff;
     transition: transform .25s;
     box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
 }

 .bt-switch.on::after {
     transform: translateX(20px);
 }

 .bt-save {
     font-size: .72rem;
     font-weight: 700;
     color: var(--green);
     background: rgba(16, 185, 129, .15);
     padding: 3px 10px;
     border-radius: 999px;
 }

 /* Trust strip */
 .hero-trust {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 24px;
     flex-wrap: wrap;
     padding-top: 32px;
     border-top: 1px solid rgba(255, 255, 255, .08);
 }

 .ht-item {
     display: flex;
     align-items: center;
     gap: 7px;
     font-size: .8rem;
     color: rgba(255, 255, 255, .5);
     font-weight: 500;
 }

 .ht-item svg {
     width: 14px;
     height: 14px;
     stroke: var(--green);
     stroke-width: 2.5;
 }

 .ht-div {
     width: 1px;
     height: 16px;
     background: rgba(255, 255, 255, .1);
 }

 /* ══════════════════════════════════════════
       2. PRICING CARDS
    ══════════════════════════════════════════ */
 .pricing-sec {
     background: var(--bg2);
     padding: 72px 0 88px;
 }

 .plans-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
     margin-top: 0;
 }

 .plan-card {
     background: var(--bg);
     border: 1.5px solid var(--border);
     border-radius: var(--radius-xl);
     padding: 36px 32px;
     position: relative;
     display: flex;
     flex-direction: column;
     transition: box-shadow .2s, transform .2s, border-color .2s;
 }

 .plan-card:hover {
     box-shadow: var(--shadow-lg);
     transform: translateY(-4px);
 }

 .plan-card.featured {
     border-color: var(--blue);
     box-shadow: 0 0 0 4px rgba(0, 82, 224, .08), var(--shadow-lg);
 }

 .plan-card.featured:hover {
     transform: translateY(-6px);
 }

 .plan-badge {
     position: absolute;
     top: -13px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--blue);
     color: #fff;
     font-size: .72rem;
     font-weight: 800;
     letter-spacing: .06em;
     text-transform: uppercase;
     padding: 4px 16px;
     border-radius: 999px;
     white-space: nowrap;
 }

 .plan-badge.green {
     background: var(--green);
 }

 .plan-name {
     font-size: 1rem;
     font-weight: 800;
     color: var(--text3);
     text-transform: uppercase;
     letter-spacing: .08em;
     margin-bottom: 6px;
 }

 .plan-tagline {
     font-size: .88rem;
     color: var(--text3);
     margin-bottom: 24px;
     line-height: 1.5;
 }

 .plan-price-wrap {
     margin-bottom: 6px;
 }

 .plan-currency {
     font-size: 1.3rem;
     font-weight: 700;
     color: var(--text);
     vertical-align: top;
     margin-top: 8px;
     display: inline-block;
 }

 .plan-price {
     font-size: 3.2rem;
     font-weight: 800;
     color: var(--text);
     letter-spacing: -.03em;
     line-height: 1;
 }

 .plan-price-annual {
     display: none;
 }

 .annual-mode .plan-price-monthly {
     display: none;
 }

 .annual-mode .plan-price-annual {
     display: inline;
 }

 .plan-period {
     font-size: .84rem;
     color: var(--text4);
     font-weight: 500;
     margin-bottom: 4px;
 }

 .plan-saving {
     font-size: .78rem;
     font-weight: 700;
     color: var(--green);
     background: rgba(16, 185, 129, .08);
     padding: 3px 10px;
     border-radius: 999px;
     display: inline-block;
     margin-bottom: 20px;
     opacity: 0;
     transition: opacity .3s;
 }

 .annual-mode .plan-saving {
     opacity: 1;
 }

 .plan-divider {
     border: none;
     border-top: 1.5px solid var(--border);
     margin: 20px 0;
 }

 .plan-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     font-family: var(--font);
     font-size: .95rem;
     font-weight: 700;
     padding: 14px;
     border-radius: var(--radius);
     border: none;
     cursor: pointer;
     transition: background .18s, transform .15s, box-shadow .18s;
     margin-bottom: 28px;
 }

 .plan-btn.primary {
     background: var(--blue);
     color: #fff;
     box-shadow: 0 4px 18px rgba(0, 82, 224, .28);
 }

 .plan-btn.primary:hover {
     background: var(--blue-dk);
     transform: translateY(-1px);
     box-shadow: 0 8px 28px rgba(0, 82, 224, .38);
 }

 .plan-btn.secondary {
     background: var(--bg3);
     color: var(--text);
     border: 1.5px solid var(--border);
 }

 .plan-btn.secondary:hover {
     background: var(--blue-lt);
     border-color: var(--blue);
     color: var(--blue);
 }

 .plan-btn svg {
     width: 16px;
     height: 16px;
 }

 .plan-features-title {
     font-size: .72rem;
     font-weight: 700;
     color: var(--text4);
     text-transform: uppercase;
     letter-spacing: .08em;
     margin-bottom: 14px;
 }

 .plan-features {
     display: flex;
     flex-direction: column;
     gap: 10px;
     flex: 1;
 }

 .pf {
     display: flex;
     align-items: flex-start;
     gap: 9px;
     font-size: .84rem;
     color: var(--text2);
     line-height: 1.4;
 }

 .pf-ico {
     width: 16px;
     height: 16px;
     flex-shrink: 0;
     margin-top: 1px;
 }

 .pf-ico.yes {
     stroke: var(--green);
     stroke-width: 2.5;
 }

 .pf-ico.no {
     stroke: var(--text4);
     stroke-width: 2;
 }

 .pf.dim {
     color: var(--text4);
 }

 .pf-bold {
     font-weight: 700;
     color: var(--text);
 }

 /* ══════════════════════════════════════════
       3. COMPARISON TABLE
    ══════════════════════════════════════════ */
 .table-sec {
     background: var(--bg);
 }

 .compare-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 48px;
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 1.5px solid var(--border);
 }

 .compare-table th,
 .compare-table td {
     padding: 16px 20px;
     text-align: center;
     border-bottom: 1px solid var(--border);
     font-size: .88rem;
 }

 .compare-table th {
     background: var(--bg2);
     font-weight: 800;
     font-size: .82rem;
     text-transform: uppercase;
     letter-spacing: .05em;
     color: var(--text3);
 }

 .compare-table th.featured-col {
     background: var(--blue-lt);
     color: var(--blue);
 }

 .compare-table td.feat-name {
     text-align: left;
     font-weight: 600;
     color: var(--text2);
     background: var(--bg);
 }

 .compare-table td.feat-cat {
     text-align: left;
     font-weight: 800;
     font-size: .8rem;
     text-transform: uppercase;
     letter-spacing: .06em;
     color: var(--text4);
     background: var(--bg3);
     padding: 10px 20px;
 }

 .compare-table td.featured-col {
     background: rgba(0, 82, 224, .03);
 }

 .compare-table tr:last-child td {
     border-bottom: none;
 }

 .compare-table tr:hover td {
     background: var(--bg2);
 }

 .compare-table tr:hover td.featured-col {
     background: rgba(0, 82, 224, .05);
 }

 .ct-yes {
     color: var(--green);
     font-size: 1.1rem;
 }

 .ct-no {
     color: var(--text4);
 }

 .ct-val {
     font-weight: 700;
     color: var(--text);
 }

 /* ══════════════════════════════════════════
       4. ADD-ONS
    ══════════════════════════════════════════ */
 .addons-sec {
     background: var(--bg2);
 }

 .addons-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     margin-top: 48px;
 }

 .addon-card {
     background: var(--bg);
     border: 1.5px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 24px 20px;
     transition: border-color .2s, transform .2s;
 }

 .addon-card:hover {
     border-color: var(--blue);
     transform: translateY(-3px);
 }

 .addon-ico {
     width: 42px;
     height: 42px;
     border-radius: var(--radius);
     background: var(--blue-lt);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
 }

 .addon-ico svg {
     width: 20px;
     height: 20px;
     stroke: var(--blue);
 }

 .addon-name {
     font-size: .9rem;
     font-weight: 800;
     color: var(--text);
     margin-bottom: 6px;
 }

 .addon-desc {
     font-size: .8rem;
     line-height: 1.6;
     color: var(--text3);
     margin-bottom: 14px;
 }

 .addon-price {
     font-size: .84rem;
     font-weight: 700;
     color: var(--blue);
 }

 /* ══════════════════════════════════════════
       5. ROI CALCULATOR (static)
    ══════════════════════════════════════════ */
 .roi-sec {
     background: linear-gradient(145deg, #050c1f, #0d1c3f);
     position: relative;
     overflow: hidden;
 }

 .roi-glow {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
 }

 .rg1 {
     width: 500px;
     height: 500px;
     background: rgba(0, 82, 224, .15);
     top: -160px;
     left: -80px;
 }

 .rg2 {
     width: 400px;
     height: 400px;
     background: rgba(16, 185, 129, .1);
     bottom: -100px;
     right: -60px;
 }

 .roi-sec .sec {
     position: relative;
     z-index: 1;
 }

 .roi-sec .section-tag {
     background: rgba(255, 255, 255, .08);
     color: rgba(255, 255, 255, .8);
 }

 .roi-sec .sec-title {
     color: #fff;
 }

 .roi-sec .sec-sub {
     color: rgba(255, 255, 255, .5);
 }

 .roi-wrap {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 56px;
     align-items: start;
     margin-top: 48px;
 }

 /* Calculator inputs */
 .roi-calc {
     background: rgba(255, 255, 255, .05);
     border: 1px solid rgba(255, 255, 255, .1);
     border-radius: var(--radius-xl);
     padding: 32px;
     backdrop-filter: blur(12px);
 }

 .roi-calc-title {
     font-size: .88rem;
     font-weight: 700;
     color: rgba(255, 255, 255, .8);
     margin-bottom: 24px;
     letter-spacing: .02em;
 }

 .roi-field {
     margin-bottom: 20px;
 }

 .roi-label {
     font-size: .78rem;
     font-weight: 600;
     color: rgba(255, 255, 255, .5);
     margin-bottom: 8px;
     display: block;
 }

 .roi-slider {
     width: 100%;
     accent-color: var(--blue);
     cursor: pointer;
     height: 4px;
 }

 .roi-input-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 6px;
 }

 .roi-val {
     font-size: 1.1rem;
     font-weight: 800;
     color: #fff;
 }

 .roi-range {
     font-size: .72rem;
     color: rgba(255, 255, 255, .3);
 }

 .roi-divider {
     border: none;
     border-top: 1px solid rgba(255, 255, 255, .08);
     margin: 20px 0;
 }

 /* Results panel */
 .roi-results {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .roi-result-card {
     background: rgba(255, 255, 255, .04);
     border: 1px solid rgba(255, 255, 255, .08);
     border-radius: var(--radius-lg);
     padding: 22px 24px;
 }

 .roi-result-card.highlight {
     background: rgba(0, 82, 224, .12);
     border-color: rgba(0, 82, 224, .3);
 }

 .rrc-label {
     font-size: .75rem;
     color: rgba(255, 255, 255, .4);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: .06em;
     margin-bottom: 6px;
 }

 .rrc-val {
     font-size: 1.8rem;
     font-weight: 800;
     color: #fff;
     letter-spacing: -.02em;
 }

 .rrc-note {
     font-size: .75rem;
     color: rgba(255, 255, 255, .4);
     margin-top: 4px;
 }

 .roi-result-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
 }

 .roi-disclaimer {
     font-size: .72rem;
     color: rgba(255, 255, 255, .25);
     margin-top: 12px;
     line-height: 1.5;
 }

 /* ══════════════════════════════════════════
       6. FAQ
    ══════════════════════════════════════════ */
 .faq-sec {
     background: var(--bg);
 }

 .faq-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .faq-card {
     border: 1.5px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 22px 24px;
     transition: border-color .2s;
     overflow: hidden;
 }

 .faq-card.open {
     border-color: var(--blue);
 }

 .faq-card-q {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 14px;
     cursor: pointer;
 }

 .faq-card-q-text {
     font-size: .92rem;
     font-weight: 700;
     color: var(--text);
     line-height: 1.4;
 }

 .faq-card-ico {
     width: 26px;
     height: 26px;
     border-radius: 8px;
     background: var(--bg3);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     transition: background .2s, transform .3s;
 }

 .faq-card-ico svg {
     width: 13px;
     height: 13px;
     stroke: var(--text3);
     transition: stroke .2s;
 }

 .faq-card.open .faq-card-ico {
     background: var(--blue-lt);
     transform: rotate(45deg);
 }

 .faq-card.open .faq-card-ico svg {
     stroke: var(--blue);
 }

 .faq-card-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height .35s ease, padding .25s ease;
 }

 .faq-card.open .faq-card-a {
     max-height: 300px;
 }

 .faq-card-a-inner {
     padding-top: 14px;
     font-size: .85rem;
     line-height: 1.7;
     color: var(--text3);
 }

 /* ══════════════════════════════════════════
       7. TRUST / SOCIAL PROOF
    ══════════════════════════════════════════ */
 .trust-sec {
     background: var(--bg2);
 }

 .trust-row {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
 }

 .trust-card {
     background: var(--bg);
     border: 1.5px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 28px 22px;
     text-align: center;
     transition: border-color .2s, transform .2s;
 }

 .trust-card:hover {
     border-color: var(--blue);
     transform: translateY(-3px);
 }

 .trust-num {
     font-size: 2.2rem;
     font-weight: 800;
     color: var(--text);
     letter-spacing: -.02em;
 }

 .trust-sfx {
     font-size: 1.1rem;
     font-weight: 700;
 }

 .trust-lbl {
     font-size: .84rem;
     font-weight: 600;
     color: var(--text3);
     margin-top: 4px;
 }

 .trust-note {
     font-size: .72rem;
     color: var(--text4);
     margin-top: 3px;
 }

 /* ══════════════════════════════════════════
       8. CTA
    ══════════════════════════════════════════ */
 .cta-sec {
     background: linear-gradient(145deg, #050c1f, #0d1c3f);
     position: relative;
     overflow: hidden;
 }

 .cg1 {
     position: absolute;
     width: 520px;
     height: 520px;
     border-radius: 50%;
     background: rgba(0, 82, 224, .18);
     filter: blur(90px);
     top: -160px;
     left: -100px;
     pointer-events: none;
 }

 .cg2 {
     position: absolute;
     width: 420px;
     height: 420px;
     border-radius: 50%;
     background: rgba(34, 211, 238, .1);
     filter: blur(90px);
     bottom: -100px;
     right: -60px;
     pointer-events: none;
 }

 .cta-inner {
     text-align: center;
     padding: 96px 24px;
     max-width: 740px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .cta-eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     font-size: .76rem;
     font-weight: 700;
     color: var(--cyan);
     text-transform: uppercase;
     letter-spacing: .08em;
     margin-bottom: 20px;
 }

 .cta-eyebrow svg {
     width: 13px;
     height: 13px;
     stroke: var(--cyan);
 }

 .cta-t {
     font-size: clamp(2rem, 4vw, 3.2rem);
     font-weight: 800;
     line-height: 1.12;
     color: #fff;
     margin-bottom: 18px;
     letter-spacing: -.022em;
 }

 .cta-t span {
     background: linear-gradient(135deg, #60a5fa, var(--cyan));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .cta-d {
     font-size: 1rem;
     line-height: 1.7;
     color: rgba(255, 255, 255, .5);
     margin-bottom: 36px;
     max-width: 540px;
     margin-left: auto;
     margin-right: auto;
 }

 .cta-btns {
     display: flex;
     gap: 14px;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 28px;
 }

 .cta-btn-p {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: var(--blue);
     color: #fff;
     font-family: var(--font);
     font-size: 1rem;
     font-weight: 700;
     padding: 15px 28px;
     border-radius: var(--radius);
     border: none;
     cursor: pointer;
     transition: background .18s, transform .15s, box-shadow .18s;
     box-shadow: 0 4px 22px rgba(0, 82, 224, .32);
 }

 .cta-btn-p:hover {
     background: var(--blue-dk);
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(0, 82, 224, .42);
 }

 .cta-btn-p svg {
     width: 17px;
     height: 17px;
 }

 .cta-btn-s {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: transparent;
     color: rgba(255, 255, 255, .75);
     font-family: var(--font);
     font-size: .95rem;
     font-weight: 600;
     padding: 14px 24px;
     border-radius: var(--radius);
     border: 1.5px solid rgba(255, 255, 255, .18);
     cursor: pointer;
     transition: border-color .18s, color .18s;
 }

 .cta-btn-s:hover {
     border-color: rgba(255, 255, 255, .4);
     color: #fff;
 }

 .cta-btn-s svg {
     width: 16px;
     height: 16px;
 }

 .cta-trust {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .cta-ti {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: .78rem;
     color: rgba(255, 255, 255, .4);
     font-weight: 500;
 }

 .cta-ti svg {
     width: 13px;
     height: 13px;
     stroke: var(--green);
     stroke-width: 2.5;
 }

 /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
 @media (max-width: 1024px) {
     .plans-grid {
         grid-template-columns: 1fr 1fr;
     }

     .addons-grid {
         grid-template-columns: 1fr 1fr;
     }

     .trust-row {
         grid-template-columns: 1fr 1fr;
     }

     .roi-wrap {
         grid-template-columns: 1fr;
     }

     .compare-table {
         font-size: .8rem;
     }

     .compare-table th,
     .compare-table td {
         padding: 12px 14px;
     }
 }

 @media (max-width: 768px) {
     .plans-grid {
         grid-template-columns: 1fr;
     }

     .faq-grid {
         grid-template-columns: 1fr;
     }

     .addons-grid {
         grid-template-columns: 1fr 1fr;
     }

     .trust-row {
         grid-template-columns: 1fr 1fr;
     }

     .compare-table {
         display: none;
     }

     .roi-result-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 480px) {
     .addons-grid {
         grid-template-columns: 1fr;
     }
 }