/* --- Variables & Setup --- */
:root {
    --primary: #0A5E6C;
    --secondary: #0D2B4E;
    --accent: #00B4D8;
    --bg: #F5F9FA;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --light-gray: #E8EDF0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 64px;
    padding-bottom: 60px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
p { font-size: 1rem; margin-bottom: 1rem; color: #4A4A5A; }
.small-text { font-size: 0.875rem; color: #6B6B7B; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg); }
.bg-primary { background-color: var(--primary); }
.text-center { text-center; }
.w-100 { width: 100%; }

.grid {
    display: grid;
    gap: 30px;
}
.grid-3 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background-color: #0096B4;
    transform: translateY(-2px);
}

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

/* --- Top Logo --- */
.top-logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 16px 0;
    background: var(--white);
    transition: box-shadow 0.3s ease;
}

.top-logo.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-logo-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

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

.btn-header-primary {
    background: var(--accent);
    color: var(--white);
    border: 1.5px solid var(--accent);
}

.btn-header-primary:hover {
    background: #0096B4;
    border-color: #0096B4;
}

@media (max-width: 480px) {
    .btn-header {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

/* --- Bottom Tab Bar --- */
.bottom-tab-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 720px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 8px;
    gap: 0;
}

.tab-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    border-radius: 10px;
    transition: color 0.2s, background-color 0.2s;
    white-space: nowrap;
}

.tab-item:hover {
    color: var(--primary);
    background: rgba(10, 94, 108, 0.06);
}

.tab-item.active {
    color: var(--primary);
    font-weight: 600;
    background: rgba(10, 94, 108, 0.1);
}

@media (max-width: 600px) {
    .bottom-tab-bar {
        bottom: 16px;
        width: calc(100% - 32px);
        height: 48px;
        padding: 0 4px;
        border-radius: 14px;
    }
    .tab-item {
        font-size: 0.72rem;
    }
}

/* --- Hero Section --- */
.hero {
    padding: 0;
    background: var(--bg);
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 64px);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    pointer-events: none;
}

.hero-card {
    position: absolute;
    bottom: 16px;
    left: 40px;
    z-index: 2;
    width: 90%;
    max-width: 520px;
    padding: 32px 36px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-card-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    background: linear-gradient(135deg, #00B4D8, #0096B4);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 180, 216, 0.4);
}

@media (max-width: 600px) {
    .hero-card {
        left: 16px;
        bottom: 24px;
        padding: 24px;
        width: calc(100% - 32px);
        max-width: none;
    }
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-col-desc {
    font-size: 0.85rem;
    color: #6B6B7B;
    margin: 0;
    line-height: 1.5;
    min-height: 3em;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* --- Cooperation Paths --- */
.coop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.coop-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.coop-card:hover {
    transform: translateY(-5px);
}

.coop-card-img {
    position: relative;
    padding: 40px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.coop-card-img img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.coop-card-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.coop-card-actions {
    display: flex;
    gap: 12px;
    padding: 24px;
}

.btn-coop {
    flex: 1;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    background: var(--accent);
    color: var(--white);
}

.btn-coop:hover {
    background: #0096B4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

@media (max-width: 768px) {
    .coop-grid {
        grid-template-columns: 1fr;
    }
    .coop-card-img {
        min-height: 260px;
        padding: 30px;
    }
}

/* --- Cards & Timeline --- */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-5px); }
.card i { font-size: 40px; color: var(--accent); margin-bottom: 20px; display: inline-block; }

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 768px) {
    .timeline { flex-direction: row; justify-content: space-between; text-align: center; }
}
.timeline-step { flex: 1; }
.timeline-step .icon-box {
    width: 60px; height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow);
    margin: 0 auto 15px auto;
    font-size: 28px; color: var(--primary);
}

/* --- Results --- */
.results-section {
    background: var(--white);
}

.results-section .section-title {
    font-size: clamp(2.25rem, 5vw, 2.5rem);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.results-card {
    text-align: center;
}

.results-icon {
    margin-bottom: 16px;
}

.results-icon svg {
    width: 180px;
    height: 180px;
}

.recycle-arrows {
    transform-origin: 60px 60px;
    animation: spin-pause 19s ease-in-out infinite;
}

@keyframes spin-pause {
    0%   { transform: rotate(0deg); }
    84%  { transform: rotate(720deg); }
    100% { transform: rotate(720deg); }
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.results-label {
    font-size: 1.25rem;
    color: #6B6B7B;
    margin: 0;
    font-weight: 600;
}

/* --- Specs --- */
.specs-devices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.specs-device-card {
    text-align: center;
}

.specs-device-img {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specs-device-img img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
}

.specs-device-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0;
}

.spec-check { color: #2ECC71; font-size: 22px; }
.spec-x { color: #E74C3C; font-size: 22px; }

@media (max-width: 600px) {
    .specs-devices { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto 30px; }
}

/* --- Map --- */
.map-filters { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; }
.btn-filter { padding: 8px 16px; background: var(--bg); border: 1px solid var(--light-gray); color: var(--text); border-radius: 20px; }
.btn-filter.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.map-container { height: 500px; width: 100%; border-radius: var(--radius); z-index: 1; }
.map-overlay-text { text-align: center; margin-top: 15px; font-weight: 600; color: var(--primary); }

/* --- Partners --- */
.partners-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
}
.partner-logo-placeholder {
    width: 150px; height: 60px;
    background: var(--light-gray);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; color: #888; font-weight: 600;
}

/* --- Contact Form --- */
.contact-wrapper {
    display: grid; gap: 50px;
}
@media (min-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr 1fr; }
}
.contact-form-container {
    background: var(--bg); padding: 40px; border-radius: var(--radius);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px; font-family: var(--font-body);
    outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent);
}

/* --- Footer --- */
.footer {
    background: #F0F2F5;
    color: var(--text);
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    font-size: 0.95rem;
    color: #4A4A5A;
}

.footer-contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

.footer-phone svg {
    flex-shrink: 0;
}

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

.footer-actions a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-bottom-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom-bar img {
    height: 24px;
}

.footer-bottom-bar p {
    color: #6B6B7B;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}

/* --- Animations --- */
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.slide-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible, .slide-up.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { 100% { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; }
.form-message { margin-top: 15px; padding: 10px; border-radius: 8px; display: none; text-align: center; }
.form-message.success { background: #d4edda; color: #155724; display: block; }
.form-message.error { background: #f8d7da; color: #721c24; display: block; }
/* --- Спецификации (Таблица) --- */
.table-responsive { overflow-x: auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.specs-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.specs-table th, .specs-table td { padding: 15px 20px; text-align: center; border-bottom: 1px solid var(--light-gray); }
.specs-table th { background: var(--bg); color: var(--secondary); font-weight: 600; text-align: center; }
.specs-table tr td:first-child, .specs-table tr th:first-child { text-align: left; font-weight: 500; }
.specs-table i { font-size: 20px; }
.text-primary { color: var(--primary); }

/* --- FAQ Аккордеон --- */
.faq-item { border-bottom: 1px solid var(--light-gray); margin-bottom: 10px; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 15px 0; font-size: 1.1rem; font-weight: 500; color: var(--secondary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 15px; color: #555; margin: 0; }
.faq-question.active i { transform: rotate(45deg); transition: 0.3s; }

/* --- Модальное окно --- */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; align-items: center; justify-content: center; }
.modal.active { display: flex; animation: fadeIn 0.3s; }
.modal-content { background: var(--white); padding: 40px; border-radius: var(--radius); width: 100%; max-width: 450px; position: relative; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer; color: #888; }
.mt-3 { margin-top: 15px; }

/* --- Утилиты --- */
.grid-2-1 { display: grid; gap: 40px; }
@media(min-width: 768px) { .grid-2-1 { grid-template-columns: 1fr 1fr; align-items: center; } }
.image-placeholder { background: var(--light-gray); height: 300px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #888; }
.project-img-placeholder { height: 200px; background: var(--light-gray); border-radius: 8px; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   MOBILE RESPONSIVE STYLES
   Only affects screens < 768px and < 480px.
   Desktop layout (1024px+) is NOT touched.
   ============================================================ */

/* --- Burger Menu (default hidden on desktop) --- */
.burger-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0 20px;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    max-height: 300px;
    padding: 20px;
}

.mobile-menu .btn-header {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
}

/* --- Mobile (<768px) --- */
@media (max-width: 767px) {

    /* Header burger */
    .top-logo-actions { display: none; }
    .burger-toggle { display: block; }

    /* Section padding */
    .section { padding: 60px 0; }
    h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1.5rem; }

    /* Specs — horizontal carousel */
    .specs-devices {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        max-width: none;
        margin: 0 0 30px;
    }
    .specs-device-card {
        min-width: 65vw;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    .specs-devices::-webkit-scrollbar {
        height: 4px;
    }
    .specs-devices::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 4px;
    }
    .specs-devices::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 4px;
    }

    /* Results/Counters — stack vertically */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 300px;
    }
    .results-icon svg {
        width: 120px;
        height: 120px;
    }
    .counter-number {
        font-size: 2.25rem;
    }
    .results-label {
        font-size: 1.1rem;
    }

    /* Cooperation cards */
    .coop-card-img {
        min-height: 220px;
        padding: 24px;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 12px 0;
    }
    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Modal */
    .modal-content {
        margin: 16px;
        padding: 28px;
        max-width: calc(100% - 32px);
    }

    /* Map */
    .map-container {
        height: 350px;
    }

    /* Features — remove min-height on title/desc */
    .feature-col-title {
        min-height: auto;
    }
    .feature-col-desc {
        min-height: auto;
    }
}

/* --- Small Mobile (<480px) --- */
@media (max-width: 480px) {

    /* Section padding tighter */
    .section { padding: 40px 0; }
    .container { padding: 0 16px; }

    /* Features — single column */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Cooperation buttons stack */
    .coop-card-actions {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
    }
    .coop-card-img {
        min-height: 180px;
        padding: 20px;
    }

    /* Bottom tab bar — tighter for narrow screens */
    .bottom-tab-bar {
        bottom: 12px;
        width: calc(100% - 24px);
        height: 44px;
        padding: 0 4px;
        border-radius: 12px;
    }
    .tab-item {
        font-size: 0.62rem;
        height: 32px;
        border-radius: 8px;
    }

    /* Hero — tighter card */
    .hero-card {
        padding: 20px;
    }
    .hero-card-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
    .hero-card-subtitle {
        font-size: 0.95rem;
    }
    .hero-card-desc {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    .btn-hero {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Footer tighter */
    .footer {
        padding: 40px 0 20px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Counter further shrink */
    .counter-number {
        font-size: 2rem;
    }

    /* Specs carousel cards narrower */
    .specs-device-card {
        min-width: 72vw;
    }

    /* Map */
    .map-container {
        height: 280px;
    }

    /* Body padding adjust for smaller tab bar */
    body {
        padding-bottom: 56px;
    }
}