:root {
    /* Colors - Dark Mode Default */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-glass: rgba(20, 20, 20, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-red: #e50914;
    /* Netflix-ish red */
    --accent-gradient: linear-gradient(135deg, #ff4b1f 0%, #ff9068 100%);
    --accent-premium: linear-gradient(135deg, #b20a2c 0%, #ff4b1f 100%);
    --card-border: rgba(255, 255, 255, 0.08);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(229, 9, 20, 0.3);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Modern radii & shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --shadow-modal: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    --focus-ring: 0 0 0 3px rgba(229, 9, 20, 0.25);
}

[data-theme="light"] {
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --card-border: rgba(0, 0, 0, 0.05);
    --glass-border: 1px solid rgba(0, 0, 0, 0.05);
    --glow-shadow: 0 0 20px rgba(229, 9, 20, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--accent-premium);
    color: white;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
}

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

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-premium-glow {
    background: var(--accent-premium);
    color: white;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.5), 0 4px 15px rgba(229, 9, 20, 0.4);
    animation: glow-pulse 2.5s ease-in-out infinite;
}

.btn-premium-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(229, 9, 20, 0.7), 0 8px 25px rgba(229, 9, 20, 0.6);
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(229, 9, 20, 0.5), 0 4px 15px rgba(229, 9, 20, 0.4); }
    50% { box-shadow: 0 0 50px rgba(229, 9, 20, 0.8), 0 8px 25px rgba(229, 9, 20, 0.6); }
}

.section-padding {
    padding: 5rem 0;
}

/* FAQ */
.faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 0.9rem 1.2rem;
}

.faq-item summary {
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 700;
}

.faq-item p {
    margin-top: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Page */
.about-section {
    padding-top: 6.5rem;
}

.about-card {
    background: var(--bg-secondary);
    border: var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    border-top: var(--glass-border);
}

.about-card h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 1.25rem;
}

.about-card h2 {
    font-size: 1.45rem;
    margin: 2.25rem 0 0.85rem;
}

.about-card h2:first-of-type {
    margin-top: 0.5rem;
}

.about-card ul {
    margin: 0.75rem 0 1.25rem;
    padding: 0;
}

.about-card li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent-red);
    font-size: 1.25rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-red);
    background: var(--accent-premium);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
}

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

.desktop-only {
    display: flex;
}

/* Profile dropdown (logged in) */
.profile-dropdown {
    position: relative;
}

.profile-dropdown-trigger {
    gap: 0.6rem;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    text-decoration: none;
}

.profile-dropdown-trigger:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.08);
    transform: none;
}

.profile-dropdown-trigger i.fa-chevron-down {
    font-size: 0.75rem;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.profile-dropdown.open .profile-dropdown-trigger i.fa-chevron-down {
    transform: rotate(180deg);
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    min-width: 160px;
    padding: 0.35rem 0;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
    pointer-events: none;
    overflow: hidden;
}

.profile-dropdown.open .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.profile-menu-nav {
    padding: 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.85rem;
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.12s ease;
    text-decoration: none;
    font-family: inherit;
}

.profile-menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.profile-menu-item i {
    width: 0.95rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-menu-logout {
    color: var(--accent-red);
}

.profile-menu-logout i {
    color: var(--accent-red);
}

.profile-menu-logout:hover {
    background: rgba(229, 9, 20, 0.12);
    color: var(--accent-red);
}

.profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.65rem 1.2rem;
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
    text-decoration: none;
    font-family: inherit;
}

.profile-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.profile-dropdown-item i {
    width: 1.1rem;
    color: var(--text-secondary);
}

.profile-dropdown-item.logout:hover {
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent-red);
}

.profile-dropdown-item.logout i {
    color: var(--accent-red);
}

/* Theme Toggle */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(128, 128, 128, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 10%, rgba(229, 9, 20, 0.15), transparent 60%);
    animation: pulse-bg 10s infinite alternate;
    pointer-events: none;
}

@keyframes pulse-bg {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-text .btn-group {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-container {
    position: relative;
    animation: float-3d 6s ease-in-out infinite;
}

@keyframes float-3d {
    0% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(5deg) rotateX(-5deg) translateY(-20px);
    }

    100% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0);
    }
}

.mockup-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: var(--glass-border);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: var(--card-border);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 9, 20, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Features List (used in profile section + pricing) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.features-list li i {
    color: var(--accent-red);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Room Cards */
.room-card {
    background: #000000;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border-color: #333;
}

.room-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #1a1a1a;
}

.room-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-live {
    background: var(--accent-red);
    color: white;
    animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.badge-viewers {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
}

.room-content {
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.room-info {
    flex: 1;
    min-width: 0;
}

.room-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-host {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.room-participants {
    display: flex;
    align-items: center;
}

.participant-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -8px;
    object-fit: cover;
    background: #1a1a1a;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 600;
    overflow: hidden;
}

.participant-avatar:first-child {
    margin-left: 0;
}

.room-viewer-short {
    background: #222;
    color: var(--text-secondary);
    font-size: 0.6rem;
    font-weight: 700;
    padding-left: 4px;
}

.btn-room-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(229, 9, 20, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn-room-action:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
}

.hidden-room {
    display: none;
}

/* Stats */
.stats {
    background: var(--bg-secondary);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: var(--transition-medium);
}

.pricing-card:hover {
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium {
    border-color: rgba(229, 9, 20, 0.4);
    background: linear-gradient(160deg, rgba(229, 9, 20, 0.05) 0%, var(--bg-primary) 60%);
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.1);
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Marquee / Partner logos */
.marquee-section {
    padding: 4rem 0;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1rem 2rem;
}

.partner-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
    opacity: 0.9;
    filter: grayscale(0%) brightness(1);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: var(--bg-secondary);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-modal);
    position: relative;
    animation: modal-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-in {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-red);
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-medium);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav-actions {
    display: none;
}

/* Create Room Modal Avatar Selection */
.avatar-selection {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.avatar-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.avatar-option:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.avatar-option.active {
    opacity: 1;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
    transform: scale(1.1);
}

/* Authentication Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at top, rgba(229, 9, 20, 0.15), transparent 50%);
}

.auth-card {
    background: var(--bg-secondary);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent-red);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-text p {
        max-width: 100%;
    }

    .hero-text .btn-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

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

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

    .stat-item h2 {
        font-size: 2.2rem;
    }

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

    .hero-content[style*="gap: 5rem"] {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.25rem;
    }

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