/* ============================================================
   Yuanxia Technology — main.css
   Design system: blue #2563EB / navy #0F172A / gold #F59E0B
   Type: Inter · Radius 8px · Breakpoints 768 / 1024 / 1280
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
    --blue:        #2563EB;
    --blue-dark:   #1D4ED8;
    --blue-soft:   #EFF6FF;
    --navy:        #0F172A;
    --navy-2:      #16223B;
    --gold:        #F59E0B;
    --gold-dark:   #D97706;
    --gold-soft:   #FEF3C7;
    --text:        #1E293B;
    --text-light:  #64748B;
    --bg:          #FFFFFF;
    --bg-warm:     #F8FAFC;
    --border:      #E2E8F0;
    --border-dark: rgba(255, 255, 255, .14);

    --radius:      8px;
    --radius-lg:   14px;

    --shadow-sm:   0 1px 2px rgba(15, 23, 42, .06);
    --shadow-md:   0 2px 6px rgba(15, 23, 42, .06), 0 10px 28px rgba(15, 23, 42, .08);
    --shadow-lg:   0 4px 12px rgba(15, 23, 42, .08), 0 24px 48px rgba(15, 23, 42, .14);
    --shadow-gold: 0 6px 20px rgba(245, 158, 11, .32);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    --container:    1200px;
    --header-h:    72px;
    --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .55em;
    line-height: 1.22;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.021em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }

a {
    color: var(--blue);
    text-decoration: none;
    transition: color .18s var(--ease);
}
a:hover { color: var(--blue-dark); }

::selection { background: var(--blue); color: #fff; }

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 3px;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 200;
    padding: 10px 18px;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 3. Typography helpers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--blue);
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.eyebrow-light { color: #93C5FD; }

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: .4em;
}

.section-sub {
    max-width: 640px;
    margin: 0;
    color: var(--text-light);
    font-size: 1.06rem;
}

.page-title {
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 800;
    margin-bottom: .35em;
}

.page-sub {
    max-width: 660px;
    margin: 0;
    color: var(--text-light);
    font-size: 1.08rem;
}

.page-title-light { color: #fff; }
.page-sub-light { color: rgba(226, 232, 240, .82); }

/* ---------- 4. Layout utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.container.narrow { max-width: 880px; }
.container.narrow-lg { max-width: 800px; }

.section { padding: 84px 0; }
.section-warm { background: var(--bg-warm); }
.section-tight { padding: 56px 0; }

.section-head {
    max-width: 720px;
    margin-bottom: 48px;
}
.section-head .section-sub { margin-top: 10px; }

.section-foot {
    margin-top: 44px;
    text-align: center;
}

.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }   .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: .5rem; }  .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2.5rem; }

.empty-note {
    padding: 36px 24px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-warm);
    color: var(--text-light);
    text-align: center;
}

/* ---------- 5. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: transform .18s var(--ease), box-shadow .18s var(--ease),
                background-color .18s var(--ease), color .18s var(--ease),
                border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn-accent {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}
.btn-accent:hover { background: var(--gold-dark); color: var(--navy); }

.btn-secondary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-md); }

.btn-outline-light {
    background: rgba(255, 255, 255, .04);
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 15px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- 6. Header & navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: background-color .25s var(--ease), border-color .25s var(--ease),
                box-shadow .25s var(--ease);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 4px 24px rgba(15, 23, 42, .09);
}

/* Transparent variant while over the home hero */
body.has-hero .site-header:not(.scrolled) {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    color: var(--navy);
}
.logo:hover { color: var(--navy); }

.logo-mark { border-radius: 8px; flex-shrink: 0; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
    font-weight: 800;
    font-size: 1.16rem;
    letter-spacing: -.02em;
}
.logo-text small {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
    transition: color .25s var(--ease);
}

body.has-hero .site-header:not(.scrolled) .logo { color: #fff; }
body.has-hero .site-header:not(.scrolled) .logo-text small { color: rgba(226, 232, 240, .75); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    position: relative;
    padding: 10px 14px;
    font-size: .94rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius);
    transition: color .18s var(--ease);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s var(--ease);
}
.main-nav a:hover { color: var(--blue); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--blue); font-weight: 600; }

body.has-hero .site-header:not(.scrolled) .main-nav a { color: rgba(226, 232, 240, .92); }
body.has-hero .site-header:not(.scrolled) .main-nav a:hover,
body.has-hero .site-header:not(.scrolled) .main-nav a.active { color: #fff; }

.nav-mobile-cta { display: none; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease),
                background-color .25s var(--ease);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.has-hero .site-header:not(.scrolled) .nav-toggle { border-color: var(--border-dark); }
body.has-hero .site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    padding: 96px 0 84px;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(52rem 30rem at 82% 18%, rgba(37, 99, 235, .38), transparent 62%),
        linear-gradient(160deg, rgba(15, 23, 42, .95) 8%, rgba(15, 23, 42, .84) 46%, rgba(29, 78, 216, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    color: #E2E8F0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 16px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    color: #DBEAFE;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .22);
}

.hero-title {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 6.2vw, 4.3rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.032em;
    color: #fff;
}

.hero-sub {
    max-width: 620px;
    margin-bottom: 36px;
    font-size: clamp(1.02rem, 1.6vw, 1.19rem);
    line-height: 1.75;
    color: rgba(226, 232, 240, .86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--border-dark);
}
.hero-proof li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 34px 0 0;
    margin-right: 34px;
    border-right: 1px solid var(--border-dark);
}
.hero-proof li:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}
.hero-proof strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}
.hero-proof span {
    font-size: .82rem;
    color: rgba(148, 163, 184, .95);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Hero entrance animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim-up {
    opacity: 0;
    animation: fadeUp .85s var(--ease) forwards;
}
.anim-up.d1 { animation-delay: .08s; }
.anim-up.d2 { animation-delay: .18s; }
.anim-up.d3 { animation-delay: .3s; }
.anim-up.d4 { animation-delay: .42s; }
.anim-up.d5 { animation-delay: .54s; }

/* ---------- 8. Service cards (home) ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px 26px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #BFDBFE;
}

.service-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: #CBD5E1;
    transition: color .24s var(--ease);
}
.service-card:hover .service-num { color: var(--gold); }

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    font-size: 1.75rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue-soft), #DBEAFE);
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, .12);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.service-card:hover .service-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(37, 99, 235, .22);
}

.service-name {
    font-size: 1.14rem;
    margin-bottom: 10px;
}

.service-summary {
    flex: 1;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.68;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .01em;
}
.service-link span { transition: transform .2s var(--ease); }
.service-link:hover { color: var(--blue-dark); }
.service-link:hover span { transform: translateX(4px); }

/* ---------- 9. Stats band ---------- */
.stats-band {
    position: relative;
    padding: 72px 0;
    background: var(--navy);
    overflow: hidden;
}
.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40rem 22rem at 12% 0%, rgba(37, 99, 235, .34), transparent 60%),
        radial-gradient(30rem 20rem at 95% 100%, rgba(245, 158, 11, .12), transparent 62%);
    pointer-events: none;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
}
.stat-value {
    font-size: clamp(2.3rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: -.03em;
}
.stat-plus { color: var(--gold); }
.stat-label {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #94A3B8;
}

/* ---------- 10. Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.t-card {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 28px 26px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.t-stars .star-on  path { fill: var(--gold); }
.t-stars .star-off path { fill: #E2E8F0; }

.t-quote {
    flex: 1;
    margin: 0 0 22px;
    font-size: .97rem;
    line-height: 1.72;
    color: var(--text);
}

.t-meta {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-soft);
    box-shadow: 0 0 0 3px #fff, var(--shadow-sm);
}

.t-meta div { display: flex; flex-direction: column; line-height: 1.35; }
.t-name { font-weight: 700; font-size: .95rem; color: var(--navy); }
.t-company { font-size: .82rem; color: var(--text-light); }

/* ---------- 11. CTA band ---------- */
.cta-band {
    position: relative;
    padding: 80px 0;
    background: var(--navy);
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(46rem 26rem at 88% 20%, rgba(37, 99, 235, .4), transparent 62%),
        radial-gradient(26rem 18rem at 6% 96%, rgba(245, 158, 11, .14), transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-copy { max-width: 620px; }

.cta-eyebrow {
    margin-bottom: 12px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-title {
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 3.4vw, 2.45rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.024em;
}

.cta-sub {
    margin: 0;
    color: rgba(203, 213, 225, .88);
    font-size: 1.04rem;
    line-height: 1.72;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- 12. Page headers ---------- */
.page-header {
    position: relative;
    padding: 84px 0 72px;
    background:
        radial-gradient(34rem 18rem at 92% -10%, rgba(37, 99, 235, .1), transparent 60%),
        linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
}

.page-header-contact {
    color: #E2E8F0;
    border-bottom: 0;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(40rem 22rem at 80% 15%, rgba(37, 99, 235, .35), transparent 62%),
        linear-gradient(165deg, rgba(15, 23, 42, .93) 10%, rgba(15, 23, 42, .86) 55%, rgba(29, 78, 216, .55) 100%);
}
.page-header-contact .container { position: relative; z-index: 2; }

/* ---------- 13. Services page ---------- */
.service-grid-lg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.svc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: #BFDBFE;
}

.svc-card-media {
    position: relative;
    display: block;
    aspect-ratio: 8 / 5;
    overflow: hidden;
    background: var(--bg-warm);
}
.svc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.svc-card:hover .svc-card-media img { transform: scale(1.05); }

.svc-card-icon {
    position: absolute;
    left: 18px;
    bottom: -24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.svc-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 38px 24px 24px;
}

.svc-card-name {
    font-size: 1.16rem;
    margin-bottom: 10px;
}
.svc-card-name a { color: inherit; }
.svc-card-name a:hover { color: var(--blue); }

.svc-card-summary {
    flex: 1;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.68;
}

.svc-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.svc-price {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold-soft);
    border: 1px solid #FDE68A;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---------- 14. Service detail ---------- */
.svc-hero {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
}

.svc-hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 56px;
    align-items: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: .85rem;
    color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current] { color: var(--navy); font-weight: 600; }

.svc-hero-title {
    font-size: clamp(2rem, 4.4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.svc-hero-summary {
    max-width: 560px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.75;
}

.svc-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.svc-price-hero {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
}
.svc-price-hero::before {
    content: "Starting at";
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.svc-hero-media { position: relative; }
.svc-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.svc-hero-icon {
    position: absolute;
    left: -20px;
    bottom: -20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    font-size: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

.svc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 56px;
    align-items: start;
}

.svc-body p {
    font-size: 1.03rem;
    line-height: 1.8;
    color: var(--text);
}

.svc-body-cta {
    margin-top: 40px;
    padding: 32px 30px;
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
    border-radius: var(--radius-lg);
    color: #E2E8F0;
}
.svc-body-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.svc-body-cta p { color: rgba(203, 213, 225, .9); margin-bottom: 20px; }

.side-card {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    padding: 26px 24px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.side-card h3 {
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 1.02rem;
}
.side-card dl { margin: 0 0 22px; }
.side-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--border);
}
.side-card dl div:last-child { border-bottom: 0; }
.side-card dt {
    font-size: .85rem;
    color: var(--text-light);
    font-weight: 500;
    flex-shrink: 0;
}
.side-card dd {
    margin: 0;
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
    text-align: right;
}

/* ---------- 15. Pricing ---------- */
.price-family { margin-bottom: 64px; }
.price-family:last-of-type { margin-bottom: 40px; }

.price-family-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.price-family-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -.018em;
}
.price-family-link {
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
}
.price-family-link:hover { text-decoration: underline; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pricing-grid-inset { margin-top: 8px; }

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 28px;
    padding: 5px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: var(--shadow-gold);
}

.price-card.is-popular {
    background: linear-gradient(165deg, var(--navy) 0%, #16243E 100%);
    border-color: rgba(245, 158, 11, .5);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .32);
}
.price-card.is-popular:hover { box-shadow: 0 24px 56px rgba(15, 23, 42, .42); }
.price-card.is-popular .price-name { color: #fff; }

.price-name {
    min-height: 2.6em;
    margin-bottom: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -.01em;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.price-card.is-popular .price-amount { border-bottom-color: var(--border-dark); }

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--navy);
}
.price-card.is-popular .price-value { color: #fff; }

.price-custom {
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
}

.price-cycle {
    font-size: .92rem;
    color: var(--text-light);
}
.price-card.is-popular .price-cycle { color: #94A3B8; }

.price-features {
    flex: 1;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: .92rem;
    line-height: 1.5;
    color: var(--text);
}
.price-card.is-popular .price-features li { color: rgba(226, 232, 240, .92); }
.price-features svg {
    flex-shrink: 0;
    margin-top: 4px;
    fill: var(--blue);
}
.price-card.is-popular .price-features svg { fill: var(--gold); }

.pricing-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

.note-card {
    padding: 28px 28px 26px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.note-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.note-card p { color: var(--text-light); font-size: .95rem; margin-bottom: 16px; }

/* ---------- 16. Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 44px;
    align-items: start;
}

.contact-form-wrap { min-width: 0; }

.flash {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
}
.flash svg { flex-shrink: 0; }
.flash-success {
    color: #166534;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
}
.flash-success svg path { fill: #16A34A; }
.flash-error {
    color: #991B1B;
    background: #FEF2F2;
    border: 1px solid #FECACA;
}
.flash-error svg path { fill: #DC2626; }

.contact-form {
    padding: 36px 34px 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.form-sub {
    color: var(--text-light);
    margin-bottom: 26px;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field { margin-bottom: 18px; }

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
}
.req { color: #DC2626; }

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: inherit;
    font-size: .96rem;
    color: var(--text);
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease),
                background-color .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: #94A3B8; }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
    cursor: pointer;
}

.contact-form .btn { margin-top: 6px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-info-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 4px 0 6px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.info-card h3 { font-size: .95rem; margin-bottom: 3px; }
.info-card p {
    margin: 0;
    color: var(--text-light);
    font-size: .93rem;
    line-height: 1.6;
}
.info-card a { font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 12px;
}

.map-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 190px;
    color: var(--text-light);
    font-weight: 600;
    background:
        linear-gradient(rgba(37, 99, 235, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .04) 1px, transparent 1px);
    background-size: 26px 26px;
    border: 1.5px dashed #B6C6E3;
    border-radius: var(--radius-lg);
}
.map-ph svg { color: var(--blue); }

.contact-side-cta {
    padding: 24px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
    border-radius: var(--radius-lg);
    color: rgba(203, 213, 225, .9);
}
.contact-side-cta h3 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.contact-side-cta p { margin: 0; font-size: .93rem; }
.contact-side-cta a { color: var(--gold); font-weight: 700; }
.contact-side-cta a:hover { color: var(--gold-dark); text-decoration: underline; }

/* ---------- 17. About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-grid-reverse .about-copy { order: 2; }

.about-copy p { font-size: 1.02rem; line-height: 1.78; color: var(--text); }

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}
.about-stats div { display: flex; flex-direction: column; gap: 2px; }
.about-stats strong {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.02em;
}
.about-stats span {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.about-media { margin: 0; }
.about-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mv-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.value-grid { grid-template-columns: repeat(4, 1fr); }

.mv-card,
.value-card {
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.mv-card:hover,
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.mv-card h3,
.value-card h3 { font-size: 1.08rem; margin-bottom: 10px; }

.mv-card p,
.value-card p {
    margin: 0;
    color: var(--text-light);
    font-size: .94rem;
    line-height: 1.7;
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    font-size: 1.25rem;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 12px;
}

.value-num {
    display: block;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #CBD5E1;
    transition: color .24s var(--ease);
}
.value-card:hover .value-num { color: var(--gold); }

/* ---------- 18. FAQ ---------- */
.faq-list { max-width: 760px; }

.faq-section {
    margin: 38px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.faq-section:first-child { margin-top: 0; }

.faq-item {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item:hover { border-color: #BFD3F8; }
.faq-item[open] {
    border-color: var(--blue);
    box-shadow: 0 6px 22px rgba(37, 99, 235, .1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    border-radius: var(--radius);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 50%;
    transition: transform .24s var(--ease), background-color .24s var(--ease),
                color .24s var(--ease);
}
.faq-item[open] summary::after {
    content: "\2212";
    transform: rotate(180deg);
    background: var(--blue);
    color: #fff;
}

.faq-item p {
    margin: 0;
    padding: 2px 22px 22px;
    color: var(--text-light);
    font-size: .96rem;
    line-height: 1.75;
}
.faq-item p a { font-weight: 600; }

.faq-cta {
    margin-top: 48px;
    padding: 34px 30px;
    text-align: center;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.faq-cta h2 { font-size: 1.35rem; margin-bottom: 8px; }
.faq-cta p { color: var(--text-light); margin-bottom: 20px; }

/* ---------- 19. Legal pages ---------- */
.legal-body { font-size: .98rem; }

.legal-meta {
    display: inline-block;
    margin-bottom: 26px;
    padding: 8px 14px;
    background: var(--blue-soft);
    border-radius: var(--radius);
    font-size: .88rem;
    color: var(--blue-dark);
}

.legal-body h2 {
    margin: 44px 0 14px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 1.28rem;
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.legal-body h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 28px; }

.legal-body p { line-height: 1.78; color: var(--text); }
.legal-body ul li { margin-bottom: 8px; line-height: 1.65; color: var(--text); }

.legal-toc {
    padding: 24px 28px;
    margin: 28px 0 8px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.legal-toc h3 {
    margin-bottom: 12px;
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
}
.legal-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 40px;
}
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { font-weight: 600; font-size: .93rem; }
.legal-toc a:hover { text-decoration: underline; }

.legal-address {
    padding: 20px 24px;
    background: var(--bg-warm);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: normal;
    line-height: 1.9;
}

/* ---------- 20. 404 ---------- */
.notfound {
    padding: 110px 0 130px;
    text-align: center;
}

.notfound-inner { max-width: 640px; }

.notfound-code {
    margin: 0 0 8px;
    font-size: clamp(5rem, 16vw, 9.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.05em;
    color: var(--navy);
}
.notfound-code .nf-zero {
    color: var(--blue);
    display: inline-block;
    animation: nfFloat 3.2s ease-in-out infinite;
}
@keyframes nfFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

.notfound .page-sub { margin-inline: auto; }

.notfound-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 34px 0 26px;
}

.notfound-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-light);
}
.notfound-links a { font-weight: 600; }

/* ---------- 21. Footer ---------- */
.site-footer {
    background: var(--navy);
    color: #94A3B8;
    padding: 64px 0 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 40px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--border-dark);
}

.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text small { color: #94A3B8; }
.logo-footer:hover .logo-text { color: #fff; }

.footer-tagline {
    max-width: 430px;
    margin: 0;
    font-size: .95rem;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #CBD5E1;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    color: #94A3B8;
    font-size: .93rem;
    transition: color .18s var(--ease), transform .18s var(--ease);
}
.footer-col a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-more { margin-top: 8px; color: #60A5FA !important; }

.footer-contact p {
    margin: 0 0 10px;
    font-size: .93rem;
    line-height: 1.65;
}
.footer-contact a { color: #94A3B8; }
.footer-contact a:hover { color: var(--gold); }
.footer-company { color: #E2E8F0; font-weight: 700; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid var(--border-dark);
}
.footer-bottom p { margin: 0; font-size: .85rem; }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85rem;
}
.footer-legal a { color: #94A3B8; font-weight: 600; }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: #475569; }

/* ---------- 22. Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1280px) {
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-proof li { padding-right: 24px; margin-right: 24px; }
}

@media (max-width: 1024px) {
    .section { padding: 64px 0; }

    .service-grid,
    .service-grid-lg,
    .testimonial-grid,
    .pricing-grid,
    .pricing-grid-inset { grid-template-columns: repeat(2, 1fr); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }

    .svc-hero-grid,
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-grid-reverse .about-copy { order: 0; }

    .svc-layout { grid-template-columns: 1fr; }
    .side-card { position: static; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    :root { --header-h: 62px; }

    .section { padding: 54px 0; }
    .section-tight { padding: 44px 0; }
    .container { padding-inline: 20px; }

    /* Mobile navigation */
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .main-nav {
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 14px 20px 22px;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
        display: none;
    }
    body.nav-open .main-nav { display: flex; }

    .main-nav a {
        padding: 13px 14px;
        font-size: 1rem;
        color: var(--text) !important;
        border-radius: var(--radius);
    }
    .main-nav a.active { background: var(--blue-soft); }
    .main-nav a::after { display: none; }

    .nav-mobile-cta {
        display: inline-flex;
        margin-top: 12px;
        justify-content: center;
    }

    body.has-hero .site-header:not(.scrolled) { background: var(--navy); }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 72px 0 64px;
    }
    .hero-title { font-size: clamp(2.1rem, 9vw, 2.7rem); }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-proof { gap: 18px 0; flex-direction: column; }
    .hero-proof li {
        border-right: 0;
        margin-right: 0;
        padding: 0;
    }

    /* Grids collapse */
    .service-grid,
    .service-grid-lg,
    .testimonial-grid,
    .pricing-grid,
    .pricing-grid-inset,
    .stats-grid,
    .mv-grid,
    .value-grid,
    .pricing-notes { grid-template-columns: 1fr; }

    .field-row { grid-template-columns: 1fr; gap: 0; }

    .contact-form { padding: 26px 20px 24px; }

    .legal-toc ol { columns: 1; }

    .svc-hero { padding: 44px 0 56px; }
    .svc-hero-icon { left: 12px; bottom: -18px; width: 56px; height: 56px; }

    .page-header { padding: 56px 0 52px; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .stats-band { padding: 52px 0; }
    .stat { padding-left: 18px; }

    .notfound { padding: 72px 0 90px; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { gap: 22px; flex-wrap: wrap; }
    .price-value { font-size: 2.1rem; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { flex: 1 1 auto; }
    .svc-card-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---------- 24. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .anim-up, .reveal { opacity: 1; transform: none; }
}
