/* ============================================================
   RENTIT LANDING PAGE STYLES
   RentIt - Videoke Rental Management System
   Powered by Innovator Crews
   
   NOTE: All color variables are inherited from theme.css
   This file only defines structural/layout variables
   ============================================================ */

/* ============================
   STRUCTURAL VARIABLES ONLY
   (Colors come from theme.css)
   ============================ */
:root {
    /* Structural - these don't change with theme */
    --container-width: 1140px;
    --gutter: 20px;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Shadows - these are defined in theme.css but can be overridden */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================
   BASE RESET
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Fluid container for dashboard/admin pages */
.container-fluid {
    width: var(--container-width-fluid);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Auth container for login/register pages */
.container-auth {
    max-width: var(--container-width-auth);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ============================
   ANIMATIONS KEYFRAMES
   ============================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes equalize {
    0%,
    100% {
        transform: scaleY(0.35);
        opacity: 0.75;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================
   BUTTONS
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent);
    color: var(--section-title);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.35);
}

.btn-outline {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--brand-primary-light);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    position: relative;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* ============================
   HEADER / NAVBAR
   ============================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--landing-nav-surface);
    border-bottom: 1px solid var(--landing-border-soft);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    animation: fadeInDown 0.5s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 20px;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 10px;
}

.brand:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.6);
}

.logo-drawer {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--landing-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-drawer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-weight: 700;
    font-size: 20px;
    color: var(--heading-primary);
}

.brand-name .accent {
    color: var(--accent);
}

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nav-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 9px 14px;
    border-radius: 999px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    width: calc(100% - 28px);
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scaleX(0.3);
    transform-origin: center;
    opacity: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--hero-top);
    background: rgba(255, 255, 255, 0.95);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-link.active {
    box-shadow: inset 0 0 0 1px var(--landing-accent-tint-30);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: var(--brand-primary);
    font-size: 24px;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger:hover {
    color: var(--accent);
    background: var(--landing-accent-tint-12);
    border-radius: 10px;
}

/* ============================
   MOBILE NAV
   ============================ */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--landing-nav-surface-mobile);
    padding: 16px;
    border-bottom: 1px solid var(--landing-border-soft);
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    transition: var(--transition);
    z-index: 99;
}

.mobile-nav.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: slideDown 0.3s ease;
}

/* Backdrop blur when mobile nav is open */
body:has(.mobile-nav.open) {
    position: relative;
}

body:has(.mobile-nav.open)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mobile-link {
    display: block;
    padding: 14px 16px;
    color: var(--brand-primary);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.mobile-link:hover {
    background: var(--landing-accent-tint-12);
    padding-left: 24px;
}

.mobile-link.active {
    background: var(--landing-accent-tint-20);
    color: var(--hero-top);
    border-left: 3px solid var(--accent);
    padding-left: 21px;
}

.mobile-link.active::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.mobile-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    background: var(--landing-bg-dark);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient mesh */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, var(--landing-accent-tint-20) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, var(--landing-accent-tint-12) 0%, transparent 35%),
        radial-gradient(circle at 60% 80%, rgba(20, 33, 61, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 40% 30%, var(--landing-accent-tint-8) 0%, transparent 50%);
    animation: heroMesh 12s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Floating accent orb */
.hero::after {
    content: '';
    position: absolute;
    right: 8%;
    top: 12%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--landing-accent-tint-20) 0%, rgba(252, 163, 17, 0) 70%);
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroMesh {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-2%, -1%) rotate(3deg); }
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pill {
    display: inline-block;
    background: var(--landing-accent-tint-12);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid var(--landing-accent-tint-30);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--landing-text-on-dark-primary);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-title .accent {
    color: var(--accent);
    position: relative;
}

.hero-sub {
    font-size: 18px;
    color: var(--landing-text-on-dark-secondary);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-soundline {
    margin: 32px auto 18px;
    width: min(340px, 86%);
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    align-items: end;
    gap: 8px;
    opacity: 0.95;
}

.hero-soundline span {
    height: 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(252, 163, 17, 0.95) 0%, rgba(252, 163, 17, 0.2) 100%);
    transform-origin: bottom;
    animation: equalize 1.3s ease-in-out infinite;
}

.hero-soundline span:nth-child(2n) {
    animation-duration: 1.1s;
}

.hero-soundline span:nth-child(3n) {
    animation-duration: 1.6s;
}

.hero-meta {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(720px, 100%);
}

.hero-meta-item {
    border: 1px solid var(--landing-surface-glass-border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 12px 14px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.hero-meta-item strong {
    display: block;
    color: var(--landing-text-on-dark-primary);
    font-size: 16px;
    letter-spacing: 0.02em;
}

.hero-meta-item span {
    display: block;
    margin-top: 2px;
    color: var(--landing-text-on-dark-secondary);
    font-size: 12px;
}

.hero-cta .btn-outline {
    background: var(--landing-surface-glass);
    border-color: var(--landing-surface-outline);
    color: var(--landing-text-on-dark-primary);
}

.hero-cta .btn-outline:hover {
    background: var(--landing-surface-glass-hover);
    border-color: var(--landing-surface-glass-border-strong);
}

/* ============================
   WAVE DIVIDERS
   ============================ */
.wave-divider {
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.wave-divider svg {
    width: calc(100% + 2px);
    height: 80px;
    display: block;
    margin-left: -1px;
}

.wave-dark-to-light {
    background: var(--landing-bg-light);
}

.wave-light-to-dark {
    background: var(--landing-bg-light);
}

.wave-dark-to-orange {
    background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.wave-divider.wave-dark-to-orange svg {
    height: 56px;
}

.wave-light-to-dark::after,
.wave-dark-to-orange::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 16px;
    pointer-events: none;
}

.wave-light-to-dark::after {
    background: linear-gradient(180deg, rgba(20, 33, 61, 0) 0%, rgba(20, 33, 61, 0.26) 100%);
}

.wave-dark-to-orange::after {
    background: linear-gradient(180deg, rgba(252, 163, 17, 0) 0%, var(--landing-accent-tint-20) 100%);
}

/* ============================
   CHOOSE MACHINE SECTION
   ============================ */
.choose {
    background: var(--landing-bg-light);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(20, 33, 61, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.choose .container {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 12px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--brand-primary-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
}

.section-kicker::before {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
}

.section-kicker-dark {
    color: var(--landing-text-on-dark-secondary);
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--section-title);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--section-text);
}

/* Tabs */
.tabs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Machine Cards Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--tab-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.card-featured {
    border-color: var(--landing-accent-tint-30);
    box-shadow: 0 14px 38px rgba(20, 33, 61, 0.14);
}

.card-featured .card-media {
    background: linear-gradient(180deg, rgba(252, 163, 17, 0.06) 0%, rgba(252, 163, 17, 0) 100%);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--landing-accent-tint-12);
    color: var(--accent-hover);
    border: 1px solid var(--landing-accent-tint-30);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 12px;
}

.card:hover .card-media img {
    transform: scale(1.05);
}

.card-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: transparent;
    padding: 12px;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--card-title);
}

.card-subtitle {
    font-size: 13px;
    color: var(--card-text);
    margin-bottom: 16px;
}

.card-price {
    text-align: right;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}

.price-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.card-specs {
    margin-bottom: 20px;
    flex: 1;
}

.card-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--card-text);
    font-size: 14px;
}

.card-specs li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.card-footer {
    margin-top: auto;
}

.card-footer .btn {
    width: 100%;
}

/* ============================
   PRICING HIGHLIGHTS SECTION
   ============================ */
.pricing-section {
    background: var(--landing-bg-dark);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.pricing-section::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--landing-accent-tint-12) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--landing-accent-tint-8) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

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

.pricing-header .section-title {
    color: var(--landing-text-on-dark-primary);
}

.pricing-header .section-subtitle {
    color: var(--landing-text-on-dark-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pricing-card {
    background: var(--landing-surface-glass);
    border: 1px solid var(--landing-surface-glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(8px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
    background: var(--landing-surface-glass-hover);
}

.pricing-card.featured {
    border: 2px solid var(--landing-accent-tint-50);
    background: var(--landing-accent-tint-8);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--landing-accent-tint-20);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-name {
    font-size: 21px;
    color: var(--landing-text-on-dark-primary);
    margin-bottom: 8px;
}

.pricing-rate {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
}

.pricing-rate span {
    font-size: 14px;
    font-weight: 500;
    color: var(--landing-text-on-dark-muted);
}

.pricing-list li {
    font-size: 14px;
    color: var(--landing-text-on-dark-secondary);
    padding: 8px 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.pricing-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 800;
}

.service-points {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-point {
    background: var(--landing-surface-glass);
    border: 1px solid var(--landing-surface-glass-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--landing-text-on-dark-secondary);
}

/* ============================
   STATS SECTION
   ============================ */
.stats {
    background: var(--landing-stats-gradient);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.stat {
    text-align: center;
    padding: 20px 16px;
    border-radius: 16px;
    border: 1px solid rgba(20, 33, 61, 0.16);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.12);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.26);
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--landing-text-on-dark-primary);
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-label {
    font-size: 14px;
    color: rgba(20, 33, 61, 0.88);
    font-weight: 600;
}

/* ============================
   CONTACT TEASER SECTION
   ============================ */
.contact-teaser {
    padding: 72px 0;
    background: var(--landing-bg-light);
    position: relative;
    overflow: hidden;
}

.contact-teaser::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, var(--landing-accent-tint-12) 0%, transparent 38%),
        radial-gradient(circle at 88% 78%, rgba(20, 33, 61, 0.07) 0%, transparent 34%);
    pointer-events: none;
}

.contact-teaser-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

.contact-teaser-copy,
.contact-teaser-cards {
    border-radius: 20px;
    border: 1px solid var(--landing-border-soft);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.contact-teaser-copy {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96) 0%, rgba(229, 229, 229, 0.9) 100%);
    padding: 32px;
}

.contact-teaser-pill {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--brand-primary);
    background: var(--landing-accent-tint-20);
    border: 1px solid var(--landing-accent-tint-30);
    margin-bottom: 12px;
}

.contact-teaser-title {
    font-size: clamp(28px, 3.7vw, 40px);
    line-height: 1.1;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 12px;
}

.contact-teaser-subtitle {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 22px;
}

.contact-teaser-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-teaser-actions .btn {
    min-width: 210px;
}

.contact-teaser-cards {
    background: var(--landing-card-gradient-dark);
    padding: 24px;
    display: grid;
    gap: 12px;
}

.teaser-card {
    background: var(--landing-surface-glass);
    border: 1px solid var(--landing-surface-glass-border-strong);
    border-radius: 14px;
    padding: 18px;
}

.teaser-card h4 {
    color: var(--landing-text-on-dark-primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.teaser-card p {
    color: var(--landing-text-on-dark-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* ============================
   CTA SECTION - LOGIN/REGISTER
   ============================ */
.cta-section {
    padding: 80px 0;
    background: var(--landing-bg-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, var(--landing-accent-tint-8) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 33, 61, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.cta-card {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(20, 33, 61, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--landing-accent-tint-20) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--landing-text-on-dark-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--landing-text-on-dark-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 160px;
}

.cta-actions .btn-outline {
    background: transparent;
    border: 2px solid var(--landing-surface-outline);
    color: var(--landing-text-on-dark-primary);
}

.cta-actions .btn-outline:hover {
    background: var(--landing-surface-glass-hover);
    border-color: var(--landing-surface-glass-border-strong);
}

.cta-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--landing-text-on-dark-secondary);
    font-size: 14px;
    font-weight: 500;
}

.cta-benefit svg {
    stroke: var(--accent);
    flex-shrink: 0;
}

.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 120px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--landing-bg-dark);
    padding: 48px 0 24px;
    border-top: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
}

.footer-brand {
    display: flex;
    gap: 16px;
}

.footer-brand .logo-drawer {
    width: 56px;
    height: 56px;
}

.brand-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--landing-text-on-dark-primary);
    margin-bottom: 8px;
}

.brand-sub {
    font-size: 13px;
    color: var(--landing-text-on-dark-secondary);
    line-height: 1.5;
    max-width: 280px;
}

.powered-by {
    font-size: 12px;
    color: var(--landing-text-on-dark-subtle);
    margin-top: 12px;
}

.powered-by a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition-fast);
}

.powered-by a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--landing-surface-glass);
    border: 1px solid var(--landing-surface-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-on-dark-primary);
    transition: var(--transition);
}

.social:hover {
    background: var(--accent);
    color: var(--brand-primary);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.social svg {
    width: 18px;
    height: 18px;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--landing-text-on-dark-primary);
    margin-bottom: 18px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--landing-text-on-dark-secondary);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-divider {
    height: 1px;
    background: var(--landing-surface-glass-border);
    margin: 0 auto;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: var(--landing-text-on-dark-muted);
    margin-bottom: 10px;
}

.policy-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.policy-link {
    font-size: 13px;
    color: var(--landing-text-on-dark-subtle);
    transition: var(--transition);
}

.policy-link:hover {
    color: var(--landing-text-on-dark-primary);
}

/* ============================
   WIP PAGE STYLES
   ============================ */
.wip-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--hero-top) 0%, var(--nav-primary) 100%);
    padding: 60px 20px;
    text-align: center;
}

.wip-content {
    max-width: 600px;
    animation: fadeInUp 0.6s ease;
}

.wip-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: var(--landing-accent-tint-12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.wip-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--accent);
}

.wip-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.wip-title .accent {
    color: var(--accent);
}

.wip-description {
    font-size: 18px;
    color: var(--landing-text-on-dark-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.wip-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.progress-bar {
    margin-top: 40px;
    background: var(--landing-surface-glass-hover);
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 999px;
    width: 35%;
    animation: shimmer 2s infinite linear;
    background-size: 200% 100%;
}

.progress-label {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-featured {
        transform: translateY(-4px);
    }

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .wave-divider svg {
        height: 50px;
    }

    .wave-divider.wave-dark-to-orange svg {
        height: 38px;
    }

    .pricing-section,
    .cta-section {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-soundline {
        width: min(280px, 86%);
        gap: 6px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        width: min(420px, 100%);
    }

    .tabs-row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .card-media {
        height: 180px;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .contact-teaser-inner {
        grid-template-columns: 1fr;
    }

    .contact-teaser-actions {
        flex-direction: column;
    }

    .contact-teaser-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-visual {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .notification-dropdown {
        width: 280px;
        right: -60px;
    }

    .wip-title {
        font-size: 28px;
    }

    .wip-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-soundline span {
        height: 15px;
    }

    .stat-num {
        font-size: 26px;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .wip-actions {
        flex-direction: column;
    }

    .wip-actions .btn {
        width: 100%;
    }

    /* Mobile Container Responsiveness */
    .container-fluid {
        width: calc(100% - 20px);
    }

    /* Force grid stacking on mobile */
    .content-grid,
    .contact-grid,
    .legal-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Sidebar drops below main content */
    .content-sidebar {
        order: -1;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .container-fluid {
        width: calc(100% - 30px);
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-content {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
        margin-bottom: 1.5rem;
    }
}
