/* ============================================================
   vWiderøe — Brand Stylesheet
   Design: Clean Nordic white base, Mellomgrønn #1F8226 accents
   Light/airy, inspired by wideroe.no aesthetic
   ============================================================ */

/* ── Fonts ── */
@font-face {
    font-family: 'Flama';
    src: url('/assets/fonts/flama-book-webfont.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Flama';
    src: url('/assets/fonts/Flama.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Flama';
    src: url('/assets/fonts/Flama-Semibold2.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTCommonsPro';
    src: url('/assets/fonts/TT_Commons_Pro_Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TTCommonsPro';
    src: url('/assets/fonts/TT_Commons_Pro_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TTCommonsPro';
    src: url('/assets/fonts/TT_Commons_Pro_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TTCommonsPro';
    src: url('/assets/fonts/TT_Commons_Pro_DemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TTCommonsPro';
    src: url('/assets/fonts/TT_Commons_Pro_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Variables ── */
:root {
    --green-primary:  #1F8226;
    --green-dark:     #0A4E23;
    --green-lime:     #78B62B;
    --green-light:    #B5DDB5;
    --green-pastel:   #E8F5E9;
    --greige:         #EAE6DC;
    --lys-beige:      #F5F2EB;
    --white:          #FFFFFF;
    --anthracite:     #1C1C1E;
    --text-dark:      #1C1C1E;
    --text-muted:     #5F6368;
    --border:         #E5E5E5;

    --grad-dark:  linear-gradient(170deg, #1F8226 0%, #0A4E23 100%);
    --grad-light: linear-gradient(-45deg, #78B62B 0%, #1F8226 100%);
    --nav-height: 68px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--green-primary) #f0f0f0;
}

body {
    font-family: 'TTCommonsPro', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--green-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Flama', system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

p { line-height: 1.75; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

section { padding: 96px 0; }

.section-label {
    display: inline-block;
    font-family: 'TTCommonsPro', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 130, 38, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-outline-green {
    background: transparent;
    color: var(--green-primary);
    border-color: var(--green-primary);
}
.btn-outline-green:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--lys-beige);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn svg, .btn img { flex-shrink: 0; }
.btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

/* ── Navbar — WHITE ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    gap: 2rem;
}

.nav-logo img {
    height: 26px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}
.nav-link {
    font-family: 'TTCommonsPro', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: var(--green-primary);
    border-bottom-color: var(--green-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-register {
    background: var(--green-primary);
    color: var(--white);
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 9px 22px;
    border-radius: 6px;
    border: 2px solid var(--green-primary);
    transition: all 0.22s;
    display: inline-block;
}
.btn-nav-register:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-nav-login {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 9px 22px;
    border-radius: 6px;
    transition: all 0.22s;
    display: inline-block;
}
.btn-nav-login:hover {
    background: var(--green-primary);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero — 4K Lofoten background ── */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(
            160deg,
            rgba(10, 30, 15, 0.58) 0%,
            rgba(10, 40, 20, 0.38) 45%,
            rgba(10, 78, 35, 0.52) 100%
        ),
        url('/assets/images/BlackFlyday_Clean_Web_4096x2304.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px 100px;
    max-width: 820px;
    width: 100%;
}

.hero-logo {
    height: 46px;
    width: auto;
    margin-bottom: 2.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero-subtitle {
    font-family: 'TTCommonsPro', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.9);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.hero-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-family: 'TTCommonsPro', sans-serif;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'TTCommonsPro', sans-serif;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}


/* ── Stats Bar ── */
.stats-bar {
    background: var(--green-primary);
    padding: 32px 0;
}
.stats-bar .container {
    display: flex;
    justify-content: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 52px;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 2.1rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-label {
    font-family: 'TTCommonsPro', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

/* ── Features — Pure white ── */
.features-section {
    background: var(--white);
    padding: 96px 0 80px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}
.features-header h2 { color: var(--text-dark); }
.features-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0.75rem auto 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--lys-beige);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.28s ease;
    border: 1.5px solid transparent;
}
.feature-card:hover {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 6px 28px rgba(31, 130, 38, 0.09);
    transform: translateY(-3px);
}

.feature-icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--green-pastel);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.28s;
}
.feature-card:hover .feature-icon-wrap {
    background: var(--green-primary);
}
.feature-icon-wrap img {
    width: 28px;
    height: 28px;
}
.feature-card:hover .feature-icon-wrap img {
    filter: brightness(0) invert(1);
}
.feature-icon-wrap svg { transition: none; }
.feature-card:hover .feature-icon-wrap svg path {
    fill: white;
}

.feature-card h3 {
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.feature-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.72;
}

/* ── Fleet ── */
.fleet-section {
    background: var(--white);
    padding: 96px 0;
}

.fleet-header {
    text-align: center;
    margin-bottom: 56px;
}
.fleet-header h2 { color: var(--text-dark); }
.fleet-header p {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0.75rem auto 0;
    line-height: 1.75;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.fleet-card {
    background: var(--lys-beige);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.28s ease;
    border: 1.5px solid transparent;
}
.fleet-card:hover {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 8px 32px rgba(31, 130, 38, 0.1);
    transform: translateY(-4px);
}

.fleet-img-wrap {
    background: var(--white);
    padding: 28px 36px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
    overflow: hidden;
}
.fleet-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.35s ease;
}
.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.04);
}

.fleet-info {
    padding: 4px 28px 28px;
}
.fleet-info h3 {
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.fleet-role {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-primary) !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

.fleet-desc {
    font-size: 0.91rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 18px;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.spec-val {
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--green-primary);
    line-height: 1;
}
.spec-key {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ── Routes — Lys beige ── */
.routes-section {
    background: var(--lys-beige);
    padding: 96px 0;
    overflow: hidden;
}

.routes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.routes-text .section-label { color: var(--green-primary); }
.routes-text h2 { color: var(--text-dark); margin-bottom: 1.25rem; }
.routes-text p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.routes-text p:last-of-type { margin-bottom: 2rem; }

.routes-map-wrap {
    position: relative;
}
.routes-map-wrap::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: rgba(31, 130, 38, 0.07);
    border-radius: 24px;
    z-index: 0;
}
.routes-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(31, 130, 38, 0.12);
}

/* ── Community — White + photo ── */
.community-section {
    padding: 0;
    overflow: hidden;
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.community-text-side {
    background: var(--white);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.community-text-side .section-label {
    color: var(--green-primary);
}

.community-text-side h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}
.community-text-side p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 2.25rem;
    max-width: 400px;
}

.community-image-side {
    position: relative;
    overflow: hidden;
}
.community-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}
.community-section:hover .community-image-side img {
    transform: scale(1.04);
}

.btn-discord {
    background: #5865F2;
    color: var(--white);
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.22s;
    width: fit-content;
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.35);
}

/* ── CTA / Join — Green ── */
.cta-section {
    background: var(--green-primary);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 420px; height: 420px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: rgba(120, 182, 43, 0.12);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }

.cta-section .section-label {
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.15em;
}
.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.78;
}
.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
    background: var(--anthracite);
    padding: 52px 0 28px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
}
.social-link:hover {
    background: var(--green-primary);
    transform: translateY(-2px);
}
.social-link img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.social-link:hover img { opacity: 1; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.5;
}

/* ── Disclaimer Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}
.modal-overlay.show { display: flex; }

.modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 520px;
    width: 100%;
    padding: 40px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    animation: modalIn 0.28s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(14px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: var(--green-pastel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.modal h2 {
    font-family: 'Flama', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.modal p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 0.75rem;
}
.modal p strong { color: var(--text-dark); }

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.btn-modal-accept {
    flex: 1;
    background: var(--green-primary);
    color: var(--white);
    border: 2px solid var(--green-primary);
    border-radius: 8px;
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.22s;
    text-align: center;
}
.btn-modal-accept:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-modal-decline {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Flama', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.22s;
    text-align: center;
}
.btn-modal-decline:hover {
    border-color: var(--text-muted);
    color: var(--text-dark);
}

/* ── Mobile Overlay Menu ── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 900;
    flex-direction: column;
    padding: calc(var(--nav-height) + 28px) 28px 40px;
    gap: 4px;
    overflow-y: auto;
}
.mobile-menu-overlay.open { display: flex; }

.mobile-nav-link {
    font-family: 'Flama', sans-serif;
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--text-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--green-primary); }

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .routes-content {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .routes-map-wrap { max-width: 500px; margin: 0 auto; }
    .stat-item { padding: 0 32px; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .nav-menu, .nav-actions { display: none; }
    .hamburger { display: flex; }

    .hero-logo { height: 38px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-bar .container { flex-wrap: wrap; gap: 20px; }
    .stat-item {
        padding: 0 20px;
        border-right: none;
        flex: 1 0 40%;
    }

    .community-inner { grid-template-columns: 1fr; }
    .community-text-side {
        padding: 60px 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .community-image-side { min-height: 300px; }

    .cta-actions { flex-direction: column; align-items: center; }

    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; }

    .modal { padding: 28px 22px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; }
    .stat-item { flex: 1 0 100%; }
    .features-grid { max-width: 100%; }
}


