/**
 * Container Landing — Standalone page styles
 * Extracted from landing-page-kontener.html
 */

/* ===== VARIABLES & BASE ===== */
:root {
    --primary: #0a2540;
    --accent: #00d26a;
    --accent-dark: #00b85c;
    --light: #f4f7fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6b7c93;
    --border: #e0e6ed;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

/* ===== SMOOTH SCROLL ===== */
html { scroll-behavior: smooth; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(12px);
    padding: 0 2rem;
    transition: all 0.3s;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-toggle-input { display: none; }
.nav-toggle-label { display: none; }
.nav-links-wrap { display: contents; }
.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
}
.nav-inner .logo { flex-shrink: 0; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Language dropdown: one control instead of 4 links */
.nav-lang-li { position: relative; }
.nav-lang-dropdown { display: inline-block; }
.nav-lang-dropdown summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.55rem 1.4rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s;
    user-select: none;
    line-height: 1.2;
}
.nav-lang-dropdown summary::-webkit-details-marker { display: none; }
.nav-lang-dropdown summary:hover { border-color: var(--accent); color: var(--accent); }
.nav-lang-arrow {
    font-size: 0.65rem;
    opacity: 0.8;
    transition: transform 0.2s;
}
.nav-lang-dropdown[open] .nav-lang-arrow { transform: rotate(180deg); }
.nav-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.35rem;
    min-width: 8rem;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.35rem 0;
    z-index: 1002;
}
.nav-lang-option {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background 0.15s, color 0.15s;
}
.nav-lang-option:hover {
    background: rgba(255,255,255,0.08);
    color: var(--accent);
}
.nav-lang-option:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3b66 50%, #1a5276 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0,210,106,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(0,210,106,0.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--accent); }
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--primary);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,210,106,0.3); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }

.hero-image-container {
    position: relative;
}
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}
.hero-stat { text-align: left; }
.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION BASICS ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-block;
    background: rgba(0,210,106,0.1);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== TRUST BANNER ===== */
.trust-banner {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-item .check {
    width: 22px;
    height: 22px;
    background: rgba(0,210,106,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

/* ===== KEY FEATURES ===== */
.features { background: var(--light); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.fi-power { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }
.fi-cool { background: rgba(52, 152, 219, 0.1); color: #3498db; }
.fi-rack { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.fi-secure { background: rgba(243, 156, 18, 0.1); color: #f39c12; }
.fi-monitor { background: rgba(0, 210, 106, 0.1); color: #00d26a; }
.fi-modular { background: rgba(10, 37, 64, 0.1); color: #0a2540; }
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===== SPEC TABLE ===== */
.specs { background: var(--white); }
.spec-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
}
.spec-table tr { border-bottom: 1px solid var(--border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
}
.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 45%;
}
.spec-table td:last-child { color: var(--text-light); }
.spec-group-header {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.75rem 1rem !important;
    border-radius: 6px;
}
.spec-group-header td { color: var(--white) !important; padding: 0.75rem 1rem !important; }

.spec-highlight-box {
    background: linear-gradient(135deg, var(--primary), #1a5276);
    border-radius: 20px;
    padding: 3rem;
    color: var(--white);
}
.spec-highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.spec-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.spec-highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,210,106,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.spec-highlight-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}
.spec-highlight-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ===== GALLERY ===== */
.gallery { background: var(--light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    background: #1a1a2e;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    min-height: 0;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
    display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== VIDEO ===== */
.video-section { background: var(--primary); color: var(--white); }
.video-container {
    max-width: 900px;
    margin: 0 auto;
}
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.05);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    gap: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.video-placeholder:hover { background: rgba(255,255,255,0.08); }
.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn svg { width: 32px; height: 32px; fill: var(--primary); margin-left: 4px; }

/* ===== BLOG ===== */
.blog { background: var(--white); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.blog-card {
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 2rem; }
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-tag {
    display: inline-block;
    background: rgba(0,210,106,0.12);
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.35;
}
.blog-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.blog-card p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===== ADVANTAGES ===== */
.advantages { background: var(--white); }
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.advantage-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 14px;
    transition: transform 0.2s;
}
.advantage-card:hover { transform: translateX(4px); }
.advantage-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    flex-shrink: 0;
}
.advantage-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #0d3b66);
    color: var(--white);
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-info-item { text-align: center; }
.cta-info-item .icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.cta-info-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.cta-info-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
footer {
    background: #071a2e;
    color: rgba(255,255,255,0.5);
    padding: 2.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
    nav { padding: 0 1.25rem; }
    .nav-inner { height: 64px; }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
        gap: 2.5rem;
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-container { display: none; }
    section { padding: 3.5rem 1.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .spec-layout { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1rem;
    }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .gallery-item { min-height: 0; }
    .trust-inner { gap: 1.5rem; padding: 0 1rem; }
    .trust-item { font-size: 0.85rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .spec-highlight-box { padding: 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .cta-info-grid { gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; }
}

/* Tablet and small desktop: show hamburger, collapse nav into menu */
@media (max-width: 1024px) {
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 10px;
        cursor: pointer;
        z-index: 1001;
        transition: opacity 0.2s;
    }
    .nav-toggle-label:hover { opacity: 0.85; }
    .nav-toggle-bar {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.25s, opacity 0.25s;
    }
    .nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    .nav-links-wrap {
        display: block;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 37, 64, 0.98);
        backdrop-filter: blur(12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }
    .nav-toggle-input:checked ~ .nav-links-wrap {
        max-height: 85vh;
        overflow-y: auto;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 1.5rem;
        align-items: stretch;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.25rem;
        font-size: 1rem;
    }
    .nav-links .nav-cta {
        margin: 0.5rem 1.25rem 0;
        text-align: center;
        padding: 0.75rem 1.25rem;
    }
    .nav-lang-li { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-lang-dropdown { display: block; width: 100%; }
    .nav-lang-dropdown summary {
        padding: 0.9rem 1.25rem;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        border-radius: 0;
    }
    .nav-lang-menu {
        position: static;
        margin-top: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0,0,0,0.15);
        padding: 0 0 0.5rem;
    }
    .nav-lang-option {
        padding: 0.6rem 1.25rem 0.6rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile: 640px and below */
@media (max-width: 640px) {
    nav { padding: 0 1rem; }
    .nav-inner { height: 56px; }
    .logo { font-size: 1.2rem; }
    .nav-links-wrap { top: 56px; }
    .hero {
        padding-top: 56px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    .hero-inner { padding: 2rem 1rem; gap: 1.5rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.8rem; margin-bottom: 1rem; }
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    .hero-desc + .hero-desc { margin-top: -0.5rem; font-size: 0.9rem; }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    .hero-stat { text-align: center; }
    .hero-stat-value { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.7rem; }
    section { padding: 2.5rem 1rem; }
    .section-label { font-size: 0.7rem; padding: 0.3rem 0.75rem; margin-bottom: 0.75rem; }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .feature-card { padding: 1.5rem 1.25rem; }
    .feature-icon { width: 48px; height: 48px; font-size: 1.4rem; margin-bottom: 1rem; }
    .feature-card h3 { font-size: 1.05rem; }
    .feature-card p { font-size: 0.9rem; }
    .spec-table td { padding: 0.75rem 0.5rem; font-size: 0.875rem; }
    .spec-group-header td { padding: 0.6rem 0.75rem !important; font-size: 0.75rem !important; }
    .spec-highlight-box {
        padding: 1.5rem;
    }
    .spec-highlight-item { margin-bottom: 1rem; }
    .spec-highlight-value { font-size: 1.25rem; }
    .spec-highlight-label { font-size: 0.8rem; }
    .spec-highlight-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    .gallery-item {
        min-height: 0;
        width: 100%;
    }
    .video-section .section-title { font-size: 1.35rem; }
    .video-section .section-subtitle { font-size: 0.9rem; }
    .video-container { padding: 0 0.5rem; }
    .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .blog-card-body { padding: 1.5rem; }
    .blog-card-img { height: 180px; }
    .blog-tag { font-size: 0.65rem; margin-bottom: 0.75rem; }
    .blog-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
    .blog-card p { font-size: 0.875rem; margin-bottom: 0.75rem; }
    .advantages-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .advantage-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem 1.25rem;
    }
    .advantage-number { font-size: 1.75rem; }
    .advantage-card h3 { font-size: 1rem; }
    .advantage-card p { font-size: 0.85rem; }
    .cta-section .container { padding: 0 1rem; }
    .cta-section .hero-badge { font-size: 0.8rem; margin-bottom: 1rem; }
    .cta-section h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .cta-section p { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem !important;
        padding: 0.9rem 1.5rem !important;
    }
    .cta-info-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }
    .cta-info-item .icon { font-size: 1.25rem; }
    .cta-info-item h4 { font-size: 0.9rem; }
    .cta-info-item p { font-size: 0.8rem; }
    footer { padding: 1.75rem 1rem; font-size: 0.8rem; }
    .trust-banner { padding: 1.25rem 1rem; }
    .trust-inner { gap: 1rem; }
    .trust-item { font-size: 0.8rem; }
}

/* Spec table: horizontal scroll on small viewports */
.spec-layout > div:first-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
    .spec-table { min-width: 320px; }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .section-title { font-size: 1.35rem; }
    .cta-section h2 { font-size: 1.35rem; }
    .gallery-grid { gap: 0.75rem; }
}
