/* ============================================
   MENÚDIGITAL — Landing Page Premium
   style.css — Diseño completo con glassmorphism,
   animaciones avanzadas y responsive design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary */
    --primary: #ff5e00;
    --primary-light: #ff8a3d;
    --primary-dark: #cc4b00;
    --primary-glow: rgba(255, 94, 0, 0.3);

    /* Neutrals */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --bg-glass: rgba(18, 18, 26, 0.7);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b80;

    /* Success/Error */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff5e00 0%, #ff9068 100%);
    --gradient-accent: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    --gradient-text: linear-gradient(135deg, #ff5e00 0%, #ff9068 50%, #fbbf24 100%);
    --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                     radial-gradient(ellipse at 50% 100%, rgba(255, 144, 104, 0.08) 0%, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --container-max: 1200px;
    --section-py: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

input, select, textarea {
    font-family: inherit;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted {
    color: var(--text-muted);
}

.text-strikethrough {
    position: relative;
    display: inline-block;
}

.text-strikethrough::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 3px;
    background: var(--error);
    transform: rotate(-3deg);
    border-radius: 2px;
}

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

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.15rem;
    border-radius: 16px;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 8px 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-icon {
    font-size: 1.5rem;
}

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

.navbar-links {
    display: none;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
        gap: 24px;
    }

    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-secondary);
        transition: color var(--transition-fast);
    }

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

/* Mobile nav */
.navbar-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border-medium);
    animation: slideDown 0.3s ease-out;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Background effects */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.15;
    top: -100px;
    left: -100px;
}

.hero-gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    opacity: 0.1;
    bottom: -50px;
    right: -100px;
    animation-delay: -7s;
}

.hero-gradient-orb-3 {
    width: 300px;
    height: 300px;
    background: #f59e0b;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

@media (min-width: 1024px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
}

/* Hero Content */
.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin-left: 0;
    }
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .stat-item {
        align-items: flex-start;
    }
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

/* ============================================
   HERO DEMO (Interactive)
   ============================================ */
.hero-demo {
    display: flex;
    justify-content: center;
}

.demo-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

@media (min-width: 768px) {
    .demo-container {
        flex-direction: row;
        align-items: stretch;
    }
}

@media (min-width: 1024px) {
    .demo-container {
        gap: 32px;
    }
}

/* Admin Panel */
.admin-panel {
    flex: 1;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 768px) {
    .admin-panel {
        max-width: 360px;
    }
}

.admin-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }

.admin-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.admin-body {
    padding: 16px;
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-medium) transparent;
}

.admin-body::-webkit-scrollbar {
    width: 4px;
}

.admin-body::-webkit-scrollbar-track {
    background: transparent;
}

.admin-body::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 4px;
}

.admin-section {
    margin-bottom: 20px;
}

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

.admin-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.admin-control {
    margin-bottom: 16px;
}

.admin-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-label-hint {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(255, 94, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Color picker */
.color-picker-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.color-input {
    width: 40px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
    padding: 0;
}

.color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-input::-webkit-color-swatch {
    border: 2px solid var(--border-medium);
    border-radius: 6px;
}

.color-presets {
    display: flex;
    gap: 6px;
}

.color-preset {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.color-preset:hover {
    transform: scale(1.1);
}

.color-preset.active {
    border-color: white;
    box-shadow: 0 0 0 2px var(--primary);
}

/* Toggle */
.toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.toggle-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--border-medium);
    border-radius: 24px;
    transition: all var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: all var(--transition-base);
}

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

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

/* Card style selector */
.card-style-selector {
    display: flex;
    gap: 8px;
}

.card-style-btn {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-fast);
}

.card-style-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.card-style-btn.active {
    background: rgba(255, 94, 0, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.card-style-icon {
    font-size: 1.2rem;
}

/* Tag selector */
.tag-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-chip {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0.4;
}

.tag-chip:hover, .tag-chip.active {
    opacity: 1;
    transform: scale(1.05);
}

/* QR color row */
.qr-color-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-color-input {
    width: 36px;
    height: 36px;
}

/* ============================================
   PHONE MOCKUP
   ============================================ */
.phone-mockup {
    flex-shrink: 0;
    width: 280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .phone-mockup {
        width: 260px;
    }
}

@media (min-width: 1024px) {
    .phone-mockup {
        width: 280px;
    }
}

.phone-frame {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.phone-time {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.phone-screen {
    background: #111;
    border-radius: 24px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .phone-screen {
        height: 560px;
    }
}

.phone-home-bar {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin: 8px auto 0;
}

/* Phone content */
#phoneContent {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
}

#phoneContent::-webkit-scrollbar {
    display: none;
}

/* Phone header */
.phone-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 36px 16px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 5;
}

.phone-logo-placeholder {
    font-size: 1.5rem;
}

.phone-title {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Phone banner */
.phone-banner {
    background: rgba(255, 94, 0, 0.15);
    padding: 8px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-light);
    text-align: center;
    display: none;
}

.phone-banner.visible {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Phone categories */
.phone-categories {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.phone-categories::-webkit-scrollbar {
    display: none;
}

.phone-cat-btn {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-secondary);
    cursor: default;
}

.phone-cat-btn.active {
    background: var(--primary);
    color: white;
}

/* Phone products */
.phone-products {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.phone-product.list-style {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

.phone-product-image {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-product.list-style .phone-product-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
}

.phone-product-image-placeholder {
    font-size: 2.5rem;
    opacity: 0.8;
}

.phone-product-badges {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-offer {
    background: #ef4444;
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    display: none;
}

.badge-offer.visible {
    display: inline-block;
    animation: badgePop 0.3s ease-out;
}

.badge-timer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    display: none;
}

.badge-timer.visible {
    display: inline-block;
    animation: badgePop 0.3s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.phone-product-info {
    padding: 10px;
}

.phone-product-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.product-tags-inline {
    display: flex;
    gap: 3px;
}

.product-tag-inline {
    font-size: 0.5rem;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 700;
}

.product-tag-inline.tag-nuevo {
    background: #10b981;
    color: white;
}

.product-tag-inline.tag-popular {
    background: #f59e0b;
    color: white;
}

.phone-product-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.phone-product-old-price {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: none;
}

.phone-product-old-price.visible {
    display: inline;
}

.phone-product-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.phone-product-timer {
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    display: none;
}

.phone-product-timer.visible {
    display: inline;
}

.phone-product-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Phone reviews preview */
.phone-reviews-preview {
    padding: 12px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.phone-reviews-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phone-reviews-count {
    background: var(--primary);
    color: white;
    font-size: 0.55rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 800;
}

.phone-review-mini {
    display: flex;
    gap: 8px;
    align-items: center;
}

.phone-review-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-review-text {
    flex: 1;
    min-width: 0;
}

.phone-review-text strong {
    font-size: 0.65rem;
    display: block;
}

.phone-review-text p {
    font-size: 0.55rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Phone closed screen */
.phone-closed-screen {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-closed-content {
    text-align: center;
    padding: 24px;
}

.phone-closed-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.phone-closed-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.phone-closed-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.phone-closed-btn {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: default;
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.proof-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
}

.proof-icon {
    font-size: 1.2rem;
}

.proof-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.section-badge-accent {
    background: rgba(255, 94, 0, 0.1);
    border-color: rgba(255, 94, 0, 0.2);
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 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: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problem-solution {
    padding: var(--section-py) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-base);
}

.problem-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.problem-cost {
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cost-amount {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--error);
    margin-bottom: 4px;
}

.cost-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Solution Arrow */
.solution-arrow {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
}

.solution-arrow-line {
    width: 60px;
    height: 3px;
    background: var(--success);
    border-radius: 3px;
    margin: 0 auto 16px;
}

.solution-arrow-icon {
    font-size: 2rem;
    color: var(--success);
    margin-bottom: 16px;
}

.solution-arrow-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--success);
}

.solution-arrow-text p {
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: var(--section-py) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
    .feature-card-lg {
        grid-column: span 2;
    }
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 94, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.feature-visual {
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

/* Carousel visual */
.feature-visual-carousel .carousel-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.carousel-slide {
    font-size: 3rem;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.carousel-slide.active {
    display: block;
}

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

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
}

.carousel-dot.active {
    background: var(--primary);
}

/* Offer visual */
.feature-visual-offer .offer-demo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.offer-badge-demo {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
}

.offer-old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.offer-new-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.offer-timer-demo {
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
}

/* Variants visual */
.feature-visual-variants .variant-demo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-chip-demo {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.variant-chip-demo.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Tags visual */
.feature-visual-tags .tags-demo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-demo {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.tag-new { background: #10b981; }
.tag-popular { background: #f59e0b; }
.tag-vegan { background: #22c55e; }

/* Themes visual */
.feature-visual-themes .themes-demo {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.theme-swatch {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: default;
    transition: all var(--transition-fast);
}

.theme-dark {
    background: #111;
    color: white;
    border: 1px solid #333;
}

.theme-light {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.theme-brand {
    background: var(--gradient-primary);
    color: white;
}

/* Reviews visual */
.feature-visual-reviews .review-demo-mini {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.review-stars {
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.review-demo-mini p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.review-status {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.review-status.approved {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

/* QR visual */
.feature-visual-qr .qr-demo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-demo-pattern {
    width: 80%;
    height: 80%;
    background: 
        repeating-linear-gradient(0deg, #111 0, #111 20%, transparent 20%, transparent 40%),
        repeating-linear-gradient(90deg, #111 0, #111 20%, transparent 20%, transparent 40%);
    opacity: 0.7;
}

.qr-logo-center {
    position: absolute;
    font-size: 1.2rem;
    background: white;
    padding: 4px;
    border-radius: 4px;
}

/* Closed visual */
.feature-visual-closed .closed-demo {
    text-align: center;
    padding: 16px;
}

.closed-demo-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.closed-demo-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison {
    padding: var(--section-py) 0;
}

.comparison-table {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.comparison-cell {
    padding: 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 640px) {
    .comparison-cell {
        border-bottom: none;
    }
}

.comparison-header .comparison-cell {
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.85rem;
}

.paper-cell {
    color: var(--text-muted);
}

.digital-cell {
    color: var(--success);
    font-weight: 600;
}

.cost-bad {
    color: var(--error) !important;
    font-weight: 700;
}

.cost-good {
    color: var(--success) !important;
    font-weight: 800;
    font-size: 1.1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--section-py) 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: center;
    }
}

.step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    max-width: 350px;
    width: 100%;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.step-visual {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        width: 40px;
        height: 2px;
        background: var(--border-medium);
        position: relative;
        flex-shrink: 0;
    }

    .step-connector::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 1rem;
    }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--section-py) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255, 94, 0, 0.15);
}

@media (min-width: 768px) {
    .pricing-card-featured {
        transform: scale(1.05);
    }
}

.pricing-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

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

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.check {
    font-size: 0.9rem;
}

.cross {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--section-py) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.author-info strong {
    display: block;
    font-size: 0.85rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--section-py) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-medium);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    position: relative;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.cta-orb-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -200px;
    right: -100px;
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand-col p {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-links-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-links-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--primary);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 640px) {
    :root {
        --section-py: 60px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .phone-mockup {
        width: 260px;
    }

    .phone-screen {
        height: 480px;
    }
}

@media (min-width: 1200px) {
    .demo-container {
        max-width: 700px;
    }
}
