/* ═══════════════════════════════════════════════════════════════
   Karnal Consultancy INC. — Design System v4
   Brand: #E20935 | Ink: #0B0D12 | Since 2024 | 8px grid
   ═══════════════════════════════════════════════════════════════ */

:root {
    --brand: #E20935;
    --brand-dark: #B8062A;
    --brand-glow: rgba(226, 9, 53, 0.35);
    --brand-soft: rgba(226, 9, 53, 0.1);
    --ink: #0B0D12;
    --ink-2: #151820;
    --ink-3: #1E222D;
    --surface: #FFFFFF;
    --surface-muted: #F6F7FA;
    --surface-elevated: #FFFFFF;
    --line: #E8EAEF;
    --line-soft: #F0F1F5;
    --text: #3D424D;
    --text-muted: #7A8190;
    --gold: #F09815;
    --success: #0D9B6A;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 20px rgba(11, 13, 18, 0.06);
    --shadow-md: 0 12px 40px rgba(11, 13, 18, 0.1);
    --shadow-lg: 0 24px 64px rgba(11, 13, 18, 0.14);
    --font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--surface);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}
main,
.site-header,
.top-bar,
.site-footer {
    width: 100%;
    max-width: 100%;
}

/* ── Lenis smooth scroll ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Scroll reveal (fade up) ── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
            opacity 0.75s var(--ease) var(--reveal-delay, 0s),
            transform 0.75s var(--ease) var(--reveal-delay, 0s);
        will-change: opacity, transform;
    }
    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }
[x-cloak] { display: none !important; }

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 16px;
}
@media (min-width: 1600px) {
    .container { max-width: 1440px; padding-inline: 24px; }
}
@media (max-width: 768px) {
    .container { padding-inline: 12px; }
}
.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.75); }
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.65rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.section-lead {
    margin-top: 14px;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}
.section-head { margin-bottom: 48px; text-align: left; max-width: 760px; }
.section-head .section-lead { margin-inline: 0; }
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.bg-muted { background: var(--surface-muted); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink .section-title { color: #fff; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    box-shadow: 0 8px 24px var(--brand-glow);
}
.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--brand-glow);
    color: #fff;
}
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--brand-soft); color: var(--brand); border-color: #fff; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-outline-dark:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; color: #fff; }
.hero-cta .btn-outline-dark {
    border-color: rgba(11, 13, 18, 0.14);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
}
.hero-cta .btn-outline-dark:hover {
    border-color: var(--brand);
    background: #fff;
    color: var(--brand);
}
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Top bar ── */
.top-bar {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all 0.35s var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--header-h);
    gap: 20px;
}
.logo { flex-shrink: 0; margin-right: auto; }
.logo img { height: 46px; width: auto; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.main-nav a {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 999px;
    transition: all 0.25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--brand); background: var(--brand-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    border: none; background: var(--surface-muted);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--ink);
    cursor: pointer;
}
.hide-mobile { display: inline-flex; }

/* ── Hero slider (Quantis-inspired, Karnal brand) ── */
.hero-slider {
    position: relative;
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
    max-height: 920px;
    overflow: hidden;
    width: 100%;
    background: #fff;
}
.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(226, 9, 53, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 95% 45%, rgba(226, 9, 53, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, rgba(246, 247, 250, 0.35) 0%, transparent 45%);
}
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(11, 13, 18, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 13, 18, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.hero-slide-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.75s var(--ease), visibility 0.75s;
}
.hero-slide-layer.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: transform 8s var(--ease);
}
.hero-slide-layer.is-active .hero-slide-bg {
    transform: scale(1);
}
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 32%,
        rgba(255, 255, 255, 0.55) 52%,
        rgba(246, 247, 250, 0.15) 68%,
        transparent 82%
    );
}
.hero-slide-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
    max-height: 920px;
    padding: 88px 0 96px;
}
.hero-slide-content {
    max-width: 620px;
    animation: heroContentIn 0.7s var(--ease) both;
}
.hero-slide-layer:not(.is-active) .hero-slide-content {
    animation: none;
}
@keyframes heroContentIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 9, 53, 0.18);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}
.hero-title {
    font-size: clamp(2.5rem, 5.8vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 18px;
}
.hero-title .accent {
    background: linear-gradient(135deg, var(--brand) 0%, #ff4d6d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.08rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.hero-slider-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(11, 13, 18, 0.18);
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.hero-slider-dots button.active {
    width: 28px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.hero-slider-dots button:hover:not(.active) {
    background: rgba(226, 9, 53, 0.35);
}
.hero-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}
.hero-slider-arrows button {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}
.hero-slider-arrows button:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    transform: scale(1.04);
}
.hero-slider-arrows button svg {
    width: 22px;
    height: 22px;
}
@media (prefers-reduced-motion: reduce) {
    .hero-slide-layer,
    .hero-slide-bg,
    .hero-slide-content { transition: none; animation: none; }
}
@media (max-width: 768px) {
    .hero-slider-arrows { display: none; }
    .hero-slide-bg { background-position: 70% center; }
    .hero-slide-bg::after {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.88) 42%,
            rgba(255, 255, 255, 0.45) 68%,
            transparent 100%
        );
    }
    .hero-slide-inner { padding: 72px 0 88px; }
}

/* ── Trust marquee (animated band) ── */
.trust-marquee {
    background: var(--brand);
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}
.trust-marquee::before,
.trust-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.trust-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand), transparent);
}
.trust-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--brand), transparent);
}
.trust-marquee-track {
    display: flex;
    width: max-content;
    animation: trustMarquee 38s linear infinite;
}
.trust-marquee:hover .trust-marquee-track { animation-play-state: paused; }
.trust-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 0;
}
.trust-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.005em;
    white-space: nowrap;
    padding: 0 22px;
    color: #fff;
}
.trust-marquee-icon {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.95;
    line-height: 1;
}
.trust-marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}
@keyframes trustMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .trust-marquee-track { animation: none; }
}
@media (max-width: 768px) {
    .trust-marquee { padding: 14px 0; }
    .trust-marquee-item { font-size: 0.92rem; padding: 0 16px; gap: 8px; }
    .trust-marquee-icon { font-size: 1rem; }
    .trust-marquee-dot { width: 4px; height: 4px; }
}

/* ── Services carousel ── */
.services-showcase { overflow: hidden; }
.services-carousel {
    position: relative;
    margin-bottom: 28px;
}
.services-carousel-viewport { overflow: hidden; padding: 8px 0 16px; }
.services-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s var(--ease);
    will-change: transform;
    align-items: stretch;
}
.svc-carousel-card {
    flex-shrink: 0;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    max-width: 100%;
}
@media (max-width: 1100px) {
    .svc-carousel-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
    .svc-carousel-card { flex: 0 0 100%; }
    .services-track { gap: 16px; }
}

/* All Services listing grid (static, no carousel) */
.services-listing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (min-width: 1280px) {
    .services-listing-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.service-card-visual {
    flex-shrink: 0;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/10;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s var(--ease);
    background: var(--ink);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}
.service-card-visual.is-active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(226, 9, 53, 0.35);
}
.service-card-visual .visual-frame {
    flex: 1;
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 0;
}
.service-card-visual .visual-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 13, 18, 0.35) 0%, transparent 50%);
    pointer-events: none;
}
.service-card-visual .visual-frame img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.service-card-visual:hover .visual-frame img { transform: scale(1.06); }
.service-card-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    background: var(--ink);
    border-top: none;
}
.service-card-badge i {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.service-detail-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    border-left: 4px solid var(--brand);
}
.service-detail-card > div { min-width: 0; }
.service-detail-card h3 {
    font-size: clamp(1.15rem, 2.6vw, 1.5rem);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.service-detail-card p {
    color: var(--text-muted);
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.65;
}
.service-detail-card .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 24px 22px;
        gap: 18px;
        text-align: left;
    }
    .service-detail-card .btn { width: 100%; justify-content: center; }
}
.carousel-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.carousel-pips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.carousel-pip {
    width: 6px;
    height: 6px;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #d1d5de;
    cursor: pointer;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.carousel-pip.active {
    background: var(--brand);
    transform: scale(1.1);
}

/* ── Feature grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: all 0.35s var(--ease);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Parallax feature sections ── */
.section-parallax {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}
.section-parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translate3d(0, 0, 0) scale(1.12);
}
.section-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(246, 247, 250, 0.82) 0%,
        rgba(246, 247, 250, 0.72) 50%,
        rgba(246, 247, 250, 0.82) 100%
    );
}
.section-parallax .container { position: relative; z-index: 2; }
.section-parallax-karnal .section-parallax-bg {
    background-image: url('/images/sections/why-karnal-parallax.webp');
}
.section-parallax-canada .section-parallax-bg {
    background-image: url('/images/sections/why-canada-parallax.webp');
}
.section-parallax .feature-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(11, 13, 18, 0.06);
}
.section-parallax .feature-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
}
@media (prefers-reduced-motion: reduce) {
    .section-parallax-bg { transform: none !important; inset: 0; }
}
@media (max-width: 768px) {
    .section-parallax::before {
        background: rgba(246, 247, 250, 0.9);
    }
    .section-parallax-bg { inset: 0; transform: none !important; }
}

/* ── Split section ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.split-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 4px;
}

/* ── Google Reviews section ── */
.google-reviews-section { background: #fff; }
.google-reviews-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}
.google-reviews-head-copy { max-width: 640px; }
.google-reviews-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.google-reviews-head .eyebrow .bi-google { color: #4285F4; font-size: 1rem; }
.google-reviews-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-shrink: 0;
}
.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.google-reviews-g { flex-shrink: 0; }
.google-reviews-embed {
    min-height: 320px;
    border-radius: var(--radius-lg);
    background: #fafafa;
    padding: 8px;
    overflow-x: clip;
    max-width: 100%;
}

/* Reviews fallback card (public-facing when widget not yet configured) */
.google-reviews-card {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.google-reviews-card-left {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-right: 36px;
    border-right: 1px solid var(--line);
}
.google-reviews-card-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.google-reviews-card-rating strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin: 4px 0 2px;
}
.google-reviews-card-rating span {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.google-reviews-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 3px;
}
.google-reviews-card-body p {
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 18px;
    font-size: 0.98rem;
}
.google-reviews-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.google-reviews-dev-hint {
    margin-top: 16px;
    padding: 12px 18px;
    background: #fff8e6;
    border: 1px dashed #f0c040;
    border-radius: var(--radius-md);
    color: #7a5a00;
    font-size: 0.85rem;
}
.google-reviews-dev-hint code {
    background: rgba(0, 0, 0, 0.05);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* ── Testimonials grid card variant (used on Testimonials page) ── */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.testimonial-card-head strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
}
.testimonial-card-head span {
    display: block;
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 2px;
}
.testimonial-card .testimonial-stars {
    color: #f5a623;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-card blockquote {
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--ink);
    margin: 0;
    font-style: normal;
}

@media (max-width: 768px) {
    .google-reviews-head { flex-direction: column; align-items: flex-start; }
    .google-reviews-head-actions { width: 100%; }
    .google-reviews-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 20px;
    }
    .google-reviews-card-left {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
}

.check-list { margin: 24px 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--ink);
}
.check-list i { color: var(--brand); margin-top: 3px; }

/* ── PSW feature band ── */
.psw-band {
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--ink);
    box-shadow: var(--shadow-lg);
}
.psw-band-copy { padding: 56px; color: #fff; }
.psw-band-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.psw-band-copy p { color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.75; }
.psw-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.psw-tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.psw-band-media {
    min-height: 360px;
    background: var(--ink-3);
    overflow: hidden;
}
.psw-band-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

/* ── Partners marquee ── */
.marquee-wrap {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 45s linear infinite;
    align-items: center;
}
.partner-logo-card {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px 28px;
    height: 88px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.partner-logo-card:hover {
    border-color: rgba(226, 9, 53, 0.25);
    box-shadow: var(--shadow-md);
}
.partner-logo-card img {
    max-height: 52px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.marquee-item {
    flex-shrink: 0;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Testimonials ── */
.testimonial-panel {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-panel blockquote {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 24px;
}
.testimonial-meta strong { display: block; font-size: 1rem; color: var(--ink); }
.testimonial-meta span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Process ── */
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}
.process-card {
    position: relative;
    padding: 28px 22px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--line-soft);
}
.process-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.85;
}
.process-card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.process-card p { font-size: 0.86rem; color: var(--text-muted); }

/* ── Blog cards ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    transition: all 0.35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--surface-muted);
    display: block;
    border-bottom: 1px solid var(--line-soft);
}
.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 22px; }
.post-meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.post-meta .cat { color: var(--brand); font-weight: 700; }
.post-card-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.post-card-body p { font-size: 0.88rem; color: var(--text-muted); }

/* ── Gallery ── */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    background: var(--ink);
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.5s var(--ease);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile span {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    background: linear-gradient(transparent, rgba(11,13,18,0.8));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-tile:hover span { opacity: 1; }

/* ── Page hero (photo banner + breadcrumb) ── */
.page-hero {
    position: relative;
    min-height: clamp(260px, 38vh, 380px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--ink);
}
.page-hero-media {
    position: absolute;
    inset: 0;
}
.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 13, 18, 0.82) 0%, rgba(11, 13, 18, 0.55) 45%, rgba(11, 13, 18, 0.35) 100%);
}
.page-hero-inner {
    position: relative;
    z-index: 1;
    padding: 36px 0 44px;
    color: #fff;
}
.page-hero .eyebrow { color: rgba(255, 255, 255, 0.78); }
.page-hero .breadcrumb { line-height: 1.4; }
.page-hero .breadcrumb-sep i { display: inline-flex; align-items: center; }
.page-hero h1 {
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.12;
    max-width: 760px;
}
.page-hero-lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 620px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    margin-bottom: 16px;
    font-weight: 600;
}
.breadcrumb--banner a,
.breadcrumb--banner .breadcrumb-current {
    color: rgba(255, 255, 255, 0.88);
}
.breadcrumb--banner a:hover { color: #fff; }
.breadcrumb-current { color: #fff; opacity: 0.95; }
.breadcrumb-sep {
    display: inline-flex;
    opacity: 0.55;
    font-size: 0.65rem;
}
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--brand); }

/* ── Nav services dropdown ── */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    border: none;
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.25s var(--ease);
}
.nav-dropdown-trigger:hover,
.nav-item-dropdown.is-open .nav-dropdown-trigger {
    color: var(--brand);
    background: var(--brand-soft);
}
.nav-dropdown-trigger i { font-size: 0.7rem; transition: transform 0.25s var(--ease); }
.nav-item-dropdown.is-open .nav-dropdown-trigger i { transform: rotate(180deg); }
.nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 1100;
}
.nav-dropdown-panel-inner {
    min-width: min(580px, calc(100vw - 48px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}
.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}
.nav-dropdown-all {
    display: block;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--brand);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
}
.nav-dropdown-all:hover { background: var(--brand-soft); color: var(--brand); }
.nav-dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--radius-sm);
    transition: background 0.2s var(--ease);
    line-height: 1.35;
}
.nav-dropdown-link i { color: var(--brand); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.nav-dropdown-link span { min-width: 0; }
.nav-dropdown-link:hover { background: var(--surface-muted); color: var(--brand); }
.nav-mobile-actions { display: none; }
.nav-mobile-only { display: none; }
.mobile-nav-head { display: none; }

/* ── Service detail (redesigned) ── */
.svc-section { padding: 84px 0; }
.svc-section-head {
    max-width: 720px;
    margin: 0 0 56px;
    text-align: left;
}
.svc-section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
    text-align: left;
    margin-bottom: 48px;
}
.svc-section-head-row > div { max-width: 560px; }
.svc-section-title {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    line-height: 1.18;
}
.svc-section-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
}
.svc-section-head:not(.svc-section-head-row) .svc-section-lead { margin-inline: 0; }

/* Spotlight (intro under hero) */
.svc-spotlight {
    padding: 72px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.svc-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(226, 9, 53, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 5% 90%, rgba(226, 9, 53, 0.04) 0%, transparent 60%);
    pointer-events: none;
}
.svc-spotlight-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.svc-spotlight-media {
    position: relative;
    padding: 0 28px 28px 0;
}
.svc-spotlight-media::before {
    content: '';
    position: absolute;
    inset: 28px 0 0 28px;
    background: linear-gradient(135deg, var(--brand-soft) 0%, rgba(226, 9, 53, 0.02) 100%);
    border-radius: var(--radius-lg);
    z-index: 0;
}
.svc-spotlight-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 60px rgba(11, 13, 18, 0.18);
}
.svc-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.svc-spotlight-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    max-width: 260px;
}
.svc-spotlight-badge i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.svc-spotlight-badge-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}
.svc-spotlight-badge strong {
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 800;
}
.svc-spotlight-title {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 8px 0 22px;
}
.svc-spotlight-points {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}
.svc-spotlight-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.96rem;
    color: var(--text);
    line-height: 1.55;
}
.svc-spotlight-points i {
    color: var(--brand);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.svc-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}
.svc-spotlight-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.svc-spotlight-call:hover .svc-spotlight-call-text strong { color: var(--brand); }
.svc-spotlight-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-size: 1.1rem;
    transition: all 0.25s var(--ease);
}
.svc-spotlight-call:hover .svc-spotlight-call-icon {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}
.svc-spotlight-call-text { display: flex; flex-direction: column; line-height: 1.2; }
.svc-spotlight-call-text small {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}
.svc-spotlight-call-text strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    transition: color 0.25s var(--ease);
}

/* Stats strip */
.svc-stats {
    background: var(--ink);
    color: #fff;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.svc-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}
.svc-stat i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(226, 9, 53, 0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.svc-stat strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.svc-stat span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

/* Overview split */
.svc-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
    gap: 56px;
    align-items: start;
}
.svc-overview-prose { margin-bottom: 28px; }
.svc-overview-prose p { font-size: 1rem; color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.svc-overview-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-overview-side { position: sticky; top: calc(var(--header-h) + 32px); }
.svc-info-card {
    background: linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 100%);
    color: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.svc-info-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 9, 53, 0.35) 0%, transparent 70%);
    pointer-events: none;
}
.svc-info-card h3 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.svc-info-card ul {
    position: relative;
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.svc-info-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.55;
}
.svc-info-card i {
    color: var(--brand);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}
.svc-info-card .btn { position: relative; }

/* Benefits — premium numbered cards */
.svc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.svc-benefit-card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--line);
    transition: all 0.35s var(--ease);
    overflow: hidden;
}
.svc-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), #ff4d6d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.svc-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-benefit-card:hover::before { transform: scaleX(1); }
.svc-benefit-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--line);
    letter-spacing: -0.02em;
    transition: color 0.3s var(--ease);
}
.svc-benefit-card:hover .svc-benefit-num { color: var(--brand-soft); }
.svc-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease);
}
.svc-benefit-card:hover .svc-benefit-icon {
    background: var(--brand);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.svc-benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.svc-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Process — horizontal steps */
.svc-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.svc-process::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-image: linear-gradient(to right, var(--line) 50%, transparent 50%);
    background-size: 12px 2px;
    z-index: 0;
}
.svc-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.svc-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--brand);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 18px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 0 0 6px #fff;
}
.svc-process-step:hover .svc-process-num {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
    transform: translateY(-4px);
}
.svc-process-icon {
    display: block;
    font-size: 1.5rem;
    color: var(--brand);
    margin-bottom: 12px;
}
.svc-process-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.svc-process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 240px;
    margin: 0 auto;
}

/* FAQ split */
.svc-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
    align-items: start;
}
.svc-faq-aside { position: sticky; top: calc(var(--header-h) + 32px); }
.svc-faq-aside .svc-section-title { margin-bottom: 12px; }
.svc-faq-aside .svc-section-lead { margin-bottom: 24px; }
.svc-faq-list { display: grid; gap: 0; }
.svc-faq-list .faq-trigger { font-size: 0.98rem; }
.svc-faq-list .faq-trigger span { flex: 1; padding-right: 16px; }

/* Related services */
.svc-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.svc-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.svc-related-thumb {
    position: relative;
    aspect-ratio: 5/3;
    overflow: hidden;
    background: var(--surface-muted);
}
.svc-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.svc-related-card:hover .svc-related-thumb img { transform: scale(1.06); }
.svc-related-icon {
    position: absolute;
    bottom: -22px;
    left: 22px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 12px 28px rgba(226, 9, 53, 0.35);
}
.svc-related-body {
    padding: 36px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.svc-related-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.svc-related-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
}
.svc-related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--brand);
    transition: gap 0.25s var(--ease);
}
.svc-related-card:hover .svc-related-link { gap: 12px; }
.blog-featured-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.split-media-visual {
    padding: 0;
    overflow: hidden;
}
.split-media-visual img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prose { max-width: 720px; }
.prose h2 { font-size: 1.4rem; font-weight: 800; color: var(--ink); margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.prose ul { margin: 16px 0 16px 20px; list-style: disc; }
.prose li { margin-bottom: 8px; }

/* ── FAQ ── */
.faq-stack { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
}
.faq-trigger i { color: var(--brand); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-trigger i.open { transform: rotate(180deg); }
.faq-body { padding: 0 0 22px; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; }
.info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--surface-muted);
    border: 1px solid var(--line-soft);
}
.info-block i {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-block h4 { font-size: 0.92rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.info-block p, .info-block a { font-size: 0.9rem; color: var(--text-muted); }
.info-block a:hover { color: var(--brand); }
.form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.25s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; margin-top: 40px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ── Apply steps ── */
.apply-shell { max-width: 680px; margin-inline: auto; }
.step-bar { display: flex; gap: 6px; margin-bottom: 32px; }
.step-bar span { flex: 1; height: 4px; border-radius: 999px; background: var(--line); transition: background 0.3s; }
.step-bar span.on { background: var(--brand); }

/* ── CTA strip ── */
.cta-strip {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    padding: 56px 0;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 480px; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.68);
    padding-top: 72px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand .footer-logo {
    display: block;
    width: auto !important;
    max-width: 140px !important;
    height: auto !important;
    max-height: 64px !important;
    object-fit: contain;
    object-position: left top;
}
.footer-brand p { margin: 14px 0 18px; font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; font-weight: 800; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.25s var(--ease);
}
.social-row a:hover { background: var(--brand); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.86rem; margin-bottom: 12px; align-items: flex-start; }
.footer-contact i { color: var(--brand); margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }
.footer-credit { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-credit a { color: rgba(255,255,255,0.78); font-weight: 600; }
.footer-credit a:hover { color: #fff; }

body.modal-open,
body.nav-open { overflow: hidden; }

/* Mobile nav backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(11, 13, 18, 0.5);
    backdrop-filter: blur(3px);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,13,18,0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    width: min(480px, 100%);
    max-height: min(92vh, 640px);
    position: relative;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--surface-muted);
    border-radius: 10px;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.modal-close:hover {
    background: var(--brand-soft);
    color: var(--brand);
}
.modal-head {
    flex-shrink: 0;
    padding: 24px 52px 0 24px;
}
.modal-head h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}
.modal-head p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.modal-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.modal-form-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px 24px 8px;
    overscroll-behavior: contain;
}
.modal-form-footer {
    flex-shrink: 0;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--line-soft);
    background: #fff;
}
.modal-box .field { margin-bottom: 12px; }
.modal-box .field label { margin-bottom: 6px; font-size: 0.8rem; }
.modal-box .field input,
.modal-box .field select,
.modal-box .field textarea {
    padding: 11px 14px;
    font-size: 0.88rem;
    min-height: 42px;
}
.modal-box .field textarea {
    min-height: 88px;
    resize: vertical;
}
.modal-box--apply {
    width: min(560px, 100%);
    max-height: min(92vh, 720px);
}
.step-bar--modal {
    margin: 0 24px 16px;
}
.apply-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 14px;
}
.apply-step-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}
.apply-wizard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.modal-form-footer .apply-wizard-actions .btn { flex: 1; min-width: 120px; }
.modal-form-footer .btn { margin-top: 0; }
.form-result:empty { display: none; }
.form-result:not(:empty) { margin-top: 12px; }

/* ── Alerts ── */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-top: 16px;
}
.alert-success { background: #E6F7F1; color: #0A6B4A; }
.alert-error { background: #FDECEC; color: #9B1C1C; }

/* ── Filter tabs ── */
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-pill {
    padding: 9px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    transition: all 0.25s var(--ease);
}
.filter-pill:hover, .filter-pill.active { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }

/* ── WhatsApp ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-sm);
}
.team-card .team-avatar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 24px;
    background: var(--surface-muted);
}
.team-card div { padding: 22px; text-align: center; }
.team-card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); }
.team-card .role { color: var(--brand); font-size: 0.82rem; font-weight: 700; margin: 4px 0 8px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Avatars ── */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-soft), #fff);
    border: 2px solid var(--line);
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.02em;
}
.avatar-sm { width: 40px; height: 40px; font-size: 0.75rem; }
.avatar-md { width: 72px; height: 72px; font-size: 1.1rem; }
.avatar-lg { width: 96px; height: 96px; font-size: 1.35rem; }

/* ── Form fields (labeled) ── */
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    min-height: 44px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.92rem;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    min-height: 44px;
}
.field textarea {
    min-height: 120px;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.testimonial-panel .testimonial-avatar {
    margin: 0 auto 20px;
}

.hero-trust-panel {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive breakpoints
   ─ ≥ 1280px : full desktop (default rules)
   ─ ≤ 1024px : tablet landscape (4-col → 2-col, split → 1-col)
   ─ ≤ 768px  : tablet portrait / large mobile (most grids stay 2-col)
   ─ ≤ 480px  : small mobile (final 1-col collapse, tighter spacing)
   ═══════════════════════════════════════════════════════════════ */

/* Tablet landscape — keep wide layouts collapsing here */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .svc-section { padding: 72px 0; }
    .hero-grid, .split-section, .psw-band, .contact-layout,
    .svc-spotlight-grid, .svc-overview-grid, .svc-faq-grid { grid-template-columns: 1fr; }
    .feature-grid, .process-row, .card-grid-3,
    .svc-benefit-grid, .svc-related-grid,
    .gallery-masonry, .team-grid,
    .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-overview-side, .svc-faq-aside { position: static; }
    .svc-process {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
        margin-inline: auto;
    }
    .svc-process::before { display: none; }
    .svc-section-head-row { flex-direction: column; align-items: flex-start; }
    .nav-dropdown-panel {
        position: static;
        padding-top: 0;
    }
    .nav-dropdown-panel-inner {
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 4px 0 8px 8px;
    }
    .nav-dropdown-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile / tablet portrait — KEEP 2-col for icon/stat/card grids,
   only collapse text-heavy or wide-card layouts to 1-col */
@media (max-width: 768px) {
    .section, .svc-section { padding: 64px 0; }
    .svc-spotlight { padding: 56px 0; }
    .nav-backdrop { display: block; }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1200;
        background: #fff;
        border: 1px solid var(--line);
        color: var(--ink);
    }
    .mobile-toggle i { color: var(--ink); line-height: 1; }
    .hide-mobile { display: none !important; }
    .site-header { z-index: 1101; width: 100%; }
    .header-inner { width: 100%; max-width: 100%; }
    .main-nav {
        position: fixed;
        top: 0;
        right: calc(-1 * min(320px, 88vw));
        width: min(320px, 88vw);
        height: 100dvh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 28px;
        box-shadow: -8px 0 40px rgba(11, 13, 18, 0.12);
        transition: right 0.35s var(--ease), visibility 0.35s var(--ease);
        z-index: 1101;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        pointer-events: none;
    }
    .main-nav.open {
        right: 0;
        visibility: visible;
        pointer-events: auto;
    }
    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--line-soft);
    }
    .mobile-nav-title {
        font-size: 0.95rem;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: 0.02em;
    }
    .mobile-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 10px;
        background: var(--surface-muted);
        color: var(--ink);
        font-size: 1.35rem;
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.2s var(--ease), color 0.2s var(--ease);
    }
    .mobile-nav-close i { color: var(--ink); line-height: 1; }
    .mobile-nav-close:hover {
        background: var(--brand-soft);
        color: var(--brand);
    }
    .mobile-nav-close:hover i { color: var(--brand); }
    .nav-mobile-only { display: block; }
    .main-nav a,
    .nav-dropdown-trigger {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
    }
    .nav-item-dropdown { width: 100%; }
    .nav-dropdown-panel {
        position: static;
        padding-top: 0;
        z-index: auto;
    }
    .nav-dropdown-panel-inner {
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 4px 0 8px 12px;
        background: var(--surface-muted);
        border-radius: var(--radius-sm);
        margin-top: 4px;
    }
    .nav-dropdown-grid { grid-template-columns: 1fr; }
    .nav-dropdown-link { padding: 12px 14px; font-size: 0.9rem; }
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid var(--line-soft);
    }
    .nav-mobile-actions .btn { width: 100%; justify-content: center; }

    /* ► Compact grids: STAY at 2 columns on mobile (user wants 2×2 minimum) */
    .feature-grid,
    .svc-stats-grid,
    .svc-benefit-grid,
    .team-grid,
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* ► Wide-card / text-heavy grids: collapse to 1 column */
    .card-grid-3,
    .process-row,
    .svc-related-grid,
    .footer-grid { grid-template-columns: 1fr; }

    /* Service spotlight + section heads */
    .svc-spotlight-media { padding: 0 16px 16px 0; }
    .svc-spotlight-media::before { inset: 16px 0 0 16px; }
    .svc-spotlight-image { aspect-ratio: 4/3; }
    .svc-spotlight-badge { right: 12px; bottom: -12px; padding: 12px 14px; }
    .svc-section-head { margin-bottom: 40px; }

    .top-bar-right { display: none; }
    .top-bar { overflow-x: clip; }
    .top-bar-inner { width: 100%; }
    .top-bar-left { gap: 12px; }
    .top-bar a { font-size: 0.72rem; }
    .cta-strip-inner { flex-direction: column; text-align: center; }
    .cta-strip-actions { justify-content: center; }

    /* Slightly tighter cards/typography on mobile */
    .feature-card { padding: 22px 18px; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.85rem; }
    .feature-icon { width: 48px; height: 48px; font-size: 1.4rem; }
}

/* Small phones — final fallback */
@media (max-width: 480px) {
    .section { padding: 52px 0; }
    .svc-section { padding: 48px 0; }
    .feature-grid,
    .svc-stats-grid,
    .svc-benefit-grid,
    .team-grid,
    .gallery-masonry { gap: 12px; }
    .svc-benefit-card { padding: 22px 18px 20px; }
    .svc-benefit-card h3 { font-size: 1.02rem; }
    .svc-benefit-card p { font-size: 0.85rem; line-height: 1.6; }
    .svc-benefit-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 14px; }
    .svc-benefit-num { top: 14px; right: 16px; font-size: 1.1rem; }
    .footer-grid { gap: 32px; }
    .btn { padding: 12px 22px; font-size: 0.92rem; }
    .split-actions { width: 100%; }
    .split-actions .btn { width: 100%; }
}
