/* ============================================
   甫東科技 — Services Page Styles
   Shares design tokens with homepage
   ============================================ */

:root {
    --primary: #2563eb;
    --accent: #d15b27;
    --accent-light: #fb923c;
    --bg-white: #fafaf9;
    --bg-dark: #0f1923;
    --bg-dark-warm: #1a1510;
    --bg-cream: #f6f1eb;
    --text-dark: #1c1917;
    --text-muted: #78716c;
    --text-light: #a8a29e;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(255, 255, 255, 0.1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', 'Noto Sans TC', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Skip Link ---- */
.skip-link {
    position: absolute; top: -100%; left: 16px; z-index: 100001;
    padding: 12px 24px; background: var(--accent); color: #fff;
    font-weight: 700; border-radius: 0 0 8px 8px; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ============================================
   NAVIGATION (same as homepage)
   ============================================ */
.navbar {
    position: fixed; top: 0; width: 100%; padding: 16px 48px; z-index: 1000;
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    transition: padding 0.3s;
}

.nav-container {
    width: 100%; max-width: 1280px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 36px; width: auto; }

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

.nav-link {
    font-size: 0.9rem; letter-spacing: 0.5px; font-weight: 500;
    position: relative; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width 0.3s var(--ease-out);
}
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.active::after { width: 100%; }

.btn-contact {
    border: 1.5px solid var(--text-dark); padding: 8px 24px;
    border-radius: 30px; transition: background 0.3s, color 0.3s;
}
.btn-contact:hover, .btn-contact:focus-visible { background: var(--text-dark); color: #fff; }
.btn-contact::after { display: none; }

/* Menu Toggle */
.menu-toggle {
    display: none; background: none; border: none; width: 28px; height: 20px;
    position: relative; cursor: pointer; z-index: 1001; padding: 0;
}
.menu-toggle span {
    display: block; width: 100%; height: 2px; background: var(--text-dark);
    position: absolute; left: 0; transition: all 0.4s var(--ease-out); border-radius: 2px;
}
.menu-toggle span:first-child { top: 2px; }
.menu-toggle span:last-child { bottom: 2px; }
.menu-toggle.active span { background: var(--text-dark); }
.menu-toggle.active span:first-child { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-toggle.active span:last-child { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu — 文創風格 Warm Cultural */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: #f6f1eb;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(209,91,39,0.06), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(37,99,235,0.04), transparent 50%);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu-inner {
    min-height: 100%; display: flex; flex-direction: column;
    justify-content: center; padding: 100px 28px 40px; gap: 36px;
    position: relative; z-index: 1;
}

.mm-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding-bottom: 28px; border-bottom: 1px solid rgba(28,25,23,0.08); }
.mm-brand-en { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; font-style: italic; color: var(--text-dark); letter-spacing: 0.5px; }
.mm-brand-zh { font-family: var(--font-sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 3px; color: var(--text-muted); }

.mm-nav { display: flex; flex-direction: column; gap: 2px; }

.mm-link {
    display: flex; align-items: center; gap: 16px; padding: 18px 14px;
    border-radius: 12px; transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    color: var(--text-dark); opacity: 0; transform: translateX(-16px);
}
.mobile-menu.active .mm-link { opacity: 1; transform: translateX(0); }
.mm-link:hover, .mm-link:focus-visible { background: rgba(28,25,23,0.04); }
.mm-link:active { transform: scale(0.98); }
.mm-link-active { background: rgba(209,91,39,0.07); }

.mm-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); opacity: 0.7; }
.mm-icon svg { width: 100%; height: 100%; }

.mm-text { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.mm-label { font-family: var(--font-serif); font-size: 0.65rem; font-style: italic; font-weight: 400; letter-spacing: 1px; color: var(--text-light); }
.mm-title { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.3px; color: var(--text-dark); }

.mm-arrow { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-light); opacity: 0.4; transition: color 0.25s, transform 0.25s, opacity 0.25s; }
.mm-link:hover .mm-arrow { color: var(--accent); opacity: 1; transform: translateX(3px); }

.mm-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 28px; background: var(--text-dark); color: #fff; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px;
    transition: all 0.3s var(--ease-out); opacity: 0; transform: translateY(8px);
}
.mobile-menu.active .mm-cta { opacity: 1; transform: translateY(0); }
.mm-cta:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(209,91,39,0.2); }
.mm-cta-icon { width: 18px; height: 18px; }

.mm-footer {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding-top: 20px; border-top: 1px solid rgba(28,25,23,0.06); opacity: 0;
}
.mobile-menu.active .mm-footer { opacity: 1; }
.mm-footer a, .mm-footer span { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.5px; transition: color 0.25s; }
.mm-footer a:hover { color: var(--accent); }
.mm-footer-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); opacity: 0.3; display: inline-block; }

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 160px 48px 100px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: svcHeroPan 20s ease-in-out infinite alternate;
}

@keyframes svcHeroPan {
    0%   { transform: scale(1)   translate(0, 0); }
    100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

/* Multi-layer overlay: ink-blue base + warm wash */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(15,25,35,0.8) 0%, rgba(15,25,35,0.35) 40%, transparent 70%),
        linear-gradient(to bottom, rgba(15,25,35,0.45) 0%, transparent 30%),
        linear-gradient(135deg, rgba(160,195,225,0.08) 0%, rgba(230,170,120,0.08) 100%);
    pointer-events: none;
}

/* Bottom glow accent */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    background: radial-gradient(ellipse at 50% 100%, rgba(209, 91, 39, 0.12), transparent 65%);
    pointer-events: none;
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.page-hero-nav {
    position: relative;
    z-index: 4;
}

.page-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent-light);
    display: block;
    margin-bottom: 24px;
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-title-serif {
    display: block;
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: 0.55em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    letter-spacing: 0;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 24px;
    line-height: 1.8;
}

.page-hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.hero-chip {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.06);
}

.hero-chip:hover, .hero-chip:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(209, 91, 39, 0.25);
}

/* ============================================
   SERVICE BLOCKS
   ============================================ */
.svc-block {
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}

.svc-light { background: var(--bg-cream); }

.svc-dark {
    background: var(--bg-dark);
    color: var(--bg-cream);
}

.svc-accent {
    background: linear-gradient(135deg, #1c1510 0%, var(--bg-dark) 40%, #0f1923);
    color: var(--bg-cream);
    position: relative;
}
.svc-accent::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 40%; height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(209, 91, 39, 0.12), transparent 70%);
    pointer-events: none;
}

/* Container layout */
.svc-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.svc-reverse {
    direction: rtl;
}
.svc-reverse > * {
    direction: ltr;
}

/* Header */
.svc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.svc-counter {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-style: italic;
    letter-spacing: 3px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-counter::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.svc-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--accent-light);
}

.svc-dark .svc-counter,
.svc-accent .svc-counter { color: var(--accent-light); }
.svc-dark .svc-counter::before,
.svc-accent .svc-counter::before { background: var(--accent-light); }

/* Title */
.svc-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* Lead paragraph */
.svc-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 520px;
}
.svc-light .svc-lead { color: var(--text-muted); }
.svc-dark .svc-lead, .svc-accent .svc-lead { color: rgba(246, 241, 235, 0.65); }

/* Features list */
.svc-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.svc-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}
.svc-dark .feature-icon,
.svc-accent .feature-icon { color: var(--accent-light); }

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.svc-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.svc-feature p {
    font-size: 0.92rem;
    line-height: 1.7;
}
.svc-light .svc-feature p { color: var(--text-muted); }
.svc-dark .svc-feature p,
.svc-accent .svc-feature p { color: rgba(246, 241, 235, 0.6); }

/* Result box */
.svc-result {
    margin-top: 40px;
    padding: 24px 28px;
    border-radius: 12px;
    max-width: 520px;
}
.svc-light .svc-result { background: rgba(15, 25, 35, 0.03); border: 1px solid rgba(15, 25, 35, 0.08); }
.svc-dark .svc-result { background: rgba(246, 241, 235, 0.05); border: 1px solid rgba(246, 241, 235, 0.1); }
.svc-accent .svc-result { background: rgba(209, 91, 39, 0.1); border: 1px solid rgba(209, 91, 39, 0.2); }

.result-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.svc-dark .result-label,
.svc-accent .result-label { color: var(--accent-light); }

.svc-result p {
    font-size: 0.95rem;
    line-height: 1.7;
}
.svc-light .svc-result p { color: var(--text-muted); }
.svc-dark .svc-result p,
.svc-accent .svc-result p { color: rgba(246, 241, 235, 0.65); }

/* Service page link */
.svc-page-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}
.svc-light .svc-page-link { color: var(--accent); }
.svc-dark .svc-page-link, .svc-accent .svc-page-link { color: var(--accent-light); }
.svc-page-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Visual column */
.svc-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.svc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.svc-block:hover .svc-img-wrapper img {
    transform: scale(1.03);
}

.svc-stat-box {
    padding: 24px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.svc-light .svc-stat-box { background: var(--bg-dark); color: var(--bg-cream); }
.svc-dark .svc-stat-box { background: rgba(246, 241, 235, 0.06); border: 1px solid rgba(246, 241, 235, 0.1); }
.svc-accent .svc-stat-box { background: rgba(209, 91, 39, 0.15); border: 1px solid rgba(209, 91, 39, 0.25); }

.stat-big {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--accent-light);
    flex-shrink: 0;
}

.stat-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}
.svc-light .stat-desc { color: rgba(246, 241, 235, 0.7); }
.svc-dark .stat-desc,
.svc-accent .stat-desc { color: rgba(246, 241, 235, 0.55); }

/* ============================================
   BOTTOM CTA
   ============================================ */
.svc-cta {
    padding: 120px 48px;
    background: var(--bg-white);
    text-align: center;
}

.svc-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.svc-cta-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--accent);
    display: block;
    margin-bottom: 20px;
}

.svc-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
}

.svc-cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.8;
}

.svc-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--bg-dark);
    color: var(--bg-cream);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-out);
    border: 2px solid var(--bg-dark);
}

.cta-btn-primary:hover,
.cta-btn-primary:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(209, 91, 39, 0.3);
}

.cta-btn-primary svg { width: 18px; transition: transform 0.3s; }
.cta-btn-primary:hover svg { transform: translateX(4px); }

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: all 0.3s var(--ease-out);
}

.cta-btn-secondary:hover,
.cta-btn-secondary:focus-visible {
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER (same as homepage)
   ============================================ */
.footer {
    padding: 80px 48px 40px;
    background: var(--bg-dark);
    color: #fff;
}

.footer-main { max-width: 1280px; margin: 0 auto; }

.footer-logo {
    font-size: clamp(4rem, 14vw, 12rem);
    font-weight: 900; letter-spacing: -3px;
    line-height: 0.85; text-align: center; margin-bottom: 60px;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    position: relative; cursor: default;
    display: flex; justify-content: center; gap: 0;
}
.fl-char {
    display: inline-block; position: relative;
    color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06);
    transition: color 0.5s ease, -webkit-text-stroke 0.5s ease, text-shadow 0.5s ease, transform 0.4s var(--ease-out);
    will-change: transform, color; opacity: 0; transform: translateY(30px);
}
.footer-logo.fl-visible .fl-char { opacity: 1; transform: translateY(0); }
.footer-logo.fl-visible .fl-char:nth-child(1) { transition-delay: 0.0s; }
.footer-logo.fl-visible .fl-char:nth-child(2) { transition-delay: 0.06s; }
.footer-logo.fl-visible .fl-char:nth-child(3) { transition-delay: 0.12s; }
.footer-logo.fl-visible .fl-char:nth-child(4) { transition-delay: 0.18s; }
.footer-logo.fl-visible .fl-char:nth-child(5) { transition-delay: 0.24s; }
.footer-logo.fl-visible .fl-char:nth-child(6) { transition-delay: 0.30s; }
.footer-logo.fl-visible .fl-char:nth-child(7) { transition-delay: 0.36s; }
.fl-char:hover { color: rgba(255,255,255,0.15); -webkit-text-stroke: 1px rgba(255,255,255,0.25); text-shadow: 0 0 40px rgba(230,170,120,0.25), 0 0 80px rgba(160,195,225,0.15); transform: translateY(-4px); }
.fl-char.fl-glow-1 { color: rgba(255,255,255,0.06); -webkit-text-stroke: 1px rgba(255,255,255,0.12); text-shadow: 0 0 30px rgba(230,170,120,0.08); }
.fl-char.fl-glow-2 { color: rgba(255,255,255,0.12); -webkit-text-stroke: 1px rgba(255,255,255,0.20); text-shadow: 0 0 30px rgba(230,170,120,0.15), 0 0 60px rgba(160,195,225,0.08); }
.fl-char.fl-glow-3 { color: rgba(255,255,255,0.20); -webkit-text-stroke: 1px rgba(255,255,255,0.30); text-shadow: 0 0 40px rgba(230,170,120,0.30), 0 0 80px rgba(160,195,225,0.15); transform: translateY(-3px); }

.footer-content {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.footer-col h4 {
    font-size: 0.8rem; letter-spacing: 2px; font-weight: 700;
    margin-bottom: 16px; color: rgba(255, 255, 255, 0.6); text-transform: uppercase;
}
.footer-col address { font-style: normal; }
.footer-col p, .footer-col a {
    display: block; font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5); margin-bottom: 8px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col nav { display: flex; flex-direction: column; }
.socials { display: flex; flex-direction: column; }

.footer-bottom { padding-top: 32px; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.3); letter-spacing: 1px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.svc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.svc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .svc-reveal { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .navbar { padding: 12px 24px; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }

    .page-hero { padding: 120px 24px 80px; }

    .svc-block { padding: 80px 24px; }

    .svc-container,
    .svc-reverse {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr;
    }

    .svc-visual { order: -1; }

    .svc-stat-box { flex-direction: column; text-align: center; }
    .stat-big { font-size: 2.2rem; }

    .svc-cta { padding: 80px 24px; }

    .footer { padding: 60px 24px 32px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
    .page-hero { padding: 100px 16px 60px; }
    .page-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .page-subtitle { font-size: 0.95rem; }
    .hero-chip { padding: 8px 16px; font-size: 0.75rem; }

    .svc-block { padding: 60px 16px; }
    .svc-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .svc-lead { font-size: 1rem; }
    .svc-feature { flex-direction: column; gap: 8px; }
    .feature-icon { width: 32px; height: 32px; }

    .svc-cta { padding: 60px 16px; }
    .svc-cta-actions { flex-direction: column; align-items: center; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }

    .footer { padding: 48px 16px 24px; }
    .footer-logo { font-size: 2.5rem; margin-bottom: 32px; letter-spacing: -1px; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   HIGH CONTRAST
   ============================================ */
@media (forced-colors: active) {
    .svc-result, .svc-stat-box { border: 2px solid; }
    .cta-btn-primary, .cta-btn-secondary, .btn-contact { border: 2px solid; }
    .hero-chip { border: 2px solid; }
}
