:root {
    /* Colors */
    --primary: #00E676;
    /* Vibrant Android Green */
    --primary-hover: #00C853;
    --primary-glow: rgba(0, 230, 118, 0.4);

    --bg-dark: #0A0F0D;
    /* Very dark green/black */
    --bg-card: #111A16;
    /* Slightly lighter for cards */
    --bg-card-hover: #1A2620;

    --text-main: #FFFFFF;
    --text-muted: #A0B3AA;
    --text-dark: #0A0F0D;

    --accent-red: #FF5252;
    --accent-blue: #448AFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #69F0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-red {
    color: var(--accent-red);
}

.text-green {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Button Ripple Effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 15, 13, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo .highlight {
    color: var(--primary);
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }

    .desktop-nav a {
        font-weight: 500;
        font-size: 0.95rem;
    }

    .desktop-nav a:hover {
        color: var(--primary);
    }
}

/* Hero Section */
.hero {
    padding-top: calc(var(--spacing-xl) + 60px);
    padding-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-lg);
}

.eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary);
}

.subheadline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.guarantee-text {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: -10px;
    transition: transform 0.3s;
}

.avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.counter {
    background-color: #222;
}

.rating p {
    font-size: 0.9rem;
    margin: 0;
}

.rating strong {
    color: var(--text-main);
}

.stars {
    color: #FFC107;
    margin-bottom: 0.2rem;
}

/* Hero Visual & Animations */
.hero-visual {
    width: 100%;
    max-width: 500px;
    position: relative;
    perspective: 1000px;
}

.success-card {
    background: rgba(20, 30, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Confetti Particles (Implied via CSS Gradients) */
.confetti-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    opacity: 0;
}

.confetti-piece:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: confetti-fall 3s 0s infinite;
    background: #FF5252;
}

.confetti-piece:nth-child(2) {
    top: 5%;
    left: 80%;
    animation: confetti-fall 4s 1s infinite;
    background: #448AFF;
}

.confetti-piece:nth-child(3) {
    top: 20%;
    left: 50%;
    animation: confetti-fall 3.5s 0.5s infinite;
    background: #FFC107;
}

.confetti-piece:nth-child(4) {
    top: 0%;
    left: 10%;
    animation: confetti-fall 5s 2s infinite;
    background: var(--primary);
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(300px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 230, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.success-card h3 {
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
}

.fill {
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: load 2s ease-out;
    position: relative;
}

.fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glimmer 2s infinite;
}

@keyframes glimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes load {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (min-width: 900px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-text {
        align-items: flex-start;
        max-width: 600px;
    }

    .cta-group {
        flex-direction: row;
    }

    .hero-social-proof {
        flex-direction: row;
    }

    .subheadline {
        margin: 0 0 var(--spacing-md) 0;
    }
}

/* Outcomes */
.outcomes {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.outcome-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.outcome-list ion-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Problem Section & Animations */
.problem {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-badge {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.problem h2 span {
    color: var(--accent-red);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.problem-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 82, 82, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 82, 82, 0.3);
}

.problem-item ion-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

/* Problem Animation Scenes */
.scene-problem {
    height: 120px;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 1. Uninstall Animation */
.anim-uninstall .phone-screen {
    width: 60px;
    height: 100px;
    background: #333;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anim-uninstall .app-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 6px;
    animation: uninstall-sequence 4s infinite;
}

@keyframes uninstall-sequence {

    0%,
    40% {
        transform: scale(1);
        opacity: 1;
    }

    45% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.anim-uninstall .trash-can {
    position: absolute;
    bottom: 10px;
    font-size: 1.5rem;
    color: var(--accent-red);
    opacity: 0;
    animation: trash-appear 4s infinite;
}

@keyframes trash-appear {

    0%,
    40% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* 2. Rejection Stamp Animation */
.anim-rejection .doc-paper {
    width: 80px;
    height: 100px;
    background: #eee;
    border-radius: 4px;
    position: relative;
    padding: 10px;
}

.anim-rejection .doc-line {
    height: 4px;
    background: #ccc;
    margin-bottom: 6px;
    border-radius: 2px;
}

.anim-rejection .stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(2);
    border: 3px solid var(--accent-red);
    color: var(--accent-red);
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    border-radius: 4px;
    opacity: 0;
    animation: stamp-slam 3s infinite;
    text-transform: uppercase;
}

@keyframes stamp-slam {

    0%,
    30% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }

    35% {
        transform: translate(-50%, -50%) scale(1) rotate(-15deg);
        opacity: 1;
    }

    80% {
        transform: translate(-50%, -50%) scale(1) rotate(-15deg);
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 3. Ghost Town Animation (20 Testers Myth) */
.anim-ghost {
    display: flex;
    gap: 10px;
}

.ghost-user {
    font-size: 2rem;
    color: #555;
    animation: user-fade 3s infinite;
}

.ghost-user:nth-child(2) {
    animation-delay: 0.5s;
}

.ghost-user:nth-child(3) {
    animation-delay: 1s;
}

@keyframes user-fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
    }
}


/* Solution Section */
.solution {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0F1F17);
}

.columns {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.col-image {
    width: 100%;
}

.abstract-phone {
    background: #000;
    border: 8px solid #333;
    border-radius: 30px;
    height: 400px;
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.screen-content {
    background: #1a1a1a;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.notification-anim {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.notif-card {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    animation: slide-up-fade 4s infinite paused;
    /* Controlled via JS or just loop */
    animation: notif-cycle 6s infinite;
}

@keyframes notif-cycle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.notif-card.success {
    border: 1px solid var(--primary);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.notif-card .icon {
    color: var(--primary);
    font-size: 2rem;
}

.notif-card .text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

/* Benefits */
.benefits {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(0, 230, 118, 0.2);
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s;
}

.benefit-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 230, 118, 0.2);
}

/* Reviews */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.review-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* How It Works & Animations */
.how-it-works {
    padding: var(--spacing-xl) 0;
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.step {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    overflow: hidden;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 118, 0.1);
}

/* Step Animations */
.step-anim-container {
    height: 100px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
}

/* Step 1: Add User Anim */
.anim-add-user {
    position: relative;
    width: 50px;
    height: 50px;
}

.anim-add-user ion-icon {
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    animation: user-pop 2s infinite;
}

.anim-add-user::after {
    content: '+';
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 2rem;
    color: var(--text-main);
    animation: plus-pop 2s infinite;
}

@keyframes user-pop {

    0%,
    20% {
        transform: scale(0);
        opacity: 0;
    }

    30%,
    80% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Step 2: Testing Activity Anim */
.anim-testing {
    width: 40px;
    height: 70px;
    border: 2px solid #555;
    border-radius: 5px;
    position: relative;
}

.anim-testing::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 230, 118, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: tap-ripple 1.5s infinite;
}

.anim-testing::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(0, 230, 118, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: tap-ripple 1.5s 0.75s infinite;
}

@keyframes tap-ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Step 3: Unlock Anim */
.anim-unlock {
    font-size: 3rem;
    color: var(--text-muted);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anim-unlock ion-icon[name="lock-closed"] {
    position: absolute;
    animation: lock-open 3s infinite;
}

.anim-unlock ion-icon[name="checkmark-circle"] {
    color: var(--primary);
    position: absolute;
    opacity: 0;
    animation: check-show 3s infinite;
}

@keyframes lock-open {

    0%,
    40% {
        opacity: 1;
        transform: scale(1);
    }

    45% {
        transform: scale(1.1) rotate(10deg);
    }

    /* Shake */
    50% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
    }
}

@keyframes check-show {

    0%,
    45% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    60% {
        transform: scale(1);
    }

    100% {
        opacity: 1;
    }
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.step-connector {
    display: none;
}

@media (min-width: 900px) {
    .steps-wrapper {
        flex-direction: row;
        align-items: stretch;
    }

    .step {
        flex: 1;
    }

    .step-connector {
        display: block;
        width: 40px;
        align-self: center;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Comparison */
.comparison {
    padding: var(--spacing-xl) 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.col-labels {
    display: none;
}

.col-competitor,
.col-us {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.col-us {
    border: 2px solid var(--primary);
    position: relative;
    background: rgba(0, 230, 118, 0.05);
}

.col-us::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.row {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.row-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
    }

    .col-labels {
        display: block;
        padding-top: 2rem;
        /* Align with others */
    }

    .col-labels .row {
        justify-content: flex-start;
        color: var(--text-muted);
    }

    .col-competitor,
    .col-us {
        text-align: center;
    }

    .row {
        justify-content: center;
    }
}

/* Features */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--bg-card);
    text-align: center;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.feature-item ion-icon {
    color: var(--primary);
    transition: transform 0.4s;
}

.feature-item:hover ion-icon {
    transform: rotate(360deg);
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

details {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

details:hover {
    background: var(--bg-card-hover);
}

summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

details p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    background: linear-gradient(135deg, #111A16 0%, #0A0F0D 100%);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 2rem 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.mini-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mini-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-benefits ion-icon {
    color: var(--primary);
}

footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.links {
    display: flex;
    gap: 1.5rem;
}

/* Glow Effect */
.benefit-card,
.review-card,
.success-card,
.cta-card {
    position: relative;
    overflow: hidden;
    /* Ensure glow stays inside */
    z-index: 1;
    /* Ensure text is above glow */
}

.benefit-card::before,
.review-card::before,
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 230, 118, 0.15),
            transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.benefit-card:hover::before,
.review-card:hover::before,
.cta-card:hover::before {
    opacity: 1;
}

/* Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.wa-toggle {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2002;
    animation: wa-pulse 3s infinite;
}

.wa-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.wa-toggle .close-icon {
    display: none;
    font-size: 2rem;
}

.whatsapp-widget.active .wa-toggle {
    background: #111;
}

.whatsapp-widget.active .wa-logo {
    display: none;
}

.whatsapp-widget.active .close-icon {
    display: block;
}

.wa-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2001;
}

.whatsapp-widget.active .wa-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wa-header {
    background: #008069;
    /* WhatsApp Dark Green */
    color: white;
    padding: 1.5rem 1.5rem 1rem;
}

.wa-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wa-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
}

.wa-options {
    padding: 1rem;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wa-link {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    color: #111;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    text-decoration: none;
}

.wa-link:hover {
    transform: translateX(5px);
    background: #fff;
}

.wa-link ion-icon {
    color: #25D366;
    font-size: 1.2rem;
}