/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #00b06f;
    --primary-dark: #009960;
    --primary-light: #00d68f;
    --secondary: #393b3d;
    --accent: #00a2ff;
    --bg-dark: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #777;
    --border: #2a2a2a;
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--accent));
    padding: 8px 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1001;
}

.top-banner-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.banner-divider {
    opacity: 0.5;
}

/* ===== HEADER ===== */
header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.site-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}

.site-title-accent {
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    color: var(--text-gray);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 10px;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    text-align: center;
    padding: 5rem 1rem 4rem;
    background: radial-gradient(ellipse at top, #1a2a1a 0%, var(--bg-dark) 70%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 176, 111, 0.15);
    border: 1px solid rgba(0, 176, 111, 0.3);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d68f, #00b06f, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-img {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 35%;
    max-width: 500px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* ===== CTA BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 176, 111, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 176, 111, 0.5);
}

.cta-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.cta-large {
    padding: 18px 42px;
    font-size: 1.2rem;
}

/* ===== TRUST BADGES ===== */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== STATS ===== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.section-title i {
    color: var(--primary);
    margin-right: 8px;
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-size: 1rem;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 176, 111, 0.15);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.2;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.step-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.step-img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: 160px;
    object-fit: cover;
    opacity: 0.85;
    transition: var(--transition);
}

.step-card:hover .step-img {
    opacity: 1;
}

.steps-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 5rem 0;
    background: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2rem 1rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(0, 176, 111, 0.3);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== ARTICLES ===== */
.articles-section {
    padding: 5rem 0;
    background: #111;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 176, 111, 0.1);
}

.article-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-img-wrapper img {
    transform: scale(1.05);
}

.article-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.article-content {
    padding: 1.5rem;
}

.article-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.article-content p strong {
    color: var(--primary-light);
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-meta i {
    margin-right: 4px;
}

/* ===== PRICE TABLE ===== */
.price-table-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.price-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th {
    background: #1a1a1a;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--text-white);
    border-bottom: 2px solid var(--primary);
}

.price-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-gray);
}

.price-table tbody tr:hover {
    background: rgba(0, 176, 111, 0.05);
}

.price-official {
    color: #e74c3c;
    text-decoration: line-through;
    font-weight: 600;
}

.price-free {
    color: var(--primary-light) !important;
    font-weight: 800;
    font-size: 1.1rem;
}

.price-save {
    color: #ffc107 !important;
    font-weight: 700;
}

.highlight-row {
    background: rgba(0, 176, 111, 0.08) !important;
}

.highlight-row td {
    color: var(--text-white);
    font-weight: 600;
}

.popular-badge {
    background: #ffc107;
    color: #000;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}

/* ===== FAQ ===== */
.faq-section-wrapper {
    padding: 5rem 0;
    background: #111;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 176, 111, 0.3);
}

.faq-question {
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255,255,255,0.03);
}

.faq-answer {
    padding: 0 1.3rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.3rem 1.2rem;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--primary);
    font-size: 0.8rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.final-cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 176, 111, 0.1), rgba(0, 162, 255, 0.05));
    border: 1px solid rgba(0, 176, 111, 0.2);
    border-radius: 20px;
    padding: 3.5rem 2rem;
}

.final-cta-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}

.final-cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.final-cta-box p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.78rem !important;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 176, 111, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

/* ===== GENERATOR PAGE ===== */
.generator-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.generator-box {
    background: rgba(26, 26, 26, 0.97);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    margin: 2rem auto;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-field {
    width: 100%;
    padding: 0.9rem 1rem;
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 176, 111, 0.1);
}

.platform-select {
    display: flex;
    gap: 0.8rem;
}

.platform-option {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.platform-option:hover {
    border-color: rgba(0, 176, 111, 0.4);
}

.platform-option.selected {
    background: rgba(0, 176, 111, 0.15);
    border-color: var(--primary);
    color: var(--primary-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        gap: 5px;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-img {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .top-banner {
        font-size: 0.75rem;
    }

    .banner-divider {
        display: none;
    }

    .top-banner-inner {
        flex-direction: column;
        gap: 3px;
    }

    .price-table {
        font-size: 0.82rem;
    }

    .price-table th, .price-table td {
        padding: 0.7rem 0.5rem;
    }

    .final-cta-box {
        padding: 2.5rem 1.5rem;
    }

    .final-cta-box h2 {
        font-size: 1.5rem;
    }

    .cta-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .platform-select {
        flex-direction: column;
    }
}
