:root {
    --bg-dark: #050801;
    --bg-card: #0a1106;
    --bg-card-hover: #111d0a;
    --accent-primary: #00FFCC;
    --accent-hover: #00e0b3;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --danger: #ef4444;
    --danger-muted: rgba(239, 68, 68, 0.2);
    --border-color: #1a2e15;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--accent-primary);
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.announcement-bar marquee {
    flex-grow: 1;
}

.join-btn {
    background-color: #ffd700;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}
.join-btn:hover {
    transform: scale(1.05);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(5, 8, 1, 0.9);
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-switch {
    background-color: #1a1a24;
    border-radius: 20px;
    display: flex;
    padding: 3px;
}

.currency-switch button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

.currency-switch button.active {
    background-color: #4c3ba6;
    color: white;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.stars {
    color: var(--text-muted);
}

.social-links-nav {
    display: flex;
    gap: 15px;
}

.social-links-nav a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 5%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content .subtitle {
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-tools-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.hero-tool-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #e5e7eb;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 255, 204, 0.15);
}

.hero-tool-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 204, 0.6);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 255, 204, 0.5);
}

.hero-tool-pill img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #fff;
    padding: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--accent-primary);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 204, 0.1);
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 8px;
}

.badge .icon {
    font-size: 1.5rem;
}

.badge-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

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

/* Hero Slider Area */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 420px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,255,204,0.05);
}

.hero-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img-area {
    width: 100%;
    height: 240px;
    background-color: #0b1509;
    border-bottom: 1px solid var(--border-color);
}
.slide-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content-area {
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: center;
}

.slide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.slide-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.slide-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0d2a1b;
    color: var(--accent-primary);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dot.active {
    background-color: var(--accent-primary);
    transform: scale(1.2);
}

/* Compare Section */
.compare-section {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-header h2 {
    font-size: 2.2rem;
    color: #fcd34d;
    margin-bottom: 10px;
}

.table-container {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

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

.compare-table th, .compare-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background-color: #0b1509;
    font-weight: 600;
    color: var(--text-muted);
}

.compare-table th.highlight {
    background-color: #074735;
    color: var(--accent-primary);
    text-align: center;
}

.compare-table td.strike {
    color: var(--danger);
    text-decoration: line-through;
    opacity: 0.8;
}

.compare-table td.strike span {
    text-decoration: none;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.compare-table td.price {
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    background-color: rgba(0, 255, 204, 0.05);
}

.compare-table td.price span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
}

.save-tag {
    display: inline-block;
    color: #10b981;
    font-weight: bold;
}

.save-tag small {
    background-color: rgba(16, 185, 129, 0.2);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

/* Master-Detail Pills UI */
.pills-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 5%;
}

.service-pill {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #fff;
    padding: 2px;
}

.service-pill:hover {
    border-color: rgba(0, 255, 204, 0.4);
    color: var(--text-main);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
}

.service-pill.active {
    background-color: rgba(0, 255, 204, 0.05);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

/* Variant Cards */
.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 5%;
}

.variant-card {
    background-color: #0b110a;
    border: 1px solid #1a2e15;
    border-radius: 16px;
    padding: 30px 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(11, 209, 157, 0.03);
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 209, 157, 0.15);
    border-color: rgba(11, 209, 157, 0.3);
}

.variant-card.popular {
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.variant-card.popular:hover {
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.6);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}

.variant-header {
    text-align: center;
    margin-bottom: 20px;
}

.variant-header h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-logo-lg {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #fff;
    padding: 3px;
}

.variant-price-tag {
    color: var(--text-main);
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 20px;
}

.variant-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.variant-features li {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.variant-features li::before {
    content: "•";
    color: #9ca3af;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 0.8;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-buy {
    width: 100%;
    background-color: #0bd19d; /* Solid pastel mint green */
    border: none;
    color: #000;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(11, 209, 157, 0.2);
}

.btn-buy:hover {
    background-color: #05f2b3;
    box-shadow: 0 4px 20px rgba(5, 242, 179, 0.4);
}

.btn-wa {
    width: 100%;
    background-color: transparent;
    color: #0bd19d;
    border: 2px solid #0bd19d;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(11, 209, 157, 0.2), inset 0 0 10px rgba(11, 209, 157, 0.1);
}

.btn-wa:hover {
    box-shadow: 0 0 25px rgba(11, 209, 157, 0.5), inset 0 0 15px rgba(11, 209, 157, 0.2);
    border-color: #05f2b3;
    color: #05f2b3;
}

/* Floating Elements */
.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.social-float {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.social-float:hover {
    transform: scale(1.1);
}

.wa { background-color: #25D366; }
.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.tg { background-color: #0088cc; }

.purchase-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 100;
    transform: translateX(-150%);
    transition: transform 0.4s ease-out;
}

.purchase-popup.show {
    transform: translateX(0);
}

.popup-icon {
    background-color: #10b981;
    color: black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.popup-text strong {
    font-size: 0.9rem;
}

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

.popup-text small {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

.close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.close-popup:hover {
    color: white;
}

/* Combos, Reviews, FAQ, Footer */
.combo-section, .reviews-section, .faq-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.combo-card {
    background: linear-gradient(145deg, #0a1106, #050801);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.combo-card.premium {
    border-color: #fcd34d;
    box-shadow: 0 0 20px rgba(252, 211, 77, 0.1);
}

.combo-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-primary);
    color: #000;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.combo-card.premium .combo-badge {
    background: #fcd34d;
}

.combo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.combo-icons {
    font-size: 1.8rem;
    margin: 15px 0;
    letter-spacing: 10px;
}

.combo-buy {
    width: 100%;
    margin-top: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.review-proof-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px dashed var(--accent-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.stars {
    color: #fcd34d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: var(--accent-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.info strong {
    display: block;
    color: white;
}

.info span {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 300px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.main-footer {
    background-color: #030501;
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 80%;
}

.footer-links a, .footer-legal a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-primary);
}

.footer-links h4, .footer-legal h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

.footer-socials a {
    font-size: 1.5rem;
    margin-right: 15px;
    opacity: 0.8;
    text-decoration: none;
}

.footer-socials a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links, .social-links-nav { display: none; }
    .hero-section { grid-template-columns: 1fr; padding-top: 40px; text-align: center; }
    .hero-buttons { justify-content: center; }
    .trust-badges { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px; }
    .compare-section { overflow-x: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .footer-about p { margin: 0 auto 20px auto; }
    .footer-socials { justify-content: center; display: flex; }
}

@media (max-width: 600px) {
    /* Navbar adjustments */
    .navbar { padding: 10px 5%; }
    .logo { font-size: 1.2rem; }
    
    /* Hero adjustments */
    .hero-section { padding: 20px 5%; gap: 20px; }
    .hero-content h1 { font-size: 2rem; margin-bottom: 10px; }
    .hero-content .subtitle { font-size: 1rem; margin-bottom: 20px; margin-left: auto; margin-right: auto; }
    .hero-buttons { flex-direction: column; gap: 10px; width: 100%; margin-bottom: 25px; }
    .hero-buttons button { width: 100%; }
    .trust-badges { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; gap: 5px; width: 100%; }
    .badge { padding: 6px 8px; gap: 5px; width: 32%; justify-content: center; }
    .badge .icon { font-size: 1.1rem; }
    .badge-text { text-align: left; }
    .badge-text strong { font-size: 0.7rem; white-space: nowrap; }
    .badge-text span { font-size: 0.55rem; white-space: nowrap; }
    
    /* Hero slider wrapper */
    .hero-slider-wrapper { height: 320px; padding-bottom: 30px; border-radius: 15px; }
    .slide-img-area { height: 180px; }
    .slide-content-area { padding: 15px; }
    .slide-title { font-size: 1.3rem; }
    
    /* Master-detail Pills */
    .pills-container { gap: 10px; margin-bottom: 30px; }
    .service-pill { padding: 8px 15px; font-size: 0.85rem; }
    
    /* Section headers */
    .section-header h2 { font-size: 1.8rem; }
    
    /* Other grids to 1fr */
    .combo-grid { grid-template-columns: 1fr; padding: 0; gap: 20px; }
    .combo-card { padding: 20px; }
    .reviews-section { padding: 40px 5%; }
    .reviews-grid { grid-template-columns: 1fr; padding: 0; gap: 20px; }
}

/* Sold Out Styling */
.sold-out {
    opacity: 0.6;
    border-color: var(--danger) !important;
}

.sold-out-badge {
    background-color: var(--danger);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.dim-card {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}
.dim-card .btn-buy {
    background-color: #555 !important;
    color: #ccc !important;
}
.dim-card .btn-wa {
    pointer-events: auto; /* allow waitlist click */
    opacity: 1;
}
/* Premium Hero Box self-contained */
.premium-hero-box {
    background: linear-gradient(145deg, #0a1106 0%, #050801 100%);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
}
.ph-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    width: max-content;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(255,255,255,0.1);
}
.ph-logo {
    width: 40px; height: 40px; background: rgba(0, 255, 204, 0.1); color: var(--accent-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.ph-brand { text-align: left; }
.ph-name { font-weight: 800; font-size: 1.1rem; }
.ph-sub { font-size: 0.75rem; color: #d1c4e9; }
.ph-stars { color: #FFD700; font-size: 0.7rem; letter-spacing: 1px; }
.ph-title {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.ph-apps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.ph-app {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-radius: 15px; font-weight: 700; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 14px; padding: 10px 15px; transition: transform 0.2s;
    line-height: 1.2;
}
.ph-app:hover { transform: scale(1.05); }
.ph-app.a-netflix { background: #000; color: #e50914; font-size: 24px; font-family: 'Arial Black'; width: 60px; height: 60px; border-radius: 12px;}
.ph-app.a-prime { background: #00a8e1; color: #fff; flex-direction: row; gap: 5px; border-radius: 20px;}
.ph-app.a-zee5 { background: #333; color: white; width: 60px; height: 60px; border-radius: 50%; font-size: 20px; }
.ph-app.a-canva { background: #00c4cc; color: white; width: 60px; height: 60px; border-radius: 50%; font-family: cursive;}
.ph-app.a-office { background: #fff; color: #d83b01; flex-direction: row; gap: 5px; border-radius: 20px;}
.ph-app.a-crunch { background: #f47521; color: white; width: 50px; height: 50px; border-radius: 50%; font-size: 24px;}
.ph-app.a-quillbot { background: #fff; color: #43b02a; flex-direction: row; gap: 5px; border-radius: 20px;}
.ph-app.a-yt { background: #fff; color: #000; flex-direction: row; gap: 5px; border-radius: 20px;}
.ph-app.a-spotify { background: #1db954; color: white; width: 50px; height: 50px; border-radius: 50%; font-size: 26px;}
.ph-app.a-gemini { background: #1e88e5; color: white; border-radius: 50%; width: 70px; height: 70px; font-size: 12px;}
.ph-app.a-music { background: #ff2d55; color: white; border-radius: 15px; width: 50px; height: 50px; font-size: 24px;}
.ph-app.a-perplexity { background: #111; color: white; flex-direction: row; gap: 5px; border-radius: 12px;}
.ph-app.a-udemy { background: #eb3348; color: white; width: 65px; height: 65px; border-radius: 50%; font-size: 11px;}
.ph-app.a-coursera { background: #0056d2; color: white; border-radius: 20px;}
.ph-app.a-linkedin { background: #fff; color: #555; flex-direction: row; gap: 5px; border-radius: 10px;}
.ph-app.a-duo { background: #58cc02; color: white; flex-direction: row; gap: 5px; border-radius: 15px;}
.ph-app.a-hindu { background: #fdfbf7; color: black; flex-direction: row; gap: 5px; border-radius: 8px; font-family: serif; border: 1px solid #ccc;}

@media (max-width: 900px) {
    .ph-title { font-size: 1.8rem !important; }
    .premium-hero-box { padding: 15px; }
}

/* Scroll Animation Classes */
.card-reveal { 
    opacity: 0; 
    transform: translateY(30px); 
} 

.animate-pop { 
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
} 

@keyframes slideUpFade { 
    0% { opacity: 0; transform: translateY(30px); } 
    100% { opacity: 1; transform: translateY(0); } 
}

/* Tools Cards Grid */
.tool-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 0 5%; margin-bottom: 50px; }
.tool-card { background-color: #0b110a; border: 1px solid rgba(11, 209, 157, 0.2); border-radius: 12px; padding: 20px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; cursor: pointer; display: flex; flex-direction: column; box-shadow: 0 0 12px rgba(11, 209, 157, 0.15); }
.tool-card:hover, .tool-card.active { border-color: rgba(11, 209, 157, 0.6); transform: translateY(-5px); box-shadow: 0 0 25px rgba(11, 209, 157, 0.3); }
.tool-card-top { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }
.tool-logo-box { width: 60px; height: 60px; border-radius: 12px; background: white; padding: 5px; object-fit: contain; flex-shrink: 0; }
.tool-card-info { text-align: left; }
.tool-card-info h3 { font-size: 1.15rem; color: #fff; margin-bottom: 3px; font-weight: 700; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.tool-subtitle { font-size: 0.85rem; color: #a1a1aa; margin-bottom: 5px; }
.tool-stars { color: #0bd19d; font-size: 0.75rem; }
.tool-stars span { color: #71717a; }
.tool-price-area { margin-top: auto; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.tool-price-area .old-price { font-size: 0.9rem; color: #71717a; text-decoration: line-through; }
.tool-price-area .new-price { font-size: 1.3rem; color: #fff; font-weight: 800; }
.tool-buy-btn { width: 100%; border-radius: 6px; padding: 10px; }


@media (max-width: 600px) {
    .tool-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 0 2px; }
    .tool-card { padding: 10px 4px; align-items: center; text-align: center; justify-content: space-between; }
    .tool-card-top { flex-direction: column; gap: 6px; margin-bottom: 8px; justify-content: center; }
    .tool-logo-box { width: 40px; height: 40px; padding: 3px; border-radius: 8px; }
    .tool-card-info { text-align: center; width: 100%; }
    .tool-card-info h3 { font-size: 0.75rem; line-height: 1.2; -webkit-line-clamp: 2; margin-bottom: 2px; }
    .tool-subtitle { display: none; }
    .tool-stars { font-size: 0.55rem; margin-bottom: 0; }
    .tool-stars span { display: none; }
    .tool-price-area { flex-direction: column; gap: 1px; margin-bottom: 8px; }
    .tool-price-area .old-price { font-size: 0.65rem; }
    .tool-price-area .new-price { font-size: 0.9rem; }
    .tool-buy-btn { padding: 6px 0; font-size: 0.7rem; width: 90%; margin: 0 auto; }
}

/* Category Scroll Bar */
.category-scroll-wrapper { width: 100%; overflow: hidden; padding: 0; margin-bottom: 30px; }
.category-scroll-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; padding: 10px 5%; border: none; }
.category-scroll-container::-webkit-scrollbar { display: none; }
.cat-pill { display: flex; align-items: center; gap: 12px; padding: 12px 20px; background-color: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; min-width: max-content; cursor: pointer; transition: all 0.3s ease; }
.cat-pill:hover, .cat-pill.active { background-color: rgba(0, 255, 204, 0.05); border-color: rgba(0, 255, 204, 0.4); box-shadow: 0 0 15px rgba(0, 255, 204, 0.1); }
.cat-icon { font-size: 1.5rem; color: var(--accent-primary); }
.cat-text { display: flex; flex-direction: column; text-align: left; }
.cat-text strong { font-size: 0.9rem; color: var(--text-main); line-height: 1.2; }
.cat-text span { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 600px) { .category-scroll-wrapper { padding: 0; } .category-scroll-container { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; padding: 10px 5%; gap: 10px; } .cat-pill { padding: 8px 15px; gap: 8px; } .cat-icon { font-size: 1.2rem; } .cat-text strong { font-size: 0.8rem; } .cat-text span { font-size: 0.65rem; } }

@media (max-width: 600px) {
    .hero-tools-pills {
        gap: 6px;
        justify-content: center;
        padding: 0 5px;
    }
    .hero-tool-pill {
        flex: 1 1 calc(33.333% - 12px);
        justify-content: center;
        padding: 6px 4px;
        font-size: 0.7rem;
        gap: 4px;
        text-align: center;
    }
    .hero-tool-pill img {
        width: 14px;
        height: 14px;
    }
}

/* Trending Header */
.trending-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 20px 0;
    width: 100%;
}
.trending-header-container .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 209, 157, 0) 0%, rgba(11, 209, 157, 0.5) 100%);
}
.trending-header-container .line.right {
    background: linear-gradient(270deg, rgba(11, 209, 157, 0) 0%, rgba(11, 209, 157, 0.5) 100%);
}
.trending-header-container .dot {
    width: 4px;
    height: 4px;
    background-color: #0bd19d;
    border-radius: 50%;
    box-shadow: 0 0 5px #0bd19d;
}
.trending-header-container h2 {
    color: #0bd19d;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

/* ================= Screenshot Reviews ================= */
.screenshot-reviews-section {
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

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

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-container {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

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

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); } /* 50% because we duplicate items for infinite scroll */
}

.s-review-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.s-review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.s-review-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    background: #111;
}

.s-review-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 5px;
}

/* ================= Lightbox Modal ================= */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,255,204,0.2);
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 150px;
    font-size: 1.1rem;
    font-style: italic;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-primary);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px){
    .lightbox-content {
        max-width: 95%;
    }
}
