/*
Theme Name: Motto Media
Theme URI: https://mottomedia.nl
Author: Motto Media
Author URI: https://mottomedia.nl
Description: Custom WordPress theme for Motto Media — Jouw Partner in Totale Communicatie. Warm, modern and accessible design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mottomedia
Tags: custom-logo, custom-menu, featured-images, translation-ready, portfolio
*/

/* ============================================
   MOTTO MEDIA THEME — WARM & ACCESSIBLE
   Based on Prototype C
   ============================================ */

/* === RESET & BASE === */
:root {
    --teal: #009B9B;
    --teal-warm: #0AB0A0;
    --teal-soft: #E8F8F5;
    --teal-muted: #B2E6E0;
    --cream: #FAFAF7;
    --warm-white: #FFFFFF;
    --dark: #1E2A32;
    --dark-soft: #2D3E48;
    --gray-600: #556068;
    --gray-400: #8A959C;
    --gray-200: #D8DDE0;
    --gray-100: #EEF0F2;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --max-width: 1180px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-600);
    line-height: 1.65;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1.4;
}

.btn-teal {
    background: var(--teal);
    color: var(--warm-white);
}

.btn-teal:hover {
    background: var(--teal-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,155,155,0.25);
}

.btn-soft {
    background: var(--teal-soft);
    color: var(--teal);
}

.btn-soft:hover {
    background: var(--teal-muted);
}

.btn-outline-warm {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-200);
}

.btn-outline-warm:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-white-warm {
    background: var(--warm-white);
    color: var(--teal);
    font-weight: 700;
    padding: 14px 32px;
}

.btn-white-warm:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* === HEADER / NAVIGATION === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
}

.nav-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--warm-white);
    border-radius: 100px;
    padding: 0 8px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 36px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul.nav-menu,
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-nav a,
.main-nav ul li a {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
    color: var(--teal);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 2px;
    background: var(--gray-100);
    border-radius: 100px;
    padding: 3px;
}

.lang-switch a,
.lang-switch button {
    border: none;
    background: transparent;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font-body);
}

.lang-switch a.active,
.lang-switch button.active {
    background: var(--warm-white);
    color: var(--teal);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

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

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.mobile-nav a:hover {
    color: var(--teal);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--dark);
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === HERO SECTION === */
.hero-section {
    padding: 140px 24px 80px;
    text-align: center;
}

.hero-section .container {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-soft);
    color: var(--teal);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-section h1 .highlight {
    color: var(--teal);
    position: relative;
}

.hero-section h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--teal-muted);
    opacity: 0.4;
    z-index: -1;
    border-radius: 4px;
}

.hero-section p.hero-desc {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Hero Image Row */
.hero-image-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-img-card {
    background: var(--warm-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.hero-img-card:nth-child(2) {
    aspect-ratio: 16/10;
}

.hero-img-card:nth-child(1) { transform: rotate(-2deg); }
.hero-img-card:nth-child(3) { transform: rotate(2deg); }

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-placeholder {
    text-align: center;
    color: var(--gray-400);
    font-size: 13px;
}

.hero-img-placeholder svg {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    opacity: 0.3;
}

/* === TRUSTED BAR === */
.trusted-bar {
    padding: 40px 24px;
    text-align: center;
}

.trusted-bar p {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    height: 32px;
    opacity: 0.4;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.trusted-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

.trusted-logo-placeholder {
    width: 100px;
    height: 32px;
    background: var(--gray-200);
    border-radius: 6px;
    opacity: 0.4;
}

/* === SECTION STYLES === */
.section {
    padding: 100px 24px;
}

.section-white {
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
}

.section-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-header p {
    color: var(--gray-400);
    font-size: 16px;
}

/* === SERVICE CARDS === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--warm-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 24px;
    transition: all 0.3s;
}

.section-white .service-card {
    background: var(--cream);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: var(--teal-muted);
}

.service-emoji {
    width: 60px;
    height: 60px;
    background: var(--teal-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 14px;
    line-height: 1.6;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.pill {
    background: var(--teal-soft);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.learn-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    transition: gap 0.2s;
}

.service-card:hover .learn-more {
    gap: 8px;
}

/* === PORTFOLIO GRID === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.portfolio-card {
    background: var(--warm-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.portfolio-thumb {
    aspect-ratio: 4/3;
    background: var(--gray-100);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-thumb-placeholder {
    color: var(--gray-400);
    font-size: 13px;
    text-align: center;
}

.portfolio-thumb-placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.3;
    margin-bottom: 8px;
}

.portfolio-info {
    padding: 16px 20px;
}

.portfolio-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.portfolio-info span {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
}

/* === WHY US GRID === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--warm-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--teal-muted);
    transform: translateY(-2px);
}

.emoji-circle {
    width: 56px;
    height: 56px;
    background: var(--teal-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--gray-400);
}

/* === CTA BLOCK === */
.cta-block {
    background: var(--teal);
    border-radius: var(--radius-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
    color: var(--warm-white);
}

.cta-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--warm-white);
}

.cta-block-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

.cta-block-lines p {
    font-size: 18px;
    opacity: 0.85;
}

/* === CONTACT FORM === */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--warm-white);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,155,155,0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-success {
    background: var(--teal-soft);
    color: var(--teal);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
}

/* === ABOUT / TEAM === */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    background: var(--warm-white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--teal-soft);
    margin: 0 auto 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 14px;
    color: var(--teal);
    font-weight: 500;
}

/* === PAGE HEADER (for inner pages) === */
.page-header {
    padding: 140px 24px 60px;
    text-align: center;
    background: var(--warm-white);
}

.page-header h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
}

/* === SERVICE DETAIL PAGE === */
.service-detail {
    padding: 60px 24px 100px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.service-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 30px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    color: var(--warm-white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    color: var(--warm-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--teal-warm);
}

.footer-col .contact-info {
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--teal-warm);
}

/* === SCROLL ANIMATIONS === */
.slide-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === WORDPRESS SPECIFIC === */
.wp-block-image img {
    border-radius: var(--radius);
}

.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 24px;
}

.alignright {
    float: right;
    margin-left: 24px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* === 404 PAGE === */
.error-404 {
    text-align: center;
    padding: 180px 24px 120px;
}

.error-404 h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.error-404 p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 42px; }
    .hero-image-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-img-card {
        transform: none !important;
        aspect-ratio: 16/9 !important;
    }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-block { margin: 0 24px; padding: 60px 32px; }
    .about-intro { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-image { position: static; }
    .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .nav-wrapper { padding: 0 16px; }
    .nav-right .btn { display: none; }

    .hero-section { padding: 120px 20px 60px; }
    .hero-section h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; }

    .section { padding: 60px 20px; }
    .section-header h2 { font-size: 28px; }

    .service-card { flex-direction: column; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .cta-block {
        margin: 0 16px;
        padding: 48px 24px;
        border-radius: var(--radius-lg);
    }
    .cta-block h2 { font-size: 26px; }

    .page-header { padding: 120px 20px 40px; }
    .page-header h1 { font-size: 32px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }

    .about-intro { gap: 32px; }
}