/* Global reset and shared layout settings */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ==============================================
       CUSTOMIZATION: Hier lassen sich grundlegende
       Farben, Abstände und Breakpoints ändern.
       ============================================== */
    --color-bg: #0A0A0A;
    --color-surface: #121212;
    --color-surface-strong: #1E1E1E;
    --color-text: #F5F5F5;
    --color-muted: #B8B8B8;
    --color-muted-light: #D8D8D8;
    --color-accent: #C8C8C8;
    --color-link: #FFFFFF;
    --color-border: rgba(255,255,255,0.08);
    --color-overlay: rgba(10,10,10,0.7);
    --color-overlay-strong: rgba(10,10,10,0.85);
    --color-gloss: linear-gradient(135deg, #888 0%, #ddd 40%, #999 60%, #ccc 100%);

    --font-body: 'Inter', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    --page-padding-horizontal: 5%;
    --section-padding-vertical: 120px;
    --hero-padding-top: 140px;
    --hero-padding-bottom: 100px;
    --nav-padding: 18px 5%;
    --nav-padding-scrolled: 14px 5%;
    --hero-min-height: 100vh;
    --hero-bg-image: url('https://picsum.photos/id/1015/2000/1200');
    --hero-logo-width: 380px;
    --hero-logo-opacity: 0.95;
    --hero-logo-animation-duration: 7s;
    --button-radius: 6px;
    --card-radius: 12px;
    --transition-default: all 0.3s ease;
    --breakpoint-mobile: 992px;

    --spacing-nav-links: 36px;
    --spacing-service-gap: 2px;
    --spacing-project-gap: 2px;
    --spacing-testimonial-gap: 32px;
    --spacing-why-gap: 100px;
}

/* Theme Variants */
body.theme-light {
    --color-bg: #F5F5F7;
    --color-surface: #FFFFFF;
    --color-surface-strong: #F0F0F3;
    --color-text: #1A1A1A;
    --color-muted: #5E5E6A;
    --color-muted-light: #8A8A99;
    --color-link: #0D0D0D;
    --color-border: rgba(20,20,20,0.06);
    --color-overlay: rgba(255,255,255,0.72);
    --color-overlay-strong: rgba(255,255,255,0.88);
}

body.theme-warm {
    --color-bg: #221B12;
    --color-surface: #2E2418;
    --color-surface-strong: #3B2F22;
    --color-text: #F7EFE3;
    --color-muted: #D3C7B5;
    --color-muted-light: #E7DFC9;
    --color-link: #FFF4E7;
    --color-border: rgba(255,255,255,0.08);
    --color-overlay: rgba(20,10,0,0.5);
    --color-overlay-strong: rgba(20,10,0,0.75);
}

body.theme-blue {
    --color-bg: #071829;
    --color-surface: #11293C;
    --color-surface-strong: #18334A;
    --color-text: #EDF6FF;
    --color-muted: #A0B7D6;
    --color-muted-light: #C9D9F0;
    --color-link: #E6F4FF;
    --color-border: rgba(255,255,255,0.08);
    --color-overlay: rgba(5,15,30,0.7);
    --color-overlay-strong: rgba(5,15,30,0.88);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: clamp(12px, 2.2vw, 18px) var(--page-padding-horizontal);
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-default);
}

nav.scrolled {
    padding: var(--nav-padding-scrolled);
    background: rgba(10,10,10,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo-link {
    flex-shrink: 0;
    line-height: 0;
}

nav img.nav-logo {
    height: clamp(38px, 4vw, 48px);
    width: auto;
    max-width: 160px;
    flex-shrink: 0;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

nav img.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-nav-links);
}

nav ul a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: clamp(12px, 1.1vw, 13.5px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-default);
    position: relative;
}

nav ul a:hover,
nav ul a.active {
    color: var(--color-text);
}

nav ul a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -4px;
    left: 0;
    background: var(--color-gloss);
    transition: width 0.3s ease;
}

nav ul a:hover:after,
nav ul a.active:after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 4px;
    border-radius: 9999px;
}

.lang-btn {
    padding: 5px 11px;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-muted);
    background: transparent;
    border: none;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background: var(--color-text);
    color: var(--color-bg);
}

.nav-cta {
    background: var(--color-text);
    color: var(--color-bg);
    padding: clamp(10px, 1.5vw, 12px) clamp(18px, 2.5vw, 28px);
    font-size: clamp(12px, 1.1vw, 13px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-default);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: var(--color-text);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: var(--hero-min-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--hero-padding-top) var(--page-padding-horizontal) var(--hero-padding-bottom);
    background: linear-gradient(var(--color-overlay), var(--color-overlay-strong)), var(--hero-bg-image) center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-55deg, transparent 0px, transparent 40px, rgba(255,255,255,0.025) 40px, rgba(255,255,255,0.025) 42px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-muted-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-eyebrow::before {
    content: '';
    width: 48px;
    height: 2px;
    background: var(--color-muted);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 110px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--color-gloss);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(16px, 1.5vw, 18px);
    max-width: 520px;
    color: var(--color-muted-light);
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--button-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-default);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: #ddd;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.15);
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--color-text);
    background: transparent;
}

.btn-secondary:hover {
    border-color: var(--color-text);
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.hero-logo {
    position: absolute;
    right: clamp(24px, 8%, 110px);
    bottom: 28px;
    top: auto;
    transform: none;
    width: min(260px, 28vw);
    max-width: 280px;
    opacity: var(--hero-logo-opacity);
    filter: drop-shadow(0 30px 80px rgba(200,200,200,0.15));
    animation: floatLogo var(--hero-logo-animation-duration) ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

/* ============================================
   STATS
   ============================================ */
.stats-bar {
    background: var(--color-surface);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    padding: 42px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    line-height: 1;
    background: var(--color-gloss);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 8px;
    display: block;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
section {
    padding: var(--section-padding-vertical) var(--page-padding-horizontal);
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 24px;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-service-gap);
}

.service-card {
    background: var(--color-surface);
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: #252525;
    transform: translateY(-12px);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--color-gloss);
    transition: width 0.5s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 42px;
    margin-bottom: 28px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-muted-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-link {
    color: var(--color-muted-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-default);
}

.service-link:hover {
    color: var(--color-text);
    gap: 12px;
}

/* ============================================
   WHY US
   ============================================ */
#warum {
    background: var(--color-surface);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-why-gap);
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    display: block;
}

.why-visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-text);
    color: var(--color-bg);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
}

.why-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-number {
    font-size: 42px;
    font-weight: 700;
    opacity: 0.55;
    font-family: var(--font-display);
    line-height: 1;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.why-item p {
    color: var(--color-muted-light);
    max-width: 560px;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-project-gap);
}

.project-card {
    background: var(--color-surface);
    padding: 48px 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border-radius: var(--card-radius);
    background-size: cover;
    background-position: center;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    z-index: 1;
}

.project-card > * {
    position: relative;
    z-index: 2;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card.featured {
    grid-column: span 2;
    min-height: 520px;
}

.project-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--color-muted-light);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.project-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
    font-family: var(--font-display);
    color: #fff;
}

.project-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 12px;
}

.project-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: var(--transition-default);
}

.project-link:hover {
    opacity: 1;
    transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-surface);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-testimonial-gap);
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-default);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.2);
}

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--color-muted-light);
    line-height: 1.85;
    margin-bottom: 26px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--color-muted);
    font-size: 13px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-why-gap);
}

.contact-panel,
.form-card {
    background: var(--color-surface);
    border-radius: 24px;
    padding: 40px 36px;
}

.contact-panel h3,
.form-card h3 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 28px;
}

.contact-panel p,
.contact-panel .contact-info-item p,
.contact-panel .contact-info-item a {
    color: var(--color-muted-light);
}

.contact-info {
    display: grid;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: grid;
    gap: 4px;
}

.contact-info-title {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 600;
}

.contact-info-title i {
    margin-right: 8px;
}

.contact-info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition-default);
}

.contact-info-item a:hover {
    color: var(--color-muted-light);
}

.contact-quicklist {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.contact-quicklist div {
    color: var(--color-muted-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-quicklist i {
    color: #4caf50;
}

/* ============================================
   FORM
   ============================================ */
.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-muted-light);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 20px;
    color: var(--color-text);
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #aaa;
    box-shadow: 0 0 0 3px rgba(200,200,200,0.1);
    outline: none;
}

.form-field input.error,
.form-field textarea.error,
.form-field select.error {
    border-color: #ff6b6b;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-field input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--color-text);
}

.checkbox-field label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-muted-light);
    margin-bottom: 0;
}

.checkbox-field label a {
    color: var(--color-text);
}

.form-card button[type="submit"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: var(--color-text);
    color: var(--color-bg);
    transition: background 0.3s ease;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-card button[type="submit"]:hover:not(:disabled) {
    background: #e6e6e6;
}

.form-card button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#form-status {
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--color-bg);
    padding: 60px var(--page-padding-horizontal) 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-col p {
    color: var(--color-muted-light);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: var(--color-muted-light);
    text-decoration: none;
    transition: var(--transition-default);
}

.footer-links a:hover {
    color: var(--color-text);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    color: var(--color-muted-light);
    font-size: 20px;
    transition: var(--transition-default);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--color-muted);
    font-size: 14px;
}

.footer-bottom .fa-heart {
    color: #ff6b6b;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.20s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.30s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: var(--breakpoint-mobile)) {
    nav {
        padding: 12px 4.5%;
        gap: 10px;
    }

    nav img.nav-logo {
        height: 42px;
        max-width: 140px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.98);
        padding: 20px 18px;
        gap: 16px;
        backdrop-filter: blur(16px);
    }

    .nav-links.open {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    nav ul a {
        font-size: 14px;
        padding: 8px 0;
        display: block;
    }

    .lang-switcher {
        justify-content: center;
        padding: 4px;
        width: 100%;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .why-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-logo {
        display: block;
        position: absolute;
        bottom: 22px;
        right: calc(5% + 10px);
        top: auto;
        width: min(140px, 30%);
        max-width: 150px;
        opacity: 0.95;
    }

    .nav-cta {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 12px;
    }

    nav {
        gap: 12px;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 26px;
    }

    .project-card.featured {
        grid-column: span 1;
        min-height: 320px;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 28px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-number {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .why-visual-badge {
        font-size: 14px;
        padding: 8px 16px;
        bottom: 16px;
        left: 16px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .contact-panel,
    .form-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 56px);
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: clamp(32px, 8vw, 42px);
    }

    .why-item {
        flex-direction: column;
        gap: 12px;
    }

    .why-number {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}