/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --g-blue: #7aacff;
    --g-red: #ff6b6b;
    --g-yellow: #ffd666;
    --g-green: #69db7c;
    --accent: #4dabf7;
    --accent-glow: rgba(77, 171, 247, 0.35);
    --text-color: #e8eaed;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --bg-color: #0a0a0a;
    --bg-alt: #111113;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --radius: 12px;
    --glass: saturate(180%) blur(20px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accent Colors */
.g-blue { color: var(--g-blue); }
.g-red { color: var(--g-red); }
.g-yellow { color: var(--g-yellow); }
.g-green { color: var(--g-green); }

/* Antigravity Background - REMOVED for sober design */
.antigravity-bg { display: none; }
.float-shape { display: none; }
    33% { transform: translate(40px, -50px) scale(1.08); }
    66% { transform: translate(-30px, -30px) scale(0.92); }
}

/* Float card animation */
.float-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Navigation - Glass */
.navbar {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    cursor: pointer;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 24px;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
}

.nav-admin {
    color: var(--g-red) !important;
    font-weight: 500;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px 70px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(77, 171, 247, 0.1);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 32px;
    border: 1px solid rgba(77, 171, 247, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-title .g-blue,
.hero-title .g-red,
.hero-title .g-yellow,
.hero-title .g-green {
    -webkit-text-fill-color: unset;
    background: none;
}

.hero .subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: var(--g-red);
    top: 80%;
    right: 40%;
    
    animation-delay: 3s;
}


    25% { transform: translateY(-40px) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
    75% { transform: translateY(-50px) rotate(2deg); }
}


    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, -25px) scale(0.95); }
}

/* Float card animation */
.float-card {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Navigation */
.navbar {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    cursor: pointer;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 24px;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: var(--bg-alt);
    color: var(--text-color);
}

.nav-admin {
    color: var(--g-red) !important;
    font-weight: 500;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section - Google Style */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--g-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.hero-title {
    font-size: 56px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: var(--text-color);
}

.hero .subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* Search box */
.hero-search-box {
    max-width: 584px;
    margin: 0 auto 36px;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 10px 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    backdrop-filter: blur(12px);
}

.hero-search-box:hover,
.hero-search-box:focus-within {
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-search-box:focus-within {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero-search-box:focus-within .search-results.visible {
    display: block;
}

.search-icon, .search-icon-right {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.hero-search {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 4px 12px;
    background: transparent;
    color: var(--text-color);
    font-family: inherit;
}

.hero-search::placeholder {
    color: var(--text-secondary);
}

/* Search Results Dropdown */
.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background: #1a1a1e;
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    overflow: hidden;
    padding: 8px 0;
    backdrop-filter: blur(20px);
}

.search-results.visible {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.15s;
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.search-result-item.no-result {
    color: var(--text-secondary);
    font-size: 14px;
    justify-content: center;
    cursor: default;
}

.search-result-item.no-result a {
    color: var(--accent);
    text-decoration: none;
    margin-left: 4px;
}

.sr-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sr-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sr-info strong {
    font-size: 14px;
    font-weight: 500;
}

.sr-info small {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sr-platform {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.sr-platform.ios {
    background: rgba(77, 171, 247, 0.15);
    color: var(--accent);
}

.sr-platform.android {
    background: rgba(105, 219, 124, 0.15);
    color: var(--g-green);
}

/* Buttons - Glow Style */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.btn-google {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
    font-weight: 500;
}

.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-premium {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
    font-weight: 500;
}

.btn-premium:hover {
    box-shadow: 0 8px 28px rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-blue { background: var(--g-blue); }
.dot-red { background: var(--g-red); }
.dot-yellow { background: var(--g-yellow); }
.dot-green { background: var(--g-green); }

/* Platform Toggle */
.platform-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 4px;
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.platform-btn.active {
    background: rgba(77, 171, 247, 0.15);
    color: var(--accent);
    box-shadow: 0 0 12px rgba(77, 171, 247, 0.1);
}

.platform-btn svg {
    width: 18px;
    height: 18px;
}

/* Sections */
.section {
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 48px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: -32px;
    margin-bottom: 48px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.step:hover {
    border-color: rgba(77, 171, 247, 0.2);
    
    background: var(--bg-card-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    
}

.step-red { background: var(--g-red);  }
.step-yellow { background: var(--g-yellow); color: #0a0a0a;  }

.step h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Android Section */
.section-android {
    background: var(--bg-alt);
}

.android-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.android-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.android-card:hover {
    
    border-color: rgba(77, 171, 247, 0.2);
    background: var(--bg-card-hover);
}

.android-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
    color: white;
}

.android-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.android-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.android-apps-list {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border-color);
    text-align: center;
    backdrop-filter: blur(10px);
}

.apps-list-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-color);
}

.android-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.android-app-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: box-shadow 0.2s;
}

.android-app-item:hover {
    box-shadow: 0 0 15px rgba(77, 171, 247, 0.15);
    border-color: rgba(77, 171, 247, 0.2);
}

.app-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.app-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.free-badge {
    background: rgba(105, 219, 124, 0.15);
    color: var(--g-green);
}

/* Launch Promo Banner */
.launch-promo-banner {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 24px 32px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(77, 171, 247, 0.15);
    backdrop-filter: blur(10px);
}

.launch-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.promo-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promo-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.promo-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
}

.promo-content p {
    font-size: 15px;
    margin: 0;
    opacity: 0.95;
}

.promo-sub {
    font-size: 13px !important;
    margin-top: 6px !important;
    opacity: 0.85 !important;
}

.promo-counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-counter span {
    font-size: 24px;
    color: var(--g-yellow);
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    
    border-color: rgba(77, 171, 247, 0.2);
    background: var(--bg-card-hover);
}

.pricing-card.featured {
    border: 2px solid rgba(77, 171, 247, 0.3);
    
}

.pricing-card.premium {
    border: 2px solid rgba(255, 214, 102, 0.3);
    background: rgba(255, 214, 102, 0.04);
    
}

.badge {
    position: absolute;
    top: -13px;
    right: 24px;
    background: var(--g-blue);
    color: white;
    padding: 5px 16px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.badge-premium {
    background: var(--g-yellow);
    color: #0a0a0a;
    font-weight: 700;
}

.plan-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.price {
    font-size: 48px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 8px;
}

.price-premium {
    color: var(--g-yellow);
}

.duration {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
    flex: 1;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.risk-warning {
    color: var(--g-red) !important;
}

.safe-text {
    color: var(--g-green) !important;
    font-weight: 500;
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 24px;
    margin-bottom: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: 0 0 15px rgba(77, 171, 247, 0.1);
    border-color: rgba(77, 171, 247, 0.15);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: #141416;
    margin: 6% auto;
    padding: 36px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 480px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: slideDown 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: var(--text-color);
}

.modal-content h2 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.04);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--g-blue);
}

.checkbox-label a {
    color: var(--g-blue);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: rgba(10, 10, 10, 0.8);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-top {
    margin-bottom: 16px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 13px;
}

footer .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-copy {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: var(--glass);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .launch-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .promo-icon {
        font-size: 36px;
    }

    .promo-content h3 {
        font-size: 18px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .android-apps-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        padding: 24px 16px;
    }

    .float-card {
        animation: none;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* FAQ Extra Styles */
.faq-subhead {
    margin-top: 12px;
}

.faq-risk-list, .faq-premium-list {
    margin-top: 8px;
    padding-left: 20px;
    color: var(--text-secondary);
}

.faq-risk-list li, .faq-premium-list li {
    margin-bottom: 6px;
    font-size: 14px;
}

.faq-warning {
    margin-top: 12px;
    color: var(--g-yellow);
    font-size: 14px;
}

.faq-premium {
    border: 2px solid rgba(255, 214, 102, 0.3) !important;
    background: rgba(255, 214, 102, 0.04) !important;
}

/* Comparison Table */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th, .comparison-table td {
    padding: 10px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    text-align: left;
    font-weight: 500;
    background: var(--bg-alt);
}

.comparison-table th:first-child {
    border-radius: 4px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 4px 0 0;
}

/* Modal Warning */
.modal-warning {
    background: #fce8e6;
    border: 1px solid var(--g-red);
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 20px;
}

.modal-warning p {
    color: var(--g-red);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}