@import url('/assets/vendor/fontawesome/css/all.min.css');

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}

:root {
    --dark: #0f1d32;
    --panel: #1c2c45;
    --lighter: #273d5f;
    --accent: #6bd425;
    --accent-blue: #5fb3ff;
    --text: #f5f8ff;
    --muted: #b3c2da;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

body.theme-dark {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #242d3d 0%, #182133 45%, #0b1628 100%);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

body.theme-dark::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(107, 212, 37, 0.08), transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(107, 212, 37, 0.10), transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(95, 179, 255, 0.12), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem 0;
    width: 100%;
}

/* Typografie & Abstände */
body {
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--accent-blue);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(95, 179, 255, 0.72);
}

a:visited {
    color: #8ecbff;
    text-decoration-color: rgba(142, 203, 255, 0.78);
}

a:hover {
    color: #cbe8ff;
    text-decoration-thickness: 0.12em;
}

a:active {
    color: #dff2ff;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -10rem;
    z-index: 3000;
    background: #ffffff;
    color: #0b1524;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.skip-link:visited {
    color: #0b1524;
}

.skip-link:focus-visible {
    top: 1rem;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.hero__content h1 {
    margin-bottom: 0.35em;
}

.hero__content .lead {
    margin-bottom: 1.1em;
}

.site-header {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 0 0.5rem;
    position: relative;
    z-index: 1;
}

.logo-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
}

.logo-block img {
    height: 54px;
    width: auto;
}

.page-head {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    margin: 0 0 1.5rem;
    width: 100%;
    background:
        radial-gradient(circle at 15% -10%, rgba(107, 212, 37, 0.45), transparent 55%),
        radial-gradient(circle at 85% 110%, rgba(107, 212, 37, 0.25), transparent 55%),
        linear-gradient(135deg, #181c25 0%, #11151c 50%, #080b10 100%);
}

.page-head__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
}

.page-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
    border-radius: 0 0 28px 28px;
    pointer-events: none;
}

.page-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(107,212,37,0.05) 50%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    border-radius: 0 0 28px 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--text);
}

.logo-text strong {
    font-size: 1.02rem;
    display: block;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--muted);
    display: block;
}

.nav-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
}

.has-nav-toggle .nav-toggle {
    display: inline-flex;
}

/* Hide nav toggle on desktop */
@media (min-width: 900px) {
    .nav-toggle {
        display: none !important;
    }
    
    .has-nav-toggle .nav-toggle {
        display: none !important;
    }
    
    .main-nav {
        display: flex !important;
    }
}

.nav-toggle__bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle__bars span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle__label {
    font-weight: 700;
}

.main-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.has-nav-toggle .main-nav {
    display: none;
}

.has-nav-toggle .main-nav.is-open {
    display: flex;
}

/* Ensure nav is always visible on desktop */
@media (min-width: 900px) {
    .main-nav {
        display: flex !important;
    }
    
    .has-nav-toggle .main-nav {
        display: flex !important;
    }
    
    .has-nav-toggle .nav-toggle {
        display: none !important;
    }
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
    width: 100%;
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 700;
    padding: 0.45rem 0.8rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text);
}
.main-nav a.is-active {
    background: linear-gradient(135deg, var(--accent), #90e75f);
    color: #0c1b2f;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(107,212,37,0.3);
}

.main-nav a.is-active:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--accent-blue);
    margin-bottom: 0.4rem;
    display: inline-block;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #90e75f);
    color: #0c1b2f;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.1s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

a.button,
a.button:visited,
a.button:hover,
a.button:active {
    text-decoration: none;
}

a.button:not(.button--ghost):not(.button--outline),
a.button:not(.button--ghost):not(.button--outline):visited,
a.button:not(.button--ghost):not(.button--outline):hover,
a.button:not(.button--ghost):not(.button--outline):active {
    color: #0c1b2f;
}

a.button.button--ghost,
a.button.button--ghost:visited,
a.button.button--ghost:hover,
a.button.button--ghost:active,
a.button.button--outline,
a.button.button--outline:visited,
a.button.button--outline:hover,
a.button.button--outline:active {
    color: var(--text);
}

.button--outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text);
}

.button--ghost {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
}

.button i {
    color: #0b0b0b;
    margin-right: 0;
}

a.button[href^="tel:"],
.button--phone {
    white-space: nowrap;
    flex-wrap: nowrap;
    font-variant-numeric: tabular-nums;
}

.button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.button--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.button--ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}

.text-accent {
    color: var(--accent) !important;
}

.hero {
    position: relative;
    border-radius: 28px;
    background: url('/assets/img/hero.jpg') center/cover no-repeat;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 100%;
}

.hero--article {
    height: auto;
    min-height: 320px;
    margin-bottom: 1rem;
    background: var(--hero-bg-image, url('/assets/img/wissen.png')) center/cover no-repeat;
}

.hero--article .hero__content {
    padding-bottom: 4rem;
}

.hero--vehicles {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(9,32,63,0.9)), var(--hero-bg-image, url('/assets/img/template-b197.jpg')) center/cover no-repeat;
    min-height: 360px;
}

.hero--home {
    background: linear-gradient(135deg, rgba(7,25,49,0.95), rgba(18,53,88,0.85)), var(--hero-bg-image, url('/assets/img/hero.jpg')) center/cover no-repeat;
}

.hero__image {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding: 1rem 0 0;
    width: 100%;
}

.hero__image img {
    max-width: 360px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-blue);
}

.hero-facts {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem;
}

.hero-facts li {
    background: rgba(255,255,255,0.08);
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.hero-facts li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.hero__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.content {
    margin-top: 0;
}

.panel {
    background: linear-gradient(145deg, rgba(20,34,56,0.9), rgba(12,22,38,0.85));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.panel--primary {
    border-left: 4px solid var(--accent);
    background: linear-gradient(145deg, rgba(20,34,56,0.95), rgba(12,22,38,0.9));
}

.panel--secondary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}

.panel--accent {
    background: linear-gradient(135deg,
        rgba(107,212,37,0.1),
        rgba(95,179,255,0.05));
    border: 1px solid rgba(107,212,37,0.2);
}

.panel__heading h2 {
    margin-top: 0;
}

.panel--text {
    text-align: left;
}

.panel--text p {
    color: var(--muted);
    line-height: 1.6;
}

.panel a:not(.button) {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
}

.panel a:not(.button):visited {
    color: #8ecbff;
}

.panel a:not(.button):hover {
    text-decoration-thickness: 0.12em;
    color: #cbe8ff;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

.badge-list {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.badge-list span {
    background: rgba(255,255,255,0.08);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
}

.panel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: center;
}

.panel__grid--reverse {
    direction: rtl;
}
.panel__grid--reverse > * {
    direction: ltr;
}

.panel__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.15);
}

.card--featured {
    background: linear-gradient(135deg,
        rgba(107,212,37,0.08),
        rgba(95,179,255,0.04));
    border: 1px solid rgba(107,212,37,0.25);
}

.card-grid--equal .card {
    height: 100%;
}

.card-grid.card-grid--tariffs {
    grid-template-columns: 1fr;
    max-width: 980px;
    margin-inline: auto;
}

.card--link a {
    align-self: flex-start;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.location-cards--detailed .location-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.location-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.service-card,
.offer-card,
.vehicle-card,
.news-card,
.faq-entry,
.info-card,
.icon-card,
.team-card,
.feature-card,
.location-card,
.hero-offer-tile {
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), filter var(--transition-base);
}

.offer-card__media img,
.hero-offer-tile img,
.vehicle-card__media img {
    transition: transform var(--transition-base), filter var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover,
    .offer-card:hover,
    .vehicle-card:hover,
    .news-card:hover,
    .faq-entry:hover,
    .info-card:hover,
    .icon-card:hover,
    .team-card:hover,
    .feature-card:hover,
    .location-card:hover,
    .hero-offer-tile:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.28);
        border-color: rgba(255,255,255,0.2);
    }

    .offer-card:hover .offer-card__media img,
    .hero-offer-tile:hover img,
    .vehicle-card:hover .vehicle-card__media img {
        transform: scale(1.03);
        filter: brightness(1.06);
    }
}

.location-card .eyebrow {
    margin-bottom: 0.2rem;
}

.location-card__address {
    font-weight: 600;
}

.next-opening {
    font-weight: 600;
}

.location-card .button {
    margin-top: auto;
}

.location-card__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
}

.contact-list li {
    margin-bottom: 0.4rem;
}

.contact-list a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
}

.contact-list a:hover {
    text-decoration-thickness: 0.12em;
}

.steps-list {
    margin: 0;
    padding-left: 1.2rem;
}

.steps-list li {
    margin-bottom: 0.4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.info-card--accent {
    background: linear-gradient(145deg, rgba(25,45,78,0.95), rgba(21,36,60,0.8));
}

.info-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--accent-blue);
}

.about-points p {
    margin-bottom: 0.8rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 1.4rem;
    border: 1px solid rgba(255,255,255,0.08);

    min-height: 190px;
}

.feature-card__icon {
    font-size: 1.6rem;
}

.feature-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(107,212,37,0.18);
    border: 1px solid rgba(107,212,37,0.4);
    box-shadow: 0 0 0 2px rgba(107,212,37,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent);
    line-height: 1;
}

.info-pill i,
.icon-card .icon-label i,
.footer-social-icons i,
.footer-contact i,
.faq-entry summary i {
    color: var(--accent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.team-card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 1.4rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.team-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.05);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__avatar--outline {
    border: 2px dashed rgba(255,255,255,0.4);
    background: transparent;
}

.team-card__role {
    color: #c9d5ec;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.service-card {
    display: flex;
    gap: 0.9rem;
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
}

.service-card__icon {
    font-size: 1.6rem;
}

.faq-panel details + details {
    margin-top: 0.6rem;
}

.faq-panel summary {
    font-weight: 600;
}

.faq-entry {
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0.6rem;
}

.faq-entry summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.faq-entry summary i {
    color: var(--accent);
}

.icon-list {
    list-style: none;
    padding: 0;
}
.icon-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.4rem;
}
.icon-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.offer-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.offer-card__media {
    display: block;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    width: 100%;
}

.offer-card__media img,
.offer-card img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px 12px 0 0;
    background-color: rgba(0,0,0,0.35);
}

.offer-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.25rem;
}

.offer-card__body {
    padding: 0.75rem 1rem 1rem;
}

.offer-card__valid,
.offer-validity {
    color: var(--muted);
    font-size: 0.9rem;
}

.offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.offer-tag--highlight {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.offer-tag--permanent {
    background: rgba(63,178,76,0.15);
    border: 1px solid rgba(63,178,76,0.5);
    color: #9cf29e;
}

.offer-tag--hero {
    margin-bottom: 0.35rem;
}

.offer-card--permanent {
    border-color: rgba(63,178,76,0.35);
}

.offer-subheading {
    margin: 1rem 0 0.5rem;
}

.hero-offer-tile {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 380px;
    width: 100%;
    text-align: left;
}

.hero-offer-tile img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-offer-meta strong {
    display: block;
}

.hero-offer-meta small {
    color: var(--muted);
}

.offer-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 20, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.offer-lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.offer-lightbox__inner {
    background: rgba(9, 20, 36, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 900px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.offer-lightbox__media img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #0b1628;
}

.offer-lightbox__body {
    padding: 1rem 1.4rem 1.2rem;
}

.offer-lightbox__title {
    margin: 0 0 0.35rem;
}

.offer-lightbox__validity {
    color: var(--muted);
    margin-bottom: 0.5rem;
    display: block;
}

.offer-lightbox__close {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}

.muted {
    color: var(--muted);
}

.panel--cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.site-footer {
    margin-top: 2rem;
    padding: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    background:
        linear-gradient(180deg, rgba(8,18,34,0.9), rgba(8,18,34,0.92)),
        url('/assets/img/footer.png') center/cover no-repeat;
    border-radius: 24px 24px 0 0;
    margin-bottom: -2.5rem;
}

.footer-social a {
    color: var(--accent-blue);
    margin-right: 0.8rem;
    text-decoration: none;
}

.footer-brand {
    text-align: center;
}

.footer-brand img {
    max-width: 220px;
    width: 100%;
    margin-bottom: 0.8rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.site-footer__grid h4 {
    margin-bottom: 0.4rem;
    color: var(--text);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
}

.footer-social-icons i {
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
}

.footer-links a:hover {
    text-decoration-thickness: 0.12em;
}

.footer-contact {
    display: flex;
    gap: 0.4rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.footer-contact a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
}

.footer-contact i {
    color: var(--accent);
    min-width: 20px;
    text-align: center;
}

.hero--article .hero__content {
    max-width: 720px;
}

.highlight-text {
    color: var(--accent-blue);
    font-weight: 700;
}

.info-pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.info-pill {
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.info-pill i {
    color: var(--accent);
    font-size: 1rem;
}

.icon-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.icon-card {
    background: rgba(255,255,255,0.04);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.icon-card .icon-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
}

.icon-card .icon-label i {
    color: var(--accent);
}

.site-footer__copy {
    margin-top: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .page-wrap {
        padding: 0 2rem 0;
    }
    .page-head {
        margin: 0 0 2.5rem;
        border-radius: 0 0 40px 40px;
    }
    .page-head__inner {
        padding: 1rem 2rem;
    }
    .panel {
        padding: 2rem;
    }
    
    .hero {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__content h1 {
        font-size: 2.5rem;
    }
    
    .hero-facts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-grid,
    .feature-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-grid.card-grid--tariffs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 4rem;
        padding: 1.2rem 0 0.5rem;
    }
    .logo-block {
        flex-direction: row;
        align-items: center;
        width: auto;
        flex: 1;
        min-width: 0;
        position: relative;
    }
    .logo-block img {
        height: 60px;
        width: auto;
    }
    .nav-toggle {
        display: none;
    }
    .nav-block {
        align-items: flex-end;
        flex-direction: column;
        gap: 0.5rem;
        flex: 1;
        justify-content: flex-start;
        margin-top: -0.5rem;
    }
    .main-nav {
        display: flex !important;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-end;
        width: 100%;
        padding: 0;
        border-top: none;
        order: 2;
        margin-top: 0.5rem;
    }
    .main-nav a {
        width: auto;
        border-radius: 999px;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    .header-actions {
        width: 100%;
        justify-content: flex-end;
        order: 1;
        display: flex;
        gap: 0.8rem;
        margin-left: 0;
        margin-top: -0.5rem;
    }
    .hero {
        flex-direction: row;
        align-items: center;
        min-height: 60vh;
        padding: 2.5rem 3rem;
        gap: 2rem;
    }
    .hero__content {
        max-width: 680px;
        flex: 1;
    }
    .hero--home-wide .hero__content {
        max-width: min(920px, 100%);
    }
    .hero__content h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    .hero__image {
        justify-content: center;
        padding: 1rem;
        flex: 1;
    }
    .hero__image img {
        max-width: 420px;
        width: 100%;
    }
    .hero-facts {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    }
    .panel--cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .panel {
        padding: 2rem;
    }
    .card-grid,
    .feature-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-pill-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .icon-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .site-footer__copy {
        text-align: right;
    }
    .cta-floating {
        right: 1.5rem;
        bottom: 1.5rem;
        padding: 0.9rem 1.6rem;
        font-size: 1rem;
    }
    .location-hero {
        flex-direction: row;
        align-items: center;
        min-height: 40vh;
        padding: 3rem;
        gap: 2rem;
    }
    .location-hero__content {
        max-width: 600px;
        flex: 1;
    }
    .location-hero__card {
        width: auto;
        min-width: 260px;
        flex: 0 0 auto;
    }
}
.location-hero {
    min-height: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), var(--location-hero-bg-image, url('/assets/img/hero.jpg')) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
    gap: 1.25rem;
}

.location-hero__content {
    max-width: 100%;
}

.location-hero__card {
    background: rgba(15,29,50,0.85);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
    min-width: 0;
    width: 100%;
}

.location-hero__card a {
    color: var(--accent-blue);
    text-decoration: none;
}

.section-heading {
    max-width: 720px;
}

.section-heading h2 {
    margin-top: 0;
    margin-bottom: 0.4em;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-heading p {
    color: var(--muted);
    overflow-wrap: break-word;
    hyphens: auto;
}
.section-heading .eyebrow {
    color: var(--accent-blue);
    margin-bottom: 0.3em;
}

.section-heading > p:last-child {
    margin-top: 0.2em;
}

.panel :is(p, li, a, h3) {
    overflow-wrap: break-word;
    hyphens: auto;
}
.panel-eyebrow {
    margin: 0 0 0.1rem 0;
}

.panel__grid h2 {
    margin-top: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.schedule-weeks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-card li {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.schedule-card li span {
    color: var(--muted);
}

.schedule-card li.is-closed strong {
    color: #fda4a4;
}

.muted-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0.25rem 0 0;
}

.u-mt-1 {
    margin-top: 1rem;
}

.u-mb-1 {
    margin-bottom: 1rem;
}

.class-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.class-list li {
    padding: 0.4rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.class-list span {
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.gallery-item {
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}

.lightbox.is-visible {
    display: flex;
}

.lightbox__inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.lightbox__img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.lightbox__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lightbox__btn {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    cursor: pointer;
}

.lightbox__status {
    color: #fff;
}

.lightbox__close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lightbox.is-visible .lightbox__controls,
.lightbox.is-visible .lightbox__close {
    visibility: visible;
    opacity: 1;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.6rem;
}

.hours-grid div {
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
}

.hours-grid span {
    color: var(--muted);
    display: block;
}

.calculator-panel {
    position: relative;
    border: 1px solid rgba(95, 179, 255, 0.28);
    background: linear-gradient(145deg, rgba(20, 34, 56, 0.95), rgba(11, 24, 40, 0.92));
}

.calculator-disclaimer {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(4, 10, 20, 0.82);
    padding: 1rem;
}

.calculator-panel.is-locked .calculator-disclaimer {
    display: flex;
}

.calculator-disclaimer__inner {
    max-width: 760px;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(9, 20, 36, 0.96);
    padding: 1rem 1.1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.calculator-disclaimer__inner h3 {
    margin: 0 0 0.5rem;
}

.calculator-disclaimer__inner p {
    margin: 0 0 0.65rem;
    color: var(--muted);
    line-height: 1.55;
}

.calculator-disclaimer__inner .button {
    margin-top: 0.2rem;
}

.calculator-panel.is-locked .js-calc-interactive {
    pointer-events: none;
    user-select: none;
    filter: blur(1px);
    opacity: 0.4;
}

.calculator-controls {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 0.5rem;
}

.calculator-field span {
    display: block;
    color: var(--muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.calculator-field select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: var(--text);
    padding: 0.55rem 0.7rem;
}

.calculator-tariff-note {
    margin: 0.35rem 0 0.9rem;
    color: var(--muted);
}

.calculator-slider {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.calculator-slider label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.calculator-slider input[type="range"] {
    width: 100%;
    accent-color: var(--accent);
}

.calculator-output {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
}

.calculator-column {
    background: rgba(7,16,29,0.65);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
}

.calculator-column__head h3 {
    margin: 0;
}

.calculator-column__desc {
    margin: 0.35rem 0 0.2rem;
    color: var(--muted);
}

.calculator-empty {
    color: var(--muted);
    margin: 0.6rem 0;
}

.calculator-breakdown {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.calculator-line {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.45rem;
}

.calculator-line:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.calculator-line__label span {
    display: block;
}

.calculator-line__label small {
    display: block;
    color: var(--muted);
}

.calculator-line.is-included strong {
    color: #8ceca0;
}

.calculator-total {
    margin-top: 0.8rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255,255,255,0.16);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.calculator-total strong {
    font-size: 1.2rem;
    color: var(--accent);
}

.faq-list details {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}

.faq-list details {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin-bottom: 0.65rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list p {
    color: var(--muted);
    margin-bottom: 0;
    margin-top: 0.6rem;
}

.faq-list details:hover {
    border-color: rgba(111,191,69,0.6);
    background: rgba(255,255,255,0.06);
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 0.5rem;
}

.link-list a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.08em;
}

.link-list a:hover {
    text-decoration-thickness: 0.12em;
}
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vehicle-card {
    background: linear-gradient(145deg, rgba(20,34,56,0.95), rgba(16,28,49,0.85));
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.vehicle-card__media {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    margin-bottom: 0.8rem;
}

.vehicle-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.vehicle-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.vehicle-thumb {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.vehicle-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: rgba(0,0,0,0.35);
}

.vehicle-card__body h3 {
    margin-top: 0;
}

.vehicle-card__header {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.vehicle-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.vehicle-tags span {
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
}
.news-panel {
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(140deg, rgba(63,178,76,0.12), rgba(12,22,38,0.9));
    box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.news-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.news-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.news-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(63,178,76,0.5);
    background: rgba(63,178,76,0.18);
    color: #b5f0c4;
    font-weight: 700;
    font-size: 0.85rem;
}

.news-date {
    color: var(--muted);
    font-size: 0.9rem;
}

.news-teaser {
    color: #e8eefc;
}

.news-details {
    margin-top: 0.5rem;
}

.news-details summary {
    cursor: pointer;
    color: var(--accent-blue);
    font-weight: 600;
}

.news-details p {
    margin: 0.4rem 0 0;
    color: var(--muted);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    color: var(--text);
}

th, td {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

thead {
    background: rgba(255,255,255,0.08);
}

tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

.cta-floating {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    background: linear-gradient(135deg, var(--accent), #a0ef6d);
    color: #0b1524;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-base), filter var(--transition-base);
}

.cta-floating:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 24px 46px rgba(0,0,0,0.45);
}

.cta-floating--whatsapp {
    bottom: 4.2rem;
    background: linear-gradient(135deg, #25D366, #86efac);
    color: #0b1524;
}

/* Mobile-First Responsive Improvements */
@media (max-width: 767px) {
    .hero {
        padding: 1.25rem 1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero__content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero__actions .button {
        width: 100%;
        justify-content: center;
    }

    a.button[href^="tel:"],
    .button--phone {
        font-size: 0.95rem;
    }

    .cta-floating {
        display: none;
    }
    
    .panel {
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .card-grid,
    .feature-grid,
    .team-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .hero-facts {
        grid-template-columns: 1fr;
    }
    
    .info-pill-grid {
        grid-template-columns: 1fr;
    }
    
    .icon-row {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .calculator-controls {
        grid-template-columns: 1fr;
    }

    .calculator-line {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .button,
    .card,
    .offer-card__media,
    .hero-offer-tile {
        min-height: 44px;
    }
    
    .button {
        padding: 1rem 1.8rem;
    }
    
    .main-nav a {
        padding: 0.85rem 1.2rem;
    }
    
    /* Reduce hover effects on touch devices */
    .card:hover,
    .panel:hover {
        transform: none;
    }
    
    .gallery-grid img:hover {
        transform: none;
    }
}
