/* ==========================================
   STYLES.CSS – Taxi Adrian
   ========================================== */

/* ── FONTS ───────────────────────────────── */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Italic.woff2') format('woff2');
    font-weight: 400; font-style: italic; font-display: swap;
}

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

:root {
    --y:  #facc15;
    --y2: #fbbf24;
    --bg: #0b0b0b;
    --c1: #151515;
    --c2: #1a1a1a;
}

html { scroll-behavior: smooth; }
@supports not (scroll-behavior: smooth) { html { scroll-behavior: auto; } }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
}
body.menu-open { overflow: hidden; }

/* ── SCROLL-SNAP: nur index.html ─────────── */
@media (min-width: 901px) {
    html { scroll-snap-type: y mandatory; }
    body.snap-page section,
    body.snap-page footer { scroll-snap-align: start; scroll-snap-stop: always; }
    body.snap-page footer  { min-height: 50vh; }
}

/* ── REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    html { scroll-behavior: auto; }
}

/* ── LOW PERFORMANCE ─────────────────────── */
.low-performance .season-animation { display: none; }
.low-performance * { animation: none !important; transition: none !important; }

/* ── GLOBAL TYPOGRAPHY ───────────────────── */
h1 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--y);
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(250,204,21,.6);
    margin-bottom: 10px;
    line-height: 1.2;
}
h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--y);
    font-weight: 800;
    margin: 32px 0 12px;
    line-height: 1.3;
}
h3 {
    font-size: clamp(15px, 2vw, 17px);
    color: #e0c84a;
    font-weight: 700;
    margin: 20px 0 8px;
}
h4 { font-size: 15px; color: #ccc; font-weight: 700; margin: 16px 0 6px; }
p  { font-size: 15px; line-height: 1.8; color: #ccc; margin-bottom: 14px; }
a  { color: var(--y); text-decoration: none; transition: filter .3s; }
a:hover { filter: brightness(1.3); }
ul { padding-left: 24px; margin-bottom: 14px; }
ul li { font-size: 15px; line-height: 1.8; color: #ccc; margin-bottom: 6px; }
strong { color: #e5e5e5; }

/* ── HEADER ──────────────────────────────── */
header {
    position: fixed; top: 0; width: 100%; height: 70px;
    padding: 0 5%; display: flex; align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,1); z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.5), 0 0 40px rgba(250,204,21,.1);
}
@supports (backdrop-filter: blur(10px)) { header { backdrop-filter: blur(10px); } }

.logo { display: flex; align-items: center; gap: 15px; }
.logo img { height: 50px; filter: drop-shadow(0 0 10px rgba(250,204,21,.3)); transition: filter .3s; }
.logo img:hover { filter: drop-shadow(0 0 15px rgba(250,204,21,.6)) drop-shadow(0 0 25px rgba(250,204,21,.4)); }

/* ── NAV ─────────────────────────────────── */
nav { display: flex; gap: 30px; }
nav a { color: #fff; font-weight: 600; transition: all .3s; position: relative; text-decoration: none; }
nav a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--y), var(--y2));
    transition: width .3s;
}
nav a:hover { color: var(--y); text-shadow: 0 0 10px rgba(250,204,21,.6); filter: none; }
nav a:hover::after { width: 100%; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--y); border-radius: 2px; transition: all .3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.season-animation {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


section {
    min-height: 100vh; display: flex;
    align-items: center; justify-content: center;
    padding: 100px 5%;
    position: relative;

    background: transparent;
}


section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;           /* Layer 0: unterste Ebene */
    pointer-events: none;
    background: rgba(11,11,11,.50);
}

/* ── HERO ────────────────────────────────── */
.hero-section {
    flex-direction: column;
    text-align: center;
}
/* Hero Overlay (Layer 0) */
.hero-section::after {
    background: linear-gradient(135deg, rgba(11,11,11,.60) 0%, rgba(26,26,26,.60) 50%, rgba(0,0,0,.60) 100%);
}
/* Hero Glow – eigenes ::before, auch Layer 0 */
.hero-section::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(250,204,21,.08) 0%, transparent 70%);
    transform: translate(-50%,-50%); filter: blur(100px);
    pointer-events: none; z-index: 0;
}
/* Hero-Content – Layer 2 (über Animation) */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-content img { max-width: 500px; width: 80%; margin-bottom: 3%; }
.hero-section .subtitle {
    font-size: clamp(16px, 2.5vw, 22px); margin-bottom: 40px;
    color: #e5e5e5; max-width: 700px; margin-left: auto; margin-right: auto;
    text-shadow: 0 0 15px rgba(255,255,255,.7);
}
.hero-section-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.hero-content.animate h2                { animation: fadeInUp 1s ease-out; }
.hero-content.animate .subtitle         { animation: fadeInUp 1s ease-out .2s both; }
.hero-content.animate .hero-section-buttons { animation: fadeInUp 1s ease-out .4s both; }

/* ── SERVICE SECTIONS – Layer 0 Overlay ─── */
.services-section-dt,
.services-section-tb,
.services-section-mb {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.services-section-dt::after,
.services-section-tb::after,
.services-section-mb::after {
    background: rgba(11,11,11,.45);
}
.services-section-dt:nth-child(even)::after,
.services-section-tb:nth-child(even)::after,
.services-section-mb:nth-child(even)::after {
    background: rgba(8,8,8,.45);
}

/* Section-Header + Container – Layer 2 */
.section-header,
.services-container {
    position: relative;
    z-index: 2;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
    padding: 16px 40px; border-radius: 10px; font-weight: 800; font-size: 16px;
    display: inline-block; position: relative; overflow: hidden;
    transition: all .3s; cursor: pointer; border: none; text-decoration: none;
}
.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,.3); transform: translate(-50%,-50%);
    transition: width .6s, height .6s;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
    background: linear-gradient(135deg, var(--y), var(--y2));
    color: #000; box-shadow: 0 4px 15px rgba(250,204,21,.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(250,204,21,.6); filter: none; }

.btn-secondary { background: transparent; color: var(--y); border: 2px solid var(--y); }
.btn-secondary:hover { background: linear-gradient(135deg, var(--y), var(--y2)); color: #000; filter: none; }

/* ── SECTION HEADER ──────────────────────── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
    font-size: clamp(28px, 4.5vw, 38px);
    margin: 0 0 12px; font-weight: 900;
    text-shadow: 0 4px 20px rgba(250,204,21,.8);
}
.section-header p { font-size: clamp(14px, 1.8vw, 16px); color: #d5d5d5; margin: 0; }

/* ── SERVICE CONTAINER ───────────────────── */
.services-container { max-width: 1400px; width: 100%; display: grid; gap: 25px; }

/* ── SERVICE CARD – Layer 2 ──────────────── */
.service-card {
    background: linear-gradient(135deg, rgba(21,21,21,.92), rgba(26,26,26,.92));
    border-radius: 20px; overflow: hidden;
    border: 2px solid rgba(250,204,21,.2);
    transition: border-color .4s, box-shadow .4s, transform .3s;
    opacity: 1; transform: translateX(0);
    position: relative;
    z-index: 2;           /* Layer 2: über Animation */
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(250,204,21,.1) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s; pointer-events: none; z-index: 1;
}
.service-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(250,204,21,.6); box-shadow: 0 12px 40px rgba(250,204,21,.3), 0 0 60px rgba(250,204,21,.2); }
.service-card:hover::before { opacity: 1; }
.service-card:active { transform: translateY(-5px) scale(.98); }
.service-card:hover .service-image img { transform: scale(1.05); }

.service-image {
    height: clamp(180px, 22vh, 260px);
    background: linear-gradient(135deg, rgba(250,204,21,.1), rgba(20,20,20,.9));
    display: flex; align-items: center; justify-content: center;
    border-bottom: 2px solid rgba(250,204,21,.4);
    position: relative; overflow: hidden; z-index: 2;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.service-image img.img-error { display: none; }
.service-image::after {
    content: ''; position: absolute; top: 50%; left: 50%; width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(250,204,21,.2) 0%, transparent 70%);
    transform: translate(-50%,-50%); filter: blur(20px); opacity: .5;
}
.service-image .img-fallback {
    display: none; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    font-size: clamp(38px, 5vh, 56px);
    background: linear-gradient(135deg, rgba(250,204,21,.15), rgba(20,20,20,.9));
    color: var(--y); gap: 8px;
}
.service-image .img-fallback span.fallback-label { font-size: 13px; font-weight: 600; color: #888; letter-spacing: .5px; }
.service-image.has-error .img-fallback { display: flex; animation: fadeInUp .4s ease-out; }

.service-content { padding: clamp(20px, 2.5vh, 30px); position: relative; z-index: 3; }
.service-content h3 {
    font-size: clamp(20px, 2.2vh, 26px); color: var(--y);
    margin: 0 0 clamp(12px, 1.5vh, 18px);
    font-weight: 800; text-shadow: 0 2px 15px rgba(250,204,21,.8);
}
.service-content p { font-size: clamp(14px, 1.6vh, 16px); line-height: 1.6; color: #ccc; margin-bottom: clamp(15px, 2vh, 22px); }

.service-features { display: flex; flex-direction: column; gap: 10px; }
.feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(250,204,21,.08), rgba(250,204,21,.04));
    border-radius: 8px; border-left: 3px solid var(--y);
    font-size: 14px; color: #e0e0e0; transition: all .3s;
}
.feature-item:hover { background: linear-gradient(135deg, rgba(250,204,21,.12), rgba(250,204,21,.06)); transform: translateX(5px); }
.feature-icon { color: var(--y); font-size: 16px; }

/* ── CONTACT – Layer 0 Overlay, Layer 2 Content ── */
.contact-section { flex-direction: column; }
.contact-section::after { background: rgba(8,8,8,.45); }

.contact-content {
    max-width: 1200px; width: 100%;
    position: relative;
    z-index: 2;           /* Layer 2: über Animation */
}
.contact-grid { display: grid; gap: 20px; }

.contact-info {
    background: linear-gradient(135deg, rgba(21,21,21,.92), rgba(26,26,26,.92));
    padding: 22px; border-radius: 12px;
    border: 2px solid rgba(250,204,21,.2);
    transition: all .4s;
    position: relative; z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.contact-info:hover { border-color: rgba(250,204,21,.5); transform: translateY(-6px); box-shadow: 0 8px 30px rgba(250,204,21,.3); }
.contact-info h3 { color: var(--y); font-size: 20px; margin: 0 0 12px; font-weight: 800; }
.contact-info p  { font-size: 15px; line-height: 1.6; }
.contact-info a  { color: var(--y); font-size: 15px; transition: all .3s; }
.contact-info a:hover { filter: brightness(1.2); }

/* ── MAP – Layer 0 Overlay, Layer 2 Content ─ */
.map-section { flex-direction: column; }
.map-section::after { background: rgba(8,8,8,.45); }

.klaro-map {
    position: relative; z-index: 2;  /* Layer 2: über Animation */
    width: 100%; height: 450px; border-radius: 12px;
    border: 3px solid rgba(250,204,21,.3); box-shadow: 0 8px 30px rgba(250,204,21,.2);
    display: block; transition: border-color .4s;
}
.klaro-map:hover { border-color: rgba(250,204,21,.5); }

/* ── FOOTER ──────────────────────────────── */
footer {
    background: rgba(0,0,0,.80);
    padding: 60px 5% 50px; text-align: center;
    position: relative; z-index: 10;
    display: flex; flex-direction: column; justify-content: center;
}
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: #777; text-decoration: none; transition: all .3s; }
.footer-links a:hover { color: var(--y); filter: none; }
.copyright { color: #555; font-size: 14px; border-top: 1px solid #222; padding-top: 20px; }

/* ── KEYFRAMES ───────────────────────────── */
.snowflake, .leaf, .butterfly, .petal { position: absolute; user-select: none; }
.snowflake { color: rgba(255,255,255,.9); animation: snowfall linear infinite; }
.leaf      { color: rgba(255,140,0,.8);  animation: leaffall linear infinite; }
.butterfly { font-size: 1.5em;           animation: butterflyfloat ease-in-out infinite; }
.petal     { color: rgba(255,182,193,.8); animation: petalfall ease-in-out infinite; }

@keyframes snowfall {
    0%       { transform: translateY(-100vh) rotate(0);     opacity: 0; }
    10%, 90% { opacity: 1; }
    100%     { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
@keyframes leaffall {
    0%       { transform: translateY(-100vh) rotate(0);     opacity: 0; }
    10%, 90% { opacity: 1; }
    100%     { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
@keyframes butterflyfloat {
    0%   { transform: translateY(-100vh) translateX(0) rotate(0);       opacity: 0; }
    10%  { opacity: 1; }
    25%  { transform: translateY(-50vh) translateX(50px) rotate(15deg); }
    50%  { transform: translateY(0) translateX(-30px) rotate(-10deg); }
    75%  { transform: translateY(50vh) translateX(40px) rotate(20deg); }
    90%  { opacity: 1; }
    100% { transform: translateY(100vh) translateX(0) rotate(0);        opacity: 0; }
}
@keyframes petalfall {
    0%       { transform: translateY(-100vh) rotate(0) translateX(0);      opacity: 0; }
    10%, 90% { opacity: 1; }
    50%      { transform: translateY(0) rotate(180deg) translateX(100px); }
    100%     { transform: translateY(100vh) rotate(360deg) translateX(0);  opacity: 0; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px);  } to { opacity: 1; transform: translateX(0); } }

/* ════════════════════════════════════════════
   BREAKPOINTS  Desktop ≥901  Tablet 601-900  Mobile ≤600
   ════════════════════════════════════════════ */

@media (min-width: 901px) {
    .services-section-dt { display: flex !important; }
    .services-section-dt .services-container { grid-template-columns: repeat(3,1fr); gap: 25px; max-width: 1400px; }
    .contact-grid { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 601px) and (max-width: 900px) {
    .services-section-tb { display: flex !important; min-height: 100vh; padding: 100px 5%; }
    .services-section-tb .services-container { grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 900px; }
    .contact-grid { grid-template-columns: repeat(2,1fr); }
    .contact-info:nth-child(3) { grid-column: 1/-1; }
}

/* ── MOBILE + TABLET: iOS/Android Safari Fix ─────────────────────────────
   position:fixed Elemente (season-animation) landen auf Mobile in einer
   eigenen GPU-Compositing-Layer → z-index mit ::after unzuverlässig.
   Lösung: ::after komplett aus, Section fast transparent, Cards solid.
   ─────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    section::after        { display: none !important; }
    .hero-section::before { display: none !important; }

    /* Sections: fast vollständig transparent → Animation voll sichtbar */
    section               { background: rgba(11,11,11,) !important; }
    .hero-section         { background: rgba(11,11,11,) !important; }

    /* Animation hinter allem – kein fixed-layer Konflikt mehr */
    .season-animation     { z-index: 1; }

    /* Cards & Boxen: opak damit Text trotzdem gut lesbar */
    .service-card {
        background: linear-gradient(135deg, rgba(21,21,21,.97), rgba(26,26,26,.97)) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .contact-info {
        background: linear-gradient(135deg, rgba(21,21,21,.97), rgba(26,26,26,.97)) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

@media (max-width: 600px) {
    .services-section-mb { display: flex !important; min-height: 100vh; padding: 100px 5%; }
    .services-section-mb .services-container { grid-template-columns: 1fr; gap: 20px; max-width: 500px; }
    .mobile-menu-btn { display: flex; }
    nav {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(0,0,0,.98); flex-direction: column;
        padding: 30px; transform: translateY(-100%); opacity: 0;
        transition: all .3s; pointer-events: none; visibility: hidden; z-index: 999;
    }
    nav.active { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }
    nav a { padding: 15px 10px; border-bottom: 1px solid rgba(250,204,21,.1); display: block; }
    nav a:last-child { border-bottom: none; }
    section  { padding: 80px 4%; }
    footer   { padding: 50px 4% 40px; }
    .btn     { padding: 14px 30px; font-size: 15px; }
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 400px) {
    header   { padding: 0 3%; }
    section  { padding: 70px 3%; }
    .logo img { height: 40px; }
    .btn     { padding: 12px 24px; font-size: 14px; }
}

/* ══════════════════════════════════════════
   SUBPAGES
   ══════════════════════════════════════════ */
main { position: relative; z-index: 1; }

.subpage-wrap {
    max-width: 860px; width: 100%; margin: 0 auto; padding: 110px 5% 80px;
}

.back-btn {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--y); text-decoration: none; font-weight: 700; font-size: 15px;
    margin-bottom: 40px; transition: all .3s;
    border: 2px solid rgba(250,204,21,.3); padding: 10px 20px; border-radius: 8px;
}
.back-btn:hover { border-color: var(--y); background: rgba(250,204,21,.08); transform: translateX(-4px); filter: none; }

.subpage-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--y), var(--y2));
    border-radius: 2px; margin-bottom: 40px;
}

.section-block {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border: 1px solid rgba(250,204,21,.15); border-radius: 14px;
    padding: 28px 30px; margin-bottom: 20px; transition: border-color .3s;
}
.section-block:hover { border-color: rgba(250,204,21,.3); }
.section-block h2 { margin-top: 0; }

.para-num { color: #555; font-size: 13px; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.agb-stand, .stand-note { text-align: center; color: #555; font-size: 13px; margin-top: 40px; padding-top: 20px; border-top: 1px solid #222; }
.vorwort-block {
    background: rgba(250,204,21,.05);
    border: 1px solid rgba(250,204,21,.2); border-left: 4px solid var(--y);
    border-radius: 0 12px 12px 0; padding: 22px 26px; margin-bottom: 28px;
}
.vorwort-block p { font-size: 14px; color: #aaa; margin-bottom: 8px; }
.vorwort-block p:last-child { margin-bottom: 0; }

.contact-card {
    display: inline-block; background: rgba(250,204,21,.08);
    border: 1px solid rgba(250,204,21,.25); border-radius: 10px; padding: 16px 22px; margin-top: 6px;
}
.contact-card p { margin-bottom: 4px; }

.info-badge {
    display: inline-block; background: rgba(250,204,21,.12);
    border: 1px solid rgba(250,204,21,.3); color: var(--y);
    font-size: 13px; font-weight: 700; padding: 4px 12px;
    border-radius: 20px; margin-bottom: 16px; letter-spacing: .5px;
}
.subpage-subtitle { font-size: 15px; color: #888; margin-bottom: 10px; }

.about-page { min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; }
.about-content { max-width: 1100px; width: 100%; padding: 110px 5% 80px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-image-wrap {
    border-radius: 20px; overflow: hidden;
    border: 2px solid rgba(250,204,21,.3); box-shadow: 0 10px 40px rgba(250,204,21,.15);
    position: sticky; top: 90px; transition: border-color .4s;
}
.about-image-wrap:hover { border-color: rgba(250,204,21,.6); }
.about-image-wrap img { width: 100%; height: auto; display: block; }
.about-text p { font-size: clamp(15px,1.7vw,17px); line-height: 1.9; color: #ccc; margin-bottom: 22px; }
.about-text strong { color: var(--y); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.highlight-item {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    border: 1px solid rgba(250,204,21,.2); border-left: 3px solid var(--y);
    border-radius: 10px; padding: 16px 18px; transition: all .3s;
}
.highlight-item:hover { border-color: rgba(250,204,21,.5); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(250,204,21,.15); }
.highlight-icon { font-size: 22px; margin-bottom: 6px; display: block; }
.highlight-item strong { display: block; color: var(--y); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.highlight-item span { font-size: 13px; color: #888; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

@media (max-width: 800px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image-wrap { position: static; }
    .about-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .subpage-wrap { padding: 95px 4% 60px; }
    .section-block { padding: 20px 18px; }
    .about-content { padding: 95px 4% 60px; }
}
@media (max-width: 480px) { .about-highlights { grid-template-columns: 1fr; } }

/* ── SERVICE CARD ANIMATIONS ─────────────── */
.service-card {
    opacity: 0;
    transform: translateX(0);
}
.service-card.animate-left  { animation: slideInLeft  .7s ease-out forwards; }
.service-card.animate-right { animation: slideInRight .7s ease-out forwards; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}