/* ==========================================================================
   Get On The Web | Design System v2
   Theme: Orange brand + blue accent + white + gradients
   Inspired by Apple.com motion, but distinctive
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@500,700,800,900&f[]=satoshi@300,400,500,700,900&display=swap');

:root {
    /* Brand colors */
    --orange: #E8541C;
    --orange-bright: #FF6B35;
    --orange-deep: #C8401A;
    --orange-soft: #FFEDE3;
    --orange-glow: rgba(232, 84, 28, 0.15);

    /* Blue accents */
    --blue: #2563EB;
    --blue-deep: #1E3A8A;
    --blue-bright: #3B82F6;
    --blue-soft: #EFF6FF;
    --blue-glow: rgba(37, 99, 235, 0.12);

    /* Neutrals */
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-warm: #FBF9F7;
    --bg-cool: #F8FAFC;
    --ink: #0F172A;
    --ink-soft: #475569;
    --ink-muted: #94A3B8;
    --line: #E2E8F0;
    --line-soft: #F1F5F9;
    --dark: #0A0F1F;

    /* Gradients */
    --grad-warm: linear-gradient(135deg, #FF6B35 0%, #E8541C 50%, #C8401A 100%);
    --grad-cool: linear-gradient(135deg, #3B82F6 0%, #2563EB 50%, #1E3A8A 100%);
    --grad-sunset: linear-gradient(135deg, #FF6B35 0%, #FF4D8B 50%, #2563EB 100%);
    --grad-mesh: radial-gradient(at 20% 30%, rgba(255, 107, 53, 0.18) 0px, transparent 50%),
                 radial-gradient(at 80% 20%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
                 radial-gradient(at 50% 80%, rgba(255, 77, 139, 0.10) 0px, transparent 50%);

    /* Typography */
    --font-display: 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Motion (Apple curves) */
    --ease-apple: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container: 1280px;
    --container-wide: 1440px;
    --gutter: clamp(1.25rem, 3vw, 2.5rem);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --shadow-orange: 0 16px 48px rgba(232, 84, 28, 0.25);
    --shadow-blue: 0 16px 48px rgba(37, 99, 235, 0.20);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
}

h1 { font-size: clamp(2.875rem, 8vw, 6.5rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.125rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.125rem); font-weight: 700; }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.375rem); font-weight: 700; letter-spacing: -0.015em; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.eyebrow-blue { color: var(--blue); }
.eyebrow-light { color: rgba(255, 255, 255, 0.6); }

.lead {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 60ch;
    font-weight: 400;
}

.gradient-text {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cool {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-sunset {
    background: var(--grad-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: clamp(4rem, 10vw, 8rem) 0; position: relative; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-warm { background: var(--bg-warm); }
.section-cool { background: var(--bg-cool); }
.section-soft-orange { background: var(--orange-soft); }
.section-soft-blue { background: var(--blue-soft); }
.section-dark { background: var(--dark); color: rgba(255, 255, 255, 0.75); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

/* ==========================================================================
   Apple-style Navigation
   ========================================================================== */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 60px;
    transition: all 0.3s var(--ease-soft);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(15, 23, 42, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.0625rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-menu li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.2s var(--ease-soft);
}

.nav-menu li a:hover { background: rgba(15, 23, 42, 0.05); color: var(--orange); }

.nav-cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.125rem !important;
    border-radius: 999px;
    transition: all 0.25s var(--ease-soft) !important;
}

.nav-cta:hover {
    background: var(--orange-deep) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
}

.nav-toggle {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.3s;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 920px) {
    .nav-menu {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 100%; max-width: 360px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 4rem 2rem;
        gap: 0.5rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-apple);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.08);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu li { width: 100%; }
    .nav-menu li a {
        font-family: var(--font-display);
        font-size: 1.5rem; font-weight: 700;
        color: var(--ink);
        padding: 0.75rem 0;
        display: block;
        border-radius: 0;
    }
    .nav-toggle { display: flex; z-index: 101; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9375rem 1.75rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.25s var(--ease-soft);
    cursor: pointer;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(232, 84, 28, 0.25);
}

.btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(232, 84, 28, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.btn-blue:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover {
    background: var(--orange); color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--orange);
    font-size: 0.9375rem;
    transition: gap 0.25s var(--ease-soft);
}

.btn-arrow:hover { gap: 0.875rem; color: var(--orange-deep); }

/* ==========================================================================
   Hero (homepage)
   ========================================================================== */

.hero {
    position: relative;
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--grad-mesh), var(--bg);
    background-size: 200% 200%;
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.hero-blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.45), transparent 70%);
    top: -100px; right: -100px;
    animation: blobFloat 18s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.30), transparent 70%);
    bottom: -100px; left: -50px;
    animation: blobFloat 22s ease-in-out infinite reverse;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 84, 28, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-eyebrow .pulse {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-motto {
    font-family: var(--font-display);
    font-size: clamp(2.875rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
}

.hero-motto .word-1 { color: var(--ink); }
.hero-motto .word-2 {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-motto .word-3 {
    background: var(--grad-cool);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead { margin-bottom: 2.5rem; max-width: 56ch; }

.hero-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--ink-muted);
}

.hero-trust-avatars { display: flex; }

.hero-trust-avatars span {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--grad-warm);
    margin-left: -8px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-avatars span:nth-child(2) { background: var(--grad-cool); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #FF4D8B, #E8541C); }
.hero-trust-avatars span:nth-child(4) { background: var(--ink); }

.hero-visual {
    margin-top: clamp(3rem, 6vw, 5rem);
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
    background: var(--bg-cool);
}

.hero-image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}

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

/* Service category card image */
.service-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 880px) {
    .service-cat-grid { grid-template-columns: 1.2fr 1fr; }
    .service-cat-grid.reverse > .service-cat-content { order: 2; }
    .service-cat-grid.reverse > .service-cat-visual { order: 1; }
}

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

.service-cat-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-soft);
}

.service-cat-visual:hover img { transform: scale(1.04); }

/* Industry banner for clients */
.industry-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--shadow);
}

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

.industry-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 84, 28, 0.30), rgba(37, 99, 235, 0.20));
    pointer-events: none;
}

/* Contact page office image */
.contact-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

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

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line-soft);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.hero-floating-card.card-1 {
    top: 8%; left: -3%;
    animation: float1 6s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 12%; right: -3%;
    animation: float2 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

.hero-floating-card .label {
    font-size: 0.7rem;
    color: var(--ink-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-floating-card .value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-floating-card .arrow-up { color: #10B981; font-size: 0.875rem; }

@media (max-width: 720px) {
    .hero-floating-card { display: none; }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Section Headers */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 720px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 1.25rem; }

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: all 0.4s var(--ease-soft);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 84, 28, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 84, 28, 0.3);
}

.service-card:hover::before { opacity: 1; }

.service-num {
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 56px; height: 56px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease-soft);
}

.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card:nth-child(2n) .service-icon { background: var(--blue-soft); color: var(--blue); }
.service-card:nth-child(2n):hover .service-icon { background: var(--blue); color: var(--white); }

.service-card h3 { margin-bottom: 0.875rem; font-size: 1.375rem; }

.service-card p {
    color: var(--ink-soft);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

/* Showcase (Apple-style alternating) */
.showcase { padding: clamp(4rem, 8vw, 6rem) 0; }

.showcase-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

@media (min-width: 880px) {
    .showcase-row { grid-template-columns: 1fr 1fr; }
    .showcase-row.reverse > .showcase-text { order: 2; }
    .showcase-row.reverse > .showcase-image { order: 1; }
}

.showcase-row:last-child { margin-bottom: 0; }

.showcase-text h2 { margin-bottom: 1.25rem; }
.showcase-text .lead { margin-bottom: 1.75rem; }

.showcase-features { list-style: none; margin-bottom: 2rem; }

.showcase-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 500;
}

.showcase-features li svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

.showcase-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-soft);
}

.showcase-image:hover img { transform: scale(1.05); }

.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.15), transparent 50%);
    pointer-events: none;
}

.showcase-image-tag {
    position: absolute;
    top: 1.25rem; left: 1.25rem;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Service Category Detail Blocks */
.service-category {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-bottom: 1px solid var(--line);
}

.service-category:last-child { border-bottom: none; }

.service-cat-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.service-cat-num {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    padding-top: 0.5rem;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-cat-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }

.service-cat-tagline {
    color: var(--ink-soft);
    margin-top: 0.875rem;
    max-width: 680px;
    font-size: 1.0625rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.service-item {
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink);
    transition: all 0.25s var(--ease-soft);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-item:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 84, 28, 0.08);
}

.service-item .dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease-soft);
}

.why-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.why-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--grad-warm);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-item:nth-child(2) .why-icon { background: var(--grad-cool); }
.why-item:nth-child(3) .why-icon { background: linear-gradient(135deg, #FF4D8B, #E8541C); }
.why-item:nth-child(4) .why-icon { background: linear-gradient(135deg, #1E3A8A, #0F172A); }

.why-item h4 { margin-bottom: 0.625rem; color: var(--ink); }
.why-item p { font-size: 0.9375rem; color: var(--ink-soft); }

.why-num {
    font-size: 0.75rem;
    color: var(--orange);
    margin-bottom: 0.875rem;
    display: block;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* GCP Block */
.gcp-block {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    position: relative;
    overflow: hidden;
}

.gcp-block::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(232, 84, 28, 0.18), transparent 65%);
    pointer-events: none;
}

.gcp-block::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 65%);
    pointer-events: none;
}

.gcp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 880px) {
    .gcp-grid { grid-template-columns: 1.3fr 1fr; }
}

.gcp-block h2 { color: var(--white); margin-bottom: 1.25rem; }
.gcp-block .lead { color: rgba(255, 255, 255, 0.7); margin-bottom: 2rem; }

.gcp-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.country-chip {
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gcp-badge {
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
}

.gcp-badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.gcp-badge-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.gcp-badge-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}

.gcp-badge-meta strong { color: var(--white); font-weight: 600; }

/* Logo Scroller */
.scroller {
    overflow: hidden;
    padding: 2.5rem 0;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.scroller-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll 120s linear infinite;
}

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

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.client-logo {
    flex-shrink: 0;
    height: 64px;
    min-width: 200px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
    color: var(--ink-muted);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    background: var(--white);
    text-align: center;
    line-height: 1.15;
}

.client-logo:hover {
    color: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 84, 28, 0.1);
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
}

.process-step {
    position: relative;
    padding-top: 2.5rem;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 56px; height: 4px;
    background: var(--grad-warm);
    border-radius: 2px;
}

.process-step:nth-child(2)::before { background: var(--grad-cool); }
.process-step:nth-child(3)::before { background: linear-gradient(90deg, #FF4D8B, #E8541C); }
.process-step:nth-child(4)::before { background: linear-gradient(90deg, #1E3A8A, #0F172A); }

.process-num {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.process-step h4 { margin-bottom: 0.625rem; }
.process-step p { font-size: 0.9375rem; color: var(--ink-soft); }

/* CTA */
.cta-block {
    text-align: center;
    padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 30%, rgba(232, 84, 28, 0.25), transparent 60%),
                radial-gradient(ellipse 60% 80% at 70% 70%, rgba(37, 99, 235, 0.25), transparent 60%);
    pointer-events: none;
}

.cta-block > * { position: relative; z-index: 2; }

.cta-block h2 { color: var(--white); max-width: 18ch; margin: 0 auto 1.25rem; }
.cta-block .lead { color: rgba(255, 255, 255, 0.75); max-width: 50ch; margin: 0 auto 2.5rem; }

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 880px) {
    .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-item { margin-bottom: 2rem; }

.contact-info-label {
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
}

.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--orange); }

.form {
    background: var(--white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 600px) {
    .form-row.split { grid-template-columns: 1fr 1fr; }
}

.form-field { position: relative; }

.form-field label {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-soft);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.9375rem 1rem;
    background: var(--bg-cool);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--ink);
    transition: all 0.2s var(--ease-soft);
    font-family: var(--font-body);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(232, 84, 28, 0.1);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%23E8541C' stroke-width='1.8' d='M1 1l5 5 5-5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s var(--ease-soft);
    margin-top: 0.75rem;
    box-shadow: 0 8px 24px rgba(232, 84, 28, 0.25);
}

.form-submit:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(232, 84, 28, 0.35);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.form-status.success {
    background: var(--orange-soft);
    color: var(--orange-deep);
    display: block;
    border: 1px solid rgba(232, 84, 28, 0.2);
}

.form-status.error {
    background: #FEE2E2;
    color: #991B1B;
    display: block;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* About */
.about-hero {
    padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--grad-mesh), var(--bg);
}

.about-story { max-width: 720px; margin: 0 auto; }

.about-story p {
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: var(--ink-soft);
}

.about-story p:first-of-type {
    font-size: 1.375rem;
    color: var(--ink);
    line-height: 1.55;
    font-weight: 500;
}

.about-image-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 4rem 0;
}

.about-image-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease-soft);
}

.about-image-strip img:hover { transform: scale(1.03); }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 3rem;
}

.industry-tile {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    text-align: center;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease-soft);
}

.industry-tile:hover {
    border-color: var(--orange);
    background: var(--orange-soft);
    color: var(--orange-deep);
    transform: translateY(-3px);
}

/* Clients */
.client-section { padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.client-section:last-child { border-bottom: none; }
.client-section h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.client-section .lead { margin-bottom: 2rem; }

.client-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.client-card {
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease-soft);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--grad-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-soft);
}

.client-card:hover::before { transform: scaleX(1); }

.client-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.client-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.client-card p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.55; }

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232, 84, 28, 0.12), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer-brand h3 img { height: 36px; width: auto; }

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.footer-motto {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.footer-motto .word-2 { color: var(--orange); }
.footer-motto .word-3 { color: var(--blue-bright); }

.footer-col h5 {
    font-size: 0.75rem;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange); }

.footer-col p { font-size: 0.875rem; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.footer-bottom .gcp-tag { letter-spacing: 0.05em; font-weight: 500; }

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple);
    will-change: opacity, transform;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .scroller-track { animation: none; }
    .hero-blob, .hero-bg { animation: none; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Page Load */
.page-load .hero h1,
.page-load .hero-motto,
.page-load .hero-lead,
.page-load .hero-actions,
.page-load .hero-eyebrow,
.page-load .hero-trust {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1.2s var(--ease-apple) forwards;
}

.page-load .hero-eyebrow { animation-delay: 0.05s; }
.page-load .hero-motto { animation-delay: 0.15s; }
.page-load .hero h1 { animation-delay: 0.15s; }
.page-load .hero-lead { animation-delay: 0.35s; }
.page-load .hero-actions { animation-delay: 0.55s; }
.page-load .hero-trust { animation-delay: 0.75s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.page-load .hero-image-frame {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    animation: imageReveal 1.4s var(--ease-apple) 0.4s forwards;
}

@keyframes imageReveal {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   HERO VIDEO MODE — full-bleed video background with overlay
   (Used on homepage; About/Services/Clients/Contact use the older mesh hero)
   ========================================================================== */

.hero.hero-video-mode {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(5rem, 9vw, 8rem);
    color: var(--white);
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: var(--dark);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(232, 84, 28, 0.32), transparent 55%),
        radial-gradient(ellipse at 75% 75%, rgba(37, 99, 235, 0.22), transparent 55%),
        linear-gradient(135deg, rgba(10, 15, 31, 0.78) 0%, rgba(10, 15, 31, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
}

/* On-video text variants */
.hero-eyebrow-on-video {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
}

.hero-eyebrow-on-video .pulse {
    background: var(--orange-bright);
    box-shadow: 0 0 12px rgba(255, 107, 53, 0.8);
}

.hero-motto-on-video .word-1 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-motto-on-video .word-2 {
    background: linear-gradient(135deg, #FF8A4C 0%, #FF6B35 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-motto-on-video .word-3 {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-lead-on-video {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-trust-on-video {
    color: rgba(255, 255, 255, 0.78) !important;
}

.hero-trust-on-video strong { color: var(--white); }

/* White outline button for hero on video */
.btn-light-outline {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-light-outline:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--white);
}

/* Floating cards on video hero — pinned at corners */
.hero-video-mode .hero-floating-card.card-1 {
    top: 16%;
    left: 4%;
    bottom: auto;
    right: auto;
    animation: float1 14s ease-in-out infinite;
}

.hero-video-mode .hero-floating-card.card-2 {
    bottom: 14%;
    right: 4%;
    top: auto;
    left: auto;
    animation: float2 16s ease-in-out infinite;
}

@media (max-width: 1100px) {
    .hero-video-mode .hero-floating-card.card-1 { top: 10%; left: 2%; }
    .hero-video-mode .hero-floating-card.card-2 { bottom: 10%; right: 2%; }
}

@media (max-width: 880px) {
    .hero-video-mode .hero-floating-card { display: none; }
}

/* Stats band: hero-stats below the hero, no top border or margin */
.stats-band {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.stats-band .hero-stats {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Left-to-right scroller variant */
.scroller-ltr .scroller-track {
    animation: scrollLtr 120s linear infinite;
}

@keyframes scrollLtr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* ==========================================================================
   Team grid (about page)
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.team-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-soft);
}

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

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 31, 0.65) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.team-card-caption {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    color: var(--white);
}

.team-card-caption .role {
    font-size: 0.7rem;
    color: var(--orange-bright);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.team-card-caption .label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
}



@media (max-width: 480px) {
    body { font-size: 16px; }

    :root {
        --gutter: 1rem;
        --radius-xl: 28px;
        --radius-lg: 20px;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero.hero-video-mode {
        min-height: 75vh;
        padding: 6rem 0 3.5rem;
    }

    .hero-motto {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
        letter-spacing: -0.03em;
    }

    .hero-eyebrow {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-trust {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-image-frame {
        border-radius: var(--radius);
    }

    .hero-blob-1, .hero-blob-2 {
        width: 250px;
        height: 250px;
    }

    .gcp-block, .cta-block {
        padding: 2rem 1.25rem;
    }

    .gcp-badge { padding: 1.5rem; }
    .gcp-badge-title { font-size: 1.25rem; }

    .country-chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .industry-banner {
        aspect-ratio: 16 / 10;
    }

    .nav-logo span { display: none; }
    .nav-logo img { height: 32px; }

    .footer-grid { gap: 2rem; }

    .scroller { padding: 1.5rem 0; }
    .client-logo {
        height: 56px;
        min-width: 160px;
        font-size: 1rem;
    }

    .about-image-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .why-item, .form { padding: 1.5rem 1.25rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablet and small laptop polish */
@media (min-width: 481px) and (max-width: 720px) {
    .hero-motto {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
}
