/* ═══════════════════════════════════════════
   CARELY AI — COMMON STYLES & VARIABLES
═══════════════════════════════════════════ */
:root {
    --ink: #020817;
    --ink-2: #050f1e;
    --navy: #071428;
    --navy-2: #0a1f3a;
    --blue: #1249A4;
    --blue-glow: #1e6aff;
    --cyan: #00c2ff;
    --cyan-dim: rgba(0, 194, 255, 0.15);
    --teal: #00d4aa;
    --teal-dim: rgba(0, 212, 170, 0.12);
    --yellow: #f5c518;
    --yellow-dim: rgba(245, 197, 24, 0.15);
    --purple: #7c3aed;
    --purple-dim: rgba(124, 58, 237, 0.1);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-2: rgba(255, 255, 255, 0.07);
    --glass-3: rgba(255, 255, 255, 0.11);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-2: rgba(0, 194, 255, 0.25);
    --text-white: #ffffff;
    --text-bright: #f0f6ff;
    --text-mid: rgba(240, 246, 255, 0.7);
    --text-dim: rgba(240, 246, 255, 0.45);
    --text-dimmer: rgba(240, 246, 255, 0.28);
    --glow-blue: 0 0 40px rgba(30, 106, 255, 0.35), 0 0 80px rgba(30, 106, 255, 0.15);
    --glow-cyan: 0 0 30px rgba(0, 194, 255, 0.4), 0 0 60px rgba(0, 194, 255, 0.15);
    --glow-teal: 0 0 30px rgba(0, 212, 170, 0.35), 0 0 60px rgba(0, 212, 170, 0.12);
    --glow-yellow: 0 0 24px rgba(245, 197, 24, 0.45);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--glass-border);
    --shadow-glow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(30, 106, 255, 0.12);
    --w: 1180px;
    --r: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;
    --font: 'Manrope', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--text-bright);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: rgba(0, 194, 255, 0.3);
    color: white;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ink);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 194, 255, 0.3);
    border-radius: 3px;
}

.wrap {
    width: 100%;
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.grad-cyan {
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-blue {
    background: linear-gradient(135deg, #60a5fa, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-yellow {
    background: linear-gradient(135deg, #f5c518, #ff9f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-teal {
    background: linear-gradient(135deg, #00d4aa, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--glass-2);
    border: 1px solid var(--glass-border-2);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
}

.pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #1e6aff, #0a4dd4);
    color: white;
    box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 50px rgba(30, 106, 255, 0.5), 0 0 100px rgba(30, 106, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-yellow {
    background: linear-gradient(135deg, #f5c518, #e6a800);
    color: #020817;
    font-weight: 800;
    box-shadow: var(--glow-yellow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.65);
}

.btn-glass {
    background: var(--glass-2);
    color: var(--text-bright);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: var(--glass-3);
    border-color: var(--glass-border-2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid rgba(0, 194, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--cyan-dim);
    border-color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease);
}

.glass-card:hover {
    border-color: var(--glass-border-2);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 194, 255, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal.on {
    opacity: 1;
    transform: none;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal-r {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--spring), transform 0.7s var(--spring);
}

.reveal-l.on,
.reveal-r.on {
    opacity: 1;
    transform: none;
}

.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.5) 30%, rgba(0, 212, 170, 0.5) 70%, transparent);
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   AMARBONDHON™ SECTION STYLES
═══════════════════════════════════════════ */

/* ── Section wrapper ── */
#amarbondhon {
    position: relative;
    overflow: hidden;
}

/* ── Ambient background blobs ── */
#amarbondhon::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 73, 164, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#amarbondhon::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── HERO ── */
.ab-hero {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    text-align: center;
}

.ab-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.12), rgba(245, 197, 24, 0.06));
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: var(--r-full);
    padding: 7px 20px;
    margin-bottom: 28px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
}

.ab-hero-badge svg {
    width: 14px;
    height: 14px;
}

.ab-hero h1 {
    margin-bottom: 20px;
}

.ab-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-mid);
    max-width: 640px;
    margin: 0 auto 12px;
}

.ab-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-2);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-full);
    padding: 8px 22px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.06em;
    margin: 18px 0 36px;
}

.ab-hero-tagline span {
    color: var(--text-dim);
}

.ab-hero-tagline b {
    color: var(--teal);
}

.ab-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── EMOTIONAL TRUTH ── */
.ab-emotional {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-emotional-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ab-emotional-text h2 {
    margin-bottom: 20px;
}

.ab-emotional-text h2 span {
    display: block;
    color: var(--text-mid);
    font-size: 0.6em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.ab-emotional-text p {
    margin-bottom: 16px;
}

.ab-pain-list {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-pain-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-mid);
    padding: 10px 16px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 10px;
    font-weight: 500;
}

.ab-pain-list li .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ab-bridge-card {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(0, 194, 255, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: var(--r-lg);
    padding: 24px;
    margin-top: 24px;
}

.ab-bridge-card p {
    color: var(--teal);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* visual side */
.ab-emotional-visual {
    position: relative;
}

.ab-bond-visual {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-bond-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 194, 255, 0.06), transparent 70%);
}

.ab-bond-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(0, 212, 170, 0.1));
    border: 1px solid rgba(0, 194, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.ab-bond-visual h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-bright);
}

.ab-bond-visual p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.ab-distance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.ab-dist-item {
    background: var(--glass-2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
}

.ab-dist-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.ab-dist-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── WHAT IS / WHO IS IT FOR ── */
.ab-what {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.ab-section-head h2 {
    margin-bottom: 14px;
}

.ab-section-head p {
    max-width: 600px;
    margin: 0 auto;
}

.ab-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.ab-definition-card {
    padding: 40px 36px;
}

.ab-definition-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-bright);
}

.ab-definition-card p {
    margin-bottom: 14px;
}

.ab-definition-card p:last-child {
    margin-bottom: 0;
}

.ab-for-card {
    padding: 36px;
}

.ab-for-card h3 {
    font-size: 1.3rem;
    margin-bottom: 22px;
    color: var(--text-bright);
}

.ab-for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-for-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-mid);
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(0, 194, 255, 0.04);
    border: 1px solid rgba(0, 194, 255, 0.1);
    border-radius: 10px;
    transition: all 0.2s var(--ease);
}

.ab-for-list li:hover {
    background: rgba(0, 194, 255, 0.08);
    border-color: rgba(0, 194, 255, 0.2);
    transform: translateX(4px);
}

.ab-for-list li .chk {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--ink);
    font-weight: 900;
}

/* ── HOW IT WORKS ── */
.ab-how {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.ab-steps-grid::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.3) 20%, rgba(0, 212, 170, 0.3) 80%, transparent);
    z-index: 0;
}

.ab-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 28px 18px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease);
}

.ab-step:hover {
    border-color: rgba(0, 194, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 194, 255, 0.15);
}

.ab-step-num {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    position: relative;
}

.ab-step-num.cyan {
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.2), rgba(0, 194, 255, 0.1));
    border: 2px solid rgba(0, 194, 255, 0.4);
    color: var(--cyan);
}

.ab-step-num.teal {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 212, 170, 0.1));
    border: 2px solid rgba(0, 212, 170, 0.4);
    color: var(--teal);
}

.ab-step-num.yellow {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.2), rgba(245, 197, 24, 0.1));
    border: 2px solid rgba(245, 197, 24, 0.4);
    color: var(--yellow);
}

.ab-step-num.blue {
    background: linear-gradient(135deg, rgba(30, 106, 255, 0.2), rgba(30, 106, 255, 0.1));
    border: 2px solid rgba(30, 106, 255, 0.4);
    color: #60a5fa;
}

.ab-step-icon {
    font-size: 1.2rem;
}

.ab-step h4 {
    font-size: 0.85rem;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.ab-step p {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* bottom 4 steps */
.ab-steps-row2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* ── SUBSCRIPTION PLANS ── */
.ab-plans {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 860px;
    margin: 0 auto;
}

.ab-plan-card {
    border-radius: var(--r-xl);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--ease);
}

.ab-plan-card.gold {
    background: linear-gradient(145deg, rgba(245, 197, 24, 0.07), rgba(245, 197, 24, 0.03));
    border: 1px solid rgba(245, 197, 24, 0.25);
    backdrop-filter: blur(20px);
}

.ab-plan-card.platinum {
    background: linear-gradient(145deg, rgba(0, 194, 255, 0.07), rgba(0, 212, 170, 0.04));
    border: 1px solid rgba(0, 194, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0, 194, 255, 0.08);
}

.ab-plan-card:hover {
    transform: translateY(-6px);
}

.ab-plan-card.gold:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.45);
}

.ab-plan-card.platinum:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 194, 255, 0.2);
    border-color: rgba(0, 194, 255, 0.5);
}

.ab-plan-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.ab-plan-card.gold::before {
    background: radial-gradient(circle, rgba(245, 197, 24, 0.2), transparent 70%);
}

.ab-plan-card.platinum::before {
    background: radial-gradient(circle, rgba(0, 194, 255, 0.2), transparent 70%);
}

.ab-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: var(--r-full);
    margin-bottom: 20px;
}

.gold .ab-plan-badge {
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.35);
    color: var(--yellow);
}

.platinum .ab-plan-badge {
    background: rgba(0, 194, 255, 0.12);
    border: 1px solid rgba(0, 194, 255, 0.35);
    color: var(--cyan);
}

.ab-plan-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.gold .ab-plan-badge-dot {
    background: var(--yellow);
    box-shadow: 0 0 8px var(--yellow);
}

.platinum .ab-plan-badge-dot {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
}

.ab-plan-name {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.gold .ab-plan-name {
    color: var(--yellow);
}

.platinum .ab-plan-name {
    color: var(--cyan);
}

.ab-plan-tagline {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.ab-plan-section-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--glass-border);
}

.gold .ab-plan-section-label {
    color: rgba(245, 197, 24, 0.7);
}

.platinum .ab-plan-section-label {
    color: rgba(0, 194, 255, 0.7);
}

.ab-price-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.ab-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.88rem;
}

.gold .ab-price-item {
    background: rgba(245, 197, 24, 0.06);
    border: 1px solid rgba(245, 197, 24, 0.12);
}

.platinum .ab-price-item {
    background: rgba(0, 194, 255, 0.05);
    border: 1px solid rgba(0, 194, 255, 0.12);
}

.ab-price-period {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.8rem;
}

.ab-price-amount {
    font-weight: 800;
    font-size: 0.95rem;
}

.gold .ab-price-amount {
    color: var(--yellow);
}

.platinum .ab-price-amount {
    color: var(--cyan);
}

.ab-best-for {
    margin-bottom: 28px;
}

.ab-best-for-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ab-best-for-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    color: var(--text-mid);
}

.ab-best-for-list li::before {
    content: '→';
    font-size: 0.75rem;
    flex-shrink: 0;
}

.gold .ab-best-for-list li::before {
    color: var(--yellow);
}

.platinum .ab-best-for-list li::before {
    color: var(--cyan);
}

.ab-plan-cta {
    width: 100%;
    justify-content: center;
}

.gold .ab-plan-cta {
    background: linear-gradient(135deg, #f5c518, #e6a800);
    color: #020817;
    font-weight: 800;
    box-shadow: var(--glow-yellow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.gold .ab-plan-cta:hover {
    box-shadow: 0 0 40px rgba(245, 197, 24, 0.65);
    transform: translateY(-2px);
}

.platinum .ab-plan-cta {
    background: linear-gradient(135deg, #00c2ff, #0090cc);
    color: #020817;
    font-weight: 800;
    box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.platinum .ab-plan-cta:hover {
    box-shadow: 0 0 50px rgba(0, 194, 255, 0.6);
    transform: translateY(-2px);
}

.ab-recommend {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.ab-recommend strong {
    color: var(--cyan);
}

/* ── WHAT YOU GET / PRIVILEGES ── */
.ab-perks {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ab-perk-block {
    padding: 36px;
}

.ab-perk-block h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--text-bright);
}

.ab-perk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-perk-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 500;
}

.ab-perk-list li .chk {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 900;
}

.ab-perk-list.cyan-chk li .chk {
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    color: var(--ink);
}

.ab-perk-list.yellow-chk li .chk {
    background: linear-gradient(135deg, #f5c518, #e6a800);
    color: var(--ink);
}

/* ── WHY / VALUE ── */
.ab-why {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.ab-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.ab-why-card {
    padding: 36px;
}

.ab-why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.ab-compare-table {
    width: 100%;
    border-collapse: collapse;
}

.ab-compare-table tr {
    border-bottom: 1px solid var(--glass-border);
}

.ab-compare-table tr:last-child {
    border-bottom: none;
}

.ab-compare-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
    vertical-align: middle;
}

.ab-compare-table td:first-child {
    color: var(--text-dim);
    font-weight: 600;
    width: 45%;
}

.ab-compare-table .bad {
    color: #f87171;
    font-weight: 600;
}

.ab-compare-table .good {
    color: var(--teal);
    font-weight: 700;
}

.ab-compare-table .label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 8px 10px;
}

.ab-compare-table .label.red {
    color: rgba(239, 68, 68, 0.6);
}

.ab-compare-table .label.green {
    color: rgba(0, 212, 170, 0.7);
}

.ab-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ab-why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(0, 212, 170, 0.04);
    border: 1px solid rgba(0, 212, 170, 0.12);
    border-radius: 10px;
}

.ab-why-list li .dot2 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

/* ── FINAL CTA ── */
.ab-final {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.ab-final-card {
    background: linear-gradient(135deg, rgba(18, 73, 164, 0.15), rgba(0, 194, 255, 0.06), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 194, 255, 0.2);
    border-radius: var(--r-xl);
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.ab-final-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 194, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.ab-final-card h2 {
    margin-bottom: 16px;
}

.ab-final-quote {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 12px;
    font-style: italic;
}

.ab-final-card>.wrap>p {
    max-width: 520px;
    margin: 0 auto 36px;
}

.ab-final-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ab-final-message {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-dimmer);
}

.ab-final-message strong {
    color: var(--cyan);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

    .ab-emotional-inner,
    .ab-what-grid,
    .ab-perks-grid,
    .ab-why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ab-plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .ab-steps-grid,
    .ab-steps-row2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ab-steps-grid::after {
        display: none;
    }

    .ab-final-card {
        padding: 40px 24px;
    }
}

@media (max-width: 600px) {
    .ab-hero {
        padding: 60px 0 50px;
    }

    .ab-steps-grid,
    .ab-steps-row2 {
        grid-template-columns: 1fr;
    }

    .ab-emotional-inner {
        gap: 40px;
    }

    .ab-distance-stats {
        grid-template-columns: 1fr 1fr;
    }
}
