/* ========================================
   Car Wash Minder - Dark Theme
   Inspired by instant.one
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #00142C;
    --bg-secondary: #0C233C;
    --bg-card: #0F2A45;
    --accent: #BAFF30;
    --accent-hover: #A8E82B;
    --accent-dark: #54E424;
    --text-primary: #FFFFFF;
    --text-secondary: #898798;
    --text-muted: #5A5869;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(186, 255, 48, 0.2);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(186, 255, 48, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --container-max: 1200px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 20, 44, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 20, 44, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-btn {
    font-weight: 600 !important;
}

.nav-btn-primary {
    background: var(--accent) !important;
    color: var(--bg-primary) !important;
    padding: 8px 20px !important;
}

.nav-btn-primary:hover {
    background: var(--accent-hover) !important;
}

.nav-btn-secondary {
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
}

.nav-btn-secondary:hover {
    border-color: var(--border-hover) !important;
    background: rgba(186, 255, 48, 0.05) !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(186, 255, 48, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(186, 255, 48, 0.1);
    border: 1px solid rgba(186, 255, 48, 0.2);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(186, 255, 48, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: rgba(186, 255, 48, 0.05);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(186, 255, 48, 0.1);
    border: 1px solid rgba(186, 255, 48, 0.15);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   Wave Dividers
   ======================================== */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
}

/* ========================================
   Features Section - Bento Grid
   ======================================== */
.features {
    position: relative;
    padding: 100px 0 140px;
    background: var(--bg-secondary);
}

/* Bento Grid Layout */
.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-row {
    display: flex;
    gap: 20px;
}

.bento-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.bento-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bento-wide {
    flex: 3;
}

.bento-square {
    flex: 2;
}

.bento-card-inner {
    position: relative;
    z-index: 1;
    flex: 1;
}

.bento-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.bento-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 360px;
}

/* Bento Visuals */
.bento-visual {
    margin-top: auto;
    padding-top: 20px;
}

.bento-visual-center {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

/* Chart visual (Real-Time Monitoring) */
.bento-chart {
    position: relative;
}

.bento-chart-svg {
    width: 100%;
    height: 80px;
}

.bento-chart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(186, 255, 48, 0.1);
    border: 1px solid rgba(186, 255, 48, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    text-align: center;
}

.bento-chart-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.bento-chart-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Facility Inventory visual */
.bento-inv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    max-width: 260px;
}

.bento-inv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
}

.bento-inv-name {
    font-size: 0.55rem;
    color: var(--text-secondary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bento-inv-num {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.bento-inv-num.ok {
    color: #4CAF50;
}

.bento-inv-num.low {
    color: #FFC107;
}

.bento-inv-unit {
    font-size: 0.45rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.bento-inv-status {
    padding: 2px 0;
    border-radius: 3px;
    font-size: 0.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.bento-inv-status.ok {
    background: #4CAF50;
}

.bento-inv-status.low {
    background: #FFC107;
    color: #333;
}

/* Warning Alert Email visual */
.bento-alert-email {
    width: 100%;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.6rem;
}

.bento-alert-email-hdr {
    color: #FF9800;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.bento-alert-email-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.65rem;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.bento-alert-email-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.bento-alert-email-meta span {
    font-size: 0.55rem;
}

.bento-alert-email-meta strong {
    color: var(--text-primary);
    font-size: 0.6rem;
}

.bento-alert-devs-hdr {
    color: #FF9800;
    font-weight: 600;
    font-size: 0.55rem;
    margin-bottom: 4px;
}

.bento-alert-dev-table {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bento-alert-dev-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
    font-size: 0.55rem;
    color: var(--text-secondary);
}

.bento-dev-status {
    font-weight: 700;
    font-size: 0.55rem;
}

.bento-dev-status.high {
    color: #FF4D4D;
}

/* Wash Count Analytics visual */
.bento-wash-analytics {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bento-wash-header {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.bento-wash-total {
    background: linear-gradient(135deg, #1a8a5c, #22c55e);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bento-wash-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.bento-wash-lbl {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.bento-wash-bays {
    display: flex;
    gap: 6px;
    flex: 1;
}

.bento-wash-bay {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bento-wash-bay small {
    display: block;
    font-size: 0.45rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.bento-wash-bay strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bento-pkg-dist {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-pkg-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bento-pkg-name {
    width: 55px;
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-align: right;
}

.bento-pkg-track {
    flex: 1;
    height: 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bento-pkg-bar-fill {
    height: 100%;
    width: var(--w);
    border-radius: 3px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.bento-pkg-count {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-primary);
    width: 16px;
    text-align: right;
}

.bento-pkg-pct {
    font-size: 0.5rem;
    color: var(--text-secondary);
    width: 30px;
}

/* Chart bay tabs */
.bento-chart-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.bento-chart-tab {
    font-size: 0.5rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.bento-chart-tab.active {
    background: var(--accent);
    color: #00142C;
    font-weight: 600;
}

/* Location cards visual (Multi-Location) */
.bento-locations {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-location-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}

.bento-location-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bento-location-card strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bento-location-card span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Shield visual (Security) */
.bento-shield {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bento-shield-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* ========================================
   Screenshots Section
   ======================================== */
.screenshots {
    position: relative;
    padding: 100px 0 140px;
    background: var(--bg-primary);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.screenshots-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all var(--transition);
}

.screenshot-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.screenshot-caption {
    padding: 16px;
}

.screenshot-caption h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.screenshot-caption p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.carousel-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(186, 255, 48, 0.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 22, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--text-primary);
}

#lightbox-caption {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    position: relative;
    padding: 100px 0 140px;
    background: var(--bg-secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    top: 52px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(186, 255, 48, 0.1));
}

.step:last-child .step-connector {
    display: none;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    position: relative;
    padding: 100px 0 140px;
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1;
}

.benefit-icon-wrap {
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Order Section
   ======================================== */
.order {
    position: relative;
    padding: 100px 0 140px;
    background: var(--bg-secondary);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
}

.order-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.order-card-featured {
    border-color: rgba(186, 255, 48, 0.3);
    background: linear-gradient(180deg, rgba(186, 255, 48, 0.03) 0%, var(--bg-card) 100%);
}

.order-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-card-header {
    margin-bottom: 24px;
}

.order-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.order-features {
    list-style: none;
    margin-bottom: 28px;
}

.order-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.order-features li:last-child {
    border-bottom: none;
}

.order-features li svg {
    flex-shrink: 0;
}

.order-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-left: 4px;
}

.order-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--bg-primary);
}

.contact-content {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: left;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--border-hover);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-card a, .contact-card span {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-business, .footer-address {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Modals
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.modal-content-wide {
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-content > p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.modal-content input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition);
    margin-bottom: 16px;
}

.modal-content input[type="email"]:focus {
    border-color: var(--accent);
}

.modal-content input[type="email"]::placeholder {
    color: var(--text-muted);
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.consent-row input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.consent-row label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.consent-row label a {
    color: var(--accent);
    text-decoration: none;
}

.consent-row label a:hover {
    text-decoration: underline;
}

.demo-message {
    text-align: center;
    font-size: 0.85rem;
    min-height: 20px;
    margin-top: 12px;
}

.demo-message.success {
    color: var(--accent);
}

.demo-message.error {
    color: #FF697B;
}

.modal-footer-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.modal-footer-text a {
    color: var(--accent);
    text-decoration: none;
}

/* Limitations */
.limitations-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.limitation-item {
    padding: 16px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.limitation-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.limitation-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet landscape */
@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-connector {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-links {
        gap: 40px;
    }

    .bento-card {
        min-height: 240px;
        padding: 24px;
    }

    .bento-card h3 {
        font-size: 1.1rem;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
        width: 100%;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .features, .screenshots, .how-it-works, .benefits, .order {
        padding: 80px 0 100px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Bento grid becomes horizontally scrollable rows on mobile */
    .bento-row {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }

    .bento-row::-webkit-scrollbar {
        display: none;
    }

    .bento-card {
        min-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
        min-height: 260px;
    }

    .bento-wide {
        min-width: 320px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 400px;
    }

    .contact-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Animations are handled via inline <style> block in HTML */

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feature-card, .benefit-card, .order-card {
        padding: 24px 20px;
    }

    .modal-content {
        padding: 28px 24px;
    }

    .screenshot-item {
        flex: 0 0 260px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}
