/* ========================================
   MASTER STYLESHEET — At Law Communications
   Version: 1.0
   ======================================== */

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
    --bg: #050506;
    --bg-alt: #0a0a0c;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-2: rgba(255, 255, 255, 0.07);
    --surface-brd: rgba(255, 255, 255, 0.10);
    --primary: #e2102c;
    --primary-soft: #ff5c6d;
    --accent: #f5f5f5;
    --gold: #d9b36a;
    --teal: #3fd6c4;
    --text: #ffffff;
    --muted: #a3a3ab;
    --muted-2: #6b6b73;
    --line: rgba(255, 255, 255, 0.08);
    --radius: 20px;
    --ease: cubic-bezier(.16, .84, .44, 1);
    --glow-red: 0 0 60px -10px rgba(226, 16, 44, .55);
    --glow-gold: 0 0 60px -12px rgba(217, 179, 106, .5);
    --glow-teal: 0 0 60px -12px rgba(63, 214, 196, .3);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 700px at 50% 0%, rgba(7, 8, 11, 0) 0%, var(--bg) 75%),
        linear-gradient(180deg, rgba(7, 8, 11, 0.15) 0%, rgba(7, 8, 11, 0.5) 50%, var(--bg) 100%);
}

.grain-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
::selection {
    background: var(--primary);
    color: #fff;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.06;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

.section-pad {
    padding: 60px 48px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-pad .container {
    padding: 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-top: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
}

/* ===== MEGA MENU (Pure CSS Hover) =====
.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 780px;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    padding: 32px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s var(--ease);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(226, 16, 44, .08);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.9fr;
    gap: 24px;
}

.mega-column h4 {
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 6px;
}

.mega-column ul li a {
    font-size: 14px;
    color: var(--muted);
    transition: color .3s, transform .3s;
    display: block;
    padding: 4px 0;
    text-decoration: none;
}

.mega-column ul li a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.mega-featured {
    display: flex;
    align-items: stretch;
}

.mega-featured-card {
    background: linear-gradient(145deg, rgba(226, 16, 44, .12), rgba(217, 179, 106, .05));
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.mega-featured-card h4 {
    font-size: 15px;
    color: var(--text);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 6px;
    text-transform: none;
    font-family: 'Space Grotesk', sans-serif;
}

.mega-featured-card p {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 14px;
    line-height: 1.5;
}

.mega-featured-card .btn-sm {
    padding: 8px 18px;
    font-size: 12px;
    align-self: flex-start;
} */

/* ========================================
   MEGA MENU (2-Column Layout)
   ======================================== */

/* ========================================
   NAVIGATION WITH MEGA MENU & MOBILE CANVAS
   ======================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 48px;
    background: rgba(5, 5, 6, 0.4);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color .4s ease, background .4s ease;
}

nav.scrolled {
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 6, 0.78);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.logo span {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.02em;
    color: #fff;
}

.logo span span {
    color: var(--gold);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.02em;
    opacity: 0.75;
    transition: opacity .3s;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .3s var(--ease);
}

.nav-links>li>a:hover {
    opacity: 1;
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 10px;
    opacity: 0.5;
    transition: transform .3s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}



.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 580px;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    padding: 32px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s var(--ease);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 60px -20px rgba(226, 16, 44, .08);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}

/* ========================================
   SERVICES COLUMN
   ======================================== */

.mega-column h4 {
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 4px;
}

.mega-column ul li a {
    font-size: 14px;
    color: var(--muted);
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
}

.mega-column ul li a::before {
    content: '▸';
    color: var(--gold);
    font-size: 12px;
    opacity: 0;
    transition: all .3s;
}

.mega-column ul li a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.mega-column ul li a:hover::before {
    opacity: 1;
}

/* ========================================
   FEATURED CARD
   ======================================== */

.mega-featured {
    display: flex;
    align-items: stretch;
}

.mega-featured-card {
    background: linear-gradient(145deg, rgba(226, 16, 44, 0.12), rgba(217, 179, 106, 0.05));
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.mega-featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(226, 16, 44, 0.06), transparent 70%);
    pointer-events: none;
}

.mega-featured-card h4 {
    font-size: 16px;
    color: var(--text);
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 8px;
    text-transform: none;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 1;
}

.mega-featured-card p {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.mega-featured-card .btn-sm {
    padding: 8px 20px;
    font-size: 12px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media(max-width:980px) {
    .mega-menu {
        width: 90vw;
        left: 5%;
        transform: translateX(0) translateY(10px);
    }

    .nav-item:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mega-featured {
        grid-column: span 1;
    }
}

@media(max-width:860px) {
    .mega-menu {
        display: none;
    }
}

@media(max-width:480px) {
    .mega-menu {
        width: 95vw;
        left: 2.5%;
        padding: 20px;
    }

    .mega-column ul li a {
        font-size: 13px;
        padding: 6px 10px;
    }

    .mega-featured-card {
        padding: 18px 16px;
    }

    .mega-featured-card h4 {
        font-size: 14px;
    }
}



/* Nav CTA */
.nav-cta {
    background: linear-gradient(135deg, var(--primary), #a80e21);
    box-shadow: 0 8px 24px -8px rgba(226, 16, 44, .55);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    transition: all .3s;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #fff;
    color: #08090c;
    border-color: #fff;
}

/* ===== BURGER MENU ===== */
.burger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--surface-brd);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all .3s;
    z-index: 1001;
}

.burger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.burger span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all .35s var(--ease);
    border-radius: 2px;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE CANVAS MENU ===== */
.mobile-canvas-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease);
}

.mobile-canvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-canvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    max-width: 85vw;
    height: 100vh;
    z-index: 1002;
    background: var(--bg);
    border-left: 1px solid var(--surface-brd);
    padding: 0;
    transition: right .5s cubic-bezier(0.16, 0.84, 0.44, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-canvas.open {
    right: 0;
}

/* Canvas Header */
.canvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.canvas-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
}

.canvas-logo img {
    height: 32px;
    width: auto;
}

.canvas-logo span {
    color: var(--gold);
}

.canvas-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

/* Canvas Body */
.canvas-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.canvas-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.canvas-nav li {
    margin-bottom: 4px;
}

.canvas-nav li a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--text);
    font-size: 18px;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: all .3s;
    text-decoration: none;
    position: relative;
}

.canvas-nav li a:hover {
    background: var(--surface);
    color: var(--gold);
    transform: translateX(4px);
}

.canvas-nav li a::after {
    content: '→';
    position: absolute;
    right: 16px;
    opacity: 0;
    transition: all .3s;
    color: var(--gold);
}

.canvas-nav li a:hover::after {
    opacity: 1;
    right: 12px;
}

.canvas-divider {
    height: 1px;
    background: var(--line);
    margin: 20px 0;
}

/* Canvas Contact */
.canvas-contact h4 {
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 16px;
}

.canvas-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.canvas-contact-item:last-child {
    border-bottom: none;
}

.canvas-contact-item .canvas-icon {
    font-size: 18px;
    width: 28px;
    flex-shrink: 0;
    color: var(--gold);
}

.canvas-contact-item div {
    display: flex;
    flex-direction: column;
}

.canvas-contact-item strong {
    font-size: 12px;
    color: var(--muted-2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.canvas-contact-item a,
.canvas-contact-item span {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
}

.canvas-contact-item a:hover {
    color: var(--gold);
}

/* Canvas Social */
.canvas-social {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.canvas-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: var(--muted-2);
    text-decoration: none;
}

.canvas-social a:hover {
    border-color: var(--gold);
    color: var(--accent);
    background: rgba(217, 179, 106, .08);
    transform: translateY(-3px);
}

.canvas-social a svg {
    width: 18px;
    height: 18px;
}



/* Canvas CTA */
.canvas-cta {
    margin-top: 20px;
}

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

/* ===== RESPONSIVE ===== */
@media(max-width:980px) {
    .mega-menu {
        width: 90vw;
        left: 5%;
        transform: translateX(0) translateY(10px);
    }

    .nav-item:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }

    .mega-menu-content {
        grid-template-columns: 1fr 1fr;
    }

    .mega-featured {
        grid-column: span 2;
    }
}

@media(max-width:860px) {
    nav {
        padding: 14px 20px;
    }

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

    .burger {
        display: flex;
    }

    .mega-menu {
        display: none;
    }

    .logo-img {
        height: 55px;
    }

    .mobile-canvas {
        width: 340px;
        max-width: 85vw;
    }

    .nav-jobs-btn {
        margin-right: 10px;
        padding: 8px 18px !important;
        font-size: 13px !important;

    }
}

@media(max-width:480px) {
    .mobile-canvas {
        width: 100%;
        max-width: 100%;
        border-left: none;
    }

    .canvas-header {
        padding: 16px 20px;
    }

    .canvas-body {
        padding: 16px 20px;
    }

    .canvas-nav li a {
        font-size: 16px;
        padding: 12px 14px;
    }
}

/* ========================================
   MOBILE CANVAS DROPDOWN
   ======================================== */

/* Canvas Dropdown */
.canvas-dropdown {
    position: relative;
}

.canvas-dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer;
}

.canvas-dropdown-arrow {
    font-size: 12px;
    transition: transform .3s;
    color: var(--muted-2);
}

.canvas-dropdown.open .canvas-dropdown-arrow {
    transform: rotate(180deg);
}

.canvas-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.canvas-dropdown.open .canvas-dropdown-menu {
    max-height: 600px;
}

.canvas-dropdown-menu li {
    margin-bottom: 0;
}

.canvas-dropdown-menu li a {
    padding: 10px 16px 10px 32px !important;
    font-size: 15px !important;
    color: var(--muted) !important;
    font-weight: 400 !important;
}

.canvas-dropdown-menu li a:hover {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.canvas-dropdown-menu li a::after {
    display: none !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #a80e21);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(226, 16, 44, .55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -8px rgba(226, 16, 44, .7);
}

.btn-ghost {
    background: var(--surface);
    border: 1px solid var(--surface-brd);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: rgba(245, 245, 245, .06);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--text);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted-2);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--muted);
    transition: color .3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--muted-2);
}

/* ========================================
   HERO (Homepage)
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 48px 60px;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    max-width: 600px;
}

.hero-left h1 {
    font-size: clamp(38px, 5.5vw, 68px);
    margin: 22px 0 22px;
}

.hero-left h1 .grad {
    background: linear-gradient(100deg, var(--primary-soft), var(--gold) 65%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-left p.lead {
    font-size: 18px;
    max-width: 490px;
    margin-bottom: 38px;
    color: #c2c2ca;
}

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

.trust-row {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-item b {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    color: var(--text);
}

.trust-item span {
    font-size: 12px;
    color: var(--muted-2);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .03em;
}

/* Hero Carousel */
.hero-carousel-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 520px;
    margin: 0 auto;
    perspective: 1400px;
}

.hero-carousel-stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: carouselSpin 26s linear infinite;
}

.hero-carousel-wrap:hover .hero-carousel-stage {
    animation-play-state: paused;
}

@keyframes carouselSpin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

.hc-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62%;
    aspect-ratio: 4/5;
    margin-top: calc(-1 * 62% * 5 / 4 / 2);
    margin-left: -31%;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
    display: flex;
    align-items: flex-end;
}

.hc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 6, 0) 35%, rgba(5, 5, 6, .92) 100%);
}

.hc-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 40px 60px -30px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.hc-label {
    position: relative;
    z-index: 2;
    padding: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.hc-label span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
}

.hc-1 {
    transform: rotateY(0deg) translateZ(230px);
}

.hc-2 {
    transform: rotateY(72deg) translateZ(230px);
}

.hc-3 {
    transform: rotateY(144deg) translateZ(230px);
}

.hc-4 {
    transform: rotateY(216deg) translateZ(230px);
}

.hc-5 {
    transform: rotateY(288deg) translateZ(230px);
}

.hero-carousel-glow {
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(226, 16, 44, 0.22), transparent 65%);
    filter: blur(10px);
}

.hero-carousel-ring {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    border: 1px dashed rgba(217, 179, 106, 0.25);
    animation: ringSpin 40s linear infinite;
}

@keyframes ringSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--muted-2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-cue .line {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* .hero-carousel-wrap {
    max-width: clamp(220px, 50vw, 520px);
    perspective: clamp(600px, 80vw, 1400px);
} */

/* All cards keep original translateZ */
.hc-1 {
    transform: rotateY(0deg) translateZ(230px);
}

.hc-2 {
    transform: rotateY(72deg) translateZ(230px);
}

.hc-3 {
    transform: rotateY(144deg) translateZ(230px);
}

.hc-4 {
    transform: rotateY(216deg) translateZ(230px);
}

.hc-5 {
    transform: rotateY(288deg) translateZ(230px);
}

@media(max-width:768px) {
    .hero-carousel-wrap {
        transform: scale(0.75);
        transform-origin: center center;
    }
}

@media(max-width:480px) {
    .hero-carousel-wrap {
        transform: scale(0.55);
        transform-origin: center center;
    }
}


/* ========================================
   FEATURE STRIP
   ======================================== */
.feature-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.2);
}

.feature-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.fs-item .num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
    font-size: 13px;
    padding-top: 3px;
}

.fs-item h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.fs-item p {
    font-size: 14px;
}

/* ========================================
   SERVICES CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    perspective: 1400px;
}

.service-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    padding: 34px 28px 32px;
    transform-style: preserve-3d;
    transition: transform .5s var(--ease), border-color .4s, box-shadow .5s var(--ease);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(226, 16, 44, 0), rgba(217, 179, 106, 0) 40%, rgba(226, 16, 44, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(226, 16, 44, .22), transparent 68%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

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

.service-card:hover {
    border-color: rgba(255, 92, 109, .45);
    box-shadow: 0 30px 60px -25px rgba(226, 16, 44, .35), var(--glow-red);
}

.service-icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(226, 16, 44, .22), rgba(217, 179, 106, .1));
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transform: translateZ(30px);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(226, 16, 44, .35), transparent 70%);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: translateZ(56px) rotate(-6deg) scale(1.08);
    box-shadow: 0 0 34px -4px rgba(226, 16, 44, .6);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
}

.service-card .idx {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--muted-2);
}

.service-card h3 {
    font-size: 19.5px;
    margin-bottom: 10px;
    transform: translateZ(20px);
}

.service-card p {
    font-size: 14.5px;
    transform: translateZ(15px);
}

.service-card .learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    transform: translateZ(15px);
    opacity: 0;
    transition: opacity .35s, transform .35s var(--ease);
}

.service-card:hover .learn {
    opacity: 1;
    transform: translateZ(15px) translateX(4px);
}

/* ========================================
   GLOBAL / STATS
   ======================================== */
.global-section {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

#globe-canvas {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 520px;
    max-height: 520px;
    /* Add this to limit height */
    display: block;
    /* Prevents extra spacing */
}

/* For tablet screens */
@media(max-width:980px) {
    .global-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #globe-canvas {
        max-width: 400px;
        /* Smaller on tablet */
        max-height: 400px;
        margin: 0 auto;
        /* Center it */
    }
}

/* For mobile screens */
@media(max-width:640px) {
    #globe-canvas {
        max-width: 280px;
        /* Even smaller on mobile */
        max-height: 280px;
        margin: 0 auto;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 44px;
}

.stat b {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(34px, 3.6vw, 50px);
    display: block;
    background: linear-gradient(100deg, var(--text), var(--primary-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat span {
    font-size: 13px;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .02em;
}

/* ========================================
   INDUSTRIES (BPO)
   ======================================== */
.industries-section {
    background: radial-gradient(ellipse 900px 500px at 20% 0%, rgba(226, 16, 44, .08), transparent 60%);
}

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

.industry-card {
    position: relative;
    padding: 30px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: border-color .4s, transform .45s var(--ease);
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(63, 214, 196, .4);
}

.industry-card .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}

.industry-card .tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px 2px var(--teal);
}

.industry-card h4 {
    font-size: 19px;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
}

.industry-card .stack {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-card .stack span {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid var(--surface-brd);
    color: var(--muted);
}

/* ========================================
   WHY US
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 30px 24px;
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: translateY(30px);
    transition: transform .4s var(--ease), border-color .4s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 179, 106, .4);
}

.why-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    position: relative;
}

.why-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.why-card h4 {
    font-size: 16.5px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13.5px;
}

/* ========================================
   PROCESS
   ======================================== */
.process-wrap {
    position: relative;
}

.process-path {
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.process-path .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary), var(--gold));
    box-shadow: 0 0 16px 2px rgba(217, 179, 106, .4);
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    padding: 38px 0;
    position: relative;
}

.process-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--muted-2);
    transition: all .5s var(--ease);
    position: relative;
    z-index: 2;
}

.process-step.active .process-dot {
    color: var(--bg);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-color: transparent;
    box-shadow: 0 0 30px rgba(217, 179, 106, .4);
}

.process-text h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.process-text p {
    max-width: 520px;
}

/* ========================================
   TESTIMONIALS - EXISTING STYLES
   ======================================== */
.testimonial-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 10px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.testimonial-slide {
    flex: 0 0 50%;
    padding: 0 12px;
    box-sizing: border-box;
}

.testimonial-slide .inner {
    padding: 40px 32px 36px;
    border: 1px solid var(--surface-brd);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .01));
    border-radius: 24px;
    backdrop-filter: blur(10px);
    height: 100%;
    transform: scale(0.94);
    opacity: 0.45;
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.testimonial-slide.active .inner {
    transform: scale(1);
    opacity: 1;
}

.testimonial-slide .quote-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    opacity: .6;
}

.testimonial-slide p {
    font-size: 18px;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -.01em;
}

.testimonial-author {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--bg);
    flex-shrink: 0;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author b {
    display: block;
    font-size: 14px;
    color: #fff;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--muted-2);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all .3s;
}

.testimonial-dots span.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn .3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-container {
    background: var(--bg);
    border: 1px solid var(--surface-brd);
    border-radius: var(--radius);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp .3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--text);
    background: rgba(255, 255, 255, .05);
}

.modal-body {
    padding: 28px;
}

/* Alert Messages */
.alert-success,
.alert-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background: rgba(63, 214, 196, 0.1);
    border: 1px solid rgba(63, 214, 196, 0.15);
    color: var(--teal);
}

.alert-error {
    background: rgba(226, 16, 44, 0.1);
    border: 1px solid rgba(226, 16, 44, 0.15);
    color: var(--primary-soft);
}

/* Form Styles */
.testimonial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.testimonial-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.testimonial-form .form-group.full-width {
    grid-column: 1 / -1;
}

.testimonial-form .form-group label {
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted-2);
}

.testimonial-form .form-group label .required {
    color: var(--primary);
}

.testimonial-form .form-group input,
.testimonial-form .form-group textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--surface-brd);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    width: 100%;
    transition: all .3s;
}

.testimonial-form .form-group input:focus,
.testimonial-form .form-group textarea:focus {
    border-color: rgba(226, 16, 44, .6);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 0 0 4px rgba(226, 16, 44, .1);
}

.testimonial-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 1px dashed var(--surface-brd);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-upload-wrapper:hover {
    border-color: rgba(217, 179, 106, .3);
    background: rgba(255, 255, 255, .02);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.file-upload-label .upload-text {
    font-size: 14px;
    color: var(--muted);
}

.file-upload-label .upload-hint {
    font-size: 12px;
    color: var(--muted-2);
}

.file-preview {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.file-preview.active {
    display: flex;
}

.file-preview img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.file-preview .file-name {
    font-size: 13px;
    color: var(--muted);
    flex: 1;
    text-align: left;
}

.file-preview .remove-file {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(226, 16, 44, 0.1);
    color: var(--primary-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.file-preview .remove-file:hover {
    background: rgba(226, 16, 44, 0.2);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 8px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media(max-width:768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-slide .inner {
        padding: 28px 20px 24px;
    }

    .testimonial-slide p {
        font-size: 16px;
    }

    .testimonial-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal-container {
        max-width: 100%;
        margin: 10px;
    }

    .modal-header {
        padding: 18px 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-title h3 {
        font-size: 18px;
    }
}

@media(max-width:480px) {
    .testimonial-slide .quote-mark {
        font-size: 36px;
    }

    .testimonial-slide p {
        font-size: 15px;
    }

    .testimonial-author b {
        font-size: 13px;
    }

    .testimonial-author span {
        font-size: 11px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: 150px 24px;
    z-index: 1;
}

.cta-shell {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 90px 40px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--surface-brd);
    background: linear-gradient(160deg, rgba(226, 16, 44, .14), rgba(10, 10, 12, .6) 55%);
}

.cta-shell .cta-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .5;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
}

.cta-shell .cta-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(circle, rgba(226, 16, 44, .4), transparent 70%);
    filter: blur(40px);
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: .5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: .85;
        transform: translateX(-50%) scale(1.12);
    }
}

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

.cta-content h2 {
    font-size: clamp(32px, 4.6vw, 50px);
    margin: 20px 0 20px;
}

.cta-content p {
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 36px;
}

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

.cta-microcopy {
    margin-top: 26px;
    font-size: 12.5px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--muted-2);
    letter-spacing: .04em;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-section {
    padding: 0 48px 150px;
}

.contact-shell {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--surface-brd);
    background: var(--surface);
}

.contact-info {
    position: relative;
    padding: 56px 48px;
    background: linear-gradient(165deg, rgba(226, 16, 44, .16), rgba(10, 10, 12, .4));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 179, 106, .18), transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(20px);
}

.contact-info h3 {
    font-size: 27px;
    margin: 16px 0 14px;
    position: relative;
    z-index: 1;
}

.contact-info p {
    font-size: 14.5px;
    max-width: 340px;
    position: relative;
    z-index: 1;
}

.contact-detail-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail .ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail .ico svg {
    width: 19px;
    height: 19px;
    stroke: var(--gold);
}

.contact-detail b {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}

.contact-detail span {
    font-size: 13px;
    color: var(--muted);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 44px;
    position: relative;
    z-index: 1;
}

.contact-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.contact-social a:hover {
    border-color: var(--gold);
    background: rgba(217, 179, 106, .08);
}

.contact-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--muted);
}

.contact-form-wrap {
    padding: 56px 48px;
}

/* Form Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.field label {
    font-size: 12.5px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.field input,
.field select,
.field textarea {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--surface-brd);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    transition: border-color .3s, box-shadow .3s, background .3s;
    outline: none;
    width: 100%;
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a3a3ab' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 36px;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(226, 16, 44, .6);
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 0 4px rgba(226, 16, 44, .12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: var(--muted-2);
}

/* Glowing Form (for contact & job pages) */
.glow-form {
    position: relative;
    padding: 36px 34px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    overflow: hidden;
    transition: border-color .4s, box-shadow .4s;
}

.glow-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(226, 16, 44, 0.3), rgba(217, 179, 106, 0.1), rgba(226, 16, 44, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .6s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.glow-form:hover::before {
    opacity: 1;
}

.glow-form::after {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(ellipse at 50% 0%, rgba(226, 16, 44, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity .8s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.glow-form:hover::after {
    opacity: 1;
}

.glow-form>* {
    position: relative;
    z-index: 1;
}

.glow-form h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.glow-form .form-subtitle {
    font-size: 14px;
    color: var(--muted-2);
    margin-bottom: 22px;
}

/* File Upload */
.file-upload {
    position: relative;
    padding: 12px 16px;
    border: 1px dashed var(--surface-brd);
    border-radius: 12px;
    background: rgba(255, 255, 255, .02);
    text-align: center;
    cursor: pointer;
    transition: border-color .3s, background .3s;
}

.file-upload:hover {
    border-color: rgba(217, 179, 106, .3);
    background: rgba(255, 255, 255, .04);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload .file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted-2);
    font-size: 13px;
}

.file-upload .file-label .icon {
    font-size: 24px;
}

.file-upload .file-label .file-name {
    color: var(--gold);
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
}

/* Form Footer */
.form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 12.5px;
    color: var(--muted-2);
    max-width: 280px;
}

.form-status {
    margin-top: 16px;
    font-size: 13.5px;
    font-family: 'JetBrains Mono', monospace;
    min-height: 18px;
}

.form-status.success {
    color: var(--teal);
}

.form-status.error {
    color: var(--primary);
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--surface-brd);
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: none;
    filter: grayscale(0.8) invert(0.9) hue-rotate(180deg);
}

.map-section .map-overlay {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-brd);
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
    pointer-events: none;
}

.map-section .map-overlay .pin {
    color: var(--gold);
    margin-right: 6px;
}

/* ========================================
   JOB CARDS (Careers Page)
   ======================================== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.job-card {
    position: relative;
    padding: 32px 30px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    transition: transform .4s var(--ease), border-color .4s, box-shadow .5s var(--ease);
    overflow: hidden;
    cursor: pointer;
}

/* Glowing Job Card Effect */
.job-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(226, 16, 44, 0), rgba(217, 179, 106, 0), rgba(226, 16, 44, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .6s var(--ease);
    pointer-events: none;
}

.job-card::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse at 50% 50%, rgba(226, 16, 44, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity .8s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.job-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(226, 16, 44, 0.6), rgba(217, 179, 106, 0.3), rgba(226, 16, 44, 0.6));
}

.job-card:hover::after {
    opacity: 1;
}

.job-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 179, 106, 0.3);
    box-shadow: 0 30px 60px -20px rgba(226, 16, 44, 0.25), 0 0 80px -30px rgba(226, 16, 44, 0.1);
}

.job-card>* {
    position: relative;
    z-index: 1;
}

.job-card .job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.job-card .job-title {
    font-size: 20px;
    margin-bottom: 4px;
}

.job-card .job-department {
    font-size: 13px;
    color: var(--muted-2);
    font-family: 'JetBrains Mono', monospace;
}

.job-card .job-badge {
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 2px;
}

.job-badge.full-time {
    background: rgba(63, 214, 196, 0.12);
    color: var(--teal);
    border: 1px solid rgba(63, 214, 196, 0.15);
}

.job-badge.part-time {
    background: rgba(217, 179, 106, 0.12);
    color: var(--gold);
    border: 1px solid rgba(217, 179, 106, 0.15);
}

.job-badge.remote {
    background: rgba(226, 16, 44, 0.12);
    color: var(--primary-soft);
    border: 1px solid rgba(226, 16, 44, 0.15);
}

.job-card .job-description {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.job-card .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.job-card .job-meta span {
    font-size: 13px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-card .job-meta span svg {
    width: 16px;
    height: 16px;
    stroke: var(--muted-2);
}

.job-card .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.job-card .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.job-card .job-tags span {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--surface-brd);
    color: var(--muted-2);
    background: rgba(255, 255, 255, .02);
}

.job-card .apply-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s var(--ease);
    padding: 6px 0;
}

.job-card .apply-btn:hover {
    gap: 12px;
}

.job-card .apply-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ========================================
   PERKS & BENEFITS
   ======================================== */
.perks-section {
    margin-top: 40px;
    padding: 50px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--bg-alt);
    text-align: center;
}

.perks-section .section-head {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.perks-section .section-head .eyebrow {
    justify-content: center;
}

.perks-section .section-head p {
    max-width: 560px;
    margin: 14px auto 0;
}

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

.perk-item {
    padding: 24px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    transition: transform .3s var(--ease), border-color .3s;
    text-align: center;
}

.perk-item:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 179, 106, .3);
}

.perk-item .perk-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.perk-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.perk-item p {
    font-size: 13px;
    color: var(--muted-2);
}

/* ========================================
   JOB DETAIL PAGE SPECIFIC
   ======================================== */
.job-hero {
    padding: 120px 48px 50px;
}

.job-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.job-hero-content .job-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
    background: rgba(63, 214, 196, 0.12);
    color: var(--teal);
    border: 1px solid rgba(63, 214, 196, 0.15);
    margin-bottom: 14px;
}

.job-hero-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 12px;
}

.job-hero-content .job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 16px 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.job-hero-content .job-meta span {
    font-size: 14px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-hero-content .job-meta span svg {
    width: 18px;
    height: 18px;
    stroke: var(--muted-2);
}

.job-hero-content .job-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

.job-description-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
}

.job-description-section h3 {
    font-size: 17px;
    margin: 24px 0 10px;
}

.job-description-section ul {
    list-style: none;
    padding: 0;
}

.job-description-section ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.job-description-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Related Jobs */
.related-jobs {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.related-jobs h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-job-card {
    padding: 24px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--surface-brd);
    background: var(--surface);
    transition: transform .3s var(--ease), border-color .3s;
}

.related-job-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 179, 106, .3);
}

.related-job-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.related-job-card .dept {
    font-size: 13px;
    color: var(--muted-2);
}

.related-job-card .related-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 2px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(63, 214, 196, 0.12);
    color: var(--teal);
    border: 1px solid rgba(63, 214, 196, 0.15);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    border-top: 1px solid var(--line);
    padding: 70px 48px 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--line);
}

.footer-col h5 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: .14em;
    color: var(--muted-2);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14.5px;
    color: var(--muted);
    transition: color .3s;
}

.footer-col a:hover {
    /* color: var(--accent); */
    color: var(--primary);
}

.footer-brand p {
    font-size: 14.5px;
    max-width: 280px;
    margin: 18px 0 24px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-bottom p {
    font-size: 13px;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets & Small Laptops */
@media(max-width:980px) {

    /* Hero */
    .hero {
        padding: 120px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-carousel-wrap {
        max-width: 380px;
    }

    /* Sections */
    .section-pad {
        padding: 50px 24px;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    #globe-canvas {
        margin: 0 auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    /* Feature Strip */
    .feature-strip .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Contact */
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 0 24px 100px;
    }

    /* Jobs */
    .jobs-grid {
        grid-template-columns: 1fr;
    }

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

    .job-hero {
        padding: 100px 24px 40px;
    }

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

    /* Perks */
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape */
@media(max-width:768px) {
    .hero-carousel-wrap {
        max-width: 300px;
    }

    .hc-card {
        width: 70%;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonial-slide p {
        font-size: 16px;
    }

    .testimonial-slide .quote-mark {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .job-hero-content .job-meta {
        gap: 14px;
    }

    .job-hero-content .job-actions {
        flex-direction: column;
    }

    .related-jobs-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait */
@media(max-width:640px) {
    .container {
        padding: 0 22px;
    }

    .section-pad {
        padding: 80px 16px;
    }

    .services-grid,
    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-row {
        gap: 24px;
    }

    .process-step {
        grid-template-columns: 56px 1fr;
        gap: 18px;
    }

    .process-dot {
        width: 56px;
        height: 56px;
        font-size: 16px;
    }

    .process-path {
        left: 27px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-shell {
        padding: 60px 24px;
    }

    footer {
        padding: 60px 16px 24px;
    }

    .hero-carousel-wrap {
        max-width: 260px;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 36px 26px;
    }

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

    .job-card {
        padding: 24px 20px;
    }

    .job-card .job-header {
        flex-direction: column;
        gap: 8px;
    }

    .job-card .job-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .job-card .apply-btn {
        justify-content: center;
    }

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

    .perks-section {
        padding: 30px 20px;
    }

    .job-hero-content h1 {
        font-size: 28px;
    }

    .map-section iframe {
        height: 200px;
    }

    .map-section .map-overlay {
        font-size: 11px;
        padding: 8px 16px;
        white-space: normal;
    }

    .careers-hero h1 {
        font-size: 32px;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

/* Very Small Screens */
@media(max-width:480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .stat-block b {
        font-size: 24px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    .scroll-cue .line,
    .hero-carousel-stage,
    .hero-carousel-ring,
    .cta-orb {
        animation: none;
    }

    .service-card,
    .why-card,
    .industry-card,
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========================================
   FOOTER SOCIAL LINKS
   ======================================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--surface-brd);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    color: var(--muted-2);
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--accent);
    background: rgba(217, 179, 106, .08);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}