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

:root {
    --primary: #ff4d6d;
    --primary-dark: #c9184a;
    --primary-light: #ff758f;
    --accent: #ffd166;
    --accent-dark: #e6b84d;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --navy: #1a1a2e;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(255,77,109,0.3);
}
.logo-icon svg { width: 24px; height: 24px; }
.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem; font-weight: 700;
    color: var(--dark);
}
.logo-text span {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-dot { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a {
    padding: 10px 20px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 500;
    color: var(--gray-700);
}
.nav-menu a:hover { color: var(--primary); background: rgba(255,77,109,0.06); }
.nav-menu a.active { color: var(--primary); background: rgba(255,77,109,0.08); font-weight: 600; }
.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(255,77,109,0.3);
}
.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,77,109,0.4) !important;
}

/* Mobile */
.menu-toggle {
    display: none; flex-direction: column; gap: 6px;
    cursor: pointer; padding: 8px; z-index: 1001;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); border-radius: 2px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 600;
    cursor: pointer; border: none;
    transition: var(--transition);
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255,77,109,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255,77,109,0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-900);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--dark-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-white {
    background: var(--white);
    color: var(--dark);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-icon {
    width: 20px; height: 20px;
}

/* ===== HERO - HOME ===== */
.hero-home {
    min-height: 100vh; padding-top: 100px;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
    position: relative; overflow: hidden;
}
.hero-home::before {
    content: ''; position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,77,109,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-home::after {
    content: ''; position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,209,102,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,77,109,0.08);
    padding: 8px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary); margin-bottom: 24px;
}
.hero-badge .pulse {
    width: 8px; height: 8px; background: var(--primary);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,77,109,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255,77,109,0); }
}
.hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 20px; color: var(--dark);
}
.hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    position: relative;
}
.hero-text h1 em::after {
    content: ''; position: absolute;
    bottom: 2px; left: 0; right: 0; height: 8px;
    background: rgba(255,209,102,0.3);
    border-radius: 4px; z-index: -1;
}
.hero-text p {
    font-size: 1.15rem; color: var(--gray-500);
    max-width: 480px; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
    display: flex; align-items: center; gap: 16px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid var(--gray-200);
}
.trust-avatars { display: flex; }
.trust-avatars img {
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px; object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 0.9rem; }
.trust-text strong { color: var(--dark); }
.trust-text span { color: var(--gray-500); }
.trust-stars { color: var(--accent); font-size: 1rem; }

/* Hero Images */
.hero-images {
    position: relative; z-index: 2;
    height: 560px;
}
.hero-img {
    position: absolute; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.hero-img:hover { transform: translateY(-8px) !important; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-1 {
    width: 320px; height: 400px; top: 20px; right: 40px;
    z-index: 2;
}
.hero-img-2 {
    width: 240px; height: 300px; bottom: 20px; left: 0;
    z-index: 1;
}
.hero-img-3 {
    width: 180px; height: 220px; top: 60px; left: 60px;
    z-index: 3;
}
.hero-float-card {
    position: absolute; z-index: 4;
    background: var(--white); border-radius: var(--radius);
    padding: 16px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-float-card.card-1 { bottom: 100px; right: 20px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 0; left: 40px; animation-delay: 1.5s; }
.float-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.float-icon.pink { background: rgba(255,77,109,0.1); }
.float-icon.yellow { background: rgba(255,209,102,0.15); }
.float-num { font-family: 'Sora', sans-serif; font-size: 1.3rem; font-weight: 700; }
.float-label { font-size: 0.8rem; color: var(--gray-500); }

/* ===== SERVICES BENTO ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--primary); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-tag::before {
    content: ''; width: 24px; height: 2px; background: var(--primary);
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem); color: var(--dark);
    margin-bottom: 16px;
}
.section-sub { font-size: 1.1rem; color: var(--gray-500); max-width: 560px; }
.section-header.center .section-sub { margin: 0 auto; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.bento-card {
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-card.large { grid-column: span 2; }
.bento-card-img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
}
.bento-card:hover .bento-card-img { transform: scale(1.05); }
.bento-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.1) 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 32px;
}
.bento-card-tag {
    display: inline-block; padding: 6px 14px;
    background: var(--primary); color: var(--white);
    border-radius: 50px; font-size: 0.75rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 12px;
    width: fit-content;
}
.bento-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 6px; }
.bento-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.bento-card.large h3 { font-size: 2rem; }
.bento-row-1 .bento-card { height: 360px; }
.bento-row-2 .bento-card { height: 300px; }

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark);
    padding: 48px 0; margin: 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    text-align: center;
}
.stat-item h3 {
    font-size: 2.8rem; color: var(--white);
    margin-bottom: 4px;
}
.stat-item h3 span { color: var(--accent); }
.stat-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== ABOUT SPLIT ===== */
.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-images {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; height: 500px;
}
.about-img {
    border-radius: var(--radius-lg); overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img:first-child { margin-top: 40px; }
.about-img:last-child { margin-bottom: 40px; }
.about-content .section-header { margin-bottom: 24px; }
.about-content p { color: var(--gray-500); margin-bottom: 16px; font-size: 1.05rem; }
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin: 32px 0;
}
.about-feature {
    display: flex; align-items: flex-start; gap: 12px;
}
.about-feature-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,77,109,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.about-feature h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 600; margin-bottom: 2px;
}
.about-feature p { font-size: 0.85rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-100); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: var(--gray-700); margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 48px;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,77,109,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner::after {
    content: ''; position: absolute;
    bottom: -80px; left: 200px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,209,102,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--white); margin-bottom: 12px;
    position: relative; z-index: 1;
}
.cta-banner p {
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
    max-width: 500px; position: relative; z-index: 1;
}
.cta-banner .btn { position: relative; z-index: 1; }

/* ===== CONTACT PAGE ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gray-100);
    text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--dark); margin-bottom: 16px; }
.page-hero p { font-size: 1.15rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

.contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 64px; margin-top: -40px;
}
.contact-cards { display: flex; flex-direction: column; gap: 20px; padding-top: 40px; }
.contact-card {
    display: flex; align-items: center; gap: 20px;
    background: var(--white); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(255,77,109,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.contact-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-card p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }
.contact-card a { color: var(--primary); font-weight: 500; }

.contact-form-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 8px; color: var(--gray-700);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--gray-900); font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-500); }

/* ===== DIENSTEN PAGE ===== */
.dienst-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.dienst-detail-grid.reverse { direction: rtl; }
.dienst-detail-grid.reverse > * { direction: ltr; }
.dienst-detail-img {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 450px;
}
.dienst-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.dienst-detail-content .section-tag { margin-bottom: 8px; }
.dienst-detail-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 16px; }
.dienst-detail-content p { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 16px; }
.dienst-list { margin: 24px 0; }
.dienst-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; font-size: 1rem; color: var(--gray-700);
}
.dienst-list li::before {
    content: ''; width: 8px; height: 8px;
    background: var(--primary); border-radius: 50%;
    flex-shrink: 0;
}

/* ===== OVER ONS PAGE ===== */
.team-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.team-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 320px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-info { padding: 24px; text-align: center; }
.team-card-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card-info p { color: var(--primary); font-size: 0.9rem; font-weight: 500; }

.timeline {
    max-width: 700px; margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: ''; position: absolute;
    left: 24px; top: 0; bottom: 0; width: 2px;
    background: var(--gray-200);
}
.timeline-item {
    display: flex; gap: 32px;
    padding-bottom: 48px; position: relative;
}
.timeline-dot {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 1rem;
    box-shadow: 0 0 0 6px rgba(255,77,109,0.15);
    position: relative; z-index: 1;
}
.timeline-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.timeline-content p { color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark); padding: 80px 0 30px;
    color: var(--white);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 300px; margin-top: 16px; }
.footer h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px; color: var(--accent);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }
.social-link svg { width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-home { grid-template-columns: 1fr; text-align: center; padding-top: 120px; min-height: auto; padding-bottom: 60px; }
    .hero-text p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-images { display: none; }
    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .bento-grid { grid-template-columns: 1fr 1fr; }
    .bento-card.large { grid-column: span 2; }
    .dienst-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .dienst-detail-grid.reverse { direction: ltr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none; position: fixed;
        inset: 0; background: var(--white);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 24px; z-index: 1000;
    }
    .nav-menu.active { display: flex; }
    .menu-toggle { display: flex; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.large { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
}
