:root {
    --bg-deep: #06060d;
    --bg-card: #0d0d1a;
    --bg-glass: rgba(15, 15, 30, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 180, 255, 0.35);
    --accent-cyan: #00c6ff;
    --accent-blue: #0078ff;
    --accent-purple: #8b5cf6;
    --accent-gold: #f0a500;
    --accent-pink: #e04090;
    --text-primary: #f1f1f5;
    --text-secondary: #b0b0c0;
    --text-muted: #7a7a90;
    --glow-cyan: 0 0 30px rgba(0, 180, 255, 0.5);
    --glow-purple: 0 0 30px rgba(130, 80, 240, 0.5);
    --glow-gold: 0 0 25px rgba(240, 165, 0, 0.45);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition-smooth: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #1a1a3a #06060d;
}
html::-webkit-scrollbar {
    width: 6px;
}
html::-webkit-scrollbar-track {
    background: #06060d;
}
html::-webkit-scrollbar-thumb {
    background: #2a2a4a;
    border-radius: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Canvas Particles Background ─── */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
}

/* ─── 3D Floating Shapes ─── */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatShape 14s infinite ease-in-out;
    will-change: transform;
}
.float-shape.shape-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #00c6ff30, transparent 70%);
    top: -8%;
    left: -6%;
    animation-delay: 0s;
    animation-duration: 16s;
}
.float-shape.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf630, transparent 70%);
    top: 55%;
    right: -8%;
    animation-delay: -4s;
    animation-duration: 18s;
}
.float-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f0a50025, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -8s;
    animation-duration: 15s;
}
.float-shape.shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #e0409025, transparent 70%);
    top: 30%;
    left: 55%;
    animation-delay: -12s;
    animation-duration: 20s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(60px, -80px) scale(1.2) rotate(5deg);
    }
    50% {
        transform: translate(-40px, -30px) scale(0.85) rotate(-4deg);
    }
    75% {
        transform: translate(-60px, 60px) scale(1.1) rotate(3deg);
    }
}

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 18, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    padding: 6px 0;
}
.site-header.scrolled {
    background: rgba(6, 6, 14, 0.9);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}
.logo span {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}
.logo:hover {
    transform: scale(1.04);
    text-shadow: 0 0 40px rgba(0, 200, 255, 0.6);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.2);
}
.nav-cta .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    z-index: 1;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}
.btn:hover::after {
    opacity: 1;
}
.btn-primary {
    background: linear-gradient(135deg, #0078ff, #00c6ff);
    color: #fff;
    box-shadow: 0 6px 28px rgba(0, 150, 255, 0.35);
}
.btn-primary::after {
    background: linear-gradient(135deg, #0090ff, #00d8ff);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 180, 255, 0.5);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
    transform: translateY(-2px);
    background: rgba(0, 180, 255, 0.06);
}
.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* ─── Section Styles ─── */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}
.section.center {
    text-align: center;
}
.section-tag {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff 0%, #c0c8e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* ─── Hero with Background Image ─── */
.hero {
    padding: 180px 0 120px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* 🔥 BACKGROUND IMAGE — change the URL to your own picture */
    background: 
        linear-gradient(
            to right,
            rgba(6, 6, 13, 0.88) 0%,
            rgba(6, 6, 13, 0.62) 50%,
            rgba(6, 6, 13, 0.38) 100%
        ),
        url('https://images.unsplash.com/photo-1593359677879-a4bb92f829d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}
.hero .container {
    position: relative;
    z-index: 4;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.hero-copy {
    position: relative;
    z-index: 3;
}
.hero-copy h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    background: linear-gradient(160deg, #ffffff 0%, #c0d8ff 40%, #a0b8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.hero-copy p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    min-width: 100px;
}
.stat:hover {
    border-color: var(--border-glow);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}
.stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    transition: var(--transition-smooth);
}
.hero-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5), var(--glow-cyan), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: translateY(-6px);
}
.hero-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.hero-list {
    list-style: none;
    margin-bottom: 24px;
}
.hero-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}
.hero-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-cyan);
    font-size: 0.6rem;
    text-shadow: var(--glow-cyan);
}

/* ─── 3D Tilt Cards ─── */
.tilt-card {
    transition: transform 0.15s ease-out, box-shadow 0.4s;
    transform-style: preserve-3d;
    perspective: 900px;
    will-change: transform;
}
.tilt-card-inner {
    transition: transform 0.15s ease-out;
}

/* ─── Cards Grid ─── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 26px;
    text-align: left;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: default;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 180, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.card:hover::before {
    opacity: 1;
}
.card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateY(-8px);
}
.card-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 180, 255, 0.3));
}
.card:nth-child(2) .card-icon {
    animation-delay: -0.8s;
}
.card:nth-child(3) .card-icon {
    animation-delay: -1.6s;
}
.card:nth-child(4) .card-icon {
    animation-delay: -2.4s;
}
@keyframes iconFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}
.card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── Category Cards ─── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.category-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: left;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: default;
}
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}
.category-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--glow-cyan);
    transform: translateY(-5px);
}
.category-card:hover::after {
    background: radial-gradient(circle, rgba(0, 200, 255, 0.14) 0%, transparent 70%);
    width: 180px;
    height: 180px;
}
.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.category-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* ─── Channels Pills ─── */
.channels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}
.channel-pill {
    padding: 12px 22px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: default;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    user-select: none;
}
.channel-pill:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 24px rgba(0, 180, 255, 0.35);
    transform: translateY(-3px) scale(1.04);
    background: rgba(0, 180, 255, 0.08);
    color: #fff;
}

/* ─── Pricing ─── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.plan {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 34px 24px;
    text-align: center;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.plan:hover {
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateY(-8px);
}
.plan.popular {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 40px rgba(240, 165, 0, 0.2);
    background: rgba(20, 16, 8, 0.7);
}
.plan.popular:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 50px rgba(240, 165, 0, 0.35);
}
.popular-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #f0a500, #e08000);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(240, 165, 0, 0.4);
}
.plan h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.plan .small {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
}
.price {
    margin: 14px 0 18px;
}
.price strong {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}
.price span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}
.plan ul {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
}
.plan ul li {
    padding: 7px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.plan ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ─── Reviews ─── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.review-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    cursor: default;
}
.review-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}
.review-stars {
    color: #f0a500;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.review-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}
.review-card h4 {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}
.review-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-list {
    max-width: 750px;
    margin: 30px auto 0;
    text-align: left;
}
.faq-item {
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}
.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.18);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}
.faq-question span:last-child {
    font-size: 1.3rem;
    transition: transform 0.4s;
    color: var(--accent-cyan);
}
.faq-item.open .faq-question span:last-child {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 22px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ─── Trial Popup ─── */
.trial-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}
.trial-popup.hidden {
    display: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes popIn {
    from {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
.trial-popup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-close:hover {
    background: rgba(255, 60, 60, 0.2);
    border-color: rgba(255, 60, 60, 0.5);
}
.trial-popup-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 12px 0 8px;
    color: #fff;
}
.trial-popup-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ─── Floating WhatsApp ─── */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    animation: waBounce 2s ease-in-out infinite;
}
.floating-wa a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    transition: var(--transition-bounce);
    white-space: nowrap;
}
.floating-wa a:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}
@keyframes waBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ─── Footer ─── */
.site-footer {
    border-top: 1px solid var(--border-glass);
    padding: 32px 0;
    position: relative;
    z-index: 2;
    background: rgba(6, 6, 14, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: #fff;
}

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 968px) {
    .hero {
        background-position: center top;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-copy h1 {
        font-size: 2.3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    .nav-links {
        display: none;
    }
    .navbar {
        justify-content: space-between;
    }
    .hero-stats {
        gap: 14px;
    }
    .stat {
        padding: 12px 16px;
        min-width: 70px;
    }
    .stat strong {
        font-size: 1.3rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .hero-copy h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid,
    .category-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .floating-wa {
        bottom: 16px;
        right: 16px;
    }
    .floating-wa a {
        padding: 10px 16px;
        font-size: 0.8rem;