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

:root {
    --accent: #f7941d;
    --accent-dark: #e0850f;
    --accent-glow: rgba(247,148,29,0.15);
    --accent-glow-strong: rgba(247,148,29,0.25);
    --bg: #0a0a0f;
    --bg-card: rgba(255,255,255,0.04);
    --bg-glass: rgba(255,255,255,0.06);
    --bg-glass-hover: rgba(255,255,255,0.1);
    --text: rgba(255,255,255,0.9);
    --text-dim: rgba(255,255,255,0.55);
    --text-muted: rgba(255,255,255,0.35);
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --radius: 16px;
    --radius-lg: 24px;
    --glass-blur: blur(20px);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === LIGHT THEME === */
[data-theme="light"] {
    --bg: #f5f5f7;
    --bg-card: rgba(0,0,0,0.03);
    --bg-glass: rgba(255,255,255,0.85);
    --bg-glass-hover: rgba(255,255,255,0.95);
    --text: #1a1a2e;
    --text-dim: #444;
    --text-muted: #666;
    --border: rgba(0,0,0,0.12);
    --border-hover: rgba(0,0,0,0.2);
}
[data-theme="light"] nav { background: rgba(255,255,255,0.75); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
[data-theme="light"] nav.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
[data-theme="light"] .nav-links a:hover { color: #1a1a2e; }
[data-theme="light"] .nav-links a::after { background: var(--accent); }
[data-theme="light"] .hero { background: #1a1a2e; }
[data-theme="light"] .hero p { color: rgba(255,255,255,0.85); }
[data-theme="light"] .stat-label { color: rgba(255,255,255,0.7); }
[data-theme="light"] .hero-stats { border-top-color: rgba(255,255,255,0.15); }
[data-theme="light"] .hero-overlay { background: linear-gradient(180deg, rgba(26,26,46,0.5) 0%, rgba(26,26,46,0.8) 100%); }
[data-theme="light"] .testimonial-card blockquote { color: #333; }
[data-theme="light"] .ba-details li { color: #333; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .service-card,
[data-theme="light"] .project-card,
[data-theme="light"] .testimonial-card { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
[data-theme="light"] .service-card:hover,
[data-theme="light"] .project-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: #aaa; }
[data-theme="light"] .form-group select { color: #555; }
[data-theme="light"] .form-group label { color: #555; }
[data-theme="light"] footer { background: #1a1a2e; }
[data-theme="light"] .cta-banner { background: #1a1a2e; }
[data-theme="dark"] .nav-logo-light { display: none; }
[data-theme="dark"] .nav-logo-dark { display: block; }
[data-theme="light"] .theme-toggle { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .theme-toggle svg { color: #1a1a2e; }
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.25); }
[data-theme="light"] .nav-links.open { background: rgba(245,245,247,0.95); }

html { scroll-behavior: smooth; scroll-snap-type: y proximity; overflow: hidden; height: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text); line-height: 1.6;
    background: var(--bg); height: 100%; overflow: hidden;
}
.page-wrap { overflow-x: clip; overflow-y: auto; height: 100%; width: 100%; -webkit-overflow-scrolling: touch; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* === NAV (Glassmorphism) === */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,15,0.6); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border); transition: all var(--transition);
}
nav.scrolled {
    background: rgba(10,10,15,0.85);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 64px; width: auto; }
.nav-logo-dark { display: none; }
.nav-logo-light { display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-dim); font-weight: 500; font-size: 14px;
    transition: color var(--transition); position: relative; text-transform: uppercase; letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: #c47510; color: white; padding: 10px 24px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 13px; transition: all var(--transition);
    letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(247,148,29,0.3); }
.theme-toggle {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
    width: 38px; height: 38px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); padding: 0;
}
.theme-toggle svg { width: 18px; height: 18px; color: rgba(255,255,255,0.8); }
.theme-toggle:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.18); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden; padding: 100px 24px 60px;
    background: var(--bg); scroll-snap-align: start;
}
.hero::before {
    content: ''; position: absolute; top: -240px; right: -160px; width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(247,148,29,0.08) 0%, transparent 60%);
    border-radius: 50%; pointer-events: none; z-index: 0;
    contain: layout size style; will-change: transform;
}
.hero-slideshow {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
    pointer-events: none;
}
.hero-slide {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1); will-change: opacity, transform;
}
.hero-slide:first-child:not(.hidden) { opacity: 0.45; }
.hero-slide.visible { opacity: 0.45; }
.hero-slide.hidden { opacity: 0; }
@keyframes kenburns-1 {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}
@keyframes kenburns-2 {
    0% { transform: scale(1.05) translate(1%, 0); }
    100% { transform: scale(1) translate(-1%, 1%); }
}
@keyframes kenburns-3 {
    0% { transform: scale(1) translate(-1%, 1%); }
    100% { transform: scale(1.1) translate(1%, -1%); }
}
@keyframes kenburns-4 {
    0% { transform: scale(1.08) translate(0, -1%); }
    100% { transform: scale(1) translate(0, 1%); }
}
.hero-slide:nth-child(1).zooming { animation: kenburns-1 6s ease-in-out forwards; }
.hero-slide:nth-child(2).zooming { animation: kenburns-2 6s ease-in-out forwards; }
.hero-slide:nth-child(3).zooming { animation: kenburns-3 6s ease-in-out forwards; }
.hero-slide:nth-child(4).zooming { animation: kenburns-4 6s ease-in-out forwards; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(10,10,15,0.5) 0%, rgba(10,10,15,0.8) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 960px; }
.hero h1 {
    font-size: clamp(44px, 7vw, 84px); font-weight: 800; color: white;
    line-height: 1.02; margin-bottom: 28px; letter-spacing: -2px;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 20px; color: var(--text-dim); max-width: 640px;
    margin: 0 auto 48px; line-height: 1.7; letter-spacing: 2px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
    background: var(--accent); color: white; padding: 16px 40px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 15px; transition: all var(--transition);
    box-shadow: 0 0 30px rgba(247,148,29,0.25); border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover {
    background: var(--accent-dark); transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(247,148,29,0.35);
}
.btn-outline {
    background: transparent; color: white; padding: 16px 40px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 15px;
    border: 1px solid var(--border-hover); transition: all var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.hero-stats {
    display: flex; gap: 48px; justify-content: center; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.stat-icon { margin-bottom: 10px; }
.stat-icon svg { width: 28px; height: 28px; color: var(--accent); stroke-width: 1.5; }
.stat-label {
    font-size: 13px; color: var(--text-dim); margin-top: 4px;
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}

/* === SECTIONS === */
section {
    padding: 60px 24px; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    scroll-snap-align: start; overflow: hidden;
}
section > .section-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-block; padding: 5px 14px; background: var(--accent-glow);
    color: var(--accent); font-weight: 600; font-size: 11px; border-radius: 50px;
    margin-bottom: 14px; letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid rgba(247,148,29,0.15);
}
.section-title {
    font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--text);
    margin-bottom: 12px; line-height: 1.1; letter-spacing: -1px;
}
.section-desc { font-size: 16px; color: var(--text-dim); max-width: 560px; line-height: 1.6; }
.section-header { margin-bottom: 36px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* === SERVICES (Bento Grid) === */
#leistungen { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.service-card {
    background: var(--bg-glass); border-radius: var(--radius-lg); padding: 0; overflow: hidden;
    border: 1px solid var(--border); transition: all var(--transition);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
}
.service-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-glass-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-card-img {
    height: 280px; background-size: cover; background-position: center;
    background-color: rgba(255,255,255,0.03); position: relative;
}
.service-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,10,15,0.6));
}
.service-card-body { padding: 20px; }
.service-icon-inline {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--accent-glow); border: 1px solid rgba(247,148,29,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}
.service-icon-inline svg { width: 18px; height: 18px; color: var(--accent); }
.service-card h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.3px; }
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* === BEFORE/AFTER === */
#projekte { background: var(--bg); }
.ba-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.ba-slider {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); aspect-ratio: 4/5; cursor: col-resize; max-height: 55vh;
    user-select: none; -webkit-user-select: none;
    border: 1px solid var(--border);
}
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
    background: white; z-index: 10; transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.ba-handle::after {
    content: '\2194'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 44px; height: 44px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); font-size: 18px; color: #333;
}
.ba-label {
    position: absolute; bottom: 16px; padding: 6px 16px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: white; font-size: 11px; font-weight: 600; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 2px; z-index: 5;
}
.ba-label.vorher { left: 16px; }
.ba-label.nachher { right: 16px; }
.ba-info h3 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.5px; }
.ba-info p { font-size: 15px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.ba-details { list-style: none; }
.ba-details li {
    padding: 8px 0; border-bottom: 1px solid var(--border);
    font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 10px;
}
.ba-details li::before { content: '\2713'; color: var(--accent); font-weight: 700; font-size: 14px; }

/* === MORE PROJECTS (Bento) === */
#weitere-projekte { background: var(--bg); }
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.project-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-glass); border: 1px solid var(--border);
    transition: all var(--transition); position: relative;
}
.project-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.project-img { width: 100%; height: 28vh; object-fit: cover; background: rgba(255,255,255,0.03); }
.project-info { padding: 20px; }
.project-tag {
    display: inline-block; padding: 4px 10px; background: var(--accent-glow);
    color: var(--accent); font-size: 11px; font-weight: 600; border-radius: 50px;
    margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase;
    border: 1px solid rgba(247,148,29,0.12);
}
.project-info h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -0.3px; }
.project-info p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* === PROCESS === */
#ablauf { background: var(--bg); position: relative; }
#ablauf::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(247,148,29,0.25) 0%, transparent 55%);
    border-radius: 50%; transform: translate(-50%, -50%); pointer-events: none;
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-step {
    text-align: center; position: relative; padding: 24px 12px;
    background: var(--bg-glass); border: 1px solid var(--border); border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.process-step:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.process-num {
    width: 40px; height: 40px; border-radius: 50%; background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent); display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; margin: 0 auto 14px; position: relative; z-index: 1;
}
.process-step h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* === TESTIMONIALS === */
#bewertungen { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card {
    background: var(--bg-glass); border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--border); transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card blockquote { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--accent-glow); border: 1px solid rgba(247,148,29,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-weight: 700; font-size: 13px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--text); }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* === CTA BANNER === */
.cta-banner {
    background: var(--bg); padding: 80px 24px; text-align: center;
    position: relative; overflow: hidden; min-height: auto; scroll-snap-align: none;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cta-banner::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(247,148,29,0.25) 0%, transparent 55%);
    border-radius: 50%; filter: blur(60px);
    animation: glow-pulse-center 4s ease-in-out infinite;
}
@keyframes glow-pulse-center {
    0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}
.cta-banner h2 {
    font-size: clamp(24px, 4vw, 48px); font-weight: 800; color: white;
    margin-bottom: 18px; position: relative; z-index: 1; letter-spacing: -0.5px;
    max-width: 700px;
}
.cta-banner p { font-size: clamp(15px, 2.5vw, 18px); color: rgba(255,255,255,0.75); margin-bottom: 40px; position: relative; z-index: 1; max-width: 560px; }
.cta-banner .btn-primary { position: relative; z-index: 1; display: inline-block; }

/* === CONTACT === */
#kontakt { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 8px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--bg-glass); padding: 16px 20px; border-radius: var(--radius);
    border: 1px solid var(--border); transition: all var(--transition);
}
.contact-card:hover { border-color: var(--border-hover); background: var(--bg-glass-hover); }
.contact-card-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--accent-glow); border: 1px solid rgba(247,148,29,0.12);
    display: flex; align-items: center; justify-content: center;
}
.contact-card-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.contact-card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-form {
    background: var(--bg-glass); border-radius: var(--radius-lg); padding: 28px;
    border: 1px solid var(--border);
    backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
.contact-form h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 20px; letter-spacing: -0.3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 12px;
    font-family: inherit; font-size: 15px; color: var(--text); transition: all var(--transition);
    outline: none; background: rgba(255,255,255,0.04); box-sizing: border-box;
}
.phone-input-wrap { display: flex; gap: 8px; }
.phone-input-wrap .phone-code { width: 110px; flex-shrink: 0; flex-grow: 0; padding: 10px 8px; font-size: 14px; }
.phone-input-wrap input[type="tel"] { flex: 1; min-width: 0; width: auto; }
.form-group .email-error, .form-group .phone-error { display: none; font-size: 12px; color: #e74c3c; margin-top: 4px; }
.form-group .email-error.show, .form-group .phone-error.show { display: block; }
.form-group input.invalid { border-color: #e74c3c; }
.form-group input.valid { border-color: #27ae60; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { color: var(--text-dim); }
.form-group select option { background: var(--bg); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent); background: rgba(247,148,29,0.04);
    box-shadow: 0 0 0 3px rgba(247,148,29,0.08);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-submit {
    width: 100%; padding: 16px; background: var(--accent); color: white;
    border: none; border-radius: 50px; font-weight: 700; font-size: 15px;
    cursor: pointer; transition: all var(--transition); font-family: inherit;
    box-shadow: 0 0 30px rgba(247,148,29,0.2);
}
.form-submit:hover {
    background: var(--accent-dark); transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(247,148,29,0.3);
}

/* === FOOTER === */
footer { background: var(--bg); color: var(--text-dim); padding: 80px 24px 32px; border-top: 1px solid var(--border); overflow: hidden; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { text-align: center; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin: 16px auto 0; }
.footer-logo { display: inline-block; }
.footer-logo img { height: 100px; width: auto; }
footer h3 { color: white; font-size: 12px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color var(--transition); }
footer ul a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: var(--text-muted);
}

/* === ERROR PAGES === */
.error-page {
    min-height: 100vh; scroll-snap-align: none;
}
.error-code {
    font-size: clamp(100px, 20vw, 200px); font-weight: 800;
    color: var(--accent); line-height: 1; margin-bottom: 16px;
    opacity: 0.15; letter-spacing: -6px;
}

/* === LEGAL PAGES === */
.legal-page {
    min-height: auto; padding-top: 120px; padding-bottom: 80px;
    align-items: flex-start; scroll-snap-align: none;
}
.legal-page .section-title { margin-bottom: 32px; }
.legal-content { max-width: 720px; }
.legal-content h3 {
    font-size: 18px; font-weight: 700; color: var(--text);
    margin: 28px 0 8px; letter-spacing: -0.3px;
}
.legal-content p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.legal-content a { color: var(--accent); text-decoration: none; font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-credit { margin-top: 40px; font-size: 13px; color: var(--text-muted); }

/* === ANIMATIONS === */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Staggered children */
.reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .projects-grid { grid-template-columns: 1fr 1fr; }
    .project-img { height: 180px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 76px; left: 0; right: 0;
        background: rgba(10,10,15,0.95); backdrop-filter: var(--glass-blur);
        padding: 24px; gap: 16px; border-bottom: 1px solid var(--border);
    }
    .hero { min-height: auto; padding: 140px 24px 80px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat { flex: 1 1 40%; }
    .ba-showcase { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; text-align: center; }
    .footer-grid ul { display: inline-block; text-align: left; }
    .services-grid, .projects-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .service-card-img { height: 220px; }
    .project-img { height: 180px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    section { padding: 48px 20px; min-height: auto; scroll-snap-align: none; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-grid ul { display: inline-block; text-align: left; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat { flex: 1 1 100%; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
