/* ═══════════════════════════════════════════════════════════════════════════════
   VlakCMS – Client Theme  |  Customize the :root variables per client
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
    --color-primary:      #1a3a6b;
    --color-primary-dark: #122a51;
    --color-accent:       #e8a020;
    --color-accent-dark:  #c8870a;
    --color-text:         #1a202c;
    --color-muted:        #64748b;
    --color-bg:           #ffffff;
    --color-bg-alt:       #f7f8fc;
    --color-border:       #e8ecf2;
    --color-hero-bg:      #0d1f3c;
    --color-footer-bg:    #0d1f3c;
    --color-footer-text:  #8a9ab8;
    --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --max-width: 1160px;
    --radius:    8px;
    --radius-lg: 16px;
    --shadow:    0 1px 4px rgba(0,0,0,.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--color-text); background: var(--color-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Eliminate 300ms tap delay on touch devices */
a, button, [role="button"], input[type="submit"], input[type="button"], label { touch-action: manipulation; }

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

/* ── HEADER ──────────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow .2s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.site-logo { font-size: 20px; font-weight: 800; color: var(--color-primary); letter-spacing: -.5px; text-decoration: none; }
.site-logo:hover { text-decoration: none; }
.site-logo-img { max-height: 44px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link { padding: 7px 14px; color: var(--color-muted); font-size: 14.5px; font-weight: 500; border-radius: 6px; transition: color .15s, background .15s; text-decoration: none; }
.nav-link:hover { color: var(--color-text); background: var(--color-bg-alt); text-decoration: none; }
.nav-link.active { color: var(--color-primary); font-weight: 600; }

.nav-cta {
    margin-left: 10px; padding: 9px 22px;
    background: var(--color-primary); color: white;
    border-radius: 50px; font-size: 14px; font-weight: 600;
    transition: background .15s, transform .1s, box-shadow .15s;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 2px 8px rgba(26,58,107,.25);
}
.nav-cta:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,58,107,.3); text-decoration: none; }
.nav-cta.active { background: var(--color-accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
    background: var(--color-hero-bg);
    position: relative; overflow: hidden;
    padding: 100px 0 90px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute; border-radius: 50%;
    background: var(--color-primary); opacity: .12;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: 10%; background: var(--color-accent); opacity: .08; }

.hero-inner { position: relative; z-index: 2; max-width: 760px; }

.hero-content h1 {
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
    color: white; margin-bottom: 24px;
}
.hero-content p {
    font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.72);
    max-width: 580px; margin-bottom: 40px; line-height: 1.65;
}
.hero-content .btn-primary,
.hero-content a.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 34px; background: var(--color-accent);
    color: #1a1a1a; border-radius: 50px; font-weight: 700; font-size: 16px;
    transition: background .15s, transform .15s, box-shadow .15s;
    text-decoration: none; box-shadow: 0 4px 20px rgba(232,160,32,.4);
}
.hero-content .btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,32,.45); text-decoration: none; }

/* ── SERVICES ────────────────────────────────────────────────────────────────── */
.services-section { padding: 88px 0; background: var(--color-bg); }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: var(--color-primary); margin-bottom: 52px; letter-spacing: -.02em; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
    background: var(--color-bg); border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 32px 24px;
    display: flex; flex-direction: column;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    text-decoration: none; color: var(--color-text);
}
.service-card:hover { border-color: var(--color-primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); text-decoration: none; color: var(--color-text); }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--color-muted); line-height: 1.6; flex: 1; }
.service-link { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--color-accent); }

/* ── STATS ───────────────────────────────────────────────────────────────────── */
.stats-section { background: var(--color-primary); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 20px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.15); }
.stat-number { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--color-accent); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── TESTIMONIAL ─────────────────────────────────────────────────────────────── */
.testimonial-section { background: var(--color-bg-alt); padding: 88px 0; }
.testimonial-card {
    max-width: 800px; margin: 0 auto;
    background: white; border-radius: var(--radius-lg);
    padding: 52px 60px; box-shadow: var(--shadow-md);
    position: relative;
}
.testimonial-quote-mark {
    font-size: 100px; line-height: .8; font-family: Georgia, serif;
    color: var(--color-accent); position: absolute; top: 24px; left: 44px;
    opacity: .3;
}
.testimonial-card blockquote {
    font-size: clamp(17px, 2vw, 21px); line-height: 1.6;
    color: var(--color-text); font-style: italic;
    margin-bottom: 32px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--color-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--color-text); }
.testimonial-author span { font-size: 13px; color: var(--color-muted); }

/* ── CTA BANNER ──────────────────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    padding: 80px 0; text-align: center;
}
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.cta-btn {
    display: inline-block; padding: 15px 40px;
    background: white; color: var(--color-primary);
    border-radius: 50px; font-weight: 700; font-size: 16px;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    text-decoration: none;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); text-decoration: none; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────────── */
.page-hero {
    background: var(--color-hero-bg);
    padding: 60px 0 52px;
}
.page-breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.page-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: white; letter-spacing: -.02em; margin-bottom: 12px; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,.65); max-width: 600px; }

/* ── MAIN CONTENT + SIDEBAR ──────────────────────────────────────────────────── */
.site-main { padding: 64px 0 80px; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }

/* Content blocks */
.content-blocks h1, .content-blocks h2, .content-blocks h3, .content-blocks h4 {
    font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--color-primary);
    margin: 1.6em 0 .5em;
}
.content-blocks h1:first-child, .content-blocks h2:first-child { margin-top: 0; }
.content-blocks h1 { font-size: 2em; }
.content-blocks h2 { font-size: 1.55em; }
.content-blocks h3 { font-size: 1.25em; }
.content-blocks h4 { font-size: 1.05em; }
.content-blocks p { margin-bottom: 1.1em; color: var(--color-text); }
.content-blocks ul, .content-blocks ol { padding-left: 1.4em; margin-bottom: 1.1em; }
.content-blocks li { margin-bottom: .4em; line-height: 1.65; }
.content-blocks blockquote {
    border-left: 4px solid var(--color-accent); padding: 16px 24px;
    margin: 1.6em 0; background: var(--color-bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.content-blocks blockquote p { margin: 0 0 8px; font-style: italic; font-size: 1.05em; color: var(--color-primary); }
.content-blocks blockquote cite { font-size: .85em; color: var(--color-muted); }
.content-blocks hr { border: none; border-top: 2px solid var(--color-border); margin: 2.4em 0; }
.content-blocks figure { margin: 1.6em 0; }
.content-blocks figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.content-blocks figcaption { text-align: center; font-size: .85em; color: var(--color-muted); margin-top: 8px; }
.content-blocks table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .95em; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.content-blocks th { background: var(--color-primary); color: white; padding: 12px 16px; text-align: left; font-weight: 600; font-size: .9em; }
.content-blocks td { padding: 11px 16px; border-bottom: 1px solid var(--color-border); }
.content-blocks tr:last-child td { border-bottom: none; }
.content-blocks tr:nth-child(even) td { background: var(--color-bg-alt); }

/* Sidebar */
.sidebar-card {
    background: var(--color-bg-alt); border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--color-muted); margin-bottom: 16px; }
.sidebar-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.sidebar-row svg { width: 16px; height: 16px; stroke: var(--color-accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.sidebar-row a { color: var(--color-text); word-break: break-word; }
.sidebar-row a:hover { color: var(--color-primary); }
.sidebar-cta { background: var(--color-primary); border-color: var(--color-primary); }
.sidebar-cta h4 { color: rgba(255,255,255,.6); }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.5; }
.sidebar-btn {
    display: block; text-align: center; padding: 11px 20px;
    background: var(--color-accent); color: #1a1a1a;
    border-radius: 50px; font-weight: 700; font-size: 14px;
    transition: background .15s; text-decoration: none;
}
.sidebar-btn:hover { background: var(--color-accent-dark); text-decoration: none; }

/* ── CONTACT FORM ────────────────────────────────────────────────────────────── */
.form-feedback { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 500; }
.form-feedback.success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.form-feedback.error   { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.contact-form label { font-size: 13.5px; font-weight: 600; }
.required { color: var(--color-accent); }
.optional { font-weight: 400; color: var(--color-muted); font-size: .85em; }
.contact-form input, .contact-form textarea {
    padding: 12px 14px; border: 1.5px solid var(--color-border);
    border-radius: var(--radius); font-size: 15px; font-family: var(--font-body);
    color: var(--color-text); background: var(--color-bg); width: 100%;
    transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26,58,107,.1); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.btn-submit {
    display: inline-block; padding: 14px 36px;
    background: var(--color-primary); color: white;
    border: none; border-radius: 50px; font-size: 16px; font-weight: 700;
    font-family: var(--font-body); cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    box-shadow: 0 4px 16px rgba(26,58,107,.25);
}
.btn-submit:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,58,107,.3); }

.maps-embed { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--color-border); }

/* ── FORM PRIVACY ────────────────────────────────────────────────────────────── */
.form-privacy { font-size: 12.5px; color: var(--color-muted); margin-bottom: 16px; }

/* ── BUTTON ──────────────────────────────────────────────────────────────────── */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; font-family: var(--font-body); cursor: pointer; text-decoration: none; transition: background .15s, transform .1s, box-shadow .15s; border: none; }
.btn-primary { background: var(--color-primary); color: white; box-shadow: 0 4px 16px rgba(26,58,107,.25); }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,58,107,.3); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: white; text-decoration: none; }

/* ── TABLE OVERFLOW (prevents horizontal bleed on mobile) ───────────────────── */
.content-blocks table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

/* ── EMBED BLOCK ─────────────────────────────────────────────────────────────── */
.embed-block { margin: 32px 0; }
.embed-block .embed-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); }
.embed-block .embed-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.embed-block figcaption { margin-top: 10px; font-size: 13px; color: var(--color-muted); text-align: center; }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { display: block; font-size: 20px; font-weight: 800; color: white; letter-spacing: -.5px; margin-bottom: 10px; }
.footer-brand p { font-size: 14px; opacity: .55; line-height: 1.6; margin-bottom: 20px; }
.footer-nav-col strong, .footer-contact-col strong { display: block; color: rgba(255,255,255,.9); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-nav-col ul { list-style: none; }
.footer-nav-col li { margin-bottom: 9px; }
.footer-nav-col a, .footer-contact-col a { color: var(--color-footer-text); font-size: 14px; text-decoration: none; transition: color .15s; }
.footer-nav-col a:hover, .footer-contact-col a:hover { color: white; }
.footer-contact-col p { font-size: 14px; margin-bottom: 8px; }

.social-links { display: flex; gap: 8px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); transition: background .15s; }
.social-link:hover { background: rgba(255,255,255,.18); text-decoration: none; }
.social-link svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 0px)); font-size: 13px; opacity: .4; }

/* ── LANGUAGE SWITCHER ───────────────────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto; /* push to right side of the flex row */
    flex-shrink: 0;
}
.lang-pill {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .5px;
    border: 1.5px solid var(--color-border);
    color: var(--color-muted);
    text-decoration: none;
    transition: border-color .15s, color .15s, background .15s;
    line-height: 1;
}
.lang-pill:hover { border-color: var(--color-primary); color: var(--color-primary); text-decoration: none; }
.lang-pill.active { background: var(--color-primary); border-color: var(--color-primary); color: white; cursor: default; }
@media (max-width: 680px) {
    .lang-switcher { margin-right: 6px; }
}

/* ── COOKIE BANNER ───────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
    padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform .35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
    display: flex; align-items: center;
    gap: 20px; flex-wrap: wrap;
}
.cookie-text {
    flex: 1; min-width: 200px;
    font-size: 13.5px; color: var(--color-muted); margin: 0;
}
.cookie-text a { color: var(--color-primary); text-decoration: underline; }
.cookie-text a:hover { color: var(--color-primary-dark); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 9px 22px; border-radius: 50px;
    font-size: 13.5px; font-weight: 600; font-family: var(--font-body);
    cursor: pointer; white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s;
}
.cookie-btn-accept { background: var(--color-primary); color: white; border: none; }
.cookie-btn-accept:hover { background: var(--color-primary-dark); }
.cookie-btn-refuse {
    background: transparent; color: var(--color-muted);
    border: 1.5px solid var(--color-border);
}
.cookie-btn-refuse:hover { border-color: var(--color-muted); color: var(--color-text); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .page-layout { grid-template-columns: 1fr; }
    .page-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2)::after { display: none; }
    .testimonial-card { padding: 40px 32px; }
}
@media (max-width: 680px) {
    /* Cookie banner */
    .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 12px; }
    .cookie-actions { flex-direction: row; }
    .cookie-btn { flex: 1; text-align: center; }
    /* Mobile nav */
    .nav-toggle { display: flex; }
    .site-nav {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; border-bottom: 1px solid var(--color-border);
        flex-direction: column; align-items: stretch;
        padding: 12px 16px 20px; gap: 2px;
        box-shadow: var(--shadow-md); z-index: 100;
    }
    .site-nav.open { display: flex; }
    .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; border-radius: var(--radius); }
    /* Nav link touch targets */
    .nav-link { padding: 12px 14px; min-height: 44px; display: flex; align-items: center; }
    /* Hamburger → X animation */
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Layout */
    .container { padding: 0 20px; }
    .hero { padding: 64px 0 52px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form .form-row { grid-template-columns: 1fr; }
    /* iOS auto-zoom prevention: inputs must be ≥16px */
    .contact-form input, .contact-form textarea { font-size: max(16px, 1em); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
    .page-sidebar { grid-template-columns: 1fr; }
    .testimonial-card { padding: 32px 24px; }
    .testimonial-quote-mark { font-size: 70px; top: 16px; left: 20px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 52px 0 40px; }
    .services-section, .testimonial-section, .cta-banner { padding: 60px 0; }
    .stats-section { padding: 48px 0; }
    .site-main { padding: 48px 0 56px; }
    .testimonial-card { padding: 24px 18px; }
    .cta-banner p { font-size: 16px; }
    /* Larger touch targets for CTA buttons */
    .btn, .btn-submit, .cta-btn, .hero-content .btn-primary, .nav-cta { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}
/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
