/* Taxi Thun – Refined Professional */

:root {
    --red: #C41E2A;
    --red-hover: #A81822;
    --red-light: #FDF4F4;
    --white: #FFFFFF;
    --bg: #F7F6F4;
    --text: #1C1C1C;
    --text-muted: #6B6560;
    --border: #E8E4DF;
    --dark: #1A1A1A;
    --font: 'DM Sans', system-ui, sans-serif;
    --font-serif: 'Libre Baskerville', Georgia, serif;
    --header-h: 76px;
    --container: 1140px;
    --radius: 8px;
    --ease: .25s ease;
    --img-hero-services: url('/assets/images/airport.jpg');
    --img-hero-about: url('/assets/images/business.jpg');
    --img-hero-faq: url('/assets/images/personentransport.jpg');
    --img-hero-contact: url('/assets/images/business.jpg');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }

* { scrollbar-width: thin; scrollbar-color: var(--red) #EDEAE6; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: #EDEAE6; }
*::-webkit-scrollbar-thumb { background: var(--red); border-radius: 99px; border: 2px solid #EDEAE6; }
*::-webkit-scrollbar-thumb:hover { background: var(--red-hover); }

::selection { background: var(--red-light); color: var(--red); }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--header-h);
}
.site-header--solid {
    position: sticky;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.logo-img { height: 40px; width: auto; }
.logo-img--footer { height: 46px; }

.nav-desktop { display: flex; gap: 32px; }
.nav-link {
    font-size: .9375rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    position: relative;
}
.site-header--solid .nav-link { color: var(--text-muted); }
.nav-link:hover { color: var(--white); }
.site-header--solid .nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--white); }
.site-header--solid .nav-link.active { color: var(--red); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    border-radius: 1px;
}
.site-header:not(.site-header--solid) .nav-link.active::after { background: var(--white); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: .9375rem; font-weight: 600;
    color: var(--white);
}
.site-header--solid .header-phone { color: var(--text); }
.header-phone svg { width: 16px; height: 16px; opacity: .8; }

.menu-toggle { display: none; background: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: var(--ease); }
.site-header--solid .menu-toggle span { background: var(--text); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
    z-index: 105;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

.nav-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(84vw, 340px);
    background: var(--white);
    z-index: 110;
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(0, 0, 0, .12);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility 0s linear .32s;
}
.nav-mobile.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1), visibility 0s;
}
.nav-mobile__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 20px 0 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.nav-mobile__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    color: var(--text);
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--ease), color var(--ease);
}
.nav-mobile__close:hover { background: var(--red-light); color: var(--red); }
.nav-mobile__close svg { width: 24px; height: 24px; }
.nav-mobile__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 28px 32px;
}
.nav-mobile .nav-link { color: var(--text); font-size: 1.0625rem; padding: 14px 0; border-bottom: 1px solid var(--border); }
.nav-mobile .nav-link.active { color: var(--red); font-weight: 600; }
.nav-mobile .nav-link.active::after { display: none; }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: .9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
    border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 14px 28px; }

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

.btn-secondary { background: var(--white); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--text-muted); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline--dark { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline--dark:hover { border-color: var(--text); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #000; border-color: #000; }
.btn-red { background: var(--red); color: var(--white); border-radius: var(--radius); }
.btn-white { background: var(--white); color: var(--red); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); border-radius: var(--radius); }
.btn-pill-arrow .btn-arrow { display: none; }

/* ── Hero cinema ── */
.hero-cinema {
    position: relative;
    min-height: 88vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero-cinema__bg {
    position: absolute; inset: 0;
}
.hero-cinema__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-cinema__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.25) 100%);
}
.hero-cinema__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 80px;
}
.hero-cinema__label {
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}
.hero-cinema__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin-bottom: 20px;
}
.hero-cinema__lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-cinema__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Trust line ── */
.trust-line {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.trust-line__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-line__item {
    flex: 1;
    min-width: 140px;
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.trust-line__item:last-child { border-right: none; }
.trust-line__value {
    display: block;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.trust-line__label {
    font-size: .8125rem;
    color: var(--text-muted);
}

/* ── Sections ── */
section { padding: 96px 0; }
.section-muted { background: var(--bg); }
.section-dark { background: var(--dark); color: var(--white); }

.section-intro { margin-bottom: 48px; max-width: 560px; }
.section-intro--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-kicker {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 12px;
}
.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3vw, 2.375rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 14px;
}
.section-text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Legacy aliases */
.section-head { margin-bottom: 48px; max-width: 560px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow, .section-label { font-size: .8125rem; font-weight: 600; color: var(--red); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.875rem, 3vw, 2.375rem); font-weight: 400; line-height: 1.2; margin-bottom: 14px; }
.section-desc, .section-subtitle { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-alt, .section-gray { background: var(--bg); }

/* ── Highlight (featured) ── */
.highlight {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.highlight__image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.highlight__image img { width: 100%; height: 100%; object-fit: cover; }
.highlight__content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.25;
}
.highlight__content > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.highlight__list { margin-bottom: 32px; }
.highlight__list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .9375rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.highlight__list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}
.highlight__foot {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.highlight__price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}
.highlight__price span { font-size: .875rem; font-weight: 400; color: var(--text-muted); }

/* ── Service grid ── */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.service-item__image {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16/10;
    margin-bottom: 0;
}
.service-item__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.service-item:hover .service-item__image img { transform: scale(1.03); }
.service-item__meta {
    font-size: .8125rem;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 6px;
    padding: 20px 24px 0;
}
.service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 22px 24px 0;
}
.service-item p {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    padding: 0 24px;
}
.service-item__link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 24px 24px;
}
.service-item__link svg { width: 14px; height: 14px; transition: transform var(--ease); }
.service-item:hover .service-item__link svg { transform: translateX(3px); }

/* ── Values ── */
.values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.value-item {
    text-align: left;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.value-item__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red);
    margin-bottom: 18px;
}
.value-item__icon svg { width: 28px; height: 28px; stroke-width: 1.5; }
.value-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.value-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* Legacy perks/features */
.perks-row, .perks-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.perk-item, .feature-card {
    text-align: left;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.perk-item__icon, .feature-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); margin-bottom: 18px;
}
.perk-item__icon svg, .feature-icon svg { width: 28px; height: 28px; }
.perk-item h3, .feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.perk-item p, .feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ── Business band ── */
.business-band {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}
.business-band__bg {
    position: absolute; inset: 0;
}
.business-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.business-band__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(26,26,26,.92) 0%, rgba(26,26,26,.6) 100%);
}
.business-band__content {
    position: relative;
    z-index: 1;
    padding: 56px;
    max-width: 520px;
    color: var(--white);
}
.business-band__content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}
.business-band__content > p { opacity: .85; margin-bottom: 28px; line-height: 1.7; }
.business-band__list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.business-band__list li {
    font-size: .9375rem;
    opacity: .9;
    padding-left: 16px;
    position: relative;
}
.business-band__list li::before {
    content: '';
    position: absolute; left: 0; top: 10px;
    width: 5px; height: 5px;
    background: var(--red);
    border-radius: 50%;
}

/* Legacy split-promo, promo-card */
.split-promo, .promo-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.split-promo__img, .promo-card__bg { position: absolute; inset: 0; }
.split-promo__img img, .promo-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.split-promo__text, .promo-card__content { position: relative; z-index: 1; padding: 48px; color: var(--white); max-width: 520px; }
.split-promo__text h2, .promo-card__content h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 12px; }

/* ── Testimonials ── */
.testimonial-grid, .reviews-row, .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial, .review-card, .testimonial-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.section-muted .testimonial, .section-muted .review-card { background: var(--white); }
.testimonial__stars, .review-card__stars, .testimonial-stars {
    display: flex; gap: 2px;
    margin-bottom: 16px;
    color: var(--red);
}
.testimonial__stars svg, .review-card__stars svg, .testimonial-stars svg { width: 14px; height: 14px; }
.testimonial__text, .review-card__text, .testimonial-text {
    font-size: .9375rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 24px;
}
.testimonial__author, .review-card__author, .testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial__avatar, .review-card__avatar, .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial__avatar img, .review-card__avatar img, .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name, .review-card__name, .testimonial-name { font-weight: 600; font-size: .875rem; }
.testimonial__role, .review-card__meta, .testimonial-meta { font-size: .8125rem; color: var(--text-muted); }

/* ── Contact banner ── */
.contact-banner {
    text-align: center;
    padding: 72px 48px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.contact-banner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    margin-bottom: 12px;
}
.contact-banner__phone {
    display: inline-block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 12px;
}
.contact-banner__phone:hover { color: var(--red-hover); }
.contact-banner__note {
    font-size: .9375rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.contact-banner__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    margin-top: 0;
}
.footer-main { padding-top: 72px; padding-bottom: 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-brand p { font-size: .9375rem; line-height: 1.7; margin: 20px 0 24px; max-width: 280px; }
.site-footer .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.25);
}
.site-footer .btn-secondary:hover { border-color: var(--white); }
.footer-col h4 {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
    display: flex; gap: 12px;
    margin-bottom: 14px;
    font-size: .9rem; line-height: 1.5;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social__link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: var(--white);
    transition: background .2s ease, transform .2s ease;
}
.footer-social__link:hover { background: var(--red); transform: translateY(-2px); }
.footer-social__link svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8125rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-credit__text { line-height: 1.6; }
.footer-credit__sep { margin: 0 8px; opacity: .4; }
.footer-dev-link { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-dev-link:hover { color: var(--white); }

/* ── Page hero ── */
.page-hero {
    position: relative;
    padding: 28px 0 40px;
    background: var(--bg);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border);
}
.page-hero--has-image {
    padding: 48px 0 56px;
    color: var(--white);
    border-bottom: none;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, .72) 0%, rgba(26, 26, 26, .45) 100%);
    pointer-events: none;
}
.page-hero__content {
    position: relative;
    z-index: 1;
}
.page-hero--services { background-image: var(--img-hero-services); }
.page-hero--about { background-image: var(--img-hero-about); }
.page-hero--faq { background-image: var(--img-hero-faq); }
.page-hero--contact { background-image: var(--img-hero-contact); }
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: 12px;
}
.page-hero p { color: var(--text-muted); font-size: 1.0625rem; max-width: 540px; }
.page-hero--has-image p { color: rgba(255, 255, 255, .85); }
.page-hero--has-image .breadcrumb,
.page-hero--has-image .breadcrumb a { color: rgba(255, 255, 255, .7); }
.page-hero--has-image .breadcrumb a:hover { color: var(--white); }
.breadcrumb { display: flex; gap: 8px; font-size: .8125rem; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--red); }

/* ── Fehlerseite (404) ── */
.error-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - 220px);
    padding: 72px 0;
    background: var(--bg);
}
.error-page__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.error-page__code {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(5.5rem, 18vw, 9rem);
    font-weight: 700;
    line-height: 1;
    color: var(--red);
    letter-spacing: -.02em;
}
.error-page__title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    font-weight: 400;
    margin: 16px 0 12px;
}
.error-page__desc { color: var(--text-muted); font-size: 1.0625rem; max-width: 480px; margin: 0 auto; }
.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}
.error-page__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    justify-content: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: .9375rem;
}
.error-page__links a { color: var(--text-muted); transition: color var(--ease); }
.error-page__links a:hover { color: var(--red); }

/* ── Pricing ── */
.pricing-section { padding: 64px 0 96px; }
.pricing-card-pro {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}
.pricing-card-pro__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
    padding: 40px 48px;
    border-bottom: 1px solid var(--border);
}
.pricing-card-pro__head h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.pricing-card-pro__head p { color: var(--text-muted); font-size: .9375rem; }
.pricing-card-pro__base { text-align: right; }
.pricing-card-pro__amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1;
}
.pricing-card-pro__label { font-size: .875rem; color: var(--text-muted); margin-top: 4px; }

.pricing-card-pro__rows { padding: 8px 0; }
.pricing-card-pro__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 48px;
    border-bottom: 1px solid var(--border);
}
.pricing-card-pro__row:last-child { border-bottom: none; }
.pricing-card-pro__row strong { font-weight: 600; font-size: .9375rem; display: block; }
.pricing-card-pro__row span { font-size: .8125rem; color: var(--text-muted); }
.pricing-card-pro__row em { font-style: normal; font-weight: 600; color: var(--text); white-space: nowrap; }

.pricing-card-pro__foot {
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.pricing-card-pro__foot p { font-size: .8125rem; color: var(--text-muted); flex: 1; }

/* Legacy pricing */
.pricing-modern, .pricing-wrap { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.pricing-modern__hero { padding: 32px 40px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.pricing-modern__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pricing-modern__item { padding: 24px; text-align: center; border-right: 1px solid var(--border); }
.pricing-modern__item:last-child { border-right: none; }
.pricing-modern__item em { font-style: normal; font-weight: 600; color: var(--red); font-size: 1.125rem; }
.pricing-modern__foot { padding: 24px 40px; background: var(--bg); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.pricing-header { padding: 32px; background: var(--red); color: var(--white); text-align: center; }
.pricing-inner { display: grid; grid-template-columns: 240px 1fr; }
.pricing-base { padding: 40px; background: var(--bg); text-align: center; border-right: 1px solid var(--border); }
.pricing-value { font-size: 3.5rem; font-weight: 600; color: var(--red); }
.pricing-details { padding: 32px 40px; }
.pricing-list li { display: grid; grid-template-columns: 1fr auto; padding: 14px 0; border-bottom: 1px solid var(--border); }
.pricing-list-price { font-weight: 600; color: var(--red); }
.pricing-footer { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.pricing-note { font-size: .8125rem; color: var(--text-muted); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; }
.contact-info-card {
    display: flex; gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--red-light);
    color: var(--red);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 4px; }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-error { display: block; color: var(--red); font-size: .8125rem; margin-top: 6px; }
.form-alert {
    margin-bottom: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    line-height: 1.5;
}
.form-alert--success {
    background: #e7f6ec;
    color: #1c7a3e;
    border: 1px solid #b6e3c4;
}
.form-alert--error {
    background: #fdeaea;
    color: #b42318;
    border: 1px solid #f5c2c0;
}
.form-group label { display: block; font-size: .8125rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .9375rem;
    background: var(--white);
    transition: border-color var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.faq-question svg { width: 18px; height: 18px; color: var(--text-muted); transition: transform var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; font-size: .9375rem; }

/* ── Service detail ── */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    scroll-margin-top: calc(var(--header-h) + 16px);
}
.service-detail-icon {
    width: 48px; height: 48px;
    color: var(--red);
    margin-bottom: 20px;
}
.service-detail-icon svg { width: 28px; height: 28px; }
.service-detail-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
.service-detail-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.service-detail-list li { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-muted); margin-bottom: 6px; }
.service-detail-list svg { width: 14px; height: 14px; color: var(--red); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.about-values { margin-top: 64px; }

/* ── Imprint ── */
.imprint-content { max-width: 680px; }
.imprint-content h2 { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400; margin: 36px 0 12px; }
.imprint-content h3 { font-size: 1.125rem; font-weight: 600; margin: 24px 0 10px; }
.imprint-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.imprint-content ul { color: var(--text-muted); line-height: 1.7; margin: 0 0 12px 20px; }
.imprint-content a { color: var(--red); font-weight: 600; }

/* ── CTA split ── */
.section-cta {
    display: flex;
    align-items: center;
    padding: 72px 0;
}
.section-cta .container { width: 100%; }
.cta-split {
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}
.cta-split__title { margin-bottom: 8px; }
.cta-split__desc { margin: 0 auto 24px; }
.cta-split__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Floating ── */
.floating-call { position: fixed; bottom: 24px; right: 24px; z-index: 90; display: none; }
.floating-call .btn { width: 52px; height: 52px; padding: 0; border-radius: 50%; box-shadow: 0 4px 20px rgba(0,0,0,.15); }

.scroll-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 91;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    opacity: 0; visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .highlight { grid-template-columns: 1fr; gap: 40px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .values-row, .perks-row, .perks-grid, .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .testimonial-grid, .reviews-row, .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid, .about-grid { grid-template-columns: 1fr; }
    .pricing-card-pro__row { padding: 18px 28px; }
    .pricing-modern__grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .pricing-inner { grid-template-columns: 1fr; }
    .pricing-base { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-line__item { border-bottom: 1px solid var(--border); }
    .trust-line__item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .nav-desktop, .header-phone { display: none; }
    .menu-toggle { display: block; }
    .hero-cinema { min-height: 520px; }
    .hero-cinema__content { padding-bottom: 48px; }
    .trust-line__inner { flex-direction: column; }
    .trust-line__item { border-right: none; width: 100%; }
    .service-grid { grid-template-columns: 1fr; }
    .values-row, .perks-row, .perks-grid, .features-grid { grid-template-columns: 1fr; }
    .business-band__content { padding: 40px 28px; }
    .pricing-card-pro__head, .pricing-card-pro__foot { padding: 28px 24px; }
    .pricing-card-pro__row { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .footer-brand p { max-width: 340px; }
    .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .contact-banner { padding: 48px 24px; }
    .floating-call { display: block; }
    .scroll-top { bottom: 88px; }
}
