/* ============================================
   miet-anhaenger.at — Stylesheet
   ============================================ */

@font-face {
    font-family: 'Inter';
    src: url('fonts/inter-var.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --clr-primary: #4DAF38;
    --clr-primary-dark: #3D8C2D;
    --clr-primary-light: #6BC455;
    --clr-dark: #313131;
    --clr-dark-light: #4A4A4A;
    --clr-accent: #FF5B0C;
    --clr-accent-light: #FF8C4C;
    --clr-bg: #FAFAFA;
    --clr-bg-alt: #F4F9F3;
    --clr-text: #2D2D2D;
    --clr-text-muted: #6B6B6B;
    --clr-border: rgba(49,49,49,0.1);
    --clr-white: #FFFFFF;
    --transition: 0.3s ease;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text);
    background: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}
::selection { background: var(--clr-primary); color: white; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-dark); }
ul { list-style: none; }

/* Skip Link */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--clr-primary); color: white;
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    z-index: 10000; font-size: 0.85rem;
}
.skip-link:focus { top: 1rem; }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--clr-dark); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

/* Container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
.nav-scrolled {
    background: var(--clr-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { max-height: 45px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-scrolled .nav-link { color: var(--clr-text); }
.nav-link:hover { color: white; background: rgba(255,255,255,0.15); }
.nav-scrolled .nav-link:hover { color: var(--clr-primary); background: rgba(77,175,56,0.06); }
.nav-cta {
    background: var(--clr-primary) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--clr-primary-dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}
.nav-dropdown-toggle svg {
    transition: transform var(--transition);
    width: 14px; height: 14px;
}
.nav-dropdown.active .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--clr-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    max-height: 400px;
    overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--clr-text);
    font-size: 0.88rem;
    transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu a:hover {
    background: rgba(77,175,56,0.06);
    color: var(--clr-primary);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-scrolled .nav-toggle span { background: var(--clr-dark); }
.nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(49,49,49,0.85), rgba(49,49,49,0.5)), url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 6rem 1.5rem 4rem;
    position: relative;
}
.hero-content { max-width: 800px; }
.hero-title { color: white; margin-bottom: 1rem; font-size: clamp(2.2rem, 5vw, 3.5rem); }
.hero-sub { color: rgba(255,255,255,0.85); font-size: clamp(1rem, 2vw, 1.25rem); margin-bottom: 2rem; font-weight: 400; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, rgba(49,49,49,0.85), rgba(49,49,49,0.5)), url('images/hero-bg.jpg') center/cover no-repeat;
    padding: 6rem 1.5rem 3rem;
}
.page-hero-content { max-width: var(--max-width); margin: 0 auto; width: 100%; }
.page-hero h1 { color: white; margin-bottom: 0.5rem; }
.page-hero .breadcrumb { margin-bottom: 1rem; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb .separator { margin: 0 0.2rem; }

/* ============================================
   Sections
   ============================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--clr-bg-alt); }
.section-dark { background: var(--clr-dark); color: white; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}
.section-dark .section-label { color: var(--clr-accent-light); }
.section-dark h2 { color: white; }
.section-header p { color: var(--clr-text-muted); font-size: 1rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
}
.btn-primary {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}
.btn-primary:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(77,175,56,0.3);
}
.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: white;
    color: var(--clr-dark);
    border-color: white;
}
.btn-outline-dark {
    background: transparent;
    color: var(--clr-dark);
    border-color: var(--clr-dark);
}
.btn-outline-dark:hover {
    background: var(--clr-dark);
    color: white;
}
.btn-dark {
    background: var(--clr-dark);
    color: white;
    border-color: var(--clr-dark);
}
.btn-dark:hover {
    background: var(--clr-dark-light);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Cards
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.card {
    background: var(--clr-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(77,175,56,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--clr-primary);
    font-size: 1.5rem;
}
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-text { color: var(--clr-text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.card-link:hover { gap: 0.6rem; }

/* Trailer card */
.trailer-card .card-img {
    height: 180px;
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--clr-accent);
}

/* Station card */
.station-card {
    background: var(--clr-white);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.station-card:hover { transform: translateY(-3px); }
.station-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--clr-dark); }
.station-card p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 0.3rem; }

/* Bundesland sections */
.bundesland-section { margin-bottom: 3rem; }
.bundesland-title {
    font-size: 1.3rem;
    padding-left: 1rem;
    border-left: 4px solid var(--clr-primary);
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}
.station-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ============================================
   Stats
   ============================================ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ============================================
   Steps
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
}
.step-number {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}
.step-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-text { color: var(--clr-text-muted); font-size: 0.95rem; }

/* ============================================
   Specs Table
   ============================================ */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.specs-table th,
.specs-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--clr-border);
}
.specs-table th {
    font-weight: 600;
    color: var(--clr-dark);
    width: 40%;
    background: var(--clr-bg-alt);
}
.specs-table tr:nth-child(even) td { background: rgba(241,250,238,0.5); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--clr-border);
    padding: 0;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-dark);
    transition: color var(--transition);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.faq-question:hover { color: var(--clr-primary); }
.faq-question svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    stroke: var(--clr-text-muted);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}
.faq-answer p { color: var(--clr-text-muted); font-size: 0.95rem; }

/* ============================================
   Contact Form
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 0.4rem;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--clr-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--clr-white);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(77,175,56,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}
.form-check input { margin-top: 0.25rem; accent-color: var(--clr-primary); }
.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--clr-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    font-family: inherit;
}
.form-submit:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}
.form-status {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
    display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; }
.honeypot { position: absolute; left: -9999px; }

/* Content Grid (for detail pages) */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}
.content-main h2 { margin-top: 2rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul, .content-main ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.content-main li { margin-bottom: 0.5rem; color: var(--clr-text-muted); }

.sidebar-cta {
    background: var(--clr-bg-alt);
    border-radius: var(--radius);
    padding: 2rem;
    position: sticky;
    top: 90px;
    text-align: center;
}
.sidebar-cta h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: 0.9rem; color: var(--clr-text-muted); margin-bottom: 1.5rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    padding: 4rem 1.5rem;
    text-align: center;
    color: white;
}
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { border-color: white; color: white; }
.cta-banner .btn-outline:hover { background: white; color: var(--clr-primary); }

/* Partner Benefits */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 50%;
    background: rgba(77,175,56,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.3rem;
}
.benefit-text h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.benefit-text p { font-size: 0.9rem; color: var(--clr-text-muted); margin: 0; }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--clr-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; }
.footer-logo { max-height: 40px; margin-bottom: 0.5rem; filter: brightness(0) invert(1); }
.footer h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.footer ul li { margin-bottom: 0.4rem; }
.footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer ul a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-credit {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.18);
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-credit a {
    color: rgba(255,255,255,0.25);
    text-decoration: none;
}
.footer-credit a:hover { color: rgba(255,255,255,0.5); }

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(77,175,56,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: var(--clr-primary-dark); transform: translateY(-3px); }

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    animation: none;
}
.whatsapp-btn svg { width: 26px; height: 26px; fill: white; }
.whatsapp-tooltip {
    position: absolute;
    right: 62px;
    background: var(--clr-dark);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.55); }
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SEO Hidden H1 */
.seo-h1-text {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Legal pages */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin-top: 2.5rem; font-size: 1.3rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.5rem; }
.legal-content ul { margin: 1rem 0; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; color: var(--clr-text-muted); list-style: disc; }

/* Google Maps */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 1.5rem 0;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* View all link */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr 300px; }
}

@media (max-width: 1024px) {
    .section { padding: 4rem 0; }
    .station-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 350px;
        height: 100vh;
        background: var(--clr-white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    .nav-open .nav-links { right: 0; }
    .nav-link { color: var(--clr-text) !important; padding: 0.75rem 0; border-bottom: 1px solid var(--clr-border); }
    .nav-cta { text-align: center !important; margin-top: 1rem; border-bottom: none !important; }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        padding: 0;
        transition: max-height 0.3s ease, visibility 0.3s ease;
    }
    .nav-dropdown.active .nav-dropdown-menu {
        visibility: visible;
        max-height: 600px;
        padding: 0.5rem 0;
    }
    .nav-dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.88rem;
    }
    .nav-open .nav-toggle span { background: var(--clr-dark) !important; }

    .card-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .sidebar-cta { position: static; }
    .benefit-grid { grid-template-columns: 1fr; }
    .station-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { text-align: center; }
    .hero { min-height: 90vh; }
    .page-hero { min-height: 35vh; }
}

@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; }
    .stat-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ============================================
   Print
   ============================================ */
@media print {
    .nav, .footer, .whatsapp-btn, .back-to-top, .hero-scroll, .btn, .cta-banner { display: none !important; }
    .hero, .page-hero { min-height: auto; padding: 2rem; background: white !important; }
    .hero-title, .page-hero h1 { color: black !important; }
    body { font-size: 12pt; color: black; }
    a { color: black; text-decoration: underline; }
    .section { padding: 1.5rem 0; }
}
