/* ============================================
   ANQAR — Main Stylesheet
   WordPress-ready: classes zijn clean en herbruikbaar
   ============================================ */

@font-face {
    font-family: 'Ethnocentric';
    src: url('../fonts/Ethnocentric-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@media (max-width: 1024px) {
    body.nav-open {
        overflow: hidden;
    }
}

/* ---------- CSS Variables ---------- */
:root {
    /* Kleuren — pas deze aan voor je branding */
    --color-bg: #0a0a0d;
    --color-bg-secondary: #141418;
    --color-surface: #1c1c22;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-heading: #ffffff;
    --color-text: #e5e5e8;
    --color-text-muted: #8a8a95;
    --color-primary: #ff2e4c;
    --color-primary-hover: #e01030;
    --color-primary-soft: rgba(255, 46, 76, 0.15);
    --color-accent: #ff2e4c;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px) 0;
    --container-width: 100%;
    --container-padding: 0 clamp(20px, 5vw, 80px);

    /* Transitions */
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    background: #06131f;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    transition: background-color 0.15s linear;
}

/* ---------- Underwater caustics ---------- */
.caustics {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
}

main, .site-footer {
    position: relative;
    z-index: 3;
}

.floating-particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    pointer-events: none;
    mix-blend-mode: screen;
}

.caustics span {
    position: absolute;
    display: block;
    width: 60vmax;
    height: 60vmax;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    will-change: transform, opacity;
}

.caustics span:nth-child(1) {
    top: -20%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 46, 76, 0.5) 0%, transparent 60%);
    animation: causticDrift1 22s ease-in-out infinite;
}
.caustics span:nth-child(2) {
    top: 10%;
    right: -15%;
    background: radial-gradient(circle, rgba(224, 16, 48, 0.4) 0%, transparent 60%);
    animation: causticDrift2 28s ease-in-out infinite;
}
.caustics span:nth-child(3) {
    bottom: -20%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 92, 122, 0.35) 0%, transparent 60%);
    animation: causticDrift3 26s ease-in-out infinite;
}
.caustics span:nth-child(4) {
    top: 30%;
    left: 40%;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle, rgba(255, 150, 170, 0.3) 0%, transparent 60%);
    animation: causticDrift4 20s ease-in-out infinite;
}
.caustics span:nth-child(5) {
    bottom: 10%;
    right: 10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle, rgba(185, 20, 45, 0.45) 0%, transparent 60%);
    animation: causticDrift5 30s ease-in-out infinite;
}
.caustics span:nth-child(6) {
    top: -10%;
    left: 35%;
    width: 35vmax;
    height: 35vmax;
    background: radial-gradient(circle, rgba(255, 180, 200, 0.25) 0%, transparent 60%);
    animation: causticDrift6 24s ease-in-out infinite;
}

@keyframes causticDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1);      opacity: 0.35; }
    33%      { transform: translate(20vw, 15vh) scale(1.2); opacity: 0.5; }
    66%      { transform: translate(-10vw, 25vh) scale(0.9); opacity: 0.3; }
}
@keyframes causticDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.3; }
    50%      { transform: translate(-25vw, 30vh) scale(1.3); opacity: 0.5; }
}
@keyframes causticDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.3; }
    40%      { transform: translate(30vw, -20vh) scale(1.1); opacity: 0.45; }
    80%      { transform: translate(-15vw, -10vh) scale(1.3); opacity: 0.25; }
}
@keyframes causticDrift4 {
    0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.25; }
    50%      { transform: translate(-20vw, -15vh) scale(1.4); opacity: 0.4; }
}
@keyframes causticDrift5 {
    0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.35; }
    35%      { transform: translate(-20vw, 10vh) scale(0.9); opacity: 0.5; }
    70%      { transform: translate(15vw, -20vh) scale(1.2); opacity: 0.3; }
}
@keyframes causticDrift6 {
    0%, 100% { transform: translate(0, 0) scale(1);       opacity: 0.2; }
    50%      { transform: translate(25vw, 20vh) scale(1.3); opacity: 0.4; }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 9vw, 9rem);
    letter-spacing: -0.02em;
    line-height: 0.95;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

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

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: transparent;
    padding: 14px 0;
}

.site-header.on-light {
    background: transparent;
}

.site-header.on-light .logo img {
    filter: brightness(0);
}

.site-header.on-light .btn-lets-talk {
    color: #0a0a0d;
}

.site-header.on-light .header-divider {
    background: #0a0a0d;
}

.site-header.on-light .menu-toggle span {
    border-color: #0a0a0d;
}

.site-header.on-light .menu-toggle.active span {
    border-color: #ffffff;
}

.site-header.on-light .arrow {
    color: var(--color-primary);
}

.site-header.on-light .main-nav {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
}

.site-header.on-light .main-nav .primary-nav a,
.site-header.on-light .main-nav .secondary-nav a,
.site-header.on-light .main-nav .nav-num,
.site-header.on-light .main-nav .menu-label {
    color: #ffffff;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.header-divider {
    width: 1px;
    height: 14px;
    background: #ffffff;
    border-radius: 2px;
}

.main-nav {
    position: fixed;
    top: 14px;
    right: clamp(20px, 5vw, 80px);
    width: min(420px, calc(100vw - 80px));
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 56px 64px 48px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    filter: blur(30px);
    transition:
        opacity 0.9s ease,
        transform 1s ease,
        filter 1s ease,
        visibility 1s ease;
    z-index: 999;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    filter: blur(0);
    z-index: 1002;
}

.main-nav.open ~ .header-actions .btn-lets-talk,
.main-nav.open ~ .header-actions .header-divider {
    opacity: 0;
    pointer-events: none;
}

.main-nav ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav.open ul li {
    opacity: 1;
    transform: translateX(0);
}

.main-nav.open ul li:nth-child(1) { transition-delay: 0.15s; }
.main-nav.open ul li:nth-child(2) { transition-delay: 0.22s; }
.main-nav.open ul li:nth-child(3) { transition-delay: 0.29s; }
.main-nav.open ul li:nth-child(4) { transition-delay: 0.36s; }
.main-nav.open ul li:nth-child(5) { transition-delay: 0.43s; }

.menu-label {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: #000000;
    border: none;
    color: var(--color-heading);
    font-family: 'Aventa', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-bottom: 56px;
}

.main-nav .primary-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    counter-reset: navcount;
    margin-bottom: 48px;
}

.main-nav .primary-nav li {
    counter-increment: navcount;
}

.main-nav .primary-nav a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-heading);
    letter-spacing: 0.04em;
}

.nav-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.4em;
    color: #ffffff;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    align-self: center;
}

.main-nav .primary-nav a:hover .nav-num {
    opacity: 1;
    color: var(--color-heading);
}

.main-nav .primary-nav a:hover .anchor-icon {
    color: var(--color-heading);
    transform: rotate(-8deg) scale(1.1);
}

.main-nav .secondary-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-nav .secondary-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #ffffff;
}

.main-nav .secondary-nav a:hover,
.main-nav .primary-nav a:hover {
    color: var(--color-heading);
}

.main-nav a::after {
    display: none;
}

.btn-lets-talk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    background: transparent;
    transition: color 0.3s ease;
}

.btn-lets-talk .arrow-wrap {
    position: relative;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    overflow: hidden;
}

.btn-lets-talk .arrow {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    color: #ff2e4c;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-lets-talk .arrow-2 {
    transform: translate(-100%, 100%);
}

.btn-lets-talk:hover .arrow {
    transform: translate(100%, -100%);
}

.btn-lets-talk:hover .arrow-2 {
    transform: translate(0, 0);
}

.btn-lets-talk:hover {
    color: #e6e6ff;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 36px;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-heading);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 9px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 1003;
    width: 80px;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 56px;
    height: 0;
    border-top: 2px solid var(--color-heading);
    background: none;
    border-radius: 0;
    transition: all var(--transition);
}

.menu-toggle span {
    transition:
        margin-left 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        transform 1.1s cubic-bezier(0.65, 0, 0.35, 1),
        filter 1s ease;
}

.menu-toggle.pulsing span {
    animation: barBlurPulse 1s ease forwards;
}

@keyframes barBlurPulse {
    0%   { filter: blur(0); }
    50%  { filter: blur(6px); }
    100% { filter: blur(0); }
}

.menu-toggle span:last-child {
    margin-left: 0;
}

.menu-toggle:hover span:last-child {
    margin-left: 0;
}

.menu-toggle.active span {
    margin-left: 0 !important;
    transition:
        margin-left 0.3s cubic-bezier(0.65, 0, 0.35, 1),
        transform 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.1s;
}

.menu-toggle.active span:first-child {
    transform: translateY(5.5px) rotate(405deg) scaleX(0.6);
}

.menu-toggle.active span:last-child {
    transform: translateY(-5.5px) rotate(-405deg) scaleX(0.6);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 140px;
    background: transparent;
    overflow: hidden;
}

.hero-video-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.hero::after {
    display: none;
}

/* ---------- Hero Fog / Mist ---------- */
.hero-fog {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.8) 70%, black 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.8) 70%, black 100%);
}

.fog-layer {
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 300%;
    height: 100%;
    background-repeat: repeat-x;
    will-change: transform;
}

.fog-1 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.04) 10%,
        rgba(255,255,255,0.07) 20%,
        rgba(255,255,255,0.03) 30%,
        transparent 40%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.08) 60%,
        rgba(255,255,255,0.04) 70%,
        transparent 80%,
        rgba(255,255,255,0.06) 90%,
        transparent 100%);
    animation: fogDrift 30s linear infinite;
    opacity: 0.9;
}

.fog-2 {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.06) 15%,
        rgba(255,255,255,0.03) 25%,
        transparent 35%,
        rgba(255,255,255,0.07) 45%,
        rgba(255,255,255,0.04) 55%,
        transparent 65%,
        rgba(255,255,255,0.05) 75%,
        rgba(255,255,255,0.08) 85%,
        transparent 100%);
    animation: fogDrift 20s linear infinite;
    opacity: 0.7;
    bottom: -5%;
}

.fog-3 {
    background: linear-gradient(90deg,
        rgba(255,255,255,0.05) 0%,
        transparent 12%,
        rgba(255,255,255,0.07) 22%,
        rgba(255,255,255,0.03) 35%,
        transparent 45%,
        rgba(255,255,255,0.06) 58%,
        transparent 68%,
        rgba(255,255,255,0.04) 80%,
        rgba(255,255,255,0.07) 92%,
        transparent 100%);
    animation: fogDrift 15s linear infinite;
    opacity: 0.5;
    bottom: -10%;
}

@keyframes fogDrift {
    0%   { transform: translateX(0); }
    100% { transform: translateX(33.33%); }
}



/* ---------- HUD Overlay ---------- */
.hero-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Depth scale — left side */
.hud-depth-scale {
    position: absolute;
    left: clamp(12px, 2vw, 30px);
    top: 15%;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 10px;
}

.hud-depth-scale span {
    font-family: 'Aventa', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.15);
}

/* Scan line — sweeps top to bottom */
.hud-scanline {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.06) 80%, transparent 100%);
    animation: scanDown 8s linear infinite;
}

@keyframes scanDown {
    0%   { top: -2%; }
    100% { top: 102%; }
}

/* Horizontal depth lines */
.hud-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.04);
}

.hud-line-1 { top: 30%; }
.hud-line-2 { top: 55%; }
.hud-line-3 { top: 80%; }

/* Data coordinates */
.hud-coord {
    position: absolute;
    font-family: 'Aventa', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
}

.hud-coord-1 {
    top: 29%;
    right: clamp(12px, 3vw, 40px);
}

.hud-coord-2 {
    top: 54%;
    right: clamp(12px, 3vw, 40px);
    animation: hudBlink 4s ease-in-out infinite;
}

.hud-coord-3 {
    top: 79%;
    right: clamp(12px, 3vw, 40px);
    color: rgba(255, 46, 76, 0.2);
}

@keyframes hudBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* Sonar pulse — center */
.hud-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: sonarPulse 5s ease-out infinite;
}

.hud-pulse::after {
    content: '';
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    animation: sonarPulse 5s ease-out 1.5s infinite;
}

@keyframes sonarPulse {
    0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
    .hud-depth-scale { display: none; }
    .hud-coord { display: none; }
}

.water-effect {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.18;
    mix-blend-mode: screen;
    filter: blur(6px);
    mask-image: linear-gradient(180deg, white 0%, white 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, white 0%, white 40%, transparent 100%);
}


.hero > .container {
    position: relative;
    z-index: 2;
}

.scroll-scene {
    position: relative;
    background: #0a0a0d;
    clip-path: inset(0);
}



.hero-anchor3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
}

.hero-anchor3d.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

@keyframes anchorFadeIn {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.hero-anchor3d canvas {
    display: block;
    width: 100%;
    height: 100%;
}



.hero > .container {
    position: relative;
    z-index: 2;
}

/* ---------- Futuristic Anchor ---------- */
.hero-anchor {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 620px;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-anchor .anchor-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(147, 197, 253, 0.7) 0%,
        rgba(59, 130, 246, 0.45) 20%,
        rgba(15, 82, 186, 0.2) 45%,
        transparent 70%);
    filter: blur(60px);
    animation: anchorPulse 5s ease-in-out infinite;
}

.hero-anchor .anchor-orbit {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(147, 197, 253, 0.25);
    box-shadow:
        inset 0 0 60px rgba(59, 130, 246, 0.15),
        0 0 80px rgba(59, 130, 246, 0.2);
    animation: orbitSpin 30s linear infinite;
}

.hero-anchor .anchor-orbit::before,
.hero-anchor .anchor-orbit::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 20px 4px rgba(147, 197, 253, 0.9);
}

.hero-anchor .anchor-orbit::before {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-anchor .anchor-orbit::after {
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-anchor .anchor-orbit-2 {
    width: 360px;
    height: 360px;
    border-color: rgba(96, 165, 250, 0.3);
    animation: orbitSpin 22s linear infinite reverse;
    transform: rotate(45deg);
}

.hero-anchor .anchor-svg {
    position: relative;
    width: 340px;
    height: auto;
    filter:
        drop-shadow(0 0 25px rgba(147, 197, 253, 0.85))
        drop-shadow(0 0 70px rgba(59, 130, 246, 0.55))
        drop-shadow(0 0 140px rgba(15, 82, 186, 0.35));
    animation: anchorFloat 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes anchorPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}

@keyframes anchorFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-12px) rotate(1deg); }
}

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

.hero-anchor .anchor-orbit-2 {
    animation-name: orbitSpinRev;
}

@keyframes orbitSpinRev {
    from { transform: rotate(45deg); }
    to   { transform: rotate(-315deg); }
}

@media (max-width: 768px) {
    .hero-anchor {
        width: 320px;
        height: 420px;
        opacity: 0.35;
    }
    .hero-anchor .anchor-svg { width: 200px; }
    .hero-anchor .anchor-orbit { width: 320px; height: 320px; }
    .hero-anchor .anchor-orbit-2 { width: 260px; height: 260px; }
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 600px;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7.5vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: 65%;
    margin-top: 18vh;
    position: relative;
    z-index: 2;
    text-align: right;
}

.word-reveal {
    display: inline-block;
    opacity: 0;
    filter: blur(14px);
    transform: translateY(14px);
    animation: wordBlurIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordBlurIn {
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-text .hero-sub,
.hero-text .hero-cta {
    margin-left: 0;
}

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.hero-bottom .scroll-discover {
    font-family: 'Aventa', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    flex-shrink: 0;
}

.hero-bottom .hero-bottom-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-bottom .scroll-arrow {
    font-size: 1.1rem;
    color: #ffffff;
    flex-shrink: 0;
}

.hero-right-block {
    position: absolute;
    top: calc(18vh + 140px);
    right: 4vw;
    width: 620px;
    z-index: 3;
}

.hero-ms-badge {
    height: clamp(75px, 7.5vw, 110px);
    width: auto;
    margin-top: 24px;
    margin-left: -35px;
    display: block;
}

.hero-sub-right {
    margin: 0;
    width: 100%;
    max-width: none;
    font-family: 'Aventa', sans-serif;
    font-size: 1.6rem;
    line-height: 1.55;
    color: #ffffff;
    text-align: left;
}

.hero-quote {
    margin: 32px 0 0 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hero-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #ffffff;
}

.quote-icon {
    flex-shrink: 0;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0;
    filter: blur(14px);
    transform: translateY(14px);
    animation: wordBlurIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards;
}

@keyframes anchorIconIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-text .hero-cta {
    margin-right: 60px;
}

.hero-text .hero-cta {
    margin-left: 60px;
    margin-top: 24px;
}

.hero-wrap-title {
    position: absolute;
    inset: 0;
    margin: 0;
    pointer-events: none;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-heading);
    z-index: 3;
}

.hero-wrap-title span {
    position: absolute;
    display: block;
    white-space: nowrap;
}

.hero-wrap-title .word-tl {
    top: 50%;
    left: 50%;
    transform: translate(calc(-100% - 6vw), -50%);
}

.hero-below-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--color-heading);
    text-align: center;
    z-index: 3;
    pointer-events: none;
    width: 100%;
}

.hero-side {
    position: absolute;
    top: 22vh;
    right: clamp(20px, 5vw, 80px);
    text-align: left;
    z-index: 2;
}

.hero-side-label {
    display: block;
    font-family: 'Aventa', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-side-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1;
    color: var(--color-heading);
    letter-spacing: 0.04em;
}

.hero-text .eyebrow {
    display: inline-block;
    font-family: 'Aventa', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    padding: 6px 14px;
    border: 1px solid rgba(255, 46, 76, 0.35);
    border-radius: 999px;
    margin-bottom: 32px;
}

.hero-text .hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    font-family: 'Aventa', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-text .hero-cta .btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.hero-text .hero-cta .btn .arrow {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-text .hero-cta .btn:hover .arrow {
    transform: translate(4px, -4px);
}

.hero .highlight {
    color: var(--color-primary);
}

.hero-sub {
    font-family: 'Aventa', sans-serif;
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   SCROLL SCENE (hero + journey share anchor)
   ============================================ */
.pinned-anchor {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    margin-bottom: -100vh;
}

.pinned-anchor canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.anchor-journey {
    position: relative;
    z-index: 2;
}

.journey-steps {
    position: relative;
    z-index: 2;
}

.journey-step {
    min-height: 120vh;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0 clamp(20px, 5vw, 80px);
}

.journey-step.align-left { justify-content: flex-start; }
.journey-step.align-right { justify-content: flex-end; }
.journey-step.align-center { justify-content: center; text-align: center; }

.step-final {
    top: auto !important;
    bottom: 35vh;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    text-align: center;
    max-width: 800px !important;
}

.step-final h2 {
    font-size: clamp(4rem, 10vw, 9rem);
    color: #ffffff;
    letter-spacing: 0.03em;
}

.step-content {
    max-width: 560px;
    position: fixed;
    top: 35vh;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.journey-step.align-left .step-content { left: clamp(20px, 5vw, 80px); }
.journey-step.align-right .step-content { right: clamp(20px, 5vw, 80px); }
.journey-step.align-center .step-content {
    left: 50%;
    transform: translateX(-50%);
}

.step-content.visible {
    opacity: 1;
}

.step-word {
    display: inline-block;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-word.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.step-num {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.step-sub {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.step-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.step-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .step-content { max-width: 100%; }
    .journey-anchor { opacity: 0.3; }
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
/* ============================================
   STORY STATS (scroll-driven stat slides)
   ============================================ */
.story-stats {
    position: relative;
    height: 800vh;
    z-index: 3;
    background: #0a0a0d;
}


.story-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(50px, 8vw, 140px);
    padding: 0 clamp(40px, 8vw, 120px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.story-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
    z-index: 0;
}

.story-slide.active .story-glow {
    opacity: 1;
}

.story-number,
.story-text {
    position: relative;
    z-index: 1;
}

.story-word {
    display: inline-block;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.story-word.show {
    opacity: 1;
    filter: blur(0);
}

.story-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 60px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    text-align: left;
    position: relative;
}

.story-card::before,
.story-card::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.story-card::before { top: -2px; left: -2px; }
.story-card::after { bottom: -2px; right: -2px; }

.story-slide .story-card {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.story-slide.active .story-card {
    opacity: 1;
    transform: scale(1);
}

/* ---------- Alert Stack (glassmorphism cards) ---------- */
.story-slide-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alert-stack {
    position: relative;
    width: clamp(320px, 30vw, 440px);
    height: 280px;
    flex-shrink: 0;
    perspective: 800px;
}

.alert-card {
    position: absolute;
    width: 100%;
    padding: 20px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stacked positions — back to front */
.alert-card-3 {
    top: 0;
    left: 10px;
    transform: scale(0.9) translateZ(-40px);
    opacity: 0.4;
    filter: blur(1.5px);
}

.alert-card-2 {
    top: 40px;
    left: 5px;
    transform: scale(0.95) translateZ(-20px);
    opacity: 0.65;
    filter: blur(0.5px);
}

.alert-card-1 {
    top: 80px;
    left: 0;
    transform: scale(1) translateZ(0);
    opacity: 1;
}

/* Glow dots on corners */
.alert-card-1::before,
.alert-card-1::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.alert-card-1::before { top: -3px; left: -3px; }
.alert-card-1::after { top: -3px; right: -3px; }

/* Icon */
.alert-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.alert-icon-warn { background: rgba(255, 180, 50, 0.15); }
.alert-icon-err { background: rgba(255, 80, 80, 0.15); }
.alert-icon-crit { background: rgba(255, 46, 76, 0.2); }

/* Body */
.alert-body {
    flex: 1;
    min-width: 0;
}

.alert-body h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0 0 2px;
}

.alert-body p {
    font-family: 'Aventa', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Date */
.alert-date {
    font-family: 'Aventa', sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    position: absolute;
    top: 20px;
    right: 24px;
}

/* Footer */
.alert-footer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
}

.alert-user {
    font-family: 'Aventa', sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.alert-badge {
    font-family: 'Aventa', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: rgba(255, 180, 50, 0.8);
}

.alert-badge-high { color: rgba(255, 130, 50, 0.9); }
.alert-badge-crit { color: var(--color-primary); }

/* Show cards when slide is active */
.story-slide .alert-stack {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.story-slide.active .alert-stack {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .alert-stack { display: none; }
    .story-slide-left { align-items: center; }
}

.story-stats-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
}



.story-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(7rem, 22vw, 18rem);
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
}


.story-text {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    color: #ffffff;
    max-width: 700px;
    margin-top: 0;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .story-slide { flex-direction: column; text-align: center; gap: 16px; }
    .story-number { font-size: clamp(4rem, 20vw, 8rem); }
    .story-text { font-size: 1rem; max-width: 90%; text-align: center; }
}

/* ============================================
   SERVICES: SEA CHART
   ============================================ */
.services-chart {
    padding: var(--section-padding);
}

.chart-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    margin-bottom: 60px;
    color: var(--color-heading);
}

.chart-map {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.chart-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chart-points {
    position: relative;
    width: 100%;
    height: 600px;
}

.chart-point {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.chart-marker {
    position: relative;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.chart-ping {
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: chartPing 3s ease-out infinite;
}

@keyframes chartPing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

.chart-label {
    max-width: 360px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.chart-point:hover .chart-label {
    opacity: 1;
}

.chart-coord {
    font-family: 'Aventa', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 6px;
}

.chart-label h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 8px;
}

.chart-label p {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.chart-point:hover .chart-marker {
    background: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 46, 76, 0.5);
}

.chart-point:hover .chart-ping {
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .chart-points { height: auto; }
    .chart-point {
        position: relative;
        top: auto !important;
        left: auto !important;
        margin-bottom: 40px;
    }
    .chart-lines { display: none; }
    .chart-map { min-height: auto; }
}

.services-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    border-radius: 24px 24px 0 0;
    margin-top: -100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
}

}

.services-layout {
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
}

/* ---------- Anchor Hold Visual ---------- */
.anchor-hold-visual {
    flex-shrink: 0;
    width: clamp(300px, 35vw, 480px);
}

.anchor-hold {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Chain links going up */
.hold-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: -8px;
}

.hold-chain span {
    width: 10px;
    height: 16px;
    border: 2px solid #0a0a0d;
    border-radius: 4px;
    opacity: 0.3;
}

.hold-chain span:nth-child(odd) {
    width: 8px;
    height: 14px;
    opacity: 0.2;
}

.hold-chain span:first-child { opacity: 0.08; }
.hold-chain span:nth-child(2) { opacity: 0.12; }

/* The anchor SVG */
.hold-anchor {
    width: clamp(100px, 12vw, 150px);
    color: #0a0a0d;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

/* Connection from anchor down to org */
.hold-connection {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #0a0a0d 0%, var(--color-primary) 100%);
    opacity: 0.4;
}

/* The organization block */
.hold-org {
    position: relative;
    width: 100%;
    max-width: 260px;
}

.hold-org-block {
    background: linear-gradient(135deg, #f8f8fa 0%, #eeeef2 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.hold-org-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

.hold-org-windows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.hold-org-windows span {
    height: 18px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.06);
}

.hold-org-windows span:nth-child(1) { background: rgba(255, 46, 76, 0.15); }
.hold-org-windows span:nth-child(5) { background: rgba(255, 46, 76, 0.1); }

/* Chains wrapping around the org */
.hold-wrap-chain {
    position: absolute;
    top: -10px;
    left: -20px;
    width: calc(100% + 40px);
    height: 120px;
    color: #0a0a0d;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

/* Glow behind anchor */
.hold-glow {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 46, 76, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Status indicators */
.hold-status {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Aventa', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

.hold-status-1 {
    top: 35%;
    right: -10%;
}

.hold-status-2 {
    top: 55%;
    left: -10%;
}

.hold-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
}

.hold-status-dot.active {
    background: var(--color-primary);
    box-shadow: 0 0 8px rgba(255, 46, 76, 0.4);
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* ---------- Services Content ---------- */
.services-content {
    flex: 1;
    max-width: 560px;
}

.services-eyebrow {
    font-family: 'Aventa', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 16px;
}

.services-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #0a0a0d;
    margin-bottom: 28px;
}

.services-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.service-tag {
    font-family: 'Aventa', sans-serif;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid rgba(10, 10, 13, 0.2);
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tag.active,
.service-tag:hover {
    background: #0a0a0d;
    color: #ffffff;
    border-color: #0a0a0d;
}

.services-content p {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
}

.services-cta {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: #0a0a0d;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1px solid #0a0a0d;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.services-cta:hover {
    background: #0a0a0d;
    color: #ffffff;
}

@media (max-width: 768px) {
    .services-layout {
        flex-direction: column;
        text-align: center;
    }
    .anchor-hold-visual {
        width: 240px;
    }
    .services-tags { justify-content: center; }
    .services-content { max-width: 100%; }
}

.services-section h2,
.services-section h3 {
    color: #0a0a0d;
}

.services-section p {
    color: #555;
}

.services-intro {
    margin-bottom: clamp(40px, 5vw, 80px);
    text-align: center;
    position: relative;
    z-index: 1;
}


.services-list {
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: 'Aventa', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 14px;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 9vw, 9rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #0a0a0d;
    margin-bottom: 16px;
}

.heading-indent {
    padding-left: clamp(40px, 8vw, 120px);
}

.heading-sub {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(1.3rem, 1.9vw, 1.7rem);
    font-weight: 400;
    line-height: 1.6;
    color: #0a0a0d;
    vertical-align: baseline;
    letter-spacing: 0;
    display: inline-block;
    max-width: 480px;
}

/* ---------- Services Accordion ---------- */
.services-list {
    display: flex;
    flex-direction: column;
}

.svc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 3vw, 32px) 0;
    cursor: pointer;
    transition: padding 0.4s ease;
}

.svc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #0a0a0d;
    transition: color 0.3s ease;
}

.svc-toggle {
    width: clamp(22px, 2.5vw, 30px);
    height: clamp(22px, 2.5vw, 30px);
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-icon-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #0a0a0d;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    opacity: 0;
    scale: 0;
}

.svc-icon-line:first-child {
    transform: rotate(0deg);
}

.svc-icon-line:last-child {
    transform: rotate(90deg);
}

.svc-item.in-view .svc-icon-line:first-child {
    animation: plusSpinIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.svc-item.in-view .svc-icon-line:last-child {
    animation: plusSpinIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.svc-item:nth-child(2).in-view .svc-icon-line { animation-delay: 0.15s; }
.svc-item:nth-child(2).in-view .svc-icon-line:last-child { animation-delay: 0.25s; }
.svc-item:nth-child(3).in-view .svc-icon-line { animation-delay: 0.3s; }
.svc-item:nth-child(3).in-view .svc-icon-line:last-child { animation-delay: 0.4s; }
.svc-item:nth-child(4).in-view .svc-icon-line { animation-delay: 0.45s; }
.svc-item:nth-child(4).in-view .svc-icon-line:last-child { animation-delay: 0.55s; }

@keyframes plusSpinIn {
    from {
        opacity: 0;
        scale: 0;
        rotate: -180deg;
    }
    to {
        opacity: 1;
        scale: 1;
        rotate: 0deg;
    }
}

.svc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s ease;
    padding: 0;
}

.svc-body p {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: #555;
    max-width: 600px;
    padding-bottom: 28px;
}

/* Open state */
.svc-item.open .svc-body {
    max-height: 200px;
}

.svc-item.open .svc-icon-line:first-child {
    transform: rotate(45deg);
    background: var(--color-primary);
}

.svc-item.open .svc-icon-line:last-child {
    transform: rotate(-45deg);
    background: var(--color-primary);
}

.svc-item.open .svc-name {
    color: var(--color-primary);
}

.svc-header:hover .svc-name {
    color: var(--color-primary);
}

.services-section .svc-word {
    opacity: 0;
    filter: blur(10px);
    transform: none !important;
    animation: none !important;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.services-section .svc-word.revealed {
    opacity: 1;
    filter: blur(0);
}

/* ---------- Trust Strip ---------- */
.trust-strip {
    background: #000;
    position: relative;
}

.trust-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.3;
    filter: blur(20px);
}

.trust-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 3s ease;
    mix-blend-mode: lighten;
}

.trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.trust-strip {
    min-height: 55vh;
    padding-top: clamp(70px, 8vh, 120px);
    padding-bottom: clamp(70px, 8vh, 120px);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

.trust-word {
    color: rgba(255, 255, 255, 0.15);
    transition: color 0.3s ease;
}

.trust-word.filled {
    color: #ffffff;
}

.trust-layout {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.trust-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #ffffff;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-btn:hover {
    background: #ffffff;
    color: #0a0a0d;
}

.trust-heading {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 0;
    color: #ffffff;
    white-space: normal;
    line-height: 1.6;
    max-width: 100%;
}

.trust-text {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
}


@media (max-width: 768px) {
    .trust-strip { height: auto; padding: 24px 0; }
    .trust-layout { flex-direction: column; text-align: center; }
    .trust-btn { margin-top: 16px; }
}

.marquee-strip {
    background: #ffffff;
    padding: clamp(24px, 3.5vw, 44px) 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
}

.marquee-text {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.02em;
    color: #0a0a0d;
    white-space: nowrap;
    line-height: 1;
}

.marquee-icon {
    height: clamp(18px, 2vw, 26px);
    width: auto;
    flex-shrink: 0;
}

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

.services-cta-wrap {
    text-align: center;
    margin-top: clamp(40px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.svc-btn {
    opacity: 0;
    filter: blur(10px);
    transition: all 0.5s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: #0a0a0d;
    padding: 14px 36px;
    border: 1px solid #0a0a0d;
    border-radius: 999px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.svc-btn:hover {
    background: #0a0a0d;
    color: #ffffff;
}

.svc-btn.revealed {
    opacity: 1;
    filter: blur(0);
}

.services-preview {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 36px;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.white-section {
    min-height: 70vh;
    background: #ffffff;
    position: relative;
    z-index: 1;
    display: block;
}

/* ============================================
   HOW WE WORK — JOURNEY TIMELINE
   ============================================ */
.how-we-work {
    padding: clamp(80px, 10vw, 140px) 0;
    background: #0a0a0d;
    position: relative;
}

.hww-header {
    margin-bottom: clamp(60px, 8vw, 100px);
    text-align: center;
}

.hww-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.85rem, 1vw, 1rem);
    letter-spacing: 0.2em;
    color: var(--color-primary);
    display: block;
    margin-bottom: 16px;
}

.hww-title {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
}

.hww-accent {
    color: var(--color-primary);
}

/* Journey timeline */
.hww-journey {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Vertical line (background track) */
.hww-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-50%);
}

/* Animated fill line — grows on scroll */
.hww-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--color-primary), rgba(255, 46, 76, 0.2));
    transition: height 0.1s linear;
}

/* Each stop */
.hww-stop {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: clamp(30px, 4vw, 50px) 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hww-stop.in-view {
    opacity: 1;
    transform: translateX(0) !important;
}

.hww-stop-left {
    flex-direction: row-reverse;
    transform: translateX(-30px);
}

.hww-stop-left .hww-stop-content {
    text-align: right;
    padding-right: clamp(30px, 5vw, 60px);
    width: calc(50% - 20px);
    margin-right: auto;
}

.hww-stop-right {
    transform: translateX(30px);
}

.hww-stop-right .hww-stop-content {
    text-align: left;
    padding-left: clamp(30px, 5vw, 60px);
    width: calc(50% - 20px);
    margin-left: auto;
}

/* Dot on the line */
.hww-stop-dot {
    position: absolute;
    left: 50%;
    top: clamp(35px, 4vw, 55px);
    width: 16px;
    height: 16px;
    transform: translateX(-50%);
    z-index: 2;
}

.hww-stop-dot::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-primary);
    border-radius: 50%;
}

.hww-dot-ping {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
}

.hww-stop.in-view .hww-dot-ping {
    animation: dotPing 1.5s ease-out 0.3s;
}

@keyframes dotPing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

/* Content styling */
.hww-stop-num {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 100;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 8px;
}

.hww-stop-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 12px;
}

.hww-stop-text {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Anchor endpoint */
.hww-anchor-end {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(30px, 4vw, 50px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hww-anchor-end.in-view {
    opacity: 1;
    transform: translateY(0);
}

.hww-anchor-icon {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    margin-bottom: 12px;
}

.hww-anchor-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hww-line {
        left: 20px;
    }
    .hww-stop-dot {
        left: 20px;
    }
    .hww-stop-left,
    .hww-stop-right {
        flex-direction: row;
    }
    .hww-stop-left .hww-stop-content,
    .hww-stop-right .hww-stop-content {
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
        width: 100%;
        margin: 0;
    }
    .hww-stop-left {
        transform: translateX(0);
    }
    .hww-stop-right {
        transform: translateX(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 140px 0 0;
    min-height: 70vh;
    background: #000000;
    position: relative;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 24px;
}

.footer-heading {
    font-family: 'Aventa', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 45px;
    max-width: 800px;
}

.footer-heading-accent {
    color: var(--color-primary);
}

.footer-cta {
    display: flex;
    flex-direction: column;
}

.footer-contact-row {
    display: flex;
    gap: clamp(24px, 3vw, 48px);
    align-items: center;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Aventa', sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    overflow: hidden;
}

.mail-arrow {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.mail-arrow-2 {
    transform: translate(-100%, 100%);
}

.footer-email:hover {
    color: var(--color-primary);
}

.footer-email:hover .mail-arrow {
    transform: translate(100%, -100%);
}

.footer-email:hover .mail-arrow-2 {
    transform: translate(0, 0);
}

.footer-nav {
    display: flex;
    gap: clamp(20px, 3vw, 40px);
    padding-top: 10px;
}

.footer-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* Giant ANQAR brand image */
.footer-brand {
    display: flex;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
    margin: 0;
    width: 100%;
    padding: 0 clamp(20px, 5vw, 80px);
    box-sizing: border-box;
}

.footer-letter {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(15vw, 19vw, 24vw);
    font-weight: 100;
    color: #ffffff;
    line-height: 1;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-letter.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-letter.hiding {
    opacity: 0;
    transform: translateY(-60px);
}

/* Bottom bar */
.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex: 1;
}

.footer-legal a {
    font-family: 'Bebas Neue', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 16px;
    flex: 1;
    justify-content: flex-end;
}

.footer-socials a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
}

.footer-copy {
    font-family: 'Bebas Neue', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
    flex: 1;
}

.footer-scroll-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-scroll-top:hover {
    color: #ffffff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

    /* ---- Header ---- */
    .btn-lets-talk { display: none; }
    .header-divider { display: none; }
    .logo img { height: 38px; }
    .menu-toggle span { width: 36px; }
    .menu-toggle { width: auto; gap: 9px; }

    /* ---- Nav panel ---- */
    .main-nav {
        width: 100vw;
        right: 0;
        top: 0;
        border-radius: 0;
        padding: 100px 32px 40px 48px;
        min-height: 100vh;
        backdrop-filter: blur(30px) saturate(170%);
        -webkit-backdrop-filter: blur(30px) saturate(170%);
    }
    .main-nav .primary-nav a {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
    }

    /* ---- Hero ---- */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        flex-direction: column;
        align-items: center;
    }
    .hero h1 {
        font-size: clamp(3rem, 12vw, 5rem);
        max-width: 100%;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        margin-top: 32vh;
        text-align: center;
        padding: 0 20px;
    }

    /* ---- 3D Anchor ---- */
    .hero-anchor3d {
        opacity: 1 !important;
    }

    /* ---- Hero right text ---- */
    .hero-right-block {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        padding: 10px 20px 0;
        margin-top: 0;
    }
    .hero-sub-right {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* ---- Hero bottom ---- */
    .hero-bottom {
        padding: 0 20px;
        bottom: 16px;
    }
    .scroll-discover { font-size: 0.65rem; }


    /* ---- Journey steps ---- */
    .journey-step {
        min-height: 100vh;
        padding: 0 20px;
    }
    .step-content {
        max-width: 100%;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding-top: 25vh;
    }
    .step-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
    .step-final {
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        text-align: center;
    }
    .step-final h2 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    .journey-step.align-left,
    .journey-step.align-right,
    .journey-step.align-center {
        justify-content: flex-start;
    }

    /* ---- Services ---- */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ---- Footer ---- */
    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .hero-cta { flex-direction: column; }
    .btn { text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }
    .main-nav .primary-nav a {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .main-nav {
        padding: 90px 24px 32px 40px;
    }
}
