/* =================================================================
   Lenie Direct Marketing — Shared Stylesheet
   Built by Global Solutions Group
   Palette: Blue (dominant) + Red (accent)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand colours */
    --blue-deep:   #081C42;
    --blue:        #1746C6;
    --blue-bright: #2E6BF0;
    --blue-soft:   #EAF0FF;
    --red:         #E11D2E;
    --red-bright:  #FF3B4E;
    --red-soft:    #FFECEC;

    /* Neutrals */
    --ink:    #0B1220;
    --body:   #44506A;
    --muted:  #7A879E;
    --line:   #E4E8F2;
    --bg:     #FFFFFF;
    --bg-alt: #F6F8FD;

    /* System */
    --radius:   18px;
    --radius-sm:12px;
    --shadow:   0 24px 60px -28px rgba(8, 28, 66, .35);
    --shadow-sm:0 10px 30px -16px rgba(8, 28, 66, .30);
    --max:      1200px;
    --ease:     cubic-bezier(.22, 1, .36, 1);

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body:    'Manrope', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.02em;
}

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

/* ---------- Helpers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
}
.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--red);
}
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.12rem; color: var(--body); }

.text-red { color: var(--red); }
.text-blue { color: var(--blue); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
    will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(23, 70, 198, .65);
}
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(23, 70, 198, .7); }
.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(225, 29, 46, .55);
}
.btn-red:hover { background: var(--red-bright); transform: translateY(-3px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-light {
    background: #fff;
    color: var(--blue-deep);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(0,0,0,.4); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
    padding: 15px 0;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px rgba(8,28,66,.55);
    padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; justify-content: flex-start; }

/* Real logo image (replaces the placeholder mark) */
.brand-logo {
    height: 150px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
    transition: height .35s var(--ease);
    margin-left: -38px;
}

/* Logo swap: white version over the transparent hero, dark version once scrolled.
   Footer logo (no .logo-top/.logo-scrolled class) is unaffected. */
.brand .logo-scrolled { display: none; }
.brand .logo-top { display: block; }
.site-header.scrolled .brand .logo-top { display: none; }
.site-header.scrolled .brand .logo-scrolled { display: block; }
.site-header.scrolled .brand-logo { height: 100px; }
/* Footer sits on a dark background — if the logo is dark-coloured,
   point this to a light version, e.g. images/logo-white.png */
.footer-brand .brand-logo { height: 96px; max-width: 240px; }
@media (max-width: 480px) {
    .brand-logo { height: 150px; max-width: 100%; width: auto; }
    .site-header.scrolled .brand-logo { height: 88px; }
    /* On mobile the scroll-timeline swap doesn't run, so rely on the .scrolled class:
       white logo over the transparent hero, dark logo once the bar turns white. */
    .brand .logo-top { display: block; }
    .brand .logo-scrolled { display: none; }
    .site-header.scrolled .brand .logo-top { display: none; }
    .site-header.scrolled .brand .logo-scrolled { display: block; }
}
.brand-mark {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    position: relative;
    display: grid; place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -8px rgba(23,70,198,.6);
}
.brand-mark::after {
    content: '';
    position: absolute;
    right: -4px; bottom: -4px;
    width: 18px; height: 18px;
    border-radius: 6px;
    background: var(--red);
    box-shadow: 0 4px 10px -4px rgba(225,29,46,.7);
}
.brand-mark span {
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.06rem;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.01em;
}
.brand-text small { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    position: relative;
    padding: 9px 16px;
    font-weight: 600;
    font-size: .95rem;
    color: #fff;
    border-radius: 9px;
    transition: color .25s, background .25s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 2px;
    background: var(--red-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }

/* Scrolled (solid white header): dark links, blue on hover/active */
.site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .nav-links a::after { background: var(--red); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border-radius: 11px;
    background: var(--blue-soft);
    position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 20px; height: 2px;
    background: var(--blue-deep);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translate(-50%, -7px); }
.nav-toggle span::after  { transform: translate(-50%, 5px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, -50%) rotate(45deg); top: 0; }
body.menu-open .nav-toggle span::after  { transform: translate(-50%, -50%) rotate(-45deg); top: 0; }

/* =================================================================
   HERO (home)
   ================================================================= */
.hero {
    position: relative;
    padding: 150px 0 90px;
    background: var(--blue-deep);
    color: #fff;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(60% 80% at 85% 10%, rgba(46,107,240,.45) 0%, transparent 60%),
        radial-gradient(50% 70% at 5% 90%, rgba(225,29,46,.32) 0%, transparent 55%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
    pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    align-items: center;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 5.6vw, 4.5rem);
    font-weight: 800;
    margin: 22px 0 20px;
}
.hero h1 em { font-style: normal; color: var(--red-bright); position: relative; white-space: nowrap; }
.hero h1 em::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 6px;
    height: 10px;
    background: rgba(225,29,46,.3);
    z-index: -1;
    border-radius: 4px;
}
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--red-bright); }
.hero p.lead { color: rgba(255,255,255,.82); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-stats {
    display: flex;
    gap: 14px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.hero-stat {
    flex: 1;
    min-width: 120px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
}
.hero-stat b {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-stat span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* Hero card visual */
.hero-visual { position: relative; }
.hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    color: var(--ink);
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
    position: relative;
    z-index: 2;
}
.hero-card .hc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card .hc-dot { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); display: grid; place-items: center; }
.hero-card .hc-dot svg { width: 22px; height: 22px; color: var(--blue); }
.hero-card h3 { font-size: 1.05rem; }
.hero-card small { color: var(--muted); font-weight: 600; font-size: .78rem; }
.hc-bars { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.hc-bar-row { display: flex; align-items: center; gap: 12px; font-size: .82rem; font-weight: 600; color: var(--body); }
.hc-bar-row span { width: 84px; flex-shrink: 0; }
.hc-track { flex: 1; height: 9px; border-radius: 100px; background: var(--blue-soft); overflow: hidden; }
.hc-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }
.hc-fill.red { background: linear-gradient(90deg, var(--red), var(--red-bright)); }
.hero-badge {
    position: absolute;
    top: 20px; left: -20px;
    background: var(--red);
    color: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 22px 44px -18px rgba(225,29,46,.8);
    z-index: 3;
}
.hero-badge b { font-family: var(--font-display); display: block; font-size: 1.35rem; line-height: 1; }
.hero-badge span { font-size: .72rem; opacity: .9; }

/* Hero carousel */
.hero-carousel {
    position: relative;
    z-index: 2;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,.6);
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s var(--ease), transform 6s linear;
    pointer-events: none;
}
.carousel-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }
.carousel-slide .ph { position: absolute; inset: 0; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    padding: 30px 24px 48px;
    background: linear-gradient(to top, rgba(8,28,66,.92) 0%, rgba(8,28,66,.4) 55%, transparent 100%);
}
.carousel-cap b { font-family: var(--font-display); color: #fff; font-size: 1.18rem; display: block; line-height: 1.2; }
.carousel-cap span { color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 600; }
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    display: grid; place-items: center;
    z-index: 4;
    opacity: 0;
    transition: opacity .3s, background .25s, transform .25s;
}
.hero-carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: #fff; }
.carousel-arrow svg { width: 20px; height: 20px; color: var(--blue-deep); }
.carousel-arrow.prev { left: 14px; }
.carousel-arrow.next { right: 14px; }
.carousel-arrow.prev:hover { transform: translateY(-50%) translateX(-2px); }
.carousel-arrow.next:hover { transform: translateY(-50%) translateX(2px); }
.carousel-dots {
    position: absolute;
    left: 0; right: 0; bottom: 18px;
    z-index: 4;
    display: flex;
    gap: 8px;
    justify-content: center;
}
.carousel-dot {
    width: 9px; height: 9px;
    border-radius: 100px;
    background: rgba(255,255,255,.45);
    transition: width .35s var(--ease), background .35s;
}
.carousel-dot.active { width: 26px; background: #fff; }
@media (hover: none) {
    .carousel-arrow { opacity: 1; background: rgba(255,255,255,.75); }
}

/* =================================================================
   SECTIONS
   ================================================================= */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 16px; }
.section-head p { font-size: 1.08rem; }

/* Page banner (interior pages) */
.page-banner {
    position: relative;
    background: var(--blue-deep);
    color: #fff;
    padding: 150px 0 70px;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 90% at 90% 0%, rgba(46,107,240,.4) 0%, transparent 60%),
        radial-gradient(45% 80% at 0% 100%, rgba(225,29,46,.28) 0%, transparent 55%);
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner .eyebrow { color: #fff; }
.page-banner .eyebrow::before { background: var(--red-bright); }
.page-banner h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; margin: 18px 0 14px; }
.page-banner p { color: rgba(255,255,255,.82); max-width: 600px; font-size: 1.08rem; }
.crumbs { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 22px; font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--red-bright); }

/* =================================================================
   FEATURE / VALUE CARDS
   ================================================================= */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 56px; height: 56px;
    border-radius: 15px;
    background: var(--blue-soft);
    display: grid; place-items: center;
    margin-bottom: 22px;
    transition: background .35s, transform .35s var(--ease);
}
.card-icon svg { width: 27px; height: 27px; color: var(--blue); transition: color .35s; }
.card:nth-child(even) .card-icon { background: var(--red-soft); }
.card:nth-child(even) .card-icon svg { color: var(--red); }
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card .card-no {
    position: absolute;
    top: 24px; right: 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--blue-soft);
    line-height: 1;
}

/* =================================================================
   TEAM
   ================================================================= */
.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.team-photo { position: relative; aspect-ratio: 4 / 5; }
.team-photo .ph { position: absolute; inset: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-info { padding: 22px 20px 24px; text-align: center; }
.team-info h3 { font-size: 1.18rem; margin-bottom: 5px; }
.team-role {
    display: block;
    color: var(--red);
    font-weight: 700;
    font-size: .76rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.team-company {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-weight: 600;
    font-size: .88rem;
}

/* =================================================================
   BRAND LOGO SLIDER
   ================================================================= */
.brands-section { padding: 64px 0; }            /* tighter than the standard 96px */
.brands-section .section-head { margin-bottom: 40px; }
.logo-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    animation: logoScroll 34s linear infinite;
}
.logo-slider:hover .logo-track { animation-play-state: paused; }
.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
}
.logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .72;
    transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.logo-item:hover img { filter: grayscale(0); opacity: 1; }
@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 14px)); } /* half the track + half the gap */
}
@media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}
@media (max-width: 480px) {
    .logo-item { width: 150px; height: 100px; padding: 12px 14px; }
    .logo-track { gap: 18px; }
}

/* =================================================================
   SPLIT (image + text)
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow);
}
.split-media .ph { position: absolute; inset: 0; }
.split-accent {
    position: absolute;
    width: 150px; height: 150px;
    border-radius: 20px;
    z-index: -1;
}
.list-check { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--body); }
.list-check li svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* =================================================================
   PHOTO PLACEHOLDERS (swap for real images)
   ================================================================= */
.ph {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.ph::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 30px 30px;
}
.ph.red { background: linear-gradient(135deg, var(--red) 0%, #97101c 100%); }
.ph.mix { background: linear-gradient(135deg, var(--blue) 0%, var(--red) 130%); }
.ph-label {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,.85);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .04em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
}
.ph-label svg { width: 34px; height: 34px; opacity: .7; }

/* =================================================================
   STATS STRIP
   ================================================================= */
.stat-strip {
    background: linear-gradient(120deg, var(--blue) 0%, var(--blue-deep) 100%);
    border-radius: var(--radius);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.stat-strip::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(225,29,46,.5), transparent 70%);
}
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; z-index: 2; }
.stat-item b {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}
.stat-item b em { color: var(--red-bright); font-style: normal; }
.stat-item span { color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 600; }

/* =================================================================
   PROCESS STEPS
   ================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 14px; }
.step-no {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--blue);
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.step:nth-child(even) .step-no { background: var(--red); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }
.step::before {
    content: '';
    position: absolute;
    top: 36px; left: 56px; right: -22px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step:last-child::before { display: none; }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filter {
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .88rem;
    color: var(--body);
    background: var(--bg-alt);
    border: 1.5px solid var(--line);
    transition: all .25s var(--ease);
}
.gallery-filter:hover { border-color: var(--blue); color: var(--blue); }
.gallery-filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-item .ph,
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover .ph,
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,28,66,.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .35s;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay div b { font-family: var(--font-display); color: #fff; font-size: 1.05rem; display: block; }
.g-overlay div span { color: rgba(255,255,255,.75); font-size: .8rem; font-weight: 600; }
.g-overlay .g-plus {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--red);
    display: grid; place-items: center;
}
.g-overlay .g-plus svg { width: 18px; height: 18px; color: #fff; }
.gallery-item.hide { display: none; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(8,28,66,.92);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity .3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-inner {
    max-width: 880px;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transform: scale(.94);
    transition: transform .35s var(--ease);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-media { aspect-ratio: 16/10; position: relative; }
.lightbox-media .ph,
.lightbox-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lightbox-cap { padding: 22px 26px; }
.lightbox-cap b { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); display: block; }
.lightbox-cap span { color: var(--muted); font-weight: 600; font-size: .9rem; }
.lightbox-close {
    position: absolute; top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    display: grid; place-items: center;
    z-index: 5;
    transition: transform .25s;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-close svg { width: 22px; height: 22px; color: var(--ink); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    display: grid; place-items: center;
    transition: background .25s;
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-nav svg { width: 24px; height: 24px; color: #fff; }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-card {
    background: var(--blue-deep);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.contact-card::after {
    content: '';
    position: absolute; bottom: -50px; right: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(225,29,46,.5), transparent 70%);
}
.contact-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.contact-card > p { color: rgba(255,255,255,.78); margin-bottom: 30px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; position: relative; z-index: 2; }
.contact-line .ci {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-line .ci svg { width: 22px; height: 22px; color: var(--red-bright); }
.contact-line b { display: block; color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 3px; }
.contact-line span, .contact-line a { color: rgba(255,255,255,.82); font-size: .98rem; }
.contact-line a:hover { color: var(--red-bright); }
.contact-socials { display: flex; gap: 10px; margin-top: 30px; position: relative; z-index: 2; }
.contact-socials a {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    display: grid; place-items: center;
    transition: background .25s, transform .25s;
}
.contact-socials a:hover { background: var(--red); transform: translateY(-3px); }
.contact-socials svg { width: 19px; height: 19px; color: #fff; }

.form-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-weight: 700;
    font-size: .82rem;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: .02em;
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .96rem;
    color: var(--ink);
    background: var(--bg-alt);
    transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23,70,198,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input[readonly] { background: var(--blue-soft); color: var(--blue-deep); font-weight: 600; cursor: not-allowed; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

.form-alert {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .92rem;
    margin-bottom: 22px;
}
.form-alert.show { display: block; }
.form-alert.success { background: var(--red-soft); color: #97101c; border: 1px solid #f5c2c7; }
.form-alert.success { background: #e6f6ee; color: #0f6b3c; border: 1px solid #b7e4c7; }
.form-alert.error { background: var(--red-soft); color: #97101c; border: 1px solid #f5c2c7; }

/* Map */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band {
    position: relative;
    background: linear-gradient(120deg, var(--blue-deep) 0%, var(--blue) 100%);
    border-radius: 26px;
    padding: 60px;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(40% 80% at 15% 20%, rgba(225,29,46,.4), transparent 60%),
        radial-gradient(40% 80% at 85% 90%, rgba(46,107,240,.5), transparent 60%);
}
.cta-band .wrap-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 30px; font-size: 1.06rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: #060f24; color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 52px;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { margin: 20px 0; font-size: .94rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-display); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .93rem; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--red-bright); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red-bright); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: .86rem;
}
.footer-bottom a { color: #fff; font-weight: 600; }
.footer-bottom a:hover { color: var(--red-bright); }

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
    .js .reveal, .js .reveal.in { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { max-width: 460px; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::before { display: none; }
    .stat-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(82%, 340px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 100px 26px 40px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        box-shadow: -30px 0 60px -30px rgba(0,0,0,.4);
        z-index: 999;
    }
    body.menu-open .nav-links { transform: translateX(0); }
    .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; color: var(--ink); }
    .site-header.scrolled .nav-links a { color: var(--ink); }
    .nav-links a::after { display: none; }
    .nav-links a:hover, .nav-links a.active { background: var(--blue-soft); color: var(--blue); }
    .site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--blue); }
    .nav-toggle { display: block; z-index: 1001; }
    .nav-cta .btn:not(.nav-toggle) { display: none; }
    .nav-overlay {
        position: fixed; inset: 0;
        background: rgba(8,28,66,.5);
        backdrop-filter: blur(3px);
        opacity: 0; visibility: hidden;
        transition: opacity .35s, visibility .35s;
        z-index: 998;
    }
    body.menu-open .nav-overlay { opacity: 1; visibility: visible; }

    .section { padding: 70px 0; }
    .hero { padding: 150px 0 70px; }
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .cta-band, .stat-strip { padding: 40px 26px; }
    .hero-badge { left: 0; }
}

@media (max-width: 480px) {
    .wrap { padding: 0 18px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 10px; }
    .hero-stat { min-width: calc(50% - 5px); }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
}

/* =================================================================
   SCROLL-DRIVEN HEADER  (no JS required)
   Top of page: transparent header + WHITE nav links (over the hero).
   Scrolled:    frosted white header + BLUE nav links.
   Uses CSS scroll-timeline (Chrome/Edge). Unsupported browsers keep
   the solid white header + dark links defined earlier (always readable).
   ================================================================= */
@keyframes hdrToggle {
    to {
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 1px 0 var(--line), 0 18px 40px -30px rgba(8, 28, 66, .55);
    }
}
@keyframes navToggle {
    to { color: var(--blue); }
}
/* Logo swap keyframes for scroll-timeline browsers: hide white / show dark near scroll end */
@keyframes logoTopHide {
    0%, 60% { opacity: 1; }
    61%, 100% { opacity: 0; }
}
@keyframes logoScrolledShow {
    0%, 60% { opacity: 0; }
    61%, 100% { opacity: 1; }
}
@supports (animation-timeline: scroll()) {
    @media (min-width: 769px) {
        .site-header {
            background: transparent;
            box-shadow: none;
            animation-name: hdrToggle;
            animation-fill-mode: both;
            animation-timing-function: linear;
            animation-timeline: scroll(root);
            animation-range: 24px 96px;
        }
        .nav-links a {
            color: #fff;
            animation-name: navToggle;
            animation-fill-mode: both;
            animation-timing-function: linear;
            animation-timeline: scroll(root);
            animation-range: 24px 96px;
        }
        /* keep the red active/hover underline visible in both states */
        .nav-links a::after { background: var(--red-bright); }

        /* Stack the two logos so they can cross-fade, then drive with scroll */
        .brand { position: relative; }
        .brand .logo-top,
        .brand .logo-scrolled {
            display: block;
            animation-fill-mode: both;
            animation-timing-function: linear;
            animation-timeline: scroll(root);
            animation-range: 24px 96px;
        }
        .brand .logo-scrolled {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        .brand .logo-top { animation-name: logoTopHide; }
        .brand .logo-scrolled { animation-name: logoScrolledShow; }
    }
}
