/* ========================================
   SPEEGO LOGISTICS LLC — Landing Page
   Stylesheet
   ======================================== */

:root {
    /* Brand Palette — derived from official logo */
    --navy-deepest: #050d1f;
    --navy-deep: #0a1733;
    --navy: #102c5c;
    --navy-mid: #1a3d7a;
    --navy-light: #2855a8;

    --orange: #ee6322;
    --orange-bright: #f37021;
    --orange-glow: rgba(243, 112, 33, 0.45);
    --orange-soft: rgba(243, 112, 33, 0.08);

    --white: #ffffff;
    --bone: #f5f3ee;
    --grey-100: #e8ebf2;
    --grey-300: #aab3c5;
    --grey-500: #6b7693;
    --grey-700: #2e3a55;

    --cyan-accent: #5fc4e8;

    /* Type */
    --font-display: 'Syne', 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Layout */
    --container: 1280px;
    --gutter: clamp(1.25rem, 4vw, 3rem);

    /* Easing */
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--bone);
    background: var(--navy-deepest);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease-smooth); }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

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

/* ========================================
   ANIMATED BACKGROUND LAYERS
   ======================================== */

.bg-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-grid {
    background-image:
        linear-gradient(rgba(40, 85, 168, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 85, 168, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
}

.bg-glow {
    background:
        radial-gradient(circle at 20% 15%, rgba(243, 112, 33, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(40, 85, 168, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(243, 112, 33, 0.08) 0%, transparent 60%);
}

.bg-noise {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem var(--gutter);
    transition: all 0.3s var(--ease-smooth);
    background: rgba(5, 13, 31, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(40, 85, 168, 0.15);
}

.nav.scrolled {
    background: rgba(5, 13, 31, 0.85);
    border-bottom-color: rgba(40, 85, 168, 0.3);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo img {
    height: 38px;
    width: auto;
    filter: brightness(1.15) drop-shadow(0 0 12px rgba(243, 112, 33, 0.25));
}

.nav-menu {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--grey-300);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--orange);
    color: var(--orange-bright);
    border-radius: 2px;
    transition: all 0.25s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: translateX(-101%);
    transition: transform 0.3s var(--ease-smooth);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--white);
}

.nav-cta:hover::before {
    transform: translateX(0);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem var(--gutter) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.hero-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    flex: 1;
    padding: 4rem 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--cyan-accent);
    margin-bottom: 1.75rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(95, 196, 232, 0.25);
    border-radius: 100px;
    background: rgba(95, 196, 232, 0.05);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--orange-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-glow), 0 0 4px var(--orange-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line em {
    font-style: italic;
    font-weight: 600;
    color: var(--cyan-accent);
}

.title-line .accent {
    display: inline-block;
    color: var(--orange-bright);
    position: relative;
}

.title-line .accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
}

.hero-sub {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.65;
    color: var(--grey-300);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 24px -10px var(--orange-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange) 100%);
    transition: transform 0.3s var(--ease-smooth);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px var(--orange-glow);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-primary svg {
    transition: transform 0.25s var(--ease-smooth);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 85, 168, 0.2);
    max-width: 560px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--orange-bright);
    margin-bottom: 0.4rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--grey-300);
    line-height: 1.4;
    text-transform: uppercase;
}

/* Globe Visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.globe-frame {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.globe-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid var(--orange);
    opacity: 0.7;
}

.globe-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.globe-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.globe-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.globe-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.globe-readout {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--grey-300);
    z-index: 2;
}

.globe-readout.top { top: 1.75rem; }
.globe-readout.bottom { bottom: 1.75rem; }

.globe-readout .blink {
    color: var(--orange-bright);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

#globe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Ticker */
.ticker {
    overflow: hidden;
    border-top: 1px solid rgba(40, 85, 168, 0.2);
    border-bottom: 1px solid rgba(40, 85, 168, 0.2);
    padding: 1.25rem 0;
    margin-top: auto;
    background: rgba(10, 23, 51, 0.4);
}

.ticker-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    width: max-content;
}

.ticker-track span {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--grey-300);
    text-transform: uppercase;
}

.ticker-track .ticker-dot {
    color: var(--orange-bright);
    font-size: 0.6rem;
}

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

/* ========================================
   SECTION COMMON
   ======================================== */

section {
    position: relative;
    z-index: 1;
    padding: 8rem var(--gutter);
}

.section-head {
    max-width: var(--container);
    margin: 0 auto 5rem;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--orange-bright);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-tag .tag-num {
    padding: 0.25rem 0.6rem;
    background: var(--orange-soft);
    border: 1px solid rgba(243, 112, 33, 0.3);
    border-radius: 2px;
    color: var(--orange-bright);
}

.section-tag.light {
    color: var(--orange-bright);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--cyan-accent);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--grey-300);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(160deg, rgba(16, 44, 92, 0.4) 0%, rgba(10, 23, 51, 0.6) 100%);
    border: 1px solid rgba(40, 85, 168, 0.25);
    border-radius: 4px;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--orange-soft) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 112, 33, 0.4);
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.card-num {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-bright);
    letter-spacing: 0.1em;
}

.card-icon {
    color: var(--orange-bright);
    transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover .card-icon {
    transform: rotate(15deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--grey-300);
    margin-bottom: 1.5rem;
}

.card-list {
    border-top: 1px solid rgba(40, 85, 168, 0.25);
    padding-top: 1.25rem;
}

.card-list li {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--grey-300);
    padding: 0.45rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-bright);
}

/* ========================================
   PROCESS / PIPELINE
   ======================================== */

.process {
    background:
        linear-gradient(180deg, transparent 0%, rgba(16, 44, 92, 0.15) 50%, transparent 100%);
}

.pipeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.pipeline-line {
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg,
        rgba(243, 112, 33, 0.5) 0%,
        rgba(40, 85, 168, 0.4) 50%,
        rgba(243, 112, 33, 0.2) 100%);
}

.pipeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    align-items: flex-start;
}

.pipeline-step:last-child { margin-bottom: 0; }

.step-marker {
    position: relative;
    width: 56px;
    height: 56px;
    margin-left: -2rem;
    display: grid;
    place-items: center;
    background: var(--navy-deep);
    border: 1px solid var(--orange);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange-bright);
    z-index: 2;
    flex-shrink: 0;
}

.step-marker::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed rgba(243, 112, 33, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

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

.step-body {
    padding: 1rem 1.5rem 1rem 0;
}

.step-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--cyan-accent);
    margin-bottom: 0.5rem;
}

.step-body h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.step-body p {
    color: var(--grey-300);
    line-height: 1.65;
}

/* ========================================
   ABOUT
   ======================================== */

.about-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual { position: relative; }

.hud-panel {
    position: relative;
    padding: 2.5rem 2rem;
    background:
        linear-gradient(160deg, rgba(16, 44, 92, 0.5) 0%, rgba(10, 23, 51, 0.7) 100%);
    border: 1px solid rgba(243, 112, 33, 0.25);
    border-radius: 4px;
}

.hud-panel::before {
    content: '/// ENTITY READOUT';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--navy-deepest);
    padding: 0 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--orange-bright);
}

.hud-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--orange);
}
.hud-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hud-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.hud-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hud-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(40, 85, 168, 0.3);
    font-family: var(--font-mono);
    font-size: 0.78rem;
}

.hud-line:last-child { border-bottom: none; }

.hud-key {
    color: var(--grey-300);
    letter-spacing: 0.1em;
}

.hud-val {
    color: var(--white);
    text-align: right;
    letter-spacing: 0.05em;
}

.hud-val.accent-text {
    color: var(--orange-bright);
}

.about-content .section-tag {
    margin-bottom: 1.25rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--grey-300);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.btn.inline {
    margin-top: 1rem;
}

/* ========================================
   ADVANTAGES
   ======================================== */

.advantages-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(40, 85, 168, 0.25);
    border: 1px solid rgba(40, 85, 168, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.advantage {
    padding: 2.5rem 2rem;
    background: var(--navy-deepest);
    transition: background 0.3s var(--ease-smooth);
    position: relative;
}

.advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.4s var(--ease-smooth);
}

.advantage:hover {
    background: rgba(16, 44, 92, 0.4);
}

.advantage:hover::before {
    width: 100%;
}

.advantage-num {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--orange-bright);
    margin-bottom: 1.25rem;
}

.advantage h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.advantage p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--grey-300);
}

/* ========================================
   CONTACT
   ======================================== */

.contact {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(243, 112, 33, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(16, 44, 92, 0.3) 100%);
    text-align: center;
}

.contact-inner {
    max-width: var(--container);
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 1rem 0 1.5rem;
}

.contact-title em {
    font-style: italic;
    font-weight: 600;
    color: var(--orange-bright);
}

.contact-sub {
    font-size: 1.1rem;
    color: var(--grey-300);
    max-width: 580px;
    margin: 0 auto 4rem;
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.contact-card {
    padding: 2.25rem;
    background: linear-gradient(160deg, rgba(16, 44, 92, 0.45) 0%, rgba(10, 23, 51, 0.65) 100%);
    border: 1px solid rgba(40, 85, 168, 0.3);
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--orange-soft) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.contact-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -16px var(--orange-glow);
}

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

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

.contact-icon {
    color: var(--orange-bright);
    margin-bottom: 1.25rem;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--cyan-accent);
    margin-bottom: 0.6rem;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    word-break: break-word;
}

.contact-action {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--orange-bright);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.25s var(--ease-smooth);
}

.contact-card:hover .contact-action {
    gap: 0.7rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--navy-deepest);
    border-top: 1px solid rgba(40, 85, 168, 0.2);
    padding: 5rem var(--gutter) 2rem;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--grey-300);
    line-height: 1.6;
    margin-top: 1.25rem;
    max-width: 320px;
}

.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(1.1);
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--orange-bright);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-col ul li {
    padding: 0.35rem 0;
    font-size: 0.88rem;
    color: var(--grey-300);
    line-height: 1.5;
}

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

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 85, 168, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--grey-300);
    letter-spacing: 0.04em;
}

/* ========================================
   ENTRANCE ANIMATIONS
   ======================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-up.in {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    .hero-visual {
        max-width: 480px;
        order: -1;
    }
    .services-grid,
    .advantages-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem var(--gutter); }

    .nav-menu { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.mobile-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--navy-deep);
        border-top: 1px solid rgba(40, 85, 168, 0.3);
        padding: 1.5rem var(--gutter);
        gap: 1.25rem;
    }

    .hero {
        padding: 6rem var(--gutter) 0;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.62rem; }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pipeline {
        padding-left: 1.5rem;
    }

    .step-marker {
        width: 48px;
        height: 48px;
    }

    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .contact-title { font-size: 2.4rem; }
    .service-card,
    .contact-card,
    .advantage { padding: 1.75rem; }
    .globe-readout { font-size: 0.55rem; gap: 0.75rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
