/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: #1e293b;
    text-decoration: none;
}

.nav-logo {
    font-size: 28px;
}

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

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f97316;
}

.nav-cta {
    background: #f97316;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.nav-mobile {
    display: none;
}

.nav-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #475569;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><circle cx="500" cy="500" r="400" fill="none" stroke="%23f97316" stroke-width="2"/><circle cx="500" cy="500" r="300" fill="none" stroke="%23f97316" stroke-width="1"/></svg>') center center;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
}

.hero-highlight {
    color: #f97316;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #f97316;
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: white;
    color: #f97316;
    border: 2px solid #f97316;
}

.btn-secondary:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #f97316;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: #f97316;
    background: #f8fafc;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
}

.hero-feature-icon {
    font-size: 16px;
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.mockup-browser {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mockup-header {
    background: #f1f5f9;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-url {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #64748b;
    border: 1px solid #e2e8f0;
    flex: 1;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    text-align: left;
}

.mockup-content {
    display: flex;
    height: 240px;
}

.mockup-sidebar {
    background: #475569;
    width: 140px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mockup-logo {
    padding: 12px 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.mockup-brand {
    color: white;
}

.mockup-nav-item {
    padding: 10px 16px;
    color: #cbd5e1;
    font-size: 13px;
    text-align: left;
}

.mockup-nav-item.active {
    background: #f97316;
    color: white;
}

.mockup-main {
    flex: 1;
    padding: 0;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-tabs-skeleton {
    display: flex;
    padding: 16px 24px;
    gap: 32px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-toolbar-skeleton {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #f8fafc;
}

.mockup-table-skeleton {
    background: white;
    margin: 0 24px 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    flex: 1;
}


.skeleton-table-row {
    display: flex;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.skeleton-table-row:last-child {
    border-bottom: none;
}

/* Skeleton elements */
.skeleton-rect {
    background: #e2e8f0;
    border-radius: 4px;
}

.skeleton-circle {
    background: #e2e8f0;
    border-radius: 50%;
}

.skeleton-rect.small {
    width: 60px;
    height: 16px;
}

.skeleton-rect.medium {
    width: 100px;
    height: 16px;
}

.skeleton-rect.large {
    width: 140px;
    height: 20px;
}

.skeleton-rect.tab {
    width: 60px;
    height: 16px;
}

.skeleton-rect.search {
    width: 180px;
    height: 36px;
}

.skeleton-rect.button {
    width: 100px;
    height: 36px;
    background: #f97316;
    opacity: 0.3;
}

.skeleton-circle {
    width: 32px;
    height: 32px;
}

.skeleton-circle.small {
    width: 28px;
    height: 28px;
}


/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: 16px;
    background: white;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    background: #f8fafc;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .step {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .step-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .step-content .code-snippet,
    .step-content .feature-list {
        margin-top: 0;
    }
}

.step-number {
    width: 48px;
    height: 48px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.code-snippet {
    background: #1e293b;
    color: #e2e8f0;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 14px;
    overflow-x: auto;
    box-sizing: border-box;
    white-space: pre;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    color: #059669;
    font-weight: 500;
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #f97316;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.price-period {
    color: #64748b;
    font-size: 1rem;
}

.pricing-description {
    color: #64748b;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-check {
    color: #10b981;
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f97316;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: white;
    color: #f97316;
}

.cta .btn-primary:hover {
    background: #f8fafc;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-logo {
    font-size: 28px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 14px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: white;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin: 2rem 0 1rem 0;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    color: #475569;
}

.legal-content li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text,
    .hero-visual {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .mockup-browser {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }
    
    .hero-feature {
        justify-content: center;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        margin: 0;
        width: 100%;
        max-width: 100%;
        padding: 24px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .code-snippet {
        font-size: 12px;
        padding: 12px;
        overflow-x: auto;
        white-space: pre;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .mockup-content {
        height: 200px;
    }
    
    .mockup-sidebar {
        width: 120px;
        padding: 12px;
    }
    
    .mockup-logo {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .mockup-nav-item {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .mockup-tabs-skeleton {
        padding: 12px 16px;
        gap: 20px;
    }
    
    .mockup-toolbar-skeleton {
        padding: 12px 16px;
    }
    
    .mockup-table-skeleton {
        margin: 0 16px 12px;
    }
    
    .mockup-main {
        padding: 12px;
    }
    
    .hero-mockup {
        margin-top: 40px;
    }
    
    .mockup-browser {
        max-width: 100%;
        margin: 0;
    }
    
    .mockup-url {
        font-size: 11px;
        padding: 4px 8px;
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mockup-header {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .mockup-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .mockup-header-bar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        width: 100%;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        gap: 12px;
        margin-top: 20px;
    }
    
    .hero-feature {
        padding: 10px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .mockup-content {
        height: 180px;
    }
    
    .mockup-sidebar {
        width: 100px;
        padding: 8px;
    }
    
    .mockup-logo {
        font-size: 10px;
        padding: 8px 10px;
    }
    
    .mockup-nav-item {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .mockup-tabs-skeleton {
        padding: 10px 12px;
        gap: 16px;
    }
    
    .mockup-toolbar-skeleton {
        padding: 10px 12px;
    }
    
    .mockup-table-skeleton {
        margin: 0 12px 10px;
    }
    
    .mockup-url {
        max-width: 100px;
        font-size: 10px;
        padding: 3px 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mockup-header {
        padding: 10px 12px;
        gap: 6px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-feature {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .mockup-content {
        height: 150px;
    }
    
    .mockup-sidebar {
        width: 80px;
    }
    
    .mockup-logo {
        font-size: 8px;
        padding: 6px 8px;
    }
    
    .mockup-nav-item {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .mockup-tabs-skeleton {
        padding: 8px 10px;
        gap: 12px;
    }
    
    .mockup-toolbar-skeleton {
        padding: 8px 10px;
    }
    
    .mockup-table-skeleton {
        margin: 0 10px 8px;
    }
    
    .mockup-url {
        max-width: 80px;
        font-size: 9px;
        padding: 3px 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mockup-header {
        padding: 8px 10px;
        gap: 4px;
    }
    
    .mockup-dots span {
        width: 8px;
        height: 8px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}