/* ═══════════════════════════════════════════════════════════════
   BIG DOG WRAPS — Premium Redesign
   High-end, E-E-A-T focused, unique section designs
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
    --color-primary: #FE610D;
    --color-primary-light: #FF8A47;
    --color-primary-dark: #D94F00;
    --color-surface: #0A0A0B;
    --color-surface-raised: #131315;
    --color-surface-overlay: #1A1A1D;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-text: #E8E8EA;
    --color-text-muted: #8A8A8F;
    --color-text-subtle: #5A5A60;
    --color-white: #FFFFFF;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--color-surface);
    color: var(--color-text);
    line-height: 1.6;
    overflow-y: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
address { font-style: normal; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* ─── TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.text-accent { color: var(--color-primary); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center {
    text-align: center;
    margin-bottom: 56px;
}

.section-header--center .section-tag::before { display: none; }
.section-header--center .section-tag::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.section-header--center .section-desc { margin: 0 auto; }

.section-header--left { margin-bottom: 48px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 0 0 0 rgba(254, 97, 13, 0), 0 4px 16px rgba(254, 97, 13, 0.25);
}

.btn--primary:hover {
    background: var(--color-primary-light);
    box-shadow: 0 0 0 4px rgba(254, 97, 13, 0.15), 0 8px 32px rgba(254, 97, 13, 0.35);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid var(--color-border-hover);
    padding: 13px 28px;
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Floating glass morphism
   ═══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    transition: all 0.5s var(--ease-out-expo);
}

.nav--scrolled {
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
}

.nav__inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(var(--nav-height) - 24px);
}

.nav__logo img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s;
}

.nav__logo:hover img { opacity: 0.8; }

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav__links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.nav__links > li > a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
}

/* Mega menu */
.nav__dropdown { position: relative; }

/* Invisible bridge to prevent hover gap */
.nav__dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav__mega {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    min-width: 580px;
}

/* Extra invisible hover zone on top of the mega menu */
.nav__mega::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav__dropdown:hover .nav__mega,
.nav__dropdown.is-open .nav__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

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

.nav__mega-col h4 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.nav__mega-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    transition: all 0.2s;
}

.nav__mega-col a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: color 0.3s;
}

.nav__phone:hover { color: var(--color-primary); }

.nav__actions .btn { padding: 10px 22px; font-size: 0.8125rem; }

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 100;
}

.nav__burger span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO — Cinematic full-bleed with diagonal reveal
   ═══════════════════════════════════════════════════════════════ */
/* ─── HERO — Cinematic full-bleed with massive typography ────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(177.78vh, 100vw);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%);
    border: none;
    object-fit: cover;
}

.hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

/* Floating social icons — left side */
.hero__social {
    position: absolute;
    left: clamp(16px, 3vw, 40px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.hero__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    transition: all 0.3s ease;
}

.hero__social a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

/* Top tagline — uppercase small text */
.hero__tagline {
    position: relative;
    z-index: 2;
    padding: 0 clamp(16px, 3vw, 40px);
    margin-bottom: 12px;
}

.hero__tagline span {
    font-family: var(--font-display);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* Massive bottom title */
.hero__mega-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: var(--color-white);
    text-transform: uppercase;
    padding: 0 clamp(16px, 3vw, 40px);
    margin-bottom: 0;
    pointer-events: none;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.6);
}

/* CTA block — positioned bottom right */
.hero__cta-block {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px clamp(16px, 3vw, 40px) 0;
    margin-bottom: 16px;
}

.hero__trust-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
}

.hero__trust-sep {
    color: rgba(255,255,255,0.2);
}

/* Scroll indicator — bottom center */
.hero__scroll {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 24px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.hero__scroll svg {
    color: rgba(255,255,255,0.45);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — Full-image overlay cards
   ═══════════════════════════════════════════════════════════════ */
.services {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
}

.services__bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 380px;
    gap: 16px;
}

.services__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    min-height: 380px;
}

.services__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    transition: background 0.5s var(--ease-out-expo);
    z-index: 1;
}

.services__card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.services__card--featured {
    /* No special spanning — clean equal grid */
}

.services__card-img {
    position: absolute;
    inset: 0;
}

.services__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.services__card:hover .services__card-img img {
    transform: scale(1.06);
}

.services__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.5s var(--ease-out-expo);
}

.services__card:hover .services__card-content {
    transform: translateY(0);
}

.services__card--featured .services__card-content {
    padding: 40px;
}

.services__card-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.services__card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.services__card--featured h3 {
    font-size: 1.75rem;
}

.services__card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.services__card--featured p {
    max-height: 200px;
    opacity: 1;
}

.services__card:hover p {
    max-height: 200px;
    opacity: 1;
}

.services__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 14px;
    transition: gap 0.3s var(--ease-out-expo);
}

.services__card:hover .services__card-link { gap: 14px; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT — Split layout with floating badge
   ═══════════════════════════════════════════════════════════════ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.about__image-col {
    position: relative;
    overflow: hidden;
}

.about__image-wrapper {
    position: relative;
    height: 100%;
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 16px 48px rgba(254, 97, 13, 0.3);
    z-index: 2;
}

.about__experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

.about__content-col {
    display: flex;
    align-items: center;
    padding: clamp(40px, 6vw, 80px) clamp(40px, 6vw, 80px);
    background: var(--color-surface-raised);
}

.about__content .section-title { margin-bottom: 28px; }

.about__text p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__lead {
    font-size: 1.0625rem !important;
    color: var(--color-text) !important;
    font-weight: 500;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 97, 13, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.about__value strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.about__value span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE — Horizontal scroll gallery
   ═══════════════════════════════════════════════════════════════ */
.showcase {
    padding: clamp(80px, 10vw, 140px) 0;
    overflow: hidden;
}

.showcase__track {
    display: flex;
    gap: 16px;
    padding: 0 clamp(20px, 4vw, 48px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.showcase__track::-webkit-scrollbar { display: none; }
.showcase__track:active { cursor: grabbing; }

.showcase__item {
    position: relative;
    min-width: 320px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.showcase__item:hover img {
    transform: scale(1.08);
}

.showcase__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out-expo);
}

.showcase__item:hover .showcase__overlay {
    opacity: 1;
    transform: translateY(0);
}

.showcase__overlay span {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS — Staggered timeline
   ═══════════════════════════════════════════════════════════════ */
.process {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--color-surface-raised);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-border), transparent);
}

.process__timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.process__step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 2px solid var(--color-border-hover);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out-expo);
}

.process__step:hover .process__step-number {
    border-color: var(--color-primary);
    background: rgba(254, 97, 13, 0.08);
    transform: scale(1.1);
}

.process__step-number span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.process__step h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.process__step p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.process__connector {
    width: 60px;
    min-width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--color-border-hover), var(--color-primary), var(--color-border-hover));
    margin-top: 32px;
    border-radius: 1px;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ PREVIEW — Split layout with accordion
   ═══════════════════════════════════════════════════════════════ */
.faq-preview {
    padding: clamp(80px, 10vw, 140px) 0;
}

.faq-preview__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: flex-start;
}

.faq-preview__left {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
}

.faq-preview__left .section-desc { margin-bottom: 32px; }

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child { border-top: 1px solid var(--color-border); }

.faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s;
}

.faq__trigger:hover { color: var(--color-primary); }

.faq__trigger svg {
    min-width: 20px;
    color: var(--color-text-muted);
    transition: transform 0.4s var(--ease-out-expo);
}

.faq__item.active .faq__trigger svg {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq__content p {
    padding: 0 0 22px;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PREVIEW — Magazine-style staggered cards
   ═══════════════════════════════════════════════════════════════ */
.blog-preview {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--color-surface-raised);
}

.blog-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.blog-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(254, 97, 13, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.blog-card__img {
    overflow: hidden;
    flex-shrink: 0;
    height: 220px;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo);
}

.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card__meta time {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.blog-card__cat {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    background: rgba(254, 97, 13, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
}

.blog-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-card__body p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-card__read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap 0.3s var(--ease-out-expo);
}

.blog-card:hover .blog-card__read { gap: 10px; }

.blog-preview__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION — Full-bleed with texture
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    text-align: center;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
}

.cta-section__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.cta-section__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, rgba(10,10,11,0.9) 100%);
}

.cta-section__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-section__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.cta-section__content p {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-section__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Dark geometric
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__brand p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 20px 0 24px;
    max-width: 320px;
}

.footer__brand img {
    height: 36px;
    width: auto;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-overlay);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all 0.3s var(--ease-out-expo);
}

.footer__social a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(254, 97, 13, 0.08);
    transform: translateY(-2px);
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__col a,
.footer__col p {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    padding: 5px 0;
    transition: all 0.2s;
}

.footer__col a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
}

.footer__bottom a:hover { color: var(--color-primary); }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — Only activate when JS adds .anim-ready to html
   Content is always visible by default (no-JS fallback)
   ═══════════════════════════════════════════════════════════════ */
html.anim-ready [data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

html.anim-ready [data-animate="reveal-left"] {
    transform: translateX(-40px);
}

html.anim-ready [data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

html.anim-ready [data-animate="stagger"] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

html.anim-ready [data-animate="stagger"].animated > * {
    opacity: 1;
    transform: translateY(0);
}

html.anim-ready [data-animate="stagger"].animated > *:nth-child(1) { transition-delay: 0s; }
html.anim-ready [data-animate="stagger"].animated > *:nth-child(2) { transition-delay: 0.1s; }
html.anim-ready [data-animate="stagger"].animated > *:nth-child(3) { transition-delay: 0.2s; }
html.anim-ready [data-animate="stagger"].animated > *:nth-child(4) { transition-delay: 0.3s; }
html.anim-ready [data-animate="stagger"].animated > *:nth-child(5) { transition-delay: 0.4s; }
html.anim-ready [data-animate="stagger"].animated > *:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .nav__phone { display: none; }
    .nav__burger { display: flex; }

    .nav__links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--color-surface);
        padding: calc(var(--nav-height) + 20px) 32px 32px;
        z-index: 50;
        gap: 0;
    }

    .nav__links.active > li > a {
        font-size: 1.25rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav__mega {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: auto;
        padding: 20px;
        box-shadow: none;
        background: var(--color-surface-overlay);
        border-radius: var(--radius-md);
        margin-top: 8px;
        display: none;
    }

    .nav__links.active .nav__dropdown:hover .nav__mega,
    .nav__links.active .nav__mega { display: block; }

    .nav__mega-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services__bento {
        grid-template-columns: 1fr;
        grid-template-rows: 320px 320px 320px 320px;
    }

    .services__card--featured {
        grid-row: auto;
    }

    .services__card p {
        max-height: 200px;
        opacity: 1;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about__image-col { height: 400px; }

    .about__experience-badge {
        right: 20px;
        bottom: 20px;
    }

    .process__timeline {
        flex-direction: column;
        gap: 0;
        max-width: 480px;
        margin: 0 auto;
    }

    .process__step {
        text-align: left;
        padding: 0;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .process__step-number { margin: 0; }

    .process__connector {
        width: 2px;
        height: 32px;
        min-width: 2px;
        margin: 0 0 0 31px;
        background: linear-gradient(to bottom, var(--color-border-hover), var(--color-primary), var(--color-border-hover));
    }

    .faq-preview__layout {
        grid-template-columns: 1fr;
    }

    .faq-preview__left {
        position: static;
    }

    .blog-preview__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .hero__social { display: none; }

    .hero__tagline { margin-bottom: 8px; }

    .hero__cta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 16px;
    }

    .hero__trust-compact {
        flex-wrap: wrap;
    }

    .hero__mega-title {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .hero__scroll { padding: 12px 0 20px; }

    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .showcase__item {
        min-width: 260px;
        height: 300px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE STYLES — Page Hero & Service Split Sections
   ═══════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    text-align: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--color-surface) 0%, #1a0f08 50%, var(--color-surface) 100%);
}

.page-hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.65) 80%, rgba(0,0,0,0.85) 100%),
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(254, 97, 13, 0.06) 0%, transparent 70%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero__content .section-tag {
    margin-bottom: 16px;
}

.page-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.page-hero__content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── SERVICE SPLIT ──────────────────────────────────────────── */
.service-split {
    padding: 100px 0;
    position: relative;
}

.service-split:nth-child(even) {
    background: var(--color-surface-raised);
}

.service-split__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-split--reversed .service-split__row {
    direction: rtl;
}

.service-split--reversed .service-split__row > * {
    direction: ltr;
}

.service-split__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-split__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    pointer-events: none;
}

.service-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out-expo);
}

.service-split__image:hover img {
    transform: scale(1.03);
}

.service-split__content .section-tag {
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.service-split__content .section-title {
    margin-bottom: 20px;
}

.service-split__content p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.service-split__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 36px;
}

.service-split__list li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--color-surface-overlay);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.service-split__list li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}

.service-split__list li a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.service-split__list li a:hover::before {
    background: var(--color-white);
}

.service-split__content .btn {
    margin-top: 4px;
}

/* ─── INNER PAGE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
    .service-split__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-split--reversed .service-split__row {
        direction: ltr;
    }

    .service-split {
        padding: 72px 0;
    }

    .page-hero {
        padding: 140px 0 72px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 120px 0 56px;
    }

    .page-hero__content h1 {
        font-size: 2rem;
    }

    .service-split {
        padding: 56px 0;
    }

    .service-split__list {
        gap: 8px;
    }

    .service-split__list li a {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}

/* ─── SERVICE DETAIL PAGE ──────────────────────────────────── */
.service-detail {
    padding: 100px 0;
}

.service-detail:nth-child(even) {
    background: var(--color-surface-raised);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail__grid--reversed {
    direction: rtl;
}

.service-detail__grid--reversed > * {
    direction: ltr;
}

.service-detail__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.service-detail__image:hover img {
    transform: scale(1.03);
}

.service-detail__text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail__text p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-detail__text ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail__text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    font-size: 1rem;
}

.service-detail__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ─── BENEFITS GRID ────────────────────────────────────────── */
.benefits {
    padding: 100px 0;
    background: var(--color-surface-raised);
}

.benefits__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

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

.benefits__card {
    background: var(--color-surface-overlay);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: border-color 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.benefits__card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.benefits__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(254, 97, 13, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.benefits__card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.benefits__card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── PROCESS / STEPS ──────────────────────────────────────── */
.process-steps {
    padding: 100px 0;
}

.process-steps__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.process-steps__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.process-steps__item {
    position: relative;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    counter-increment: step;
}

.process-steps__item::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(254, 97, 13, 0.2);
    margin-bottom: 16px;
    line-height: 1;
}

.process-steps__item h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.process-steps__item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
    padding: 100px 0;
}

.blog-grid__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.blog-grid__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--color-surface-raised);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-6px);
}

.blog-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.blog-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card__body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s var(--ease-out-expo);
}

.blog-card__link:hover {
    gap: 10px;
}

/* ─── PRIVACY / LEGAL CONTENT ──────────────────────────────── */
.legal-content {
    padding: 60px 0 100px;
}

.legal-content__body {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content__body h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 48px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.legal-content__body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content__body p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-content__body ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.legal-content__body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-content__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

.legal-content__body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-color: rgba(254, 97, 13, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.legal-content__body a:hover {
    text-decoration-color: var(--color-primary);
}

.legal-content__updated {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-surface-overlay);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-text-subtle);
    margin-bottom: 36px;
}

/* ─── SERVICE CATEGORY CARDS ───────────────────────────────── */
.category-grid {
    padding: 100px 0;
}

.category-grid__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.category-card {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 280px;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.category-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.category-card__img {
    position: absolute;
    inset: 0;
}

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

.category-card:hover .category-card__img img {
    transform: scale(1.05);
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.category-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.category-card__content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ─── RESPONSIVE: NEW SECTIONS ─────────────────────────────── */
@media (max-width: 900px) {
    .service-detail__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail__grid--reversed {
        direction: ltr;
    }

    .service-detail {
        padding: 72px 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps__row {
        grid-template-columns: 1fr 1fr;
    }

    .blog-grid__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .service-detail {
        padding: 56px 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits {
        padding: 72px 0;
    }

    .process-steps__row {
        grid-template-columns: 1fr;
    }

    .process-steps {
        padding: 72px 0;
    }

    .blog-grid__row {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        padding: 72px 0;
    }

    .category-grid__row {
        grid-template-columns: 1fr;
    }
}

/* ─── SERVICE SPLIT: FULL-WIDTH SINGLE CHILD ───────────────── */
.service-split__row:has(> :only-child) {
    grid-template-columns: 1fr;
}

/* ─── CENTERED GRID ROWS (uneven last row) ─────────────────── */
.grid-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.grid-centered > * {
    flex: 0 1 340px;
    max-width: 400px;
}
