/* --- BASE & VARIABLES --- */
@font-face {
    font-family: 'MarkOT Narrow Light';
    src: url('/styles/fonts/MarkOT-NarrowLight.woff2') format('woff2'),
         url('/styles/fonts/MarkOT-NarrowLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MarkOT Narrow';
    src: url('/styles/fonts/MarkOT-Narrow.woff2') format('woff2'),
         url('/styles/fonts/MarkOT-Narrow.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MarkOT Narrow Bold';
    src: url('/styles/fonts/MarkOT-NarrowBold.woff2') format('woff2'),
         url('/styles/fonts/MarkOT-NarrowBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #050505;
    --bg-mid: #0c0c0c;
    --bg-card: rgba(255,255,255,0.05);
    --bg-card-hover: rgba(255,255,255,0.1);
    --text-primary: #f8f8f8;
    --text-secondary: #dcdcdc;
    --text-muted: rgba(255,255,255,0.62);
    --accent-dark: #8B0000;
    --accent-primary: #C1121F;
    --accent-bright: #E63946;
    --accent-ago-orange: #FF9300;
    --accent-ago-orange-dark: #d37a00;
    --accent-ago-orange-bright: #ffa831;
    --accent-glow: rgba(230,57,70,0.18);
    --border-color: rgba(255,255,255,0.12);
    --border-subtle: rgba(255,255,255,0.06);
    --font-heading: 'MarkOT Narrow Bold', sans-serif;
    --font-body: 'MarkOT Narrow Light', sans-serif;
    --radius: 22px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 10%, rgba(201,18,31,0.18) 0%, transparent 20%),
        radial-gradient(circle at 85% 15%, rgba(230,57,70,0.12) 0%, transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent 35%, rgba(255,255,255,0.02) 70%, transparent);
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

::selection { background: var(--accent-primary); color: #fff; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 5.2rem); text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(3.4rem, 7vw, 6.4rem); line-height: 1.02; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

@media (max-width: 520px) {
    h1 { font-size: clamp(1.9rem, 7vw, 4.2rem); }
}

.break-words {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    white-space: normal;
}

p { font-size: 1.05rem; color: var(--text-secondary); max-width: 65ch; }

.gradient-text {
    background: linear-gradient(110deg, var(--accent-dark), var(--accent-primary), var(--accent-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 .gradient-text {
    display: block;
    font-size: 0.55em;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0.35em;
   
    background: linear-gradient(110deg, var(--accent-ago-orange-dark), var(--accent-ago-orange), var(--accent-ago-orange-bright));
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container { width: 90%; max-width: 1300px; margin: 0 auto; }

/* Cards */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-color);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,18,31,0.1);
}

/* Ambient / Glow */
.ambient-light {
    position: fixed;
    top: -18vh; right: -8vw;
    width: 52vw; height: 52vw;
    background: radial-gradient(circle, rgba(201,18,31,0.18) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    top: -150px; left: -150px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(230,57,70,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    will-change: transform;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    min-height: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-primary), var(--accent-bright));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 20px 60px rgba(201,18,31,0.18);
}
.btn-primary:hover {
    box-shadow: 0 26px 80px rgba(201,18,31,0.26);
    transform: translateY(-2px) scale(1.01);
}

.btn-outline {
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.08);
}

.btn-text {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-text .arrow { transition: transform 0.35s ease, color 0.35s ease; }
.btn-text:hover .arrow { transform: translateX(6px); color: var(--accent-primary); }
.btn-large { padding: 1.2rem 3rem; font-size: 1rem; }

/* Label / Eyebrow */
.label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1.4rem;
}
.label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-primary));
}

/* Divider accent */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
}

/* Video embed */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

/* ===================== NAVIGATION ===================== */
header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 20, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    line-height: 0;
}

.logo > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0.2rem 0;
}

.logo .logo-img {
    display: block;
    width: 200px;
    height: auto;
    padding-bottom:1px;
}

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


.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.35s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-primary));
    transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.burger { display: none; cursor: pointer; }
.burger div { width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: all 0.3s ease; }

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 9rem 5% 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(5,5,5,0.96) 0%, rgba(12,12,12,0.95) 42%, rgba(5,5,5,1) 100%);
}

main.sub{
    margin-bottom: 5rem;
}

.hero-content { max-width: 760px; position: relative; z-index: 2; }

.eyebrow {
    color: var( --accent-ago-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
}

.hero-sub {
    font-size: clamp(1rem, 1.9vw, 1.35rem);
    margin-bottom: 2.5rem;
    max-width: 660px;
    color: var(--text-secondary);
}

.hero-buttons { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-visual {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 60%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    animation: float 14s infinite ease-in-out alternate;
}
.shape-1 { width: 420px; height: 420px; background: linear-gradient(135deg, rgba(201,18,31,0.28), rgba(193,18,31,0.05)); top: 15%; right: 8%; }
.shape-2 { width: 500px; height: 500px; background: linear-gradient(135deg, rgba(230,57,70,0.3), rgba(193,18,31,0.05)); bottom: 5%; right: 18%; opacity: 0.35; animation-delay: -7s; }

@keyframes float {
    0% { transform: translate(0,0) scale(1); }
    100% { transform: translate(-28px, 42px) scale(1.05); }
}

/* Hero scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bounce 2.4s infinite;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================== SECTIONS ===================== */
section { padding: 8rem 0; }

.section-header { margin-bottom: 4rem; }
.section-header p { max-width: 58ch; color: var(--text-secondary); }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-primary), var(--accent-bright));
    z-index: 1200;
    transition: width 0.2s ease;
}

/* ===================== ANGEBOTE (Value Prop) ===================== */
.value-prop { background: var(--bg-mid); }

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

..value-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.value-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent-primary), var(--accent-bright));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.value-item:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.18); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.value-item:hover::before { transform: scaleX(1); }

.value-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(193,18,31,0.12);
    position: absolute;
    top: 1rem; right: 1rem;
    line-height: 1;
    pointer-events: none;
}

/* ===================== QUOTE SECTION ===================== */
.quote-section {
    padding: 5rem 0;
    position: relative;
}
.quote-section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.08); }

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.quote-inner.reverse { direction: rtl; }
.quote-inner.reverse > * { direction: ltr; }

.quote-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.quote-badge .q-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.quote-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 50ch;
    line-height: 1.8;
}

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

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: calc(var(--radius) + 4px);
    padding: 2.4rem 2rem;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    min-height: 320px;
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,18,31,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,0.22); box-shadow: 0 32px 90px rgba(0,0,0,0.2); }
.service-card:hover::after { opacity: 1; }

.service-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.12em;
    margin-bottom: 1.1rem;
    opacity: 0.85;
}

.service-card h3 { margin-top: 0.65rem; }

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; }

/* ===================== USE CASES ===================== */
.use-cases { background: var(--bg-mid); }

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.use-case-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
    min-height: 540px;
}
.use-case-card:hover { transform: translateY(-9px); border-color: rgba(255,255,255,0.24); box-shadow: 0 34px 96px rgba(0,0,0,0.28); }

.use-case-image {
    width: 100%; height: clamp(420px, 42vh, 520px);
    background-color: #0b0c14;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transform-origin: center center;
    transition: opacity 1.2s ease;
    opacity: 1;
    display: block;
    line-height: 0;
    backface-visibility: hidden;
    will-change: opacity, transform;
    box-shadow: inset 0 -1px 1px rgba(0,0,0,0.25);
}
.use-case-image.animate-on-scroll {
    transform: translateY(32px);
    opacity: 0;
}
.use-case-image.fade-in-up {
    transform: translateY(0);
    opacity: 1;
}
.use-case-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, transparent 0%, rgba(5,5,5,0.9) 100%);
    pointer-events: none;
    transform: translateZ(0);
    transition: transform 1.2s ease;
    box-shadow: inset 0 -4px 18px rgba(0,0,0,0.22);
    will-change: transform;
    display:none;
}

.use-case-card:hover .use-case-image::after {
    transform: scale(1.04);
}

.bg-image {
    display: block;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 1.2s ease;
}
.use-case-card:hover .bg-image { transform: scale(1.16); }

.project-1 { background: linear-gradient(135deg, rgba(201,18,31,0.38), rgba(193,18,31,0.05)), #111; }
.project-2 { background: linear-gradient(135deg, rgba(230,57,70,0.32), rgba(193,18,31,0.05)), #111; }
.project-3 { background: linear-gradient(135deg, rgba(230,57,70,0.38), rgba(193,18,31,0.18)), #111; }

.album-cover {
    max-width: 780px;
    margin: 2rem auto 3rem;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}

.album-cover picture,
.album-cover img {
    display: block;
    width: 100%;
    height: auto;
}

.album-cover img {
    object-fit: contain;
    object-position: center;
}

.album-cover-caption {
    padding: 1rem 1.15rem 1.3rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.use-case-content { padding: 2rem; flex-grow: 1; }

.use-case-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(201,18,31,0.12);
    color: var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(201,18,31,0.2);
}
.use-case-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.use-case-card p { font-size: 0.9rem; }

/* ===================== PROCESS ===================== */
.process { background: var(--bg-dark); }

.timeline {
    position: relative;
    max-width: 760px;
    margin: 3.5rem auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 18px;
    height: 100%; width: 2px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--accent-bright));
    opacity: 0.25;
}

.timeline-item {
    position: relative;
    padding-left: 56px;
    margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 12px; top: 22px;
    width: 14px; height: 14px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-primary);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
}
.timeline-content:hover { border-color: var(--border-color); transform: translateX(4px); }
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

/* ===================== STATS / IMPACT ===================== */
.impact { background: var(--bg-mid); text-align: center; }

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3.5rem;
}

.stat-item h4 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--accent-primary);
    display: inline-block;
    margin: 0;
    line-height: 1;
}
.stat-item span { font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: var(--accent-primary); }
.stat-item p {
    margin-top: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

/* ===================== COST CUTTING / BANNER ===================== */
.cost-cutting { background: var(--bg-dark); }

.cost-banner {
    background: linear-gradient(135deg, rgba(201,18,31,0.1), rgba(230,57,70,0.05));
    border: 1px solid rgba(201,18,31,0.2);
    border-radius: var(--radius);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}
.cost-banner::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,18,31,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.cost-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cost-content h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.cost-content p { margin: 0 auto; font-size: 1.1rem; }

/* ===================== CTA ===================== */
.cta { background: var(--bg-mid); }

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(201,18,31,0.12), rgba(230,57,70,0.06));
    border: 1px solid rgba(201,18,31,0.2);
    border-radius: var(--radius);
    padding: 5rem 2rem;
}
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { margin: 0 auto 2.5rem; max-width: 560px; }

/* ===================== FOOTER ===================== */
footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, #060606 0%, #050505 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h2 { font-size: 1.9rem; margin-bottom: 0.6rem; }
.footer-brand p { font-size: 0.95rem; color: var(--text-secondary); }

.footer-links a { color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent-primary); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer-links { display: flex; gap: 4rem; flex-wrap: wrap; }

.link-group h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}
.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.link-group a:hover { color: var(--accent-primary); }

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* ===================== ANIMATIONS ===================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-up { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media screen and (max-width: 900px) {
    .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .quote-inner.reverse { direction: ltr; }
}

@media screen and (max-width: 900px) {
    .nav-links {
        position: fixed; right: -100%; top: 0;
        height: 100vh; width: 100%;
        background: rgba(11,12,20,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }
    .nav-links.nav-active { right: 0; }
    .nav-links li { margin: 1.5rem 0; }
    .nav-links a { font-size: 1.4rem; }
    .nav-cta { display: none; }
    .burger { display: block; z-index: 1001; }
    .burger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 5px); }
    .burger.toggle .line2 { opacity: 0; }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-5px, -5px); }
    .hero { padding-top: 10rem; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { opacity: 0.25; }
    .cursor-glow { display: none; }
    .timeline::before { left: 0; }
    .timeline-item { padding-left: 28px; }
    .timeline-dot { left: -7px; }
    .stats-grid { gap: 2rem; flex-direction: column; }
    section { padding: 5rem 0; }
}
