:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
}

.yellow {
    color: var(--accent);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark);
}

.navbar-brand i {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.navbar-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.navbar.scrolled .navbar-nav a {
    color: var(--text);
}

.navbar-nav a:hover {
    color: var(--primary-light);
}

.navbar.scrolled .navbar-nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.navbar.scrolled .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Tombol untuk fitur yang belum tersedia (Segera Tersedia) */
.btn-soon {
    background: transparent;
    color: var(--text-light);
    border: 2px dashed rgba(100, 116, 139, 0.35);
    box-shadow: none;
    cursor: default;
    pointer-events: none;
    opacity: 0.95;
}

.btn-soon i {
    color: var(--text-light);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--dark);
}

/* Hero Section */
.hero {
    min-height: 108vh;
    background: var(--gradient-1);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 30px;
    /* Prevent navbar overlap */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }

    50% {
        transform: translate(0, 20px) rotate(0deg);
    }

    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .modern-color {
    background: linear-gradient(135deg, #79cfeb 0%, #64c8ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.education-levels {
    margin-bottom: 2rem;
}

.education-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 500;
}

.education-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {

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

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

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-image-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    background: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.features-grid-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
}

.features-grid-wrapper.collapsed {
    max-height: calc(2 * 320px + 2rem);
}

.features-grid-wrapper.collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
    pointer-events: none;
}

.features-actions {
    text-align: center;
    margin-top: 2rem;
}

.features-actions button i {
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.features-grid-wrapper.expanded {
    max-height: none;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-badge {
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
}

.elite-badge {
    background: var(--success);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
}

.pro-badge {
    background: var(--gradient-2);
    color: var(--white);
    font-size: 0.65rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px var(--gradient-2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    background: var(--white);
}

.pricing-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 2rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.01);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pro-annual-badge {
    background: #00d4ff;
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

/* Monthly/Yearly Toggle Visibility */
.pricing-price[data-period="yearly"] {
    display: none;
}

.pricing.annual-active .pricing-price[data-period="monthly"] {
    display: none;
}

.pricing.annual-active .pricing-price[data-period="yearly"] {
    display: block;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-features li i {
    color: var(--success);
    width: 20px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* Trial Banner */
.trial-banner {
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.trial-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.trial-badge {
    background: #fff;
    color: #059669;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.trial-content {
    flex: 1;
    min-width: 200px;
}

.trial-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.trial-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trial-features span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.trial-banner .btn-white {
    background: #fff;
    color: #059669;
    border: none;
    font-weight: 600;
    white-space: nowrap;
}

.trial-banner .btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .trial-banner {
        flex-direction: column;
        text-align: center;
    }

    .trial-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .trial-banner {
        padding: 1.5rem;
    }

    .trial-content h3 {
        font-size: 1.20rem;
    }

    .trial-features {
        gap: 0.75rem;
    }

    .trial-features span {
        font-size: 0.8rem;
    }
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
    text-align: center;
    margin: 2rem auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
}

.pricing-toggle-btn {
    border: none;
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.pricing-toggle-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.pricing-toggle-btn:hover:not(.active) {
    color: var(--text);
}

.hemat-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Annual Discount Badge inside card */
.annual-discount {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.pricing-price del {
    font-size: 0.7em;
    color: var(--text-light);
    text-decoration: line-through;
}

/* Addon Section */
.addons {
    padding: 3.5rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
}

.addons-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.addon-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.addon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

.addon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--white);
}

.addon-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.addon-badge {
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.addon-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.addon-description {
    font-size: 0.8rem;
    color: var(--text-light);
}

.addon-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
    text-align: center;
}

.addon-price .price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.addon-price .price-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.addon-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.addon-features li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text);
}

.addon-features li i {
    color: var(--success);
    width: 20px;
}

.addon-card .btn {
    width: 100%;
    justify-content: center;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--primary-light);
}

.footer-description {
    margin-top: 1rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== Screenshot / Gallery Section — Swiper Carousel ===== */
.screenshots {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.screenshot-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.screenshot-swiper {
    overflow: hidden;
    padding: 1rem 2rem 3.5rem 2rem;
}

/* --- Swiper Slide Card --- */
.screenshot-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.screenshot-swiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-sizing: border-box;
    flex: 0 0 auto;
    width: auto;
    display: flex;
    justify-content: center;
}

.screenshot-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.6;
}

.screenshot-swiper .swiper-slide-active {
    opacity: 1;
}

.screenshot-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16 / 11;
    min-height: 300px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.screenshot-swiper .swiper-slide-active .screenshot-frame {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Lightbox slide animations */
@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-30%); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(30%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(30%); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.lightbox-content.slide-out-left { animation: slideOutLeft 320ms ease forwards; }
.lightbox-content.slide-in-right { animation: slideInRight 320ms ease forwards; }
.lightbox-content.slide-out-right { animation: slideOutRight 320ms ease forwards; }
.lightbox-content.slide-in-left { animation: slideInLeft 320ms ease forwards; }

.lightbox-content { will-change: transform, opacity; }

.screenshot-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    background: #f8fafc;
}

.screenshot-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blur-up placeholder: blurred until image loads */
.screenshot-img-placeholder img {
    transition: filter 420ms cubic-bezier(.2,.8,.2,1), opacity 420ms ease, transform 420ms ease;
    filter: blur(12px) scale(1.03);
    opacity: 0.6;
    will-change: filter, opacity, transform;
}

.screenshot-img-placeholder img.loaded {
    filter: none;
    opacity: 1;
    transform: none;
}

.screenshot-img-placeholder span,
.screenshot-img-placeholder i {
    position: absolute;
}


.screenshot-img-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-frame:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Swiper Navigation --- */
.screenshot-swiper .swiper-button-next,
.screenshot-swiper .swiper-button-prev {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: var(--primary);
    transition: all 0.3s ease;
}

.screenshot-swiper .swiper-button-next:after,
.screenshot-swiper .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 700;
}

.screenshot-swiper .swiper-button-next:hover,
.screenshot-swiper .swiper-button-prev:hover {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.screenshot-swiper .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* --- Swiper Pagination --- */
.screenshot-swiper .swiper-pagination {
    bottom: 0 !important;
}

.screenshot-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.screenshot-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

/* --- Lightbox --- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

.lightbox-caption-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ===== Comparison Section ===== */
.comparison {
    padding: 6rem 1rem;
    background: #f8fafc;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text);
    font-size: 0.95rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    position: sticky;
    left: 0;
    background: var(--white);
    z-index: 10;
    font-weight: 500;
    min-width: 200px;
    border-right: 2px solid #f1f5f9;
}

.comparison-table thead th {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
}

.comparison-table thead th.highlight {
    color: var(--primary);
    background: #f0fdf9;
    position: relative;
}

.comparison-table thead th.highlight::after {
    /* content: 'Populer'; */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.group-header td {
    background: #f8fafc;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    text-align: left;
}

.feature-check {
color: var(--success);
    font-size: 1.25rem;
}

.feature-cross {
    color: #cbd5e1;
    font-size: 1.25rem;
}

.text-sm {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Fix button visibility in table */
.comparison-table .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.comparison-table .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Comparison Table Wrapper */
.comparison-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    transition: max-height 0.35s ease;
}

.comparison-table-wrapper.collapsed {
    max-height: calc(7 * 60px + 60px);
}

.comparison-table-wrapper.collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
    pointer-events: none;
}

.comparison-actions {
    text-align: center;
    margin-top: 2rem;
}

.comparison-actions button i {
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.comparison-table-wrapper.expanded {
    max-height: none;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 3rem;
        height: 3rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.2rem;
    }
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: #f8fafc;
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 5px 25px rgba(99, 102, 241, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Promo Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    width: min(100%, 520px);
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
    padding: 2rem;
    position: relative;
    text-align: center;
}

.popup-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.popup-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.popup-meta {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-card .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.popup-card .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.popup-close:hover {
    background: rgba(15, 23, 42, 0.12);
}

@media (max-width: 576px) {
    .popup-card {
        padding: 1.5rem;
    }

    .popup-card h3 {
        font-size: 1.6rem;
    }
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-content strong {
    color: var(--primary);
    font-weight: 600;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
}

.faq-cta p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-cta .btn {
    background: var(--gradient-2);
    color: var(--white);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem;
    }

    .faq-answer-content {
        font-size: 0.9rem;
        padding: 0 1.25rem 1.25rem;
    }
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Order Modal */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-card {
    width: min(100%, 500px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.order-modal-overlay.active .order-modal-card {
    transform: scale(1);
}

.order-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.order-modal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order-modal-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.order-modal-title p {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.order-modal-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: var(--dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.order-modal-close:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.text-danger {
    color: #ef4444;
}

/* Duration Toggle */
.duration-toggle {
    display: flex;
    gap: 1rem;
}

.duration-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.duration-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.duration-label {
    display: block;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.duration-option input:checked~.duration-label {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

.duration-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.duration-price {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.duration-option input:checked~.duration-label .duration-price {
    color: var(--primary);
    font-weight: 600;
}

.badge-hemat {
    background: #10b981;
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-left: 0.25rem;
    vertical-align: middle;
}

.order-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.order-modal-actions .btn {
    flex: 1;
    justify-content: center;
}

.w-100 {
    width: 100%;
}

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

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .screenshot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 5rem;
    }

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

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav.active {
        display: flex;
    }

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

    .navbar-nav a {
        color: var(--text) !important;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .pricing-card.popular {
        transform: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .pricing-toggle-wrapper {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .pricing-toggle-btn {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 100px;
        align-items: flex-start;
    }

    .hero-container {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .screenshot-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .lightbox-nav {
        width: 2.5rem;
        height: 2.5rem;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }
}

.stat-item:last-child {
    border-bottom: none;
}