/* ============================================================
   MOTORRAD COACH EGLISAU — Stylesheet
   Anpassen: --primary Farbe, Domain, Kontaktdaten
   ============================================================ */

:root {
    --primary: #F97316;
    --primary-dark: #EA6A0A;
    --primary-glow: rgba(249, 115, 22, 0.25);
    --dark: #0A0A0A;
    --dark-1: #111111;
    --dark-2: #1A1A1A;
    --dark-3: #242424;
    --text: #F0F0F0;
    --text-muted: #9CA3AF;
    --text-dim: #6B7280;
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(249, 115, 22, 0.3);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C4E;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p { max-width: 68ch; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER / NAVIGATION === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#nav-toggle { display: none; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: -0.01em;
    height: 64px;
    text-decoration: none;
}

.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }
.nav-logo .logo-accent { color: var(--primary); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-hamburger:hover { background: var(--dark-3); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: var(--transition); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.25rem 0;
    position: relative;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta.btn-primary { padding: 0.45rem 1.1rem !important; font-size: 0.9rem !important; }
.nav-cta.btn-primary::after { display: none !important; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5); }

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }

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

.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 96px 1.5rem; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.section-title { color: var(--white); margin-bottom: 1.1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.7; max-width: 62ch; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 1.5rem 80px;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 65% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 10% 90%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    animation: heroPulse 7s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    from { opacity: 0.65; transform: scale(1); }
    to   { opacity: 1;    transform: scale(1.04); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 40%, var(--primary) 60%, transparent 100%);
    animation: lineGlow 4s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.28);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.5; }
}

.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero h1 em { font-style: normal; color: var(--primary); }

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 52ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero right: visual cards */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.hero-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    animation: cardFadeIn 0.6s ease both;
}

.hero-card:nth-child(1) { animation-delay: 0.2s; }
.hero-card:nth-child(2) { animation-delay: 0.4s; }
.hero-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-card:hover { border-color: var(--border-hover); transform: translateX(-4px); }

.hc-icon {
    width: 46px; height: 46px;
    background: rgba(249, 115, 22, 0.13);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.hc-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.hc-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.hc-value { font-size: 1.1rem; font-weight: 700; color: var(--white); }

.scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

.scroll-hint svg { width: 18px; height: 18px; fill: var(--text-dim); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* === FEATURES SECTION === */
.features { background: var(--dark-1); }

.features-inner { max-width: 1140px; margin: 0 auto; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 0;
}

.feat-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    border-radius: var(--radius) var(--radius) 0 0;
    transition: var(--transition);
}

.feat-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-card:hover::after { transform: scaleX(1); }

.feat-icon {
    width: 50px; height: 50px;
    background: rgba(249, 115, 22, 0.13);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}

.feat-icon svg { width: 25px; height: 25px; fill: var(--primary); }
.feat-card h3 { color: var(--white); margin-bottom: 0.65rem; font-size: 1.1rem; }
.feat-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }

/* === ABOUT TEASER === */
.about-teaser { background: var(--dark); }

.about-teaser-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--dark-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover { border-color: var(--border-hover); }
.stat-num { display: block; font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.3rem; }
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }

.quote-box {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -20px; left: 16px;
    font-size: 9rem;
    color: rgba(249, 115, 22, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.quote-text { font-size: 1.1rem; color: var(--text); line-height: 1.8; font-style: italic; margin-bottom: 1.3rem; position: relative; z-index: 1; }
.quote-author { font-weight: 700; color: var(--primary); font-size: 0.9rem; font-style: normal; }

/* === CTA SECTION === */
.cta-band {
    background: var(--dark-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-band p { color: var(--text-muted); margin: 0 auto 2.3rem; font-size: 1.05rem; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* === PAGE HERO (inner pages) === */
.page-hero {
    min-height: 42vh;
    display: flex; align-items: center;
    padding: 120px 1.5rem 60px;
    background: var(--dark-1);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 75% 100% at 75% 50%, rgba(249, 115, 22, 0.07) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.9rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 60ch; line-height: 1.7; }

.breadcrumb {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; color: var(--text-dim);
    margin-bottom: 0.9rem;
}

.breadcrumb a { color: var(--text-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-dim); }

/* === SERVICES PAGE === */
.services-section { background: var(--dark); }

.services-inner { max-width: 1140px; margin: 0 auto; }

.service-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2.2rem;
    background: var(--dark-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.3rem;
    transition: var(--transition);
    align-items: start;
}

.service-item:hover { border-color: var(--border-hover); transform: translateX(5px); }

.svc-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(249, 115, 22, 0.18);
    line-height: 1;
    text-align: center;
    padding-top: 0.2rem;
}

.svc-body h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.6rem; }
.svc-body p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; font-size: 0.97rem; }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }

.tag {
    background: var(--dark-3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.checklist { margin: 0.6rem 0 1rem; }
.checklist li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    color: var(--text-muted); padding: 0.35rem 0;
    font-size: 0.93rem; line-height: 1.5;
}

.checklist li::before {
    content: '';
    width: 20px; height: 20px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23F97316' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: cover;
}

.price-note {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.3rem 1.5rem;
    margin-top: 2.5rem;
    display: flex; align-items: flex-start; gap: 0.8rem;
}

.price-note svg { width: 22px; height: 22px; fill: var(--primary); flex-shrink: 0; margin-top: 2px; }
.price-note p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* === ABOUT PAGE === */
.about-section { background: var(--dark); }

.about-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.profile-card {
    background: var(--dark-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 90px;
}

.profile-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    border: 3px solid rgba(249, 115, 22, 0.3);
}

.profile-name { color: var(--white); font-size: 1.3rem; margin-bottom: 0.2rem; }
.profile-role { color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.p-stat {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 0.9rem 0.5rem;
}

.p-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.2rem; }
.p-stat span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.about-text h2 { color: var(--white); margin-bottom: 1.1rem; }
.about-text h3 { color: var(--white); font-size: 1.1rem; margin: 2rem 0 0.65rem; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.9rem; font-size: 0.97rem; }

/* === CONTACT PAGE === */
.contact-section { background: var(--dark); }

.contact-grid {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--dark-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-card.c-whatsapp:hover { border-color: rgba(37, 211, 102, 0.3); }
.contact-card.c-email:hover { border-color: var(--border-hover); }

.cc-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.3rem;
}

.cc-icon.green { background: rgba(37, 211, 102, 0.12); }
.cc-icon.orange { background: rgba(249, 115, 22, 0.12); }
.cc-icon svg { width: 34px; height: 34px; }

.contact-card h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.3rem; }
.contact-card p { color: var(--text-muted); margin: 0 auto 1.8rem; font-size: 0.95rem; line-height: 1.65; max-width: 32ch; }

.area-box {
    background: var(--dark-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 1.5rem;
    grid-column: 1 / -1;
}

.area-box h4 { color: var(--white); margin-bottom: 1rem; }

.area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.area-tag {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--primary);
    padding: 0.28rem 0.8rem;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 500;
}

.response-info {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--text-dim); font-size: 0.85rem;
    margin-top: 0.9rem;
}
.response-info svg { width: 16px; height: 16px; fill: var(--text-dim); flex-shrink: 0; }

/* === FOOTER === */
.site-footer {
    background: var(--dark-1);
    border-top: 1px solid var(--border);
    padding: 3.5rem 1.5rem 0;
}

.footer-grid {
    max-width: 1140px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-brand-text {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 0.8rem;
    line-height: 1.7;
    max-width: 30ch;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--primary); }

.f-contact-item {
    display: flex; align-items: center; gap: 0.5rem;
    color: var(--text-muted); font-size: 0.88rem;
    margin-bottom: 0.55rem;
}

.f-contact-item svg { width: 15px; height: 15px; fill: var(--primary); flex-shrink: 0; }
.f-contact-item a { color: var(--text-muted); }
.f-contact-item a:hover { color: var(--primary); }

.footer-bottom {
    max-width: 1140px; margin: 0 auto;
    padding: 1.3rem 0;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom a { color: var(--text-dim); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--primary); }

/* === FAQ === */
.faq-section { padding: var(--section-pad) 0; }
.faq-section h2 { margin-bottom: 2.5rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 780px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface);
    transition: border-color .2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
    cursor: pointer;
    padding: 1.15rem 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.3rem; }
.faq-body p { color: var(--text-muted); line-height: 1.75; margin: 0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-inner { grid-template-columns: 1fr; }
    .profile-card { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
    .area-box { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    section { padding: 64px 1.25rem; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .cta-btns { flex-direction: column; align-items: center; }
    .service-item { grid-template-columns: 1fr; }
    .svc-num { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.5rem 0 1rem;
        border-top: 1px solid var(--border);
    }
    #nav-toggle:checked ~ .nav-links { display: flex; }
    .nav-links a {
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
    }
    .nav-links a:last-child { border-bottom: none; }
}
