/* ============================================================
   Cost Cutters UK — Main Stylesheet
   Brand: Magenta #E20A7E | Blue-1 #1F71B6 | Blue-2 #0EA5E9
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --magenta: #E20A7E;
    --magenta-d: #c00068;
    --magenta-lt: #fce7f3;
    --dark: #1a1a1a;
    --dark2: #111111;
    --blue: #1F71B6;
    /* Blue 1 — primary */
    --blue-d: #155a94;
    --blue2: #0EA5E9;
    /* Blue 2 — sky */
    --blue2-d: #0284c7;
    --blue-lt: #e0f2fe;
    /* Very light sky tint */
    --grey-bg: #f5f5f5;
    --grey-bg2: #f0f0f0;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-lt: #555555;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, .14);
    --nav-h: 72px;
    --font: 'Figtree', 'Inter', system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Constrain entire site to nav width — no full-bleed beyond this */
    max-width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
    box-shadow: 0 0 0 1px #e8e8e8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── Typography ─────────────────────────────────────────── */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Utilities ───────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--magenta);
    margin-bottom: 12px;
}

.label-white {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
}

/* Arrow icon inside every button */
.btn::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.btn:hover::after {
    transform: translateX(4px);
}

/* Default btn = magenta */
.btn-dark,
.btn {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.btn-dark:hover,
.btn:hover {
    background: var(--dark);
    border-color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
    transform: none;
}

/* Arrow button variant */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-arrow-icon {
    transition: transform .25s ease;
    flex-shrink: 0;
}

.btn-arrow:hover .btn-arrow-icon {
    transform: translateX(5px);
}

.btn-magenta {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

.btn-magenta:hover {
    background: var(--magenta-d);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-blue:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
}

.btn-blue2 {
    background: var(--blue2);
    color: var(--white);
    border-color: var(--blue2);
}

.btn-blue2:hover {
    background: var(--blue2-d);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-svc-pink {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
    font-size: .85rem;
    padding: 10px 20px;
}

.btn-svc-pink:hover {
    background: var(--magenta-d);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Scroll animations ───────────────────────────────────── */
[data-a] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-a].visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    height: var(--nav-h);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    gap: 24px;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 600;
    font-size: .95rem;
}

.nav-links a {
    color: var(--dark);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--magenta);
}

.nav-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-pill {
    background: var(--magenta);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    transition: background .2s;
}

.phone-pill:hover {
    background: var(--magenta-d);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Phone number in mobile header bar */
.mobile-header-phone {
    display: none;
    font-size: .78rem;
    font-weight: 700;
    color: var(--magenta);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em;
}

/* Groups phone + hamburger on the right in mobile */
.nav-mobile-right {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

/* ── Mobile menu ─────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 90vw);
    background: var(--dark);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: color .2s;
}

.mobile-nav a:hover {
    color: var(--magenta);
}

.mobile-phone {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-cta {
    align-self: flex-start;
}

.mobile-socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 20px;
}

.mobile-socials a {
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.mobile-socials a:hover {
    color: var(--magenta);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   HERO — White left, black video right, logos bar at bottom
   ============================================================ */
.hero {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 68px);
    height: calc(100vh - 68px);
    background: var(--white);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    min-height: 0;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 40px 24px 80px;
    gap: 20px;
}

.hero-content .label {
    color: var(--magenta);
}

.hero-content h1 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin: 0 0 2px;
}

.hero-sub {
    color: var(--text-lt);
    font-size: .88rem;
    max-width: 480px;
    line-height: 1.5;
    margin: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Benefit cards — 2 columns × 3 rows */
.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.hb-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--grey-bg);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: border-color .2s, box-shadow .2s;
}

.hb-card:hover {
    border-color: var(--magenta);
    box-shadow: 0 2px 12px rgba(226, 10, 126, .08);
}

.hb-icon {
    color: var(--magenta);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.hb-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hb-text strong {
    font-size: .8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.hb-text span {
    font-size: .72rem;
    color: var(--text-lt);
}

/* Hero slideshow */
.hero-slideshow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 48px 40px 24px;
    gap: 16px;
}

.hero-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f0f0f0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity .7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dot indicators */
.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
}

.hero-dot.active {
    background: var(--magenta);
    transform: scale(1.3);
}

.hero-grad {
    display: none;
}

/* Logo bar — pinned to bottom of hero */
.hero-logos-bar {
    background: var(--white);
    border-top: 1px solid #e8e8e8;
    padding: 14px 0 16px;
    overflow: hidden;
    margin-top: auto;
}

.logos-bar-label {
    display: block;
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
}

.logos-track-wrap {
    overflow: hidden;
    position: relative;
}

.logos-track-wrap::before,
.logos-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.logos-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.logos-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
}

/* CSS-only infinite marquee — works with duplicated logos in HTML */
.logos-marquee {
    animation: logoScroll 32s linear infinite;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
}

.logo-item img {
    height: 60px;
    width: auto;
    filter: grayscale(100%) opacity(.55);
    transition: filter .3s;
}

.logo-item img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ============================================================
   ABOUT — Light grey
   ============================================================ */
.about {
    background: var(--grey-bg);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Bento image layout: 1 tall main + 2 small bottom */
.img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px;
    height: 480px;
    position: relative;
}

/* Video column in about section */
.about-video-col {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-lg);
    background: #000;
    position: relative;
    cursor: pointer;
}

.about-vid-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.about-video-wrap:hover .about-vid-thumb-img {
    transform: scale(1.03);
}

/* Magenta play button centred over thumbnail */
.about-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .12);
    transition: background .25s;
}

.about-video-wrap:hover .about-play-btn {
    background: rgba(0, 0, 0, .22);
}

.about-play-btn svg {
    background: var(--magenta);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    padding: 18px;
    box-shadow: 0 4px 24px rgba(226, 10, 126, .5);
    transition: transform .2s, box-shadow .2s;
}

.about-video-wrap:hover .about-play-btn svg {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(226, 10, 126, .65);
}

/* Two square images below video */
.hero-media-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 40px 16px 20px;
    justify-content: center;
    overflow: hidden;
}

.hero-media-grid .about-video-wrap {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.hero-media-grid .about-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-media-grid .about-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex-shrink: 0;
}

.hero-media-grid .about-sq {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.hero-media-grid .about-sq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-sq {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow);
}

.about-sq img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.about-sq:hover img {
    transform: scale(1.04);
}

.img-s {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-s img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Main tall image spans full left column */
.img-s1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Two smaller images stack on the right */
.img-s2 {
    grid-column: 2;
    grid-row: 1;
}

.img-s3 {
    grid-column: 2;
    grid-row: 2;
    height: 140px;
}

/* 35+ sticker badge — top-left of video */
.about-badge {
    position: absolute;
    background: var(--magenta);
    color: var(--white);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(226, 10, 126, .4);
    transform: rotate(-8deg);
}

.about-badge-tl {
    top: 14px;
    left: 14px;
}

.about-badge-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-txt {
    font-size: .7rem;
    font-weight: 600;
}

/* ── Video Lightbox ─────────────────────────────────────── */
.vid-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.vid-lightbox.is-open {
    display: flex;
}

.vid-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: lb-fade-in .25s ease;
}

.vid-lightbox-inner {
    position: relative;
    z-index: 1;
    width: min(860px, 92vw);
    animation: lb-scale-in .28s cubic-bezier(.22, .68, 0, 1.2);
}

.vid-lb-frame {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}

.vid-lb-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.vid-lb-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s;
    padding: 4px 8px;
}

.vid-lb-close:hover {
    opacity: 1;
}

@keyframes lb-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lb-scale-in {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content h2 {
    color: var(--dark);
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 8px 0;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-left: 3px solid var(--magenta);
    background: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pillar strong {
    font-size: .95rem;
    color: var(--dark);
}

.pillar span {
    font-size: .85rem;
    color: var(--text-lt);
}

/* ============================================================
   WHY CHOOSE US — White
   ============================================================ */
.why {
    background: var(--white);
    padding: 100px 0;
}

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

.why-header h2 {
    max-width: 640px;
    margin: 0 auto;
}

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

.why-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wc-green {
    background: #d1fae5;
}

.wc-peach {
    background: #ffe4cc;
}

.wc-lavender {
    background: #ede9fe;
}

.wc-blue {
    background: #dbeafe;
}

.why-icon {
    font-size: 2.2rem;
}

.why-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
}

.why-card p {
    font-size: .9rem;
    color: var(--text-lt);
}

/* ============================================================
   SECTORS — Blue-2 light tint
   ============================================================ */
.sectors {
    background: var(--blue-lt);
    padding: 80px 0;
}

.sectors-header {
    text-align: center;
    margin-bottom: 48px;
}

.sectors-scroll-wrap {
    overflow-x: auto;
    padding: 0 24px 16px;
}

.sectors-scroll {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 8px 0;
}

.sector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform .2s;
}

.sector:hover {
    transform: translateY(-4px);
}

.sector-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grey-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: background .2s;
}

.sector:hover .sector-img {
    background: #fce7f3;
}

.sector-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

/* ============================================================
   SERVICES CAROUSEL — Grey
   ============================================================ */
.services {
    background: var(--grey-bg);
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

/* Sector pills row under services heading */
.sector-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.sector-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 5px 14px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.svc-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
}

/* About section button — auto width, not full stretch */
.about-content .btn {
    align-self: flex-start;
}

.svc-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding-bottom: 8px;
}

.svc-track::-webkit-scrollbar {
    display: none;
}

.svc-card {
    flex: 0 0 300px;
    border-radius: var(--radius);
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    background: var(--grey-bg);
    border: 1px solid #e0e0e0;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.svc-card:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    box-shadow: 0 8px 32px rgba(226, 10, 126, .25);
}

.svc-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Magenta icon in service card */
.svc-icon {
    color: var(--magenta);
    display: flex;
    align-items: center;
    transition: color .25s;
}

.svc-card:hover .svc-icon {
    color: rgba(255, 255, 255, .9);
}

.svc-inner h3 {
    color: var(--dark);
    font-size: 1.1rem;
    transition: color .25s;
}

.svc-card:hover .svc-inner h3 {
    color: var(--white);
}

.svc-inner p {
    color: var(--text-lt);
    font-size: .88rem;
    transition: color .25s;
}

.svc-card:hover .svc-inner p {
    color: rgba(255, 255, 255, .85);
}

/* Button inside service card */
.svc-inner .btn-svc-pink {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
    align-self: flex-start;
    transition: background .25s, color .25s, border-color .25s;
}

.svc-card:hover .btn-svc-pink {
    background: var(--white);
    color: var(--magenta);
    border-color: var(--white);
}

.cbtn {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all .2s;
}

.cbtn:hover {
    background: var(--magenta);
    color: var(--white);
    border-color: var(--magenta);
}

/* ============================================================
   PROCESS — MAGENTA BACKGROUND
   ============================================================ */
.process {
    background: var(--magenta);
    padding: 100px 0;
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pimg-stack {
    position: relative;
    height: 460px;
    background: transparent;
}

.pimg {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
}

.pimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .3));
}

/* Main image fills the whole stack */
.pimg1 {
    inset: 0;
    border-radius: 0;
    border: none;
}

/* Secondary image hidden */
.pimg2,
.pimg3 {
    display: none;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-content h2 {
    color: var(--white);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 8px;
}

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

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}

.step-body h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-body p {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
}

/* Connected steps — vertical line through the step numbers */
.steps-connected {
    position: relative;
}

.steps-connected::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: rgba(255, 255, 255, .35);
}

.steps-connected .step-num {
    position: relative;
    z-index: 1;
    background: var(--magenta);
}

/* ============================================================
   REVIEWS — White
   ============================================================ */
.reviews {
    background: var(--white);
    padding: 80px 0;
    overflow: hidden;
}

.reviews-inner {
    display: grid;
    grid-template-columns: 200px 1fr 180px;
    gap: 40px;
    align-items: center;
}

.rev-badge {
    background: var(--magenta);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.rev-badge-label {
    font-size: .9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.rev-stars {
    color: var(--white);
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.rev-star-half {
    opacity: .5;
}

.rev-rating {
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 4px;
}

.rev-count {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
}

.rev-source {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
}

.rev-track-wrap {
    overflow: hidden;
    position: relative;
}

/* White gradient fade on left/right of review carousel */
.rev-track-wrap::before,
.rev-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.rev-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.rev-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.rev-track {
    display: flex;
    gap: 20px;
    animation: revScroll 40s linear infinite;
    width: max-content;
}

.rev-track:hover {
    animation-play-state: paused;
}

@keyframes revScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.rev-card {
    flex: 0 0 280px;
    background: var(--grey-bg);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rev-hdr {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--magenta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.rev-name {
    font-weight: 700;
    font-size: .9rem;
}

.rev-verified {
    font-size: .75rem;
    color: #059669;
}

.rev-card-stars {
    color: #f59e0b;
    font-size: .9rem;
    margin-left: auto;
}

.rev-text {
    font-size: .85rem;
    color: var(--text-lt);
    font-style: italic;
}

.rev-meta {
    font-size: .75rem;
    color: #aaa;
}

.rev-recommend {
    text-align: center;
}

.rev-pct {
    font-size: 3rem;
    font-weight: 800;
    color: var(--magenta);
    line-height: 1;
}

.rev-recommend p {
    font-size: .85rem;
    color: var(--text-lt);
    margin-top: 8px;
}

/* ============================================================
   PROJECTS — Grey
   ============================================================ */
.projects {
    background: var(--grey-bg);
    padding: 100px 0 60px;
}

.projects-header {
    text-align: center;
    margin-bottom: 48px;
}

.projects-sub {
    color: var(--text-lt);
    font-size: .95rem;
    margin-top: 8px;
}

/* Full-bleed carousel wrapper */
.proj-carousel-wrap {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 24px;
}

.proj-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 16px 40px;
    scroll-behavior: smooth;
}

.proj-track::-webkit-scrollbar {
    display: none;
}

.proj-card {
    flex: 0 0 360px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: box-shadow .25s, outline-color .25s;
    outline: 2px solid transparent;
}

.proj-card:hover {
    outline-color: var(--magenta);
    box-shadow: 0 6px 28px rgba(226, 10, 126, .15);
}

.proj-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.proj-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

/* No zoom on hover — removed */

.proj-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.proj-tag {
    display: inline-block;
    background: var(--magenta);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    align-self: flex-start;
}

.proj-body h3 {
    font-size: 1rem;
    color: var(--dark);
}

.proj-body p {
    font-size: .85rem;
    color: var(--text-lt);
    flex: 1;
}

.proj-link {
    display: inline-block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--magenta);
    margin-top: 8px;
    transition: letter-spacing .2s;
}

.proj-card:hover .proj-link {
    letter-spacing: .03em;
}

.proj-cbtn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 2;
    margin: 0 8px;
}

.proj-cbtn:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--white);
}

.projects-cta {
    text-align: center;
    margin-top: 16px;
    padding-bottom: 40px;
}

/* ============================================================
   PRICE MATCH + CREDIT ACCOUNTS — Blue-2 accent
   ============================================================ */
.commitments {
    background: var(--dark);
    padding: 100px 0;
}

.commitments-header .label {
    color: rgba(255, 255, 255, .8);
}

.commitments-header h2 {
    color: var(--white);
}

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

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

.commit-panel {
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.commit-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commit-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.commit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: .9;
}

.commit-blue {
    background: var(--blue);
    color: var(--white);
}

.commit-blue h3,
.commit-blue p,
.commit-blue li {
    color: var(--white);
}

/* Magenta variant for price match panel */
.commit-magenta {
    background: var(--magenta);
    color: var(--white);
}

.commit-magenta h3,
.commit-magenta p,
.commit-magenta li,
.commit-magenta .commit-step span,
.commit-magenta .commit-step-arrow {
    color: var(--white);
}

.commit-magenta .cstep-num {
    background: rgba(255, 255, 255, .25);
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
}

.commit-magenta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.commit-magenta .btn-outline:hover {
    background: var(--white);
    color: var(--magenta);
}

.commit-grey {
    background: var(--white);
    border-left: 4px solid var(--magenta);
}

.commit-icon {
    font-size: 2.5rem;
}

.commit-panel h3 {
    font-size: 1.4rem;
}

.commit-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.commit-list li {
    font-size: .9rem;
    padding-left: 20px;
    position: relative;
}

.commit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
}

.commit-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.commit-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
}

.cstep-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    flex-shrink: 0;
}

.commit-step-arrow {
    color: rgba(255, 255, 255, .5);
    font-size: 1.2rem;
}

.credit-sub {
    background: rgba(0, 0, 0, .04);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.credit-sub h4 {
    font-size: .95rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.credit-sub p {
    font-size: .85rem;
    color: var(--text-lt);
}

/* ============================================================
   SUSTAINABILITY + ACCREDITATIONS — Grey
   ============================================================ */
.sustainability {
    background: var(--grey-bg);
    padding: 100px 0;
}

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

.sust-intro {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--text-lt);
}

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

.sust-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow);
}

.sust-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.sust-icon {
    color: var(--magenta);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.sust-card h3 {
    font-size: 1.05rem;
    color: var(--magenta);
    margin: 0;
}

.sust-card p {
    font-size: .9rem;
    color: var(--text-lt);
}

.accreds-section {
    margin-top: 16px;
}

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

.accred-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    text-align: center;
}

.accred-card img {
    height: 90px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.accred-card p {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.accred-sub {
    display: block;
    font-weight: 400;
    color: var(--text-lt);
    font-size: .78rem;
}

.iso-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.iso-badge {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow);
}

.iso-num {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.iso-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.iso-text strong {
    font-size: .95rem;
    color: var(--dark);
}

.iso-text span {
    font-size: .85rem;
    color: var(--text-lt);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    background: var(--dark2);
    padding: 100px 0;
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details h2 {
    color: var(--white);
}

.contact-details>p {
    color: rgba(255, 255, 255, .7);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
}

.ci {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.contact-list a {
    color: rgba(255, 255, 255, .85);
    transition: color .2s;
}

.contact-list a:hover {
    color: var(--magenta);
}

.contact-list span,
.contact-list address {
    color: rgba(255, 255, 255, .7);
}

/* Form */
.cform {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg label {
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
}

.fg input,
.fg select,
.fg textarea {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: .95rem;
    transition: border-color .2s;
    width: 100%;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, .3);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    outline: none;
    border-color: var(--magenta);
}

.fg select option {
    background: var(--dark);
}

.fg textarea {
    resize: vertical;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark2);
    color: rgba(255, 255, 255, .7);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-link img {
    height: 48px;
    width: auto;
}

.footer-sub {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.footer-tagline {
    font-size: .9rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-social a:hover {
    color: var(--magenta);
}

.footer-col h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s;
}

.footer-list a:hover {
    color: var(--white);
}

/* Simplified footer layout */
.footer-simple {
    padding: 40px 0 24px;
}

.footer-simple-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-pay-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pay-badge-img {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    line-height: 0;
}

.pay-badge-img svg {
    display: block;
    border-radius: 4px;
}

.footer-payments {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer-pay-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pay-label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.pay-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 0;
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .35);
}

.footer-copy a {
    color: rgba(255, 255, 255, .5);
    transition: color .2s;
}

.footer-copy a:hover {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proj-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .accreds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: 0;
    }

    .hero-inner {
        display: flex;
        flex-direction: column-reverse;
        min-height: auto;
    }

    .hero-slideshow {
        padding: 24px 24px 8px;
        width: 100%;
    }

    .hero-slides {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-content {
        padding: 16px 20px 20px;
    }

    .hero-ctas {
        margin-top: 12px;
    }

    .hero-media-grid {
        padding: 12px 16px 0;
    }

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

    .img-stack {
        height: 320px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pimg-stack {
        height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .iso-strip {
        grid-template-columns: 1fr;
    }

    .reviews-inner {
        grid-template-columns: 1fr;
    }

    .rev-score,
    .rev-recommend {
        display: none;
    }
}


@media (max-width: 768px) {

    .nav-links,
    .nav-ctas {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile-right {
        display: flex;
    }

    .mobile-header-phone {
        display: inline-flex;
        align-items: center;
        font-size: .75rem;
        font-weight: 700;
        color: var(--magenta);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero benefit cards: already 2 columns */

    /* Service cards: 2-column grid on mobile, no carousel */
    .svc-carousel-btn {
        display: none;
    }

    .svc-wrap {
        padding: 0 16px;
    }

    .svc-track.svc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: 12px;
        padding-bottom: 0;
    }

    .svc-card {
        flex: none;
        min-height: 220px;
    }

    .svc-inner {
        padding: 20px;
        gap: 8px;
    }

    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
    }

    .why-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

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

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

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

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

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 48px 20px;
    }

    .hero-ctas {
        flex-direction: column;
    }

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

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

    .iso-strip {
        grid-template-columns: 1fr;
    }
}