/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f051c;
    color: #e0d8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Start transparent; JS adds .scrolled for the dark fill */
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
    background: rgba(15, 5, 28, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ---- Logo ---- */
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
}

/* ---- Nav Links ---- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
}

/* Underline slide-in on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #6366f1);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #ffffff;
}

/* ---- Free Trial CTA button (far-right of navbar) ---- */
/* Wrapper li — pushes the button to the far right with a clear gap */
.nav-links li.nav-trial-li {
    margin-left: 20px;
}

.nav-trial-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #6366f1 100%);
    border-radius: 50px;
    border: 1.5px solid rgba(168, 85, 247, 0.55);
    text-decoration: none;
    letter-spacing: 0.4px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow:
        0 0 18px rgba(168, 85, 247, 0.45),
        0 4px 20px rgba(168, 85, 247, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: nav-btn-glow 3s ease-in-out infinite alternate;
}

@keyframes nav-btn-glow {
    from { box-shadow: 0 0 14px rgba(168, 85, 247, 0.4),  0 4px 18px rgba(168, 85, 247, 0.25); }
    to   { box-shadow: 0 0 28px rgba(168, 85, 247, 0.8),  0 6px 30px rgba(99, 102, 241, 0.55); }
}

/* Shimmer sweep on hover */
.nav-trial-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-trial-btn:hover::before { left: 100%; }

.nav-trial-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 36px rgba(168, 85, 247, 0.9),
        0 8px 32px rgba(99, 102, 241, 0.65);
    border-color: rgba(168, 85, 247, 1);
}

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

/* ---- Page-hero inner padding (for non-home pages) ---- */
.page-hero {
    padding: 140px 40px 80px;
    text-align: center;
    background: #0f051c;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    top: -200px; left: 50%; transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-hero-tag {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 18px;
}

.page-hero h1 span {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(224, 216, 240, 0.6);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* ---- Hamburger (mobile only) ---- */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.25s ease;
    flex-shrink: 0;
}

.nav-toggle:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Responsive: ≤ 768 px ---- */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 62px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        /* Slide-down drawer */
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(15, 5, 28, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 12px 16px 20px;
        /* Hidden state */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-links.open {
        max-height: 360px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li.nav-trial-li {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-trial-btn {
        justify-content: center;
        border-radius: 10px;
        animation: none;
        width: 100%;
    }

    .nav-link {
        padding: 13px 12px;
        border-radius: 10px;
        font-size: 0.98rem;
    }

    .nav-link::after {
        display: none;
    }
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    background: #0f051c;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
}

/* Background ambient blobs */
#hero::before,
#hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

#hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -150px;
}

#hero::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    bottom: -120px;
    right: -100px;
}

/* Inner flex row */
.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 120px 0 80px;
}

/* ---- Left column (50%) ---- */
.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.4px;
}

/* Poppins H1 */
.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 8px;
}

.hero-highlight {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.08rem;
    color: rgba(224, 216, 240, 0.62);
    line-height: 1.82;
    margin-top: 20px;
    margin-bottom: 36px;
    max-width: 460px;
}

/* Inline stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat strong {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(224, 216, 240, 0.45);
    letter-spacing: 0.3px;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* CTA buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 38px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
    letter-spacing: 0.2px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(168, 85, 247, 0.55);
}

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

.cta-btn-outline {
    display: inline-block;
    padding: 15px 38px;
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.cta-btn-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.45);
    color: #ffffff;
    background: rgba(168, 85, 247, 0.06);
}

/* ---- Right column (50%) image placeholder ---- */
.hero-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Soft purple glow behind the frame */
.hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    animation: hero-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes hero-glow-pulse {
    from {
        transform: scale(0.92);
        opacity: 0.7;
    }

    to {
        transform: scale(1.06);
        opacity: 1;
    }
}

/* Main placeholder frame */
.hero-img-placeholder {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(168, 85, 247, 0.08) inset;
    overflow: hidden;
    padding: 24px;
    animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {

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

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

/* =============================================================
   PREMIUM IPTV DASHBOARD MOCKUP
   Glassmorphism panels, macOS chrome bar, animated details.
   All classes namespaced with "db-" to avoid collisions.
   ============================================================= */

/* ── Hero frame overrides for dashboard ── */
.hero-img-placeholder {
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(30, 10, 60, 0.92) 0%, rgba(10, 10, 40, 0.96) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(168, 85, 247, 0.1) inset,
        0 0 60px rgba(168, 85, 247, 0.06) inset;
    overflow: visible;
    /* allow floating badge to overflow */
}

/* ── macOS-style window chrome bar ── */
.db-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.03);
}

.db-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: filter 0.2s ease;
}

.db-dot--red {
    background: #ff5f57;
    box-shadow: 0 0 6px rgba(255, 95, 87, 0.6);
}

.db-dot--yellow {
    background: #ffbd2e;
    box-shadow: 0 0 6px rgba(255, 189, 46, 0.5);
}

.db-dot--green {
    background: #28c840;
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.5);
}

.db-dot:hover {
    filter: brightness(1.3);
}

.db-chrome-title {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-left: -37px;
    /* optically centred past the 3 dots */
}

.db-chrome-title i {
    margin-right: 4px;
    color: rgba(168, 85, 247, 0.7);
}

/* ── Dashboard inner grid ── */
.db-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    padding: 10px;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
}

/* ── Generic glass panel ── */
.db-panel {
    position: relative;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.db-panel:hover {
    border-color: rgba(168, 85, 247, 0.22);
    transform: translateY(-1px);
}

/* Panel layout variants */
.db-panel--left {
    grid-column: 1;
    grid-row: 1 / 3;
}

.db-panel--tr {
    grid-column: 2;
    grid-row: 1;
}

.db-panel--br {
    grid-column: 2;
    grid-row: 2;
}

.db-panel--bottom {
    grid-column: 1 / 3;
    grid-row: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
}

/* ── Ambient glow orbs behind panels ── */
.db-panel-glow {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    top: -20px;
    right: -20px;
    opacity: 0.35;
}

.db-panel-glow--purple {
    background: #a855f7;
}

.db-panel-glow--blue {
    background: #38bdf8;
}

.db-panel-glow--green {
    background: #22c55e;
}

.db-panel-glow--indigo {
    background: #6366f1;
    left: -20px;
    right: auto;
}

/* ── Now Streaming panel ── */
.db-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(168, 85, 247, 0.85);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.db-stream-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 5px;
}

.db-stream-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 0 18px rgba(168, 85, 247, 0.5);
    flex: 1;
}

.db-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 20px;
    font-size: 0.58rem;
    font-weight: 800;
    color: #f87171;
    letter-spacing: 0.8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.db-pulse {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    animation: db-pulse-anim 1.4s ease infinite;
}

@keyframes db-pulse-anim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }
}

.db-stream-meta {
    font-size: 0.68rem;
    color: rgba(224, 216, 240, 0.45);
    margin-bottom: 14px;
}

/* ── Animated equaliser ── */
.db-equaliser {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
    margin-bottom: 14px;
}

.db-equaliser span {
    display: block;
    width: 4px;
    border-radius: 3px;
    background: linear-gradient(180deg, #a855f7, #6366f1);
    animation: db-eq-bounce 1s ease-in-out infinite alternate;
}

.db-equaliser span:nth-child(1) {
    height: 50%;
    animation-delay: 0s;
}

.db-equaliser span:nth-child(2) {
    height: 80%;
    animation-delay: 0.1s;
}

.db-equaliser span:nth-child(3) {
    height: 40%;
    animation-delay: 0.2s;
}

.db-equaliser span:nth-child(4) {
    height: 100%;
    animation-delay: 0.3s;
}

.db-equaliser span:nth-child(5) {
    height: 65%;
    animation-delay: 0.15s;
}

.db-equaliser span:nth-child(6) {
    height: 45%;
    animation-delay: 0.25s;
}

@keyframes db-eq-bounce {
    from {
        transform: scaleY(0.4);
    }

    to {
        transform: scaleY(1);
    }
}

/* ── Content category tags ── */
.db-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.db-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: default;
    transition: filter 0.2s ease;
}

.db-tag:hover {
    filter: brightness(1.2);
}

.db-tag i {
    font-size: 0.55rem;
}

.db-tag--green {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
}

.db-tag--red {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
}

.db-tag--blue {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
}

.db-tag--pink {
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.35);
    color: #f472b6;
}

/* ── Online Devices panel ── */
.db-panel-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.db-panel-title i {
    color: rgba(168, 85, 247, 0.75);
}

.db-devices {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.db-devices li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.65);
}

.db-devices li i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.db-device-name {
    flex: 1;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-device-loc {
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.6rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Online status dots */
.db-status {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.db-status--green {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
    animation: db-pulse-anim 2s ease infinite;
}

.db-status--yellow {
    background: #eab308;
    box-shadow: 0 0 6px rgba(234, 179, 8, 0.6);
    animation: db-pulse-anim 2.4s ease infinite;
}

/* ── Signal Quality panel ── */
.db-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin: 10px 0 8px;
    height: 28px;
}

.db-bar {
    display: block;
    border-radius: 3px;
    background: linear-gradient(180deg, #22c55e, #15803d);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    width: 8px;
    animation: db-bar-grow 1.8s ease-in-out infinite alternate;
}

.db-bar--1 {
    height: 30%;
    animation-delay: 0s;
}

.db-bar--2 {
    height: 50%;
    animation-delay: 0.1s;
}

.db-bar--3 {
    height: 70%;
    animation-delay: 0.2s;
}

.db-bar--4 {
    height: 90%;
    animation-delay: 0.3s;
}

.db-bar--5 {
    height: 100%;
    animation-delay: 0.4s;
}

@keyframes db-bar-grow {
    from {
        opacity: 0.6;
        transform: scaleY(0.85);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.db-signal-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 5px;
}

.db-signal-label i {
    font-size: 0.6rem;
}

/* ── Bottom zapping panel ── */
.db-zap-icon {
    font-size: 0.85rem;
    color: #facc15;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.6));
}

.db-zap-text {
    flex: 1;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.db-zap-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 20px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #f87171;
    letter-spacing: 0.6px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Floating badge (outside frame, bottom-left of hero-visual) ── */
.db-float-badge {
    position: absolute;
    bottom: -18px;
    left: -14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(15, 5, 28, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(168, 85, 247, 0.12) inset;
    z-index: 10;
    animation: chip-bob 3.5s ease-in-out infinite reverse;
}

.db-float-badge i {
    color: #a855f7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        gap: 56px;
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-sub {
        max-width: 540px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    #hero {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .db-grid {
        grid-template-columns: 1fr;
    }

    .db-panel--left {
        grid-column: 1;
        grid-row: auto;
    }

    .db-panel--tr {
        grid-column: 1;
        grid-row: auto;
    }

    .db-panel--br {
        grid-column: 1;
        grid-row: auto;
    }

    .db-panel--bottom {
        grid-column: 1;
        grid-row: auto;
    }

    .db-float-badge {
        font-size: 0.68rem;
        bottom: -14px;
        left: -8px;
    }
}

@keyframes chip-bob {

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

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





/* =============================================================
   SECTION 1 — CONTENT CATEGORIES GRID
   4-column responsive grid with minimalist dark cards.
   Background colour: #1a1a2e (matches .feature-card).
   Hover: card lifts 8px, coloured top-border accent revealed.
   ============================================================= */

/* ---- Section wrapper ---- */
#categories {
    padding: 110px 40px;
    /* generous vertical breathing room */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ---- Pill label above heading ---- */
.categories-label {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    /* site's primary purple accent */
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

/* ---- Section heading ---- */
.categories-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

/* Gradient accent on "Content Library" span */
.categories-h2-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Subtitle below heading ---- */
.categories-subtitle {
    font-size: 1.02rem;
    color: rgba(224, 216, 240, 0.48);
    margin-bottom: 60px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* ---- 4-column grid ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal columns on desktop */
    gap: 24px;
    text-align: left;
}

/* ---- Base category card ---- */
.category-card {
    position: relative;
    background: #1a1a2e;
    /* same as .feature-card */
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    padding: 32px 28px 28px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    /* Lift-up transition — cubic-bezier gives a springy feel */
    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Hover: lift card 8px + purple glow */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

/* ---- Coloured top-border accent bar ---- */
/* Hidden by default; slides to opacity:1 on hover */
.category-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.category-card:hover .category-card-top {
    opacity: 1;
}

/* Per-card accent colours — easy to modify */
#cat-sports .category-card-top {
    background: linear-gradient(90deg, #f97316, #ef4444);
}

#cat-movies .category-card-top {
    background: linear-gradient(90deg, #38bdf8, #6366f1);
}

#cat-series .category-card-top {
    background: linear-gradient(90deg, #a855f7, #6366f1);
}

#cat-kids .category-card-top {
    background: linear-gradient(90deg, #25d366, #38bdf8);
}

/* ---- Icon wrapper ---- */
.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Slight scale on card hover */
.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* Colour variants — background + icon tint + subtle ring */
.category-icon--red {
    background: rgba(239, 68, 68, 0.12);
    color: #f97316;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.category-card:hover .category-icon--red {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.28);
}

.category-icon--blue {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2);
}

.category-card:hover .category-icon--blue {
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.category-icon--purple {
    background: rgba(168, 85, 247, 0.14);
    color: #a855f7;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.2);
}

.category-card:hover .category-icon--purple {
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.category-icon--green {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.2);
}

.category-card:hover .category-icon--green {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

/* ---- Card title ---- */
.category-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

/* ---- Card description ---- */
.category-desc {
    font-size: 0.9rem;
    color: rgba(224, 216, 240, 0.5);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ---- Stats badge at card bottom ---- */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(224, 216, 240, 0.5);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

/* ---- Responsive: 2 columns on tablet ---- */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Responsive: 1 column on mobile ---- */
@media (max-width: 500px) {
    #categories {
        padding: 80px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}




/* ===== FEATURES SECTION ===== */
#features {
    padding: 110px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Pill label above heading */
.features-label {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

#features h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.features-h2-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.02rem;
    color: rgba(224, 216, 240, 0.48);
    margin-bottom: 60px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* 2×2 grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

/* ---- Base card ---- */
.feature-card {
    position: relative;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    padding: 36px 32px 32px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Subtle top-border accent bar (coloured per card via modifier) */
.feature-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* Hover: lift + glow */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.18);
}

.feature-card:hover .feature-card-top {
    opacity: 1;
}

/* Per-card top-bar colours */
#feature-tv .feature-card-top {
    background: linear-gradient(90deg, #a855f7, #6366f1);
}

#feature-shield .feature-card-top {
    background: linear-gradient(90deg, #6366f1, #818cf8);
}

#feature-speed .feature-card-top {
    background: linear-gradient(90deg, #38bdf8, #6366f1);
}

#feature-support .feature-card-top {
    background: linear-gradient(90deg, #25d366, #38bdf8);
}

/* ---- Icon wrapper ---- */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Colour variants */
.feature-icon--purple {
    background: rgba(168, 85, 247, 0.14);
    color: #a855f7;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.18);
}

.feature-icon--purple:hover,
.feature-card:hover .feature-icon--purple {
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.feature-icon--indigo {
    background: rgba(99, 102, 241, 0.14);
    color: #818cf8;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.18);
}

.feature-card:hover .feature-icon--indigo {
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.feature-icon--sky {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18);
}

.feature-card:hover .feature-icon--sky {
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

.feature-icon--green {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
    box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.18);
}

.feature-card:hover .feature-icon--green {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

/* ---- Category tag ---- */
.feature-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(224, 216, 240, 0.35);
    margin-bottom: 8px;
}

/* ---- Card text ---- */
.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.feature-card p {
    font-size: 0.93rem;
    color: rgba(224, 216, 240, 0.5);
    line-height: 1.75;
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== HOW TO START SECTION ===== */
#setup {
    padding: 110px 40px;
    background: linear-gradient(180deg, #0f051c 0%, #110824 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ambient glow blob */
#setup::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
}

/* Pill label */
.setup-label {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

/* Heading */
.setup-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.setup-h2-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.setup-subtitle {
    font-size: 1.02rem;
    color: rgba(224, 216, 240, 0.48);
    margin-bottom: 72px;
    line-height: 1.7;
}

/* ---- Steps row ---- */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ---- Individual step card ---- */
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* ---- Number circle ---- */
.step-circle {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.04);
}

/* Last step glows green/play */
.step-circle--active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(99, 102, 241, 0.18));
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.07), 0 0 30px rgba(168, 85, 247, 0.2);
}

.step:hover .step-circle {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.22), rgba(99, 102, 241, 0.18));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.07), 0 8px 30px rgba(168, 85, 247, 0.3);
    transform: translateY(-4px);
}

/* Step number (default visible) */
.step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #a855f7;
    line-height: 1;
    position: absolute;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Icon (default hidden) */
.step-icon {
    color: #a855f7;
    opacity: 0;
    transform: scale(0.7);
    position: absolute;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Swap on hover: hide number, show icon */
.step:hover .step-num {
    opacity: 0;
    transform: scale(0.6);
}

.step:hover .step-icon {
    opacity: 1;
    transform: scale(1);
}

/* ---- Step text body ---- */
.step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.55);
}

.step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
    margin: 0;
}

.step p {
    font-size: 0.88rem;
    color: rgba(224, 216, 240, 0.48);
    line-height: 1.72;
    max-width: 180px;
    margin: 0 auto;
}

/* ---- Connectors (the thin lines between steps) ---- */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 34px;
    /* aligns connector midpoint to circle center */
    flex-shrink: 0;
    width: 60px;
    gap: 2px;
    position: relative;
    z-index: 0;
}

.step-connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.4), rgba(99, 102, 241, 0.4));
    position: relative;
}

/* Dashed overlay on the line */
.step-connector-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 4px,
            rgba(255, 255, 255, 0.06) 4px,
            rgba(255, 255, 255, 0.06) 8px);
}

.step-connector-arrow {
    font-size: 1rem;
    color: rgba(168, 85, 247, 0.45);
    line-height: 1;
    margin-top: 3px;
    font-family: 'Inter', sans-serif;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .steps-row {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
        padding: 0;
        max-width: 380px;
        width: 100%;
    }

    .step-body {
        align-items: flex-start;
    }

    .step p {
        max-width: none;
        margin: 0;
    }

    .step-connector {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0;
        padding-left: 36px;
        /* aligns with circle center on mobile */
        width: 100%;
        height: 36px;
    }

    .step-connector-line {
        width: 1px;
        height: 100%;
        background: linear-gradient(180deg, rgba(168, 85, 247, 0.4), rgba(99, 102, 241, 0.4));
    }

    .step-connector-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    #setup {
        padding: 80px 20px;
    }
}


/* ===== PRICING SECTION ===== */
#pricing {
    padding: 110px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Pill label */
.pricing-label {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.pricing-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.pricing-h2-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.02rem;
    color: rgba(224, 216, 240, 0.48);
    margin-bottom: 60px;
    line-height: 1.7;
}

/* 3-column grid — middle card lifts up */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

/* ---- Base card ---- */
.pricing-card {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px 32px 36px;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(168, 85, 247, 0.15);
}

/* ---- Most Popular card ---- */
.pricing-card.popular {
    background: linear-gradient(160deg, #1e1040 0%, #1a1a2e 60%);
    border: 1px solid rgba(168, 85, 247, 0.45);
    transform: scale(1.05);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.15),
        0 16px 56px rgba(0, 0, 0, 0.38),
        0 0 60px rgba(168, 85, 247, 0.12);
    z-index: 1;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.3),
        0 24px 70px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(168, 85, 247, 0.2);
}

/* Glowing orb inside popular card */
.popular-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: popular-pulse 3.5s ease-in-out infinite alternate;
}

@keyframes popular-pulse {
    from {
        transform: scale(0.9);
        opacity: 0.7;
    }

    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ---- Most Popular badge ---- */
.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
}

/* ---- Plan duration label ---- */
.plan-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(224, 216, 240, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 20px;
    /* space below badge */
}

.pricing-card:not(.popular) .plan-duration {
    margin-top: 0;
}

/* ---- Price ---- */
.price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 6px;
}

.price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(224, 216, 240, 0.38);
    letter-spacing: 0;
}

/* Per-month breakdown */
.price-per-month {
    font-size: 0.82rem;
    color: rgba(224, 216, 240, 0.45);
    margin-bottom: 28px;
    font-weight: 500;
}

.price-per-month em {
    font-style: normal;
    color: #25d366;
    font-weight: 600;
}

/* ---- Feature list ---- */
.plan-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.plan-features li {
    font-size: 0.9rem;
    color: rgba(224, 216, 240, 0.65);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Checkmark */
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.12);
    color: #a855f7;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-card.popular .check {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

/* ---- CTA Button ---- */
.plan-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.93rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.28);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.plan-btn:hover {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.4);
}

/* Popular card button — always filled */
.pricing-card.popular .plan-btn {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-color: transparent;
    box-shadow: 0 6px 24px rgba(168, 85, 247, 0.35);
}

.pricing-card.popular .plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(168, 85, 247, 0.55);
}

/* ---- Bottom note ---- */
.pricing-note {
    margin-top: 36px;
    font-size: 0.82rem;
    color: rgba(224, 216, 240, 0.3);
    letter-spacing: 0.2px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
}



/* ===== FAQ SECTION ===== */
#faq {
    padding: 110px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-label {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.faq-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.faq-h2-accent {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.02rem;
    color: rgba(224, 216, 240, 0.48);
    margin-bottom: 52px;
    line-height: 1.7;
}

/* ---- Accordion list ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 40px;
}

/* ---- Individual item ---- */
.faq-item {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:has(.faq-toggle:checked) {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.08);
}

/* ---- Question row (clickable label) ---- */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.25s ease;
    user-select: none;
    -webkit-user-select: none;
}

.faq-question:hover {
    color: #ffffff;
}

/* ---- Chevron icon ---- */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-question:hover .faq-icon {
    background: rgba(168, 85, 247, 0.18);
}

/* Rotate chevron when open */
.faq-toggle:checked~.faq-question .faq-icon {
    transform: rotate(180deg);
    background: rgba(168, 85, 247, 0.2);
}

/* ---- Answer panel ---- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-size: 0.93rem;
    color: rgba(224, 216, 240, 0.55);
    line-height: 1.8;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

/* Expand when checked */
.faq-toggle:checked~.faq-answer {
    max-height: 300px;
}

/* ---- Bottom CTA ---- */
.faq-cta-text {
    font-size: 0.95rem;
    color: rgba(224, 216, 240, 0.45);
}

.faq-cta-link {
    color: #a855f7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.faq-cta-link:hover {
    color: #c084fc;
}

/* ===== CONTACT SECTION ===== */
#contact {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.contact-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-section-tag {
    display: inline-block;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.contact-section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.8px;
}

.contact-section-header p {
    font-size: 1.05rem;
    color: rgba(224, 216, 240, 0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Two-column Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- LEFT COLUMN ---- */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* WhatsApp Hero Card */
.wa-hero-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0d2e1a 0%, #0a2015 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 20px;
    padding: 44px 40px;
    text-align: center;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(37, 211, 102, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wa-hero-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 56px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(37, 211, 102, 0.1);
}

/* Decorative glow blob */
.wa-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.wa-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25d366, #1aab52);
    border-radius: 22px;
    margin-bottom: 24px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-hero-card:hover .wa-icon-wrap {
    transform: scale(1.07);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}

.wa-hero-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
}

.wa-sub {
    font-size: 0.97rem;
    color: rgba(224, 240, 230, 0.6);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Big CTA button */
.wa-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366, #1aab52);
    border-radius: 14px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.wa-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
    filter: brightness(1.06);
}

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

/* "We reply in minutes" badge */
.wa-reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #25d366;
    letter-spacing: 0.3px;
}

.wa-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.wa-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: pulse-ring 1.6s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

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

/* Contact meta row (email + hours) */
.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.contact-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(224, 216, 240, 0.6);
}

.contact-meta-item svg {
    color: #a855f7;
    flex-shrink: 0;
}

/* ---- RIGHT COLUMN: Contact Form ---- */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 0.9rem;
    color: rgba(224, 216, 240, 0.45);
    line-height: 1.6;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(224, 216, 240, 0.7);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 216, 240, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.3);
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}

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


/* ===== PRE-FOOTER CTA SECTION ===== */
#cta-footer {
    background: linear-gradient(135deg, #110824 0%, #0f051c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

/* Ambient blob */
#cta-footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.06) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

/* Left text */
.cta-footer-text {
    flex: 1;
}

.cta-footer-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.22);
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.4px;
}

.cta-footer-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.7px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-footer-text p {
    font-size: 1rem;
    color: rgba(224, 216, 240, 0.5);
    line-height: 1.75;
    max-width: 440px;
}

/* Right action */
.cta-footer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Large green WhatsApp button */
.wa-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #25d366;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    letter-spacing: 0.1px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.wa-footer-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

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

/* "Reply in minutes" badge */
.cta-footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(224, 216, 240, 0.45);
    font-weight: 500;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    flex-shrink: 0;
    animation: badge-pulse 2s ease infinite;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

@keyframes badge-pulse {

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

    50% {
        box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.06);
    }
}

/* Responsive */
@media (max-width: 820px) {
    .cta-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-footer-text p {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    #cta-footer {
        padding: 60px 20px;
    }

    .wa-footer-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===== SITE FOOTER ===== */
#site-footer {
    background: #07020f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 40px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---- Brand column ---- */
.footer-logo {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(224, 216, 240, 0.38);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 280px;
}


/* ---- Link columns ---- */
.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-link {
    font-size: 0.88rem;
    color: rgba(224, 216, 240, 0.42);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(224, 216, 240, 0.9);
}

/* Contact list with icons */
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(224, 216, 240, 0.42);
    font-size: 0.88rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* ---- Bottom bar ---- */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(224, 216, 240, 0.25);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    font-size: 0.82rem;
    color: rgba(224, 216, 240, 0.25);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: rgba(224, 216, 240, 0.65);
}

/* ---- Responsive ---- */
@media (max-width: 1000px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    #site-footer {
        padding: 48px 20px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =====================================================================
   PARTNERS LOGO SECTION (Fixed Pathing & Branding)
   – Dark, rounded rectangle cards (#1a1a24).
   – Solid white logos via filter: brightness(0) invert(1).
   ===================================================================== */

/* ===== PREMIUM INFINITE MARQUEE ===== */
.marquee-section {
    background-color: #0f051c;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.marquee-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.marquee-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Edge Fades */
.marquee-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee-overlay-left {
    left: 0;
    background: linear-gradient(to right, #0f051c 0%, transparent 100%);
}

.marquee-overlay-right {
    right: 0;
    background: linear-gradient(to left, #0f051c 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 60s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-card {
    background: #1a1a24;
    border-radius: 12px;
    width: 140px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.logo-card:hover {
    background: #22222d;
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5),
                0 0 15px rgba(168, 85, 247, 0.2);
}

.logo-card img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .marquee-section { padding: 60px 0; }
    .marquee-heading { font-size: 1.5rem; }
    .logo-card { width: 110px; height: 75px; padding: 15px; }
    .logo-card img { max-height: 30px; }
    .marquee-content { gap: 16px; animation-duration: 45s; }
}




/* ===== PRICING GUARANTEE STRIP (pricing.html) ===== */
#pricing-guarantee {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.04) 50%, transparent 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 36px 40px;
}

.guarantee-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 40px;
}

.guarantee-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.guarantee-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guarantee-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.guarantee-item span {
    font-size: 0.8rem;
    color: rgba(224, 216, 240, 0.45);
}

.guarantee-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .guarantee-inner { flex-direction: column; gap: 8px; }
    .guarantee-divider { width: 80%; height: 1px; }
    .guarantee-item { padding: 10px 20px; }
    #pricing-guarantee { padding: 28px 20px; }
}


/* ===== STANDALONE PAGE — SECTION PADDING OVERRIDES ===== */

/* On standalone pages (faq.html, contact.html) the hero provides the top gap,
   so the section doesn't need the massive 110px top padding */
.page-hero + #faq,
.page-hero + #contact,
.page-hero + #pricing {
    padding-top: 60px;
}

/* Remove the heading elements from #pricing on standalone page
   (they're replaced by .page-hero) — handled in HTML, no CSS needed */

/* Ensure #pricing on pricing.html is full-width with auto margins */
#pricing {
    box-sizing: border-box;
    width: 100%;
}

/* #faq standalone */
.page-hero + #faq {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* #contact standalone */
.page-hero + #contact {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .page-hero { padding: 110px 20px 60px; }
    .page-hero + #faq,
    .page-hero + #contact,
    .page-hero + #pricing { padding-left: 20px; padding-right: 20px; }
}

/* ===== NEW FEATURES (FREE TRIAL PULSE & FLOATING WA) ===== */

/* Pulse animation for 24H Free Trial button */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 15px 5px rgba(168, 85, 247, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
    }
}

.pulse-btn {
    animation: pulseGlow 2s infinite ease-in-out;
}

/* Floating WhatsApp Widget */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

/* ===== COMPARISON SECTION ===== */
#comparison {
    padding: 100px 40px;
    background: #0f051c;
    position: relative;
}

#comparison::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.comparison-container {
    max-width: 1000px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.comp-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:not(.comp-header):hover {
    background: rgba(255, 255, 255, 0.01);
}

.comp-cell {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(224, 216, 240, 0.8);
}

.comp-cell:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.01);
    flex: 0.8;
}

.comp-cell.highlighted {
    background: rgba(168, 85, 247, 0.05);
    color: #ffffff;
    font-weight: 700;
    gap: 12px;
    border-left: 1px solid rgba(168, 85, 247, 0.1);
    border-right: 1px solid rgba(168, 85, 247, 0.1);
}

.comp-cell.highlighted i {
    color: #a855f7;
    font-size: 1.1rem;
}

.comp-cell i.fa-circle-xmark {
    color: #f87171;
    margin-right: 12px;
    opacity: 0.7;
}

.comp-header {
    background: rgba(255, 255, 255, 0.03);
}

.comp-header .comp-cell {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px 32px;
}

.comp-header .comp-cell.highlighted {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .comp-row {
        flex-direction: column;
    }
    .comp-cell {
        padding: 12px 20px;
    }
    .comp-cell:first-child {
        background: rgba(168, 85, 247, 0.1);
        color: #a855f7;
    }
    .comp-header {
        display: none;
    }
}

/* ===================================================================
   INFINITE AUTO-SCROLLING LOGO CAROUSEL
   Dark cards · White-filtered logos · Seamless left-scroll animation
   =================================================================== */

/* ── Section wrapper ── */
.marquee-section {
    padding: 80px 0 90px;
    background: #0f051c;
    position: relative;
    overflow: hidden;
}

/* Subtle ambient glow behind the strip */
.marquee-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* ── Header area (tag + heading) ── */
.marquee-title-wrap {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 24px;
}

.marquee-tag {
    display: inline-block;
    padding: 7px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.marquee-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

/* ── Outer container that clips the strip and shows fade edges ── */
.marquee-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Left & right gradient fade masks */
.marquee-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.marquee-overlay-left {
    left: 0;
    background: linear-gradient(to right, #0f051c 0%, transparent 100%);
}

.marquee-overlay-right {
    right: 0;
    background: linear-gradient(to left, #0f051c 0%, transparent 100%);
}

/* ── The scrolling track ── */
.marquee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    /* Animation: scrolls one full "set" width then resets — seamless because we duplicate the list */
    animation: marquee-scroll 55s linear infinite;
    will-change: transform;
    padding: 12px 0;
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* ── Keyframes: translate left by exactly half the total width ──
   Works because the JS duplicates the brand list, so the visual
   content repeats perfectly at the 50% mark. ── */
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Individual logo card ── */
.logo-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 120px;
    height: 80px;
    background: #1a1a24;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 12px 10px 8px;
    cursor: default;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Inner glow on hover */
.logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at 50% 40%, rgba(168, 85, 247, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.logo-card:hover {
    border-color: rgba(168, 85, 247, 0.35);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.2);
}

.logo-card:hover::before {
    opacity: 1;
}

/* ── Logo image: solid white via brightness+invert filter ── */
.logo-card img {
    display: block;
    width: 72px;
    height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.logo-card:hover img {
    opacity: 1;
}

/* ── Text label below each logo ── */
.logo-card-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
    text-align: center;
    line-height: 1;
}

.logo-card:hover .logo-card-label {
    color: rgba(255, 255, 255, 0.65);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .marquee-section {
        padding: 60px 0 70px;
    }

    .logo-card {
        width: 100px;
        height: 68px;
    }

    .logo-card img {
        width: 58px;
        height: 30px;
    }

    .marquee-overlay {
        width: 60px;
    }

    .marquee-content {
        gap: 12px;
        animation-duration: 40s;
    }
}

/* ===================================================================
   CONTENT SHOWCASE SECTION
   Tabbed poster grid with image overlays and LIVE/NEW badges
   =================================================================== */

#content-showcase {
    padding: 90px 40px;
    background: #0f051c;
    position: relative;
}

#content-showcase::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
    top: 0;
    right: -200px;
    pointer-events: none;
}

/* ── Header ── */
.showcase-header {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.showcase-tag {
    display: inline-block;
    padding: 7px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.showcase-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.showcase-h2-accent {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 60%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-subtitle {
    font-size: 1rem;
    color: rgba(224, 216, 240, 0.55);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Row Layout ── */
.showcase-row {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.showcase-row:last-of-type {
    margin-bottom: 0;
}

.showcase-row-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-row-label i {
    color: #a855f7;
    font-size: 1.2rem;
}

/* ── Poster Grid ── */
.poster-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 148px 148px;
    gap: 12px;
}

/* Wide card spans both rows in column 1 */
.poster-card--wide {
    grid-row: 1 / 3;
}

/* ── Individual Poster Card ── */
.poster-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a2e;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
}

.poster-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(168, 85, 247, 0.3);
    z-index: 2;
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.poster-card:hover img {
    transform: scale(1.06);
}

/* ── Gradient overlay ── */
.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.85) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
}

/* ── Badges ── */
.poster-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.poster-badge--live {
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid rgba(239, 68, 68, 0.6);
    color: #f87171;
}

.poster-badge--soon {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.5);
    color: #fbbf24;
}

.poster-badge--new {
    background: rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #a5b4fc;
}

.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse-live 1.4s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Info block at bottom of card ── */
.poster-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.poster-cat {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

.poster-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.poster-card--wide .poster-title {
    font-size: 1.4rem;
}

.poster-meta {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* ── CTA Row ── */
.showcase-cta-row {
    text-align: center;
    margin-top: 40px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .poster-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 140px 140px;
    }
    .poster-card--wide {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

@media (max-width: 600px) {
    #content-showcase {
        padding: 60px 20px;
    }
    .poster-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 145px);
    }
    .poster-card--wide {
        grid-column: 1;
        grid-row: 1;
    }
}

/* ===================================================================
   WHATSAPP TESTIMONIALS SECTION
   Realistic WA chat card UI with glassmorphism styling
   =================================================================== */

#testimonials {
    padding: 90px 40px;
    background: linear-gradient(180deg, #0f051c 0%, #0a0818 100%);
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

/* ── Header ── */
.testi-header {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.testi-tag {
    display: inline-block;
    padding: 7px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.testi-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.testi-h2-accent {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testi-subtitle {
    font-size: 1rem;
    color: rgba(224, 216, 240, 0.5);
    line-height: 1.8;
}

/* ── Grid of WA cards ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Individual WA Card (simulates a phone screenshot) ── */
.wa-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1f2e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.06) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wa-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(34, 197, 94, 0.18) inset;
}

/* ── WA Header bar (green, like WhatsApp) ── */
.wa-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 12px;
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    position: relative;
}

/* Three-dot status bar at very top */
.wa-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
}

/* ── Avatar circle ── */
.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.wa-avatar--green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.wa-avatar--blue   { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.wa-avatar--purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.wa-avatar--orange { background: linear-gradient(135deg, #fb923c, #ea580c); }

/* ── Contact info (name + status) ── */
.wa-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.wa-contact-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-contact-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.7);
}

.wa-online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
    animation: wa-blink 2.5s ease-in-out infinite;
}

@keyframes wa-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Header icons (video + phone) ── */
.wa-header-icons {
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* ── Messages area ── */
.wa-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px;
    background: #0d1117;
    /* WhatsApp-style subtle background pattern */
    background-image:
        radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ── Individual message bubble ── */
.wa-msg {
    display: flex;
    flex-direction: column;
    max-width: 88%;
    border-radius: 10px;
    padding: 8px 10px 5px;
    position: relative;
}

.wa-msg p {
    font-size: 0.78rem;
    line-height: 1.55;
    color: #e8e8e8;
    margin: 0;
    word-break: break-word;
}

.wa-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.35);
    align-self: flex-end;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Incoming (from customer) */
.wa-msg--in {
    align-self: flex-start;
    background: #1f2937;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Outgoing (our reply) */
.wa-msg--out {
    align-self: flex-end;
    background: #054640;
    border-bottom-right-radius: 2px;
    border: 1px solid rgba(34, 197, 94, 0.12);
}

/* Double blue ticks */
.wa-ticks {
    color: #60a5fa;
    font-size: 0.65rem;
}

/* ── Star rating footer ── */
.wa-stars {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: 2px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #testimonials {
        padding: 60px 20px;
    }
    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}