/* ===================================
   Aokaze Studio - Main Stylesheet
   Professional, Lightweight, Responsive
   =================================== */

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #06b6d4;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary-color: #e2e8f0;
    --accent-color: #22d3ee;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-light: #64748b;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-dark: #020617;
    --border-color: #334155;
    --header-bg: rgba(15, 23, 42, 0.95);
    color-scheme: dark;
}

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

/* Global scale: 16px -> 14px (semua ukuran rem ikut mengecil) */
html {
    font-size: 14px;
}

/* Hide all scrollbars (scrolling still works) */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge legacy */
}

*::-webkit-scrollbar {
    display: none; /* Chrome / Safari / Edge */
    width: 0;
    height: 0;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 9999;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.footer .logo-img {
    height: 52px;
    filter: none;
}

[data-theme="dark"] .logo-img {
    filter: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-socials-item {
    display: none;
}

/* Social Media Round Buttons - Global */
a.nav-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    flex-shrink: 0;
}

a.nav-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer social buttons - slightly different for dark bg */
.footer a.nav-social-link {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.footer a.nav-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding: 7rem 0 3.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: center;
    perspective: 1000px;
    overflow: visible;
}

.hero-content {
    grid-column: 1;
    padding: 2rem 0;
}

.hero-image {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-image .showcase-dots {
    margin-top: 0.25rem;
}

.hero-buttons {
    grid-column: 1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* ===================================
   Showcase / Frame System
   =================================== */

.showcase-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem 0;
}

/* --- Base Frame --- */
.showcase-frame {
    position: relative;
    width: 520px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.showcase-screen {
    overflow: hidden;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    backface-visibility: hidden;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                border 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-screen img,
.showcase-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- MOBILE Frame (Portrait Phone) --- */
.showcase-frame.type-mobile .showcase-screen {
    width: 250px;
    height: 500px;
    border-radius: 32px;
    border: 5px solid var(--secondary-color);
    box-shadow: 
        0 0 0 2px rgba(255,255,255,0.1),
        var(--shadow-xl);
}

.showcase-frame.type-mobile::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- MOBILE LANDSCAPE Frame --- */
.showcase-frame.type-mobile_land .showcase-screen {
    width: 500px;
    height: 250px;
    border-radius: 32px;
    border: 5px solid var(--secondary-color);
    box-shadow: 
        0 0 0 2px rgba(255,255,255,0.1),
        var(--shadow-xl);
}

.showcase-frame.type-mobile_land::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 100px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- DESKTOP Frame (Monitor + Stand) --- */
.showcase-frame.type-desktop .showcase-screen {
    width: 440px;
    height: 275px;
    border-radius: 8px;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-xl);
}

/* Desktop Stand — duduk tepat di border bawah monitor */
.desktop-stand {
    position: absolute;
    width: 120px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 3px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
    pointer-events: none;
    z-index: 1;
}

.showcase-frame.type-desktop .desktop-stand {
    opacity: 1;
    transform: scaleY(1);
    /* Center + half monitor height + border-bottom */
    top: calc(50% + 137.5px + 4px);
    left: 50%;
    margin-left: -60px;
}

/* Neck: 16px lebar, 6px tinggi — nutup border + toleransi rendering */
.desktop-stand::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 2px 2px 0 0;
}

.desktop-stand::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 3px;
}

/* Transisi antar slide */
.showcase-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.showcase-slide.active {
    opacity: 1;
    position: relative;
}

/* Slide-in / Slide-out animation */
.showcase-slide.entering {
    animation: slideIn 0.5s ease forwards;
}

.showcase-slide.exiting {
    animation: slideOut 0.4s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.92) translateY(10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: scale(1) translateY(0); }
    to   { opacity: 0; transform: scale(0.95) translateY(-8px); }
}

/* Navigation dots */
.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.showcase-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.showcase-dot:hover {
    background: var(--primary-light);
}

/* Brand fallback content inside showcase frame */
.showcase-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    gap: 0.75rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.showcase-brand .loading-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: showcaseSpin 0.9s linear infinite;
}

@keyframes showcaseSpin {
    to { transform: rotate(360deg); }
}

.showcase-brand .loading-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 2px;
    font-weight: 400;
}

.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 40px;
    border: 8px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.app-icon {
    font-size: 4rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Legacy phone-content (kept for fallback) */
.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100%;
    padding: 1.5rem;
}

.phone-brand-text {
    margin-bottom: 0.5rem;
}

.phone-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.phone-sub {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 4.5rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

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

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 4.5rem 0;
    background: var(--bg-secondary);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.1rem;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.75rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.25rem;
    margin-bottom: 1.75rem;
}

.footer-brand .logo {
    margin-bottom: 0.85rem;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    color: white;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-contact ul li i {
    flex-shrink: 0;
    width: 1.25em;
    text-align: center;
    color: var(--text-light);
}

.footer-contact ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

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

/* Theme Switch Bar - Above Footer Bottom */
.footer-theme-bar {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
}

.theme-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.theme-switch input[type="checkbox"] {
    display: none;
}

.switch-slider {
    width: 42px;
    height: 23px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.switch-slider::after {
    content: '';
    position: absolute;
    top: 2.5px;
    left: 2.5px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.theme-switch input:checked + .switch-slider {
    background: var(--primary-color);
}

.theme-switch input:checked + .switch-slider::after {
    transform: translateX(19px);
}

.theme-switch .fa-sun,
.theme-switch .fa-moon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.theme-switch .fa-sun.active-icon,
.theme-switch .fa-moon.active-icon {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 13px;
    }
    
    .mobile-menu-btn {
        display: flex;
        margin-right: 0.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 74px;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 74px);
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: transform 0.3s ease;
        overflow-y: auto;
        gap: 0.25rem;
        transform: translateX(100%);
        z-index: 9999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-lg);
        font-size: 0.9rem;
        width: 100%;
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        margin-right: 1rem;
        flex-shrink: 0;
        color: var(--primary-color);
    }
    
    .nav-socials-item {
        display: block;
        margin-top: auto;
        list-style: none;
        width: 100%;
    }
    
    .nav-socials {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }
    

    
    /* Sidebar overlay - fade in/out */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Update z-index stacking */
    .nav-menu {
        z-index: 9999;
    }
    
    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-buttons {
        order: 3;
        justify-content: center;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0;
    }
    
    .showcase-frame.type-mobile .showcase-screen {
        width: 220px;
        height: 440px;
    }
    
    .showcase-frame.type-mobile_land .showcase-screen {
        width: 440px;
        height: 220px;
    }
    
    .showcase-frame.type-desktop .showcase-screen {
        width: 330px;
        height: 206px;
    }
    
    .showcase-frame.type-mobile::before,
    .showcase-frame.type-mobile_land::before {
        display: none;
    }
    
    .showcase-frame {
        width: 100%;
        max-width: 460px;
        height: 460px;
    }
    
    .showcase-frame.type-desktop .desktop-stand {
        top: calc(50% + 103px + 4px);
        width: 90px;
        margin-left: -45px;
    }
    
    .showcase-frame.type-desktop .desktop-stand::after {
        width: 130px;
    }
    
    .showcase-dots {
        margin-top: 0.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .showcase-frame.type-mobile .showcase-screen {
        width: 180px;
        height: 360px;
    }
    
    .showcase-frame.type-mobile_land .showcase-screen {
        width: 360px;
        height: 180px;
    }
    
    .showcase-frame.type-desktop .showcase-screen {
        width: 260px;
        height: 162px;
    }
    
    .showcase-frame.type-mobile::before,
    .showcase-frame.type-mobile_land::before {
        display: none;
    }
    
    .showcase-frame {
        width: 100%;
        max-width: 380px;
        height: 380px;
    }
    
    .showcase-frame.type-desktop .desktop-stand {
        top: calc(50% + 81px + 4px);
        width: 72px;
        margin-left: -36px;
    }
    
    .showcase-frame.type-desktop .desktop-stand::after {
        width: 110px;
    }
    
    .showcase-dots {
        margin-top: 0.1rem;
    }
    
    .feature-card {
        padding: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Intro Overlay - GSAP Animation */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

[data-theme="dark"] .intro-overlay {
    background: #0f172a;
}

.intro-content {
    text-align: center;
    opacity: 0;
    transform: scale(0.92);
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--font-family);
    line-height: 1.1;
}

[data-theme="dark"] .intro-title {
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-tagline {
    font-size: 0.9rem;
    color: #64748b;
    font-family: var(--font-family);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

[data-theme="dark"] .intro-tagline {
    color: #94a3b8;
}

/* Phone Screen Content */
.phone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    height: 100%;
    padding: 1.5rem;
}

.phone-brand-text {
    margin-bottom: 0.5rem;
}

.phone-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.phone-sub {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header, .cta, .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
