: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 {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.8;
}

.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 Image Area */
.mockup-card {
    background-color: #f7f9fc;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    color: #000;
    box-shadow: 0 20px 40px rgba(0,255,204,0.1);
}

.mockup-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.mockup-content p {
    color: #4b5563;
    margin-bottom: 30px;
}

.fake-phone {
    width: 250px;
    height: 350px;
    background-color: #fff;
    border: 8px solid #1f2937;
    border-radius: 30px;
    margin-left: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #d1f7ea, #fff);
}

.phone-screen {
    width: 100%;
    height: 100%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    max-width: 80%;
}

.chat-bubble.user {
    background-color: #1f2937;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-bubble.ai {
    background-color: #e5e7eb;
    color: black;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.floating-tag {
    position: absolute;
    bottom: -15px;
    left: 40px;
    background-color: #0d2a1b;
    color: var(--accent-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    border: 1px solid var(--accent-primary);
}

/* 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, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.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;
}

.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: column; align-items: center; }
    .compare-section { overflow-x: auto; }
}

/* 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;
}
