/* ========================================
   TattooLink Website - Matching App Design
   Colors from: constants/colors.ts
   ======================================== */

:root {
    /* Colors - Same as App */
    --background: #0a0a0a;
    --background-secondary: #1a1a1a;
    --background-tertiary: #2a2a2a;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --text: #FFFFFF;
    --text-secondary: #ADADAD;
    --text-tertiary: #707070;
    --border: #333333;
    --border-light: #404040;
    --success: #4CAF50;
    --error: #F44336;
    --warning: #FF9800;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 20px;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-title {
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 1.9rem;
}

.logo-title .gold {
    font-weight: 700;
}

.logo-divider {
    width: 70px;
    height: 1px;
    background: var(--gold);
    margin-left: 52px;
}

.logo img {
    height: 58px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-nav) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--gold);
}

.nav-links a:not(.btn-nav).active {
    color: var(--gold);
}

.nav-links a:not(.btn-nav).active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.btn-nav {
    display: inline-block;
    background: var(--gold) !important;
    color: var(--background) !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700 !important;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}

.language-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--gold);
    color: var(--background);
    border-color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.mobile-lang-switch {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-buttons .btn img {
    height: 52px;
    width: auto;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
}

.store-btn:hover {
    text-decoration: none !important;
}

.coming-soon {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--background);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    margin-top: 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.available-now {
    display: block;
    text-align: center;
    background: #22c55e;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    margin-top: 8px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: pulseGreenBadge 1.5s ease-in-out infinite;
}

@keyframes pulseGreenBadge {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); 
    }
    50% { 
        box-shadow: 0 0 12px 4px rgba(34, 197, 94, 0.4); 
    }
}

.store-status {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    text-align: left;
}

/* Waitlist Section */
.waitlist-section {
    margin-top: 32px;
    margin-bottom: 24px;
    max-width: 480px;
}

.waitlist-title {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.waitlist-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.waitlist-input::placeholder {
    color: var(--text-secondary);
}

.waitlist-btn {
    padding: 14px 28px;
    background: var(--gold);
    color: var(--background);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.waitlist-btn:hover {
    background: #c9a030;
    transform: translateY(-2px);
}

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.waitlist-count {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.waitlist-message {
    margin-top: 8px;
    font-size: 0.9rem;
    min-height: 20px;
}

.waitlist-message.success {
    color: #4ade80;
}

.waitlist-message.error {
    color: #f87171;
}

.waitlist-consent {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.waitlist-consent a {
    color: var(--gold);
    text-decoration: underline;
}

#store-badges {
    scroll-margin-top: 120px;
}

.hero-buttons.highlight .store-btn {
    animation: badgeGlow 1.5s ease-in-out;
}

@keyframes badgeGlow {
    0% { filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)); }
    50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); }
    100% { filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0)); }
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: var(--background-secondary);
    border-radius: 40px;
    border: 8px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.phone-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-image > .carousel-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 12px;
    padding: 0 10px;
    min-height: 24px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 100px 0;
    background: var(--background);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.features-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--background-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    min-height: 120px;
    align-items: center;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   How it Works Section
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--background-secondary);
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.how-block {
    margin-bottom: 60px;
}

.how-block:last-child {
    margin-bottom: 0;
}

.how-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--background);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    background: var(--gold);
    color: var(--background);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   App Preview Section
   ======================================== */
.app-preview {
    padding: 100px 0;
    background: var(--background);
}

.preview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preview-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.preview-tabs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 400px;
}

.preview-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 24px;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}

.preview-tab:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.preview-tab.active {
    border-color: var(--gold);
    border-width: 2px;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.preview-tab.active::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.8;
}

.tab-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    stroke: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.preview-tab.active .tab-icon {
    opacity: 1;
    transform: scale(1.1);
}

.tab-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.preview-tab.active .tab-title {
    color: var(--gold);
    font-weight: 700;
}

.tab-desc {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.4;
    padding-right: 30px;
}

.tap-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 8px;
    opacity: 0.7;
}

.preview-phone {
    flex-shrink: 0;
}

.phone-frame-large {
    width: 320px;
    height: 650px;
    background: #000000;
    border: 3px solid #333;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 2px #1a1a1a;
    position: relative;
    overflow: hidden;
}

.phone-notch-large {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.preview-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 35px;
    opacity: 0;
    position: absolute;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    transition: opacity 0.4s ease;
}

.preview-screen.active {
    opacity: 1;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 100px 0;
}

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

.faq-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
    background: #1f1f1f;
}

.faq-item.active {
    border-color: var(--gold);
    background: #1f1f1f;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    min-height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 28px 24px;
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 48px 0 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 4px 0 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.footer-social a {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:first-child svg {
    stroke: #9a9a9a;
    fill: none;
    transition: stroke 0.3s ease;
}

.footer-social a:last-child svg {
    fill: #9a9a9a;
    stroke: none;
    transition: fill 0.3s ease;
}

.footer-social a:first-child:hover svg {
    stroke: #d4af37;
}

.footer-social a:last-child:hover svg {
    fill: #d4af37;
}

.footer-social a:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.footer-email {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    margin-top: 8px;
}

.footer-email a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--gold);
}

/* Footer Business Info */
.footer-business {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-business-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-business-text {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-business-text strong {
    color: var(--text-secondary);
}

.footer-business-contact {
    color: var(--text-tertiary);
    font-size: 0.75rem;
    margin-top: 12px;
}

.footer-business-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-business-contact a:hover {
    color: var(--gold);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        order: -1;
    }

    .mobile-download-btn {
        display: flex;
        grid-column: 1 / -1;
        order: -2;
        justify-content: center;
        margin: 20px 0;
    }

    .mobile-download-btn .btn-download {
        background: var(--gold);
        color: var(--background);
        padding: 14px 32px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }

    .waitlist-section {
        display: block !important;
        text-align: center;
        margin: 24px auto;
    }

    .store-status {
        text-align: center;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

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

    .section-title {
        font-size: 2rem;
    }

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

    .preview-content {
        gap: 50px;
    }

    .preview-tabs {
        max-width: 350px;
    }

    .phone-frame-large {
        width: 280px;
        height: 570px;
    }
}

/* Mobile download button - hidden by default, shown on mobile */
.mobile-download-btn {
    display: none;
}

@media (max-width: 768px) {
    .preview-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .preview-tabs {
        max-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .preview-tab {
        flex: 1;
        min-width: 140px;
        max-width: 48%;
        padding: 16px;
        align-items: center;
        text-align: center;
    }

    .preview-tab.active {
        background: var(--gold);
    }

    .preview-tab.active .tab-title {
        color: var(--background);
    }

    .preview-tab.active .tab-icon {
        color: var(--background);
        stroke: var(--background);
    }

    .preview-tab.active::after {
        display: none;
    }

    .tab-desc {
        display: none;
    }

    .phone-frame-large {
        width: 260px;
        height: 530px;
    }

    /* Waitlist Mobile Styles */
    .waitlist-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 24px;
        margin-bottom: 20px;
        max-width: 100%;
        padding: 0 16px;
    }

    .waitlist-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 10px;
    }

    .waitlist-input {
        width: 100%;
        min-width: unset;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        background: var(--background-secondary);
        border: 1px solid var(--border);
        color: var(--text);
    }

    .waitlist-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .waitlist-consent {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        padding: 80px 24px 40px;
        gap: 0;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 999;
        display: flex;
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 18px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
    }

    .nav-links a.btn-nav {
        border-bottom: none;
        margin-top: 20px;
        text-align: center;
        background: var(--gold);
        color: var(--background);
        padding: 16px 24px;
        border-radius: 8px;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-links a:last-child:hover {
        background: #c9a030;
        color: var(--background);
    }

    .language-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .mobile-lang-switch .lang-btn {
        padding: 10px 20px;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text-secondary);
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .mobile-lang-switch .lang-btn.active {
        background: var(--gold);
        color: var(--background);
        border-color: var(--gold);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .hero-stats .stat {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-align: center;
        width: 200px;
    }

    .stat-number {
        font-size: 1.1rem;
        white-space: nowrap;
        min-width: 80px;
        text-align: right;
    }

    .stat-label {
        font-size: 0.85rem;
        min-width: 100px;
        text-align: left;
    }

    .phone-mockup {
        width: 200px;
        height: 410px;
    }

    .hero-image {
        margin-bottom: 10px;
    }

    .mobile-download-btn {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .mobile-download-btn .btn-download {
        background: var(--gold);
        color: var(--background);
        padding: 14px 32px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    }

    .mobile-download-btn .btn-download:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    }
}
