/* ─── Design System ─────────────────────────────────────────── */
:root {
    --black:       #080808;
    --steel:       #111111;
    --iron:        #1a1a1a;
    --carbon:      #252525;
    --ash:         #555555;
    --smoke:       #909090;
    --mist:        #cccccc;
    --white:       #EEF2FF;
    --amber:       #2B6FE0;
    --amber-hi:    #4D8AF5;
    --amber-lo:    rgba(43, 111, 224, 0.15);

    --font-display:  'Bebas Neue', sans-serif;
    --font-heading:  'Barlow Condensed', sans-serif;
    --font-body:     'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; }

/* ─── Grain Overlay ──────────────────────────────────────────── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.038;
}

/* ─── Container ──────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── Top Bar ────────────────────────────────────────────────── */
.top-bar {
    background: var(--black);
    border-bottom: 1px solid rgba(43, 111, 224, 0.18);
    color: var(--smoke);
    padding: 9px 0;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.08em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 28px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar-info i { color: var(--amber); font-size: 10px; }

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-number {
    color: var(--amber);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.phone-number:hover { color: var(--amber-hi); }

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

.social-links a {
    color: var(--smoke);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover { color: var(--amber); }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: border-color 0.4s;
}

.navbar.scrolled {
    border-bottom-color: rgba(43, 111, 224, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo { flex-shrink: 0; }

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
    border-radius: 4px;
}

.nav-links {
    flex: 1;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--smoke);
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta-wrapper { flex-shrink: 0; margin-left: 36px; }
.nav-mobile-cta { display: none; }

.nav-cta {
    background: var(--amber);
    color: var(--black);
    text-decoration: none;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--amber-hi); }

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    margin-left: 20px;
}

.mobile-menu span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    display: block;
    transition: 0.3s;
}

.mobile-menu.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu.active span:nth-child(2) { opacity: 0; }
.mobile-menu.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 8, 8, 0.96) 0%,
        rgba(8, 8, 8, 0.82) 50%,
        rgba(8, 8, 8, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 0;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.1s forwards;
}

.hero h1 {
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    margin-bottom: 28px;
}

.hero-top {
    font-family: var(--font-display);
    font-size: clamp(5rem, 9vw, 8.5rem);
    color: var(--white);
    letter-spacing: 0.02em;
    display: block;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.7s 0.3s forwards;
}

.hero-accent {
    font-family: var(--font-display);
    font-size: clamp(7rem, 13vw, 13rem);
    color: var(--amber);
    letter-spacing: 0.02em;
    display: block;
    line-height: 0.82;
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 0.7s 0.5s forwards;
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s 0.9s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--black);
    text-decoration: none;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: background 0.2s;
    flex-shrink: 0;
}

.cta-button:hover { background: var(--amber-hi); }

.cta-ghost {
    color: var(--smoke);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.cta-ghost:hover {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.4);
}

/* Vertical amber line bottom-left of hero */
.hero-line {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 1px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--amber));
}

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

/* ─── Ticker ─────────────────────────────────────────────────── */
.ticker-wrap {
    background: var(--amber);
    overflow: hidden;
    white-space: nowrap;
    padding: 11px 0;
}

.ticker-track {
    display: inline-flex;
    gap: 28px;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
}

.ticker-track .dot { color: rgba(0, 0, 0, 0.35); }

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Section Shared ─────────────────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-sub {
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 64px;
}

/* ─── Services ───────────────────────────────────────────────── */
.services {
    padding: 72px 0 0;
    background: var(--steel);
}

/* Horizontal service rows */
.services-list {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.service-row {
    display: grid;
    grid-template-columns: 80px 280px 1fr 40px;
    align-items: center;
    gap: 0;
    padding: 36px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    max-width: 1280px;
    margin: 0 auto;
    cursor: default;
    transition: background 0.25s;
}

.service-row:hover {
    background: rgba(255,255,255,0.02);
}

.svc-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: rgba(43, 111, 224, 0.35);
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.service-row:hover .svc-num {
    color: var(--amber);
}

.svc-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1.05;
    padding-right: 40px;
}

.svc-desc {
    color: var(--mist);
    font-size: 12.5px;
    line-height: 1.85;
    max-width: 480px;
}

.svc-desc strong {
    color: rgba(43, 111, 224, 0.85);
    font-weight: 500;
}

.svc-arrow {
    color: var(--ash);
    font-size: 14px;
    justify-self: end;
    transition: color 0.25s, transform 0.25s;
}

.service-row:hover .svc-arrow {
    color: var(--amber);
    transform: translateX(4px);
}

/* Full-bleed image band */
.services-band {
    position: relative;
    height: 320px;
    overflow: hidden;
    margin-top: 0;
}

.services-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.7);
}

.services-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(8, 8, 8, 0.7) 0%,
        rgba(8, 8, 8, 0.2) 100%
    );
}

.services-band-inner {
    position: absolute;
    inset: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-stats {
    display: flex;
    gap: 64px;
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: 3.6rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-plus {
    font-size: 2.2rem;
    color: var(--amber);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--smoke);
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Brands ─────────────────────────────────────────────────── */
.brands {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.brands .section-heading { margin-bottom: 52px; }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.brand-item {
    background: var(--black);
    padding: 28px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 96px;
    transition: background 0.2s;
}

.brand-item:hover { background: var(--iron); }

.brand-item img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(0.65);
    transition: filter 0.3s;
}

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

/* ─── Clients ────────────────────────────────────────────────── */
.clients {
    padding: 100px 0;
    background: var(--steel);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.clients .section-heading { margin-bottom: 52px; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.client-item {
    background: var(--steel);
    padding: 36px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: background 0.2s;
}

.client-item:hover { background: var(--iron); }

.client-item img {
    max-width: 100%;
    max-height: 66px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(0.75);
    transition: filter 0.3s;
}

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

/* ─── Contact ────────────────────────────────────────────────── */
.contact {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
}

.contact-info {
    padding: 80px 64px 80px calc((100vw - 1280px) / 2 + 40px);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.section-label.amber { color: var(--amber); }

.contact .section-heading { margin-bottom: 36px; }

.contact-logo {
    width: 90px;
    height: auto;
    margin-bottom: 44px;
    filter: brightness(1.1);
}

.info-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-block h3 {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-block h3 i { font-size: 10px; }

.info-block p {
    color: var(--smoke);
    font-size: 12.5px;
    line-height: 1.75;
    margin-bottom: 4px;
}

.info-block a {
    color: var(--mist);
    text-decoration: none;
    font-size: 12.5px;
    line-height: 1.75;
    transition: color 0.2s;
}

.info-block a:hover { color: var(--amber); }

.advisor { margin-bottom: 12px; }

.advisor-name {
    color: var(--white) !important;
    margin-bottom: 2px !important;
}

.contact-map { /* fills its grid cell */ }

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
    filter: grayscale(20%) brightness(0.95);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--ash);
}

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

.footer-social a {
    color: var(--ash);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .service-row {
        grid-template-columns: 60px 220px 1fr 32px;
        padding: 28px 24px;
    }
    .contact-info {
        padding-left: 40px;
    }
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .top-bar-info { display: none; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--steel);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        z-index: 999;
    }

    .nav-links.open { display: flex; }
    .mobile-menu { display: flex; margin-left: auto; }
    .nav-cta-wrapper { display: none; }
    .nav-mobile-cta { display: block; margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }

    .hero {
        background-position: center center;
        min-height: 100svh;
        align-items: stretch;
    }

    .hero-overlay {
        background: rgba(8, 8, 8, 0.78);
    }

    .hero > .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        width: 100%;
    }

    .hero-content {
        text-align: center;
        padding: 80px 0;
        max-width: 100%;
    }

    .hero-top  { font-size: clamp(4rem, 14vw, 6rem); }
    .hero-accent { font-size: clamp(5rem, 18vw, 8rem); }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .service-row {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        padding: 28px 24px;
        gap: 0 16px;
    }

    .svc-num { grid-row: 1; grid-column: 1; }

    .svc-title {
        grid-row: 1;
        grid-column: 2;
        font-size: 1.6rem;
        padding-right: 0;
        margin-bottom: 12px;
    }

    .svc-desc {
        grid-row: 2;
        grid-column: 2;
        max-width: 100%;
    }

    .svc-arrow { display: none; }

    .services-band { height: 260px; }

    .services-band-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
        padding: 0 24px;
    }

    .services-stats { gap: 32px; }

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

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

    .contact-info {
        padding: 60px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .contact-map iframe { min-height: 360px; }

    .footer .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: 1fr 1fr; }
    .services-stats { gap: 20px; }
    .stat-num { font-size: 2.6rem; }
}
