:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e63946;
    --accent-light: #f77f00;
    --bg: #ffffff;
    --bg-warm: #f8f9fa;
    --text: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Language Selector */
.language-selector-container {
    display: flex;
    align-items: center;
}

.language-selector {
    background: transparent;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.language-selector:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.language-selector:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Standard Order Button - consistent across all pages */
.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

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

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

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

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-showcase {
    position: relative;
    width: 400px;
    height: 400px;
}

.device-base {
    position: relative;
    width: 100%;
    height: 100%;
}

.device {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(145deg, #f0f0f0 0%, #ffffff 100%);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.device::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-warm);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.device.active::before {
    background: var(--accent);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.device-1 { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.2); z-index: 4; }
.device-2 { top: 30%; left: 20%; transform: scale(0.9); opacity: 0.7; z-index: 2; }
.device-3 { top: 30%; right: 20%; transform: scale(0.9); opacity: 0.7; z-index: 2; }
.device-4 { bottom: 20%; left: 50%; transform: translateX(-50%) scale(0.8); opacity: 0.5; z-index: 1; }

.device-shadow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    filter: blur(10px);
}

.floating-card {
    position: absolute;
    bottom: 60px;
    left: -20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-weight: 600;
    color: var(--text);
}

.card-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

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

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

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

.feature-card {
    padding: 40px 30px;
    background: var(--bg-warm);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Product Preview */
.product-preview {
    padding: 120px 0;
    background: var(--bg-warm);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preview-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.preview-content > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.preview-list {
    list-style: none;
    margin-bottom: 40px;
}

.preview-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.check {
    width: 28px;
    height: 28px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.preview-list strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.preview-list span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.preview-visual {
    display: flex;
    justify-content: center;
}

.station-mockup {
    width: 100%;
    max-width: 400px;
}

.station-body {
    background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.station-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.slot {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.slot.active {
    background: rgba(230, 57, 70, 0.3);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.station-panel {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
}

.panel-light {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.panel-light.red.active { background: #e63946; box-shadow: 0 0 15px #e63946; }
.panel-light.blue.active { background: #4361ee; box-shadow: 0 0 15px #4361ee; }
.panel-light.green.active { background: #06d6a0; box-shadow: 0 0 15px #06d6a0; }
.panel-light.yellow.active { background: #ffd166; box-shadow: 0 0 15px #ffd166; }

/* Use Cases */
.use-cases {
    padding: 120px 0;
    background: white;
}

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

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.case-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-icon {
    font-size: 3rem;
    filter: grayscale(1) brightness(2);
}

.case-card h3 {
    padding: 24px 24px 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.case-card p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Product Page */
.product-detail {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--bg-warm);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.device-demo {
    width: 120px;
    height: 180px;
    background: linear-gradient(145deg, #f0f0f0 0%, #ffffff 100%);
    border-radius: 60px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.device-demo.large {
    width: 150px;
    height: 220px;
}

.device-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-warm);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.device-demo.red .device-top { background: #e63946; box-shadow: 0 0 30px rgba(230, 57, 70, 0.5); }
.device-demo.blue .device-top { background: #4361ee; box-shadow: 0 0 30px rgba(67, 97, 238, 0.5); }
.device-demo.green .device-top { background: #06d6a0; box-shadow: 0 0 30px rgba(6, 214, 160, 0.5); }
.device-demo.yellow .device-top { background: #ffd166; box-shadow: 0 0 30px rgba(255, 209, 102, 0.5); }
.device-demo.purple .device-top { background: #7209b7; box-shadow: 0 0 30px rgba(114, 9, 183, 0.5); }
.device-demo.white .device-top { background: #f8f9fa; box-shadow: 0 0 30px rgba(248, 249, 250, 0.5); }

.color-selector {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.color-btn.active {
    border-color: var(--text);
    transform: scale(1.1);
}

.color-label {
    text-align: center;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.product-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: var(--bg-warm);
    border-radius: 8px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-price {
    margin-bottom: 32px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

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

.product-actions {
    display: flex;
    gap: 16px;
}

/* Specs Section */
.specs-section {
    padding: 80px 0;
    background: var(--bg-warm);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.spec-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.spec-card h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--accent);
    font-weight: 600;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.spec-card li:last-child {
    border-bottom: none;
}

.spec-card strong {
    color: var(--text);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent) !important;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* How It Works Page */
.process {
    padding: 80px 0;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
}

.step-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.step-content ul {
    list-style: none;
}

.step-content li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.step-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: var(--bg-warm);
    border-radius: 20px;
}

/* Flip Demo */
.flip-demo {
    text-align: center;
}

.device-flip {
    width: 100px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    margin-bottom: 24px;
    cursor: pointer;
}

.device-flip.flipped {
    transform: rotateY(180deg);
}

.device-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.device-side.front {
    background: linear-gradient(145deg, #f0f0f0 0%, #ffffff 100%);
    color: var(--text-muted);
}

.device-side.back {
    background: #e63946;
    transform: rotateY(180deg);
}

/* Station Display */
.station-display {
    background: var(--primary);
    padding: 30px;
    border-radius: 16px;
    min-width: 200px;
}

.display-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.table-num {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.status-light {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.status-light.red { background: #e63946; box-shadow: 0 0 10px #e63946; }
.status-light.blue { background: #4361ee; box-shadow: 0 0 10px #4361ee; }
.status-light.green { background: #06d6a0; box-shadow: 0 0 10px #06d6a0; }

/* Benefits */
.benefits {
    padding: 80px 0;
    background: var(--bg-warm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 600;
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-warm);
    text-align: center;
}

.video-placeholder {
    max-width: 800px;
    margin: 40px auto 0;
    aspect-ratio: 16/9;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.video-placeholder:hover .play-button {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-panel > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--border);
}

.method-details h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.method-details p {
    color: var(--text-secondary);
}

.availability h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.availability p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form-panel {
    background: white;
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-warm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.map-section {
    padding: 0 0 80px;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.map-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

/* ============================================
   MOBILE COMPACT STYLES (≤768px)
   Reduced spacing, smaller fonts, tighter layout
   ============================================ */

/* Mobile-first optimizations and touch enhancements */
@media (max-width: 768px) {
    
    /* Enhanced viewport and scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        overflow-x: hidden;
        font-size: 15px;
        -webkit-tap-highlight-color: transparent;
        touch-action: pan-y;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    /* Navigation compact */
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
    
    @media (max-width: 768px) {
        .nav-container {
            height: 60px;
        }
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: all 0.4s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
        z-index: 1001;
        border: 1px solid #e2e8f0;
    }
    
    @media (max-width: 768px) {
        .nav-menu {
            top: 60px;
        }
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 16px 20px;
        display: block;
        font-size: 1.1rem;
        font-weight: 500;
        color: black;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        transform: translateX(-20px);
        opacity: 0;
        animation: slideInLinks 0.5s ease forwards;
    }
    
    .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-link:nth-child(2) { animation-delay: 0.15s; }
    .nav-link:nth-child(3) { animation-delay: 0.2s; }
    .nav-link:nth-child(4) { animation-delay: 0.25s; }
    .nav-link:nth-child(5) { animation-delay: 0.3s; }
    .nav-link:nth-child(6) { animation-delay: 0.35s; }
    
    @keyframes slideInLinks {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--accent);
    }
    
    .hamburger {
        display: none;
        cursor: pointer;
        z-index: 1002;
        position: relative;
        background: white;
        padding: 12px;
        border-radius: 12px;
        border: 2px solid var(--accent);
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .hamburger:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .hamburger.active {
        background: var(--accent);
        border-color: var(--accent);
        transform: rotate(90deg);
    }
    
    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }
    }
    
    .hamburger .bar {
        display: block;
        width: 28px;
        height: 3px;
        margin: 6px auto;
        background: var(--accent);
        border-radius: 3px;
        transition: all 0.4s ease;
        position: relative;
    }
    
    .hamburger.active .bar {
        background: white;
    }
    
        
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Language selector mobile */
    .language-selector-container {
        margin: 10px 0;
        justify-content: center;
    }
    
    .language-selector {
        font-size: 1rem;
        padding: 12px 16px;
        min-width: 120px;
        background: var(--bg-warm);
        border-color: var(--border);
    }
    
    /* Touch optimizations */
    .btn, .nav-link {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .nav-link {
        padding: 14px;
        display: block;
        font-size: 1rem;
    }
    
    /* Hero compact - ensure stats fit on first screen */
    .hero {
        min-height: auto;
        padding: 60px 0 20px;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-visual img {
        max-height: 40vh;
        width: auto;
        object-fit: contain;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 16px;
        color: var(--text-muted);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 16px;
        padding-top: 16px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    /* Device showcase compact */
    .device-showcase {
        width: 200px;
        height: 200px;
    }
    
    .device {
        width: 40px;
        height: 60px;
        border-radius: 20px;
    }
    
    .device::before {
        width: 30px;
        height: 30px;
        top: 10px;
    }
    
    .floating-card {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section headers compact */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Features compact */
    .features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-card {
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        min-height: 200px;
        box-sizing: border-box;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        flex-grow: 1;
        display: flex;
        align-items: flex-start;
    }
    
    /* Product preview compact */
    .product-preview {
        padding: 40px 0;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .preview-label {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .preview-content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .preview-content > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .preview-list {
        margin-bottom: 24px;
    }
    
    .preview-list li {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .check {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    /* Make preview image smaller on mobile */
    .preview-img {
        max-width: 280px !important;
        height: auto !important;
    }
    
    /* Use cases compact */
    .use-cases {
        padding: 40px 0;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .case-card {
        display: flex;
        align-items: center;
        padding: 16px;
        border-radius: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .case-card:active {
        transform: scale(0.98);
        box-shadow: var(--shadow-md);
    }
    
    .case-image {
        height: auto;
        width: 60px;
        flex-shrink: 0;
        margin-right: 16px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .case-icon {
        font-size: 2rem;
    }
    
    .case-card h3 {
        padding: 0 0 4px;
        font-size: 1rem;
    }
    
    .case-card p {
        padding: 0;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* CTA compact */
    .cta {
        padding: 40px 0;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer compact */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-brand .logo {
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
    }
    
    .footer-credit {
        font-size: 0.75rem;
        margin-top: 6px;
    }
    
    /* Page header compact */
    .page-header {
        padding: 100px 16px 30px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    /* Product page compact */
    .product-detail {
        padding: 40px 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .main-image {
        padding: 30px 20px;
        margin-bottom: 16px;
    }
    
    .device-demo {
        width: 80px;
        height: 120px;
    }
    
    .device-demo.large {
        width: 100px;
        height: 150px;
    }
    
    .device-top {
        width: 60px;
        height: 60px;
        top: 15px;
    }
    
    .color-selector {
        gap: 8px;
    }
    
    .color-btn {
        width: 32px;
        height: 32px;
    }
    
    .product-info h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .product-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-item {
        padding: 8px;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Specs compact */
    .specs-section {
        padding: 40px 0;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .spec-card {
        padding: 20px;
    }
    
    .spec-card h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .spec-card li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    /* Pricing compact */
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 4px 16px;
        top: -10px;
    }
    
    .pricing-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .pricing-price {
        font-size: 2rem;
        margin-bottom: 4px;
    }
    
    .pricing-desc {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .pricing-card ul {
        margin-bottom: 20px;
    }
    
    .pricing-card li {
        padding: 6px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    /* How It Works Page - ULTRA COMPACT spacing */
    .process {
        padding: 8px 0 !important;
    }
    
    .step-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .step-image-container {
        margin-top: 0 !important;
        max-width: 300px;
        max-height: 300px;
    }
    
    .step-image-container img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    
    .process-step,
    .process-step.reverse {
        display: flex;
        flex-direction: column;
        gap: 6px !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
        padding: 0 12px !important;
        direction: ltr;
    }
    
    .process-step:last-child {
        margin-bottom: 6px !important;
    }
    
    .process-step.reverse > * {
        direction: ltr;
    }
    
    /* Remove all margins from step children */
    .process-step > * {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .step-number {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1;
        margin-bottom: 2px !important;
        margin-top: 0 !important;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-content h2 {
        font-size: 1.1rem;
        margin-bottom: 4px !important;
        margin-top: 0 !important;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 4px !important;
        margin-top: 0 !important;
    }
    
    .step-visual {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .step-content ul {
        text-align: left;
        display: inline-block;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .step-content li {
        padding: 3px 0;
        padding-left: 20px;
        font-size: 0.85rem;
        margin: 0 !important;
    }
    
    /* Step visual - tight spacing */
    .step-visual {
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        min-height: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 4px !important;
        margin-bottom: 0 !important;
    }
    
    /* Step image container - centered */
    .step-image-container {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    /* Step images - centered with rounded corners, no shadow */
    .step-image-container img {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: none;
        display: block;
        margin: 0 !important;
    }
    
    /* Order Now button tight spacing */
    .order-now-container {
        margin-top: 12px !important;
        margin-bottom: 4px !important;
        padding: 0 16px !important;
    }
    
    /* Benefits compact */
    .benefits {
        padding: 30px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .benefit-card li {
        padding: 6px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    /* Gallery compact */
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
        padding: 0 16px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .gallery-grid-large {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-overlay {
        padding: 16px;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    /* Contact compact */
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-panel h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .contact-info-panel > p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .contact-method {
        margin-bottom: 16px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .method-details h4 {
        font-size: 0.95rem;
    }
    
    .method-details p {
        font-size: 0.85rem;
    }
    
    .contact-form-panel {
        padding: 24px;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 16px; /* Prevent zoom */
    }
    
    /* Map compact */
    .map-section {
        padding: 0 0 40px;
    }
    
    .map-placeholder {
        height: 200px;
        border-radius: 12px;
    }
    
    .map-content h3 {
        font-size: 1.25rem;
    }
    
    /* Logo compact */
    .logo-img {
        height: 40px;
    }
    
    /* Touch improvements */
    .color-btn,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Extra small devices (≤480px) - Even more compact */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .step-image-container {
        max-width: 240px;
    }
    
    .step-number {
        font-size: 1.75rem;
    }
    
    .step-content h2 {
        font-size: 1.1rem;
    }
    
    .device-showcase {
        width: 180px;
        height: 180px;
    }
    
    .device {
        width: 35px;
        height: 52px;
    }
    
    .feature-card {
        padding: 16px;
        gap: 12px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .case-card {
        padding: 12px;
    }
    
    .benefit-card {
        padding: 16px;
    }
    
    .spec-card {
        padding: 16px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    /* Logo compact - override inline HTML styles */
.logo-img {
    height: 45px !important;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Adjust logo container */
.logo {
    display: flex;
    align-items: center;
    max-width: 170px
}
/* Logo compact - override inline HTML styles */
.logo-img {
    height: 45px !important;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

/* Adjust logo container */
.logo {
    display: flex;
    align-items: center;
    max-width: 170px;
}
/* Case card images - rounded corners on all sides for mobile */
.case-image {
    border-radius: 16px !important;
    height: 180px;
    margin: 12px;
    width: calc(100% - 24px);
}

.case-image img {
    border-radius: 16px;
}
}