    /* ═══════════════════════════════════════════════════════════
       TABLE OF CONTENTS:
       1. Reset & Base Styles
       2. CSS Custom Properties (Variables)
       3. Custom Cursor
       4. Noise Overlay
       5. Scrollbar
       6. Loader
       7. Abstract Canvas Background
       8. Navigation
       9. Mobile Menu
       10. Parallax System
       11. Abstract Geometric Elements
       12. Hero Section
       13. Marquee
       14. Statistics Section
       15. Section Divider
       16. Services Section
       17. Process Section
       18. Fleet Section
       19. Advantages Section
       20. CTA / Contact Section
       21. Footer
       22. Reveal Animations
       23. Responsive Design
       ═══════════════════════════════════════════════════════════ */

    /* ───────────────────────────────────────────────────────────
       1. RESET & BASE STYLES
       ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ───────────────────────────────────────────────────────────
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ─────────────────────────────────────────────────────────── */
/*:root {
    --earth: #1a1410;
    --earth-light: #2a2218;
    --sand: #c4a265;
    --sand-light: #dfc48b;
    --clay: #8b5e3c;
    --dust: #f5efe6;
    --dust-dim: #e8dfd2;
    --charcoal: #0d0b09;
    --amber: #e8a830;
    --rust: #a0522d;
    --moss: #4a5d3a;
    --white: #faf8f5;
}*/

:root {
    --earth: #221c18;
    --earth-light: #6b7073;
    --sand: #dcd8d8;
    --sand-light: #e4e4e4;
    --clay: #42717e;
    --dust: #f5efe6;
    --dust-dim: #e8dfd2;
    --charcoal: #0d0b09;
    --amber: #6b7073;
    --rust: #457d8c;
    --moss: #4a5d3a;
    --white: #faf8f5;
}

/* ───────────────────────────────────────────────────────────
   3. BASE STYLES & TYPOGRAPHY
   ─────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Onest', sans-serif;
    background: var(--charcoal);
    color: var(--dust);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /*cursor: none;*/
}

/* ───────────────────────────────────────────────────────────
   4. CUSTOM CURSOR
   ─────────────────────────────────────────────────────────── */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--sand);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--sand);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.05s;
}

.cursor.hover {
    transform: scale(2.5);
    opacity: 0.5;
}

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

/* ───────────────────────────────────────────────────────────
   6. SCROLLBAR
   ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 3px;
}

/* ───────────────────────────────────────────────────────────
   7. LOADER
   ─────────────────────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

.loader-geo {
    width: 120px;
    height: 120px;
    position: relative;
}

.loader-geo .ring {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
}

.loader-geo .ring:nth-child(1) {
    border-top-color: var(--sand);
    animation: spinA 1.2s linear infinite;
}

.loader-geo .ring:nth-child(2) {
    inset: 12px;
    border-right-color: var(--clay);
    animation: spinB 1.6s linear infinite;
}

.loader-geo .ring:nth-child(3) {
    inset: 24px;
    border-bottom-color: var(--amber);
    animation: spinA 2s linear infinite;
}

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

@keyframes spinB {
    to { transform: rotate(-360deg); }
}

.loader-text {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--sand);
    text-transform: uppercase;
    overflow: hidden;
}

.loader-text span {
    display: inline-block;
    animation: loadLetter 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.loader-progress {
    width: 200px;
    height: 1px;
    background: rgba(196, 162, 101, 0.15);
}

.loader-progress-bar {
    height: 100%;
    width: 0;
    background: var(--sand);
    animation: loadProg 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes loadProg {
    to { width: 100%; }
}

/* ───────────────────────────────────────────────────────────
   8. ABSTRACT CANVAS BACKGROUND
   ─────────────────────────────────────────────────────────── */
#abstractCanvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ───────────────────────────────────────────────────────────
   9. NAVIGATION
   ─────────────────────────────────────────────────────────── */

#navbar{
    position: fixed;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent !important;
    pointer-events: none;
}

nav > * {
    pointer-events: auto;
}

nav.scrolled {
    background: rgba(13, 11, 9, 0.85) !important;
    backdrop-filter: blur(30px);
    padding: 16px 48px;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
}

.logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--sand) !important;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo:hover {
    color: var(--sand) !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sand), var(--amber));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.4s;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.3));
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.1);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--sand);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s;
    overflow: hidden;
    text-transform: uppercase;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sand);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
    color: var(--dust-dim);
}

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

.nav-cta {
    background: var(--sand);
    color: var(--charcoal);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.87rem;
    text-decoration: none;
    transition: all 0.4s;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

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

.nav-cta:hover {
    box-shadow: 0 8px 32px rgba(196, 162, 101, 0.3);
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    /*cursor: none;*/
    background: none;
    border: none;
    padding: 4px;
}

.burger span {
    width: 28px;
    height: 2px;
    background: var(--sand);
    border-radius: 1px;
    transition: all 0.3s;
}

/* ───────────────────────────────────────────────────────────
   10. MOBILE MENU
   ─────────────────────────────────────────────────────────── */

/* Override Bootstrap offcanvas styles */
.offcanvas,
.offcanvas-end {
    background: transparent !important;
    box-shadow: none !important;
}

.offcanvas-backdrop {
    background-color: var(--charcoal) !important;
}
/*
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.active,
.mobile-menu.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .offcanvas-body {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    overflow-y: auto;
}

.mobile-menu .offcanvas-header {
    border-bottom: none !important;
    padding: 0 !important;
    min-height: auto !important;
    position: absolute;
    top: 24px;
    right: 24px;
}

.mobile-menu a {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    color: var(--dust) !important;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-menu a:hover {
    color: var(--sand) !important;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--sand);
    font-size: 2rem;
    cursor: none;
    z-index: 1000;
    line-height: 1;
    padding: 0;
    width: auto;
    height: auto;
}

.mobile-close:hover {
    color: var(--sand-light);
}
*/
/* ───────────────────────────────────────────────────────────
   11. PARALLAX SYSTEM
   ─────────────────────────────────────────────────────────── */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    inset: -20%;
    width: 140%;
    height: 140%;
    will-change: transform;
    pointer-events: none;
}

/* ───────────────────────────────────────────────────────────
   12. ABSTRACT GEOMETRIC ELEMENTS
   ─────────────────────────────────────────────────────────── */
.abstract-structure {
    position: absolute;
    pointer-events: none;
}

.geo-ring {
    border: 1.5px solid rgba(196, 162, 101, 0.12);
    border-radius: 50%;
    position: absolute;
    z-index: 3;
}

.geo-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.15), transparent);
    position: absolute;
    z-index: 3;
}

.geo-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
}

.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: rgba(196, 162, 101, 0.2);
}

.geo-cross::before {
    width: 100%;
    height: 1px;
    top: 50%;
}

.geo-cross::after {
    width: 1px;
    height: 100%;
    left: 50%;
}

.geo-diamond {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(196, 162, 101, 0.2);
    transform: rotate(45deg);
    position: absolute;
    z-index: 3;
}

.geo-dots {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    grid-template-rows: repeat(5, 8px);
    gap: 8px;
    z-index: 3;
}

.geo-dots span {
    width: 2px;
    height: 2px;
    background: rgba(196, 162, 101, 0.15);
    border-radius: 50%;
}

.floating-text {
    position: absolute;
    font-family: 'Unbounded', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(196, 162, 101, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 3;
}

/* ───────────────────────────────────────────────────────────
   13. HERO SECTION
   ─────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 48px;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 90% 60% at 70% 35%, rgba(139, 94, 60, 0.18), transparent),
            radial-gradient(ellipse 70% 50% at 15% 75%, rgba(74, 93, 58, 0.12), transparent),
            radial-gradient(ellipse 50% 40% at 50% 0%, rgba(196, 162, 101, 0.1), transparent),
            var(--charcoal);
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(196, 162, 101, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(196, 162, 101, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
    animation: gridPulse 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hero Abstract Constructions */
.hero-abstract {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    pointer-events: none;
    z-index: 3;
}

.construct-main {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 3;
}

.construct-main .orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 162, 101, 0.08);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
    z-index: 3;
}

.construct-main .orbit:nth-child(2) {
    inset: 40px;
    animation-duration: 25s;
    animation-direction: reverse;
    border-style: dashed;
    border-color: rgba(139, 94, 60, 0.1);
}

.construct-main .orbit:nth-child(3) {
    inset: 80px;
    animation-duration: 20s;
    border-color: rgba(196, 162, 101, 0.06);
}

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

.orbit-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--sand);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    box-shadow: 0 0 20px rgba(196, 162, 101, 0.4);
    z-index: 4;
}

.construct-hex {
    position: absolute;
    right: 25%;
    top: 15%;
    width: 100px;
    height: 115px;
    animation: floatSlow 8s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.construct-tri {
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(196, 162, 101, 0.05);
    animation: floatSlow 10s ease-in-out infinite reverse;
    z-index: 3;
}

.construct-tri::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -40px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 66px solid rgba(196, 162, 101, 0.03);
}

.construct-bars {
    position: absolute;
    right: 40%;
    bottom: 25%;
    display: flex;
    gap: 6px;
    align-items: flex-end;
    animation: floatSlow 12s ease-in-out infinite;
    z-index: 3;
}

.construct-bars span {
    width: 4px;
    background: rgba(196, 162, 101, 0.1);
    border-radius: 2px;
}

.morph-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: blobMorph 15s ease-in-out infinite;
    z-index: 3;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 33% 67% 70% 30% / 30% 40% 60% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 67% 33% 30% 70% / 60% 70% 30% 40%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 55% 45% / 70% 30% 70% 30%;
        transform: rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 60% 40% 45% 55% / 30% 60% 40% 70%;
        transform: rotate(270deg) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 162, 101, 0.08);
    border: 1px solid rgba(196, 162, 101, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sand);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUp 0.8s 2.2s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 168, 48, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(232, 168, 48, 0);
    }
}

.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 .line:nth-child(2) .line-inner {
    animation-delay: 2.35s;
}

.hero h1 .line:nth-child(1) .line-inner {
    animation-delay: 2.2s;
}

@keyframes lineReveal {
    to { transform: translateY(0); }
}

.hero h1 span {
    background: linear-gradient(135deg, var(--sand), var(--amber), var(--sand-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--dust-dim);
    max-width: 520px;
    margin-bottom: 44px;
    opacity: 0;
    animation: slideUp 0.8s 2.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.8s 2.7s forwards;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sand);
    color: var(--charcoal);
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    /*cursor: none;*/
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(196, 162, 101, 0.35);
}

.btn-primary svg {
    transition: transform 0.4s;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dust);
    padding: 18px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(196, 162, 101, 0.25);
    transition: all 0.4s;
    /*cursor: none;*/
}

.btn-secondary:hover {
    border-color: var(--sand);
    color: var(--sand);
    background: rgba(196, 162, 101, 0.05);
    box-shadow: inset 0 0 30px rgba(196, 162, 101, 0.05);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: slideUp 0.8s 3.2s forwards;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--sand), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background: var(--sand);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -15px; }
    100% { top: 50px; }
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    opacity: 0.5;
    writing-mode: vertical-rl;
}

border-radius: 50%;
animation: orbitSpin 30s linear infinite;
}

.construct-main .orbit:nth-child(2) {
    inset: 40px;
    animation-duration: 25s;
    animation-direction: reverse;
    border-style: dashed;
    border-color: rgba(139,94,60,0.1);
}
.construct-main .orbit:nth-child(3) {
    inset: 80px;
    animation-duration: 20s;
    border-color: rgba(196,162,101,0.06);
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-node {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--sand);
    border-radius: 50%;
    top: -5px; left: 50%;
    box-shadow: 0 0 20px rgba(196,162,101,0.4);
}
.construct-hex {
    position: absolute; right: 25%; top: 15%;
    width: 100px; height: 115px;
    animation: floatSlow 8s ease-in-out infinite;
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}
.construct-tri {
    position: absolute; right: 5%; bottom: 20%;
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(196,162,101,0.05);
    animation: floatSlow 10s ease-in-out infinite reverse;
}
.construct-tri::after {
    content: '';
    position: absolute;
    top: 20px; left: -40px;
    width: 0; height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 66px solid rgba(196,162,101,0.03);
}
.construct-bars {
    position: absolute; right: 40%; bottom: 25%;
    display: flex; gap: 6px; align-items: flex-end;
    animation: floatSlow 12s ease-in-out infinite;
}
.construct-bars span {
    width: 4px; background: rgba(196,162,101,0.1);
    border-radius: 2px;
}
.morph-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(196,162,101,0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: blobMorph 15s ease-in-out infinite;
}
@keyframes blobMorph {
    0%, 100% { border-radius: 33% 67% 70% 30% / 30% 40% 60% 70%; transform: rotate(0deg) scale(1); }
    25% { border-radius: 67% 33% 30% 70% / 60% 70% 30% 40%; transform: rotate(90deg) scale(1.1); }
    50% { border-radius: 40% 60% 55% 45% / 70% 30% 70% 30%; transform: rotate(180deg) scale(0.95); }
    75% { border-radius: 60% 40% 45% 55% / 30% 60% 40% 70%; transform: rotate(270deg) scale(1.05); }
}

.hero-content {
    position: relative; z-index: 5;
    max-width: 700px; padding-top: 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(196,162,101,0.08);
    border: 1px solid rgba(196,162,101,0.15);
    padding: 8px 20px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 500; color: var(--sand);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0; animation: slideUp 0.8s 2.2s forwards;
}
.badge-dot {
    width: 6px; height: 6px; background: var(--amber);
    border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,168,48,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(232,168,48,0); }
}
.hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800; line-height: 1.05;
    color: var(--white); margin-bottom: 28px;
}
.hero h1 .line {
    display: block; overflow: hidden;
}
.hero h1 .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 2.35s; }
.hero h1 .line:nth-child(1) .line-inner { animation-delay: 2.2s; }
@keyframes lineReveal { to { transform: translateY(0); } }
.hero h1 span {
    background: linear-gradient(135deg, var(--sand), var(--amber), var(--sand-light));
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.7rem, 6vw, 3rem);
    font-weight: 800; line-height: 1.05;
    color: var(--white); margin-bottom: 28px;
}
.hero h2 .line {
    display: block; overflow: hidden;
}
.hero h2 .line-inner {
    display: block;
    transform: translateY(110%);
    animation: lineReveal 1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero h2 .line:nth-child(2) .line-inner { animation-delay: 2.35s; }
.hero h2 .line:nth-child(1) .line-inner { animation-delay: 2.2s; }
@keyframes lineReveal { to { transform: translateY(0); } }
.hero h2 span {
    background: linear-gradient(135deg, var(--sand), var(--amber), var(--sand-light));
    background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift2 6s ease infinite;
}
@keyframes gradientShift2 {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc {
    font-size: 1.12rem; line-height: 1.75; color: var(--dust-dim);
    max-width: 520px; margin-bottom: 44px;
    opacity: 0; animation: slideUp 0.8s 2.5s forwards;
}
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: slideUp 0.8s 2.7s forwards;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--sand); color: var(--charcoal);
    padding: 18px 36px; border-radius: 60px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
    border: none; /*cursor: none;*/ letter-spacing: 0.02em;
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute;
    width: 200%; height: 200%; top: -50%; left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(196,162,101,0.35);
}
.btn-primary svg { transition: transform 0.4s; }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--dust);
    padding: 18px 36px; border-radius: 60px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    border: 1.5px solid rgba(196,162,101,0.25);
    transition: all 0.4s; /*cursor: none;*/
}
.btn-secondary:hover {
    border-color: var(--sand); color: var(--sand);
    background: rgba(196,162,101,0.05);
    box-shadow: inset 0 0 30px rgba(196,162,101,0.05);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: slideUp 0.8s 3.2s forwards;
    z-index: 5;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--sand), transparent);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute;
    width: 100%; height: 15px; background: var(--sand);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0% { top: -15px; }
    100% { top: 50px; }
}
.scroll-text {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--sand); opacity: 0.5;
    writing-mode: vertical-rl;
}

/* ═══════════ MARQUEE ═══════════ */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid rgba(196,162,101,0.06);
    border-bottom: 1px solid rgba(196,162,101,0.06);
    overflow: hidden;
    background: rgba(26,20,16,0.5);
    position: relative; z-index: 5;
}
.marquee-track {
    display: flex;
    animation: marquee 35s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 100% { transform: translateX(-50%); } }
.marquee-item {
    display: flex; align-items: center; gap: 16px;
    padding: 0 40px; white-space: nowrap;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    color: var(--sand); opacity: 0.4;
    text-transform: uppercase; letter-spacing: 0.12em;
    transition: opacity 0.3s;
}
.marquee-item:hover { opacity: 1; }
.marquee-item .mi-icon {
    width: 6px; height: 6px;
    background: var(--clay);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ═══════════ STATS ═══════════ */
.stats-section {
    position: relative; z-index: 5;
    padding: 0 48px;
}
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: rgba(196,162,101,0.06);
    border-radius: 20px; overflow: hidden;
    position: relative;
}
.stat-card {
    background: var(--charcoal);
    padding: 52px 36px; text-align: center;
    position: relative; overflow: hidden;
    transition: all 0.5s;
}
.stat-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(196,162,101,0.06), transparent 70%);
    opacity: 0; transition: opacity 0.5s;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover { background: var(--earth); }
.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800; color: var(--sand);
    line-height: 1; margin-bottom: 10px;
}
.stat-label { font-size: 0.87rem; color: var(--dust-dim); opacity: 0.6; }

/* ═══════════ SECTION DIVIDER ═══════════ */
.section-divider {
    height: 200px; position: relative; overflow: hidden;
}
.divider-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,162,101,0.2), transparent);
    width: 100%;
    top: 50%;
}
.divider-geo {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.divider-geo .dg-circle {
    width: 80px; height: 80px;
    border: 1px solid rgba(196,162,101,0.1);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
    position: relative;
}
.divider-geo .dg-circle::after {
    content: ''; position: absolute;
    width: 6px; height: 6px;
    background: var(--sand); border-radius: 50%;
    top: -3px; left: 50%; margin-left: -3px;
}
.divider-geo .dg-diamond {
    position: absolute; top: 50%; left: 50%;
    width: 14px; height: 14px;
    border: 1px solid rgba(196,162,101,0.25);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ═══════════ SERVICES ═══════════ */
.services {
    padding: 120px 48px;
    position: relative; z-index: 5;
}
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--sand); margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 40px; height: 1px; background: var(--sand); opacity: 0.3;
}
.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    font-weight: 700; color: var(--white); line-height: 1.15;
}

/* Service Cards with 3D tilt */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1300px; margin: 0 auto;
}
.service-card {
    background: linear-gradient(165deg, var(--earth-light), var(--earth));
    border: 1px solid rgba(196,162,101,0.07);
    border-radius: 24px; padding: 150px 36px 44px 36px;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
    /*cursor: none;*/
    transform-style: preserve-3d;
    perspective: 800px;
}
.service-card .card-glow {
    position: absolute; width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,162,101,0.12), transparent 70%);
    pointer-events: none;
    opacity: 0; transition: opacity 0.4s;
    transform: translate(-50%, -50%);
}
.service-card:hover .card-glow { opacity: 1; }
.service-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sand), var(--amber), var(--sand-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(196,162,101,0.15);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 60px rgba(196,162,101,0.05);
}
.service-card .card-pattern {
    position: absolute; top: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 1px solid rgba(196,162,101,0.04);
    border-radius: 50%;
    transition: all 0.6s;
}
.service-card:hover .card-pattern {
    transform: scale(1.5);
    border-color: rgba(196,162,101,0.08);
}
.service-icon {
    width: 68px; height: 68px; border-radius: 18px;
    background: rgba(196,162,101,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px; transition: all 0.5s;
    position: relative;
}
.service-icon::after {
    content: ''; position: absolute; inset: -4px;
    border: 1px solid rgba(196,162,101,0.08);
    border-radius: 22px;
    transition: all 0.5s;
}
.service-card:hover .service-icon {
    background: rgba(196,162,101,0.15);
    transform: scale(1.08) rotate(-3deg);
}
.service-card:hover .service-icon::after {
    inset: -8px;
    border-color: rgba(196,162,101,0.12);
}
.service-icon svg { width: 28px; height: 28px; color: var(--sand); }
.service-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--white); margin-bottom: 14px;
}
.service-card p {
    font-size: 0.9rem; line-height: 1.65;
    color: var(--dust-dim); opacity: 0.7;
}
.service-tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 22px; font-size: 0.78rem; font-weight: 600;
    color: var(--sand); letter-spacing: 0.04em;
    padding: 7px 16px;
    background: rgba(196,162,101,0.06);
    border: 1px solid rgba(196,162,101,0.1);
    border-radius: 24px;
}

/* ═══════════ PROCESS ═══════════ */
.process {
    padding: 140px 48px;
    background: var(--earth);
    position: relative; overflow: hidden;
}
.process-bg-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(10rem, 20vw, 22rem);
    font-weight: 900; color: rgba(196,162,101,0.02);
    white-space: nowrap; pointer-events: none;
}
.process-abstract-left {
    position: absolute; left: -80px; top: 10%;
    width: 300px; height: 600px;
    pointer-events: none;
}
.pal-line {
    position: absolute; left: 50%;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(196,162,101,0.1), transparent);
}
.pal-circle {
    position: absolute; left: 50%; transform: translateX(-50%);
    border: 1px solid rgba(196,162,101,0.08); border-radius: 50%;
}
.process-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1200px; margin: 0 auto;
    align-items: center; position: relative; z-index: 2;
}
.process-left .section-tag { justify-content: flex-start; }
.process-left h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700; color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
}
.process-left > p {
    color: var(--dust-dim); line-height: 1.75;
    font-size: 1rem; margin-bottom: 40px;
}
.step {
    display: flex; gap: 24px; align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(196,162,101,0.06);
    position: relative;
    transition: all 0.4s;
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 12px; }
.step-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    background: linear-gradient(180deg, rgba(196,162,101,0.2), rgba(196,162,101,0.05));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; min-width: 50px;
    transition: all 0.4s;
}
.step:hover .step-num {
    -webkit-text-fill-color: var(--sand);
}
.step-content h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
}
.step-content p { font-size: 0.87rem; color: var(--dust-dim); opacity: 0.65; }

/* Process right - animated construction */
.process-right { position: relative; }
.process-construct {
    width: 100%; aspect-ratio: 1;
    position: relative;
}
.pc-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(196,162,101,0.08);
}
.pc-ring:nth-child(1) { inset: 0; animation: orbitSpin 40s linear infinite; }
.pc-ring:nth-child(2) { inset: 15%; animation: orbitSpin 30s linear infinite reverse; border-style: dashed; }
.pc-ring:nth-child(3) { inset: 30%; animation: orbitSpin 20s linear infinite; }
.pc-ring:nth-child(4) { inset: 42%; border-color: rgba(196,162,101,0.12); }
.pc-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.pc-center-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 4.5rem; font-weight: 900;
    background: linear-gradient(135deg, var(--sand), var(--amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
}
.pc-center-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; color: var(--sand);
    opacity: 0.6; text-transform: uppercase;
}
.pc-node {
    position: absolute;
    width: 10px; height: 10px;
    background: var(--sand);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(196,162,101,0.3);
}
.pc-line-connect {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(196,162,101,0.15), transparent);
    transform-origin: left;
}

/* ═══════════ FLEET ═══════════ */
.fleet {
    padding: 140px 48px;
    position: relative; z-index: 5;
}
.fleet-row {
    display: flex; gap: 24px;
    max-width: 1300px; margin: 0 auto;
}
.fleet-card {
    flex: 1;
    background: linear-gradient(170deg, var(--earth-light), var(--earth));
    border: 1px solid rgba(196,162,101,0.06);
    border-radius: 24px; overflow: hidden;
    transition: all 0.6s cubic-bezier(0.22,1,0.36,1);
    /*cursor: none;*/
}
.fleet-card:hover {
    border-color: rgba(196,162,101,0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.fleet-img {
    height: 200px;
    background: linear-gradient(160deg, rgba(42,34,24,0.8), var(--charcoal));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.fleet-img::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(196,162,101,0.08), transparent 60%);
}
.fleet-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--earth) 100%);
}
.fleet-emoji {
    font-size: 3.5rem; position: relative; z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    transition: transform 0.5s;
}
.fleet-emoji img { width: 20rem; }
.fleet-card:hover .fleet-emoji { transform: scale(1.2) translateY(-8px); }
.fleet-info { padding: 28px; }
.fleet-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.02rem; font-weight: 600;
    color: var(--white); margin-bottom: 8px;
}
.fleet-info p { font-size: 0.86rem; color: var(--dust-dim); opacity: 0.65; line-height: 1.55; }

/* ═══════════ ADVANTAGES ═══════════ */
.advantages {
    padding: 120px 48px;
    background: var(--earth);
    position: relative; overflow: hidden;
}
.pre-abstract {
    position: absolute; right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    pointer-events: none;
}
.pre-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; max-width: 1000px; margin: 0 auto;
    position: relative; z-index: 2;
}
.pre-item {
    background: var(--charcoal);
    border: 1px solid rgba(196,162,101,0.05);
    border-radius: 22px; padding: 40px 36px;
    /*display: flex;*/ gap: 22px; align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
    /*cursor: none;*/ position: relative; overflow: hidden;
    text-align: center;
}
.pre-item::after {
    content: ''; position: absolute;
    top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(196,162,101,0.04), transparent);
    border-radius: 50%;
    transition: all 0.5s;
}
.pre-item:hover {
    border-color: rgba(196,162,101,0.12);
    transform: translateY(-5px) translateX(3px);
    box-shadow: -8px 8px 40px rgba(0,0,0,0.2);
}
.pre-item:hover::after { transform: scale(2); }
.pre-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(196,162,101,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.3rem;
    transition: all 0.4s;
}
.pre-item:hover .pre-icon {
    background: rgba(196,162,101,0.15);
    transform: rotate(-5deg) scale(1.08);
}
.pre-text h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 8px;
}
.pre-text p { font-size: 0.87rem; color: var(--dust-dim); opacity: 0.65; line-height: 1.55; }

/* ═══════════ CTA ═══════════ */
.cta {
    padding: 140px 48px;
    position: relative; overflow: hidden; z-index: 5;
}
.cta-abstract {
    position: absolute; inset: 0; pointer-events: none;
}
.cta-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(196,162,101,0.06);
}
.cta-inner {
    max-width: 700px; margin: 0 auto;
    text-align: center; position: relative; z-index: 2;
}
.cta h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    font-weight: 700; color: var(--white);
    line-height: 1.2; margin-bottom: 20px;
}
.cta p {
    font-size: 1.05rem; color: var(--dust-dim);
    max-width: 480px; margin: 0 auto 44px; line-height: 1.65;
}
.cta-form {
    display: flex; gap: 12px; max-width: 520px;
    margin: 0 auto 20px; flex-direction: column; justify-content: center;
}

/* Checkbox styles for consent */
.cta-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.cta-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 2px solid var(--sand);
    background-color: transparent;
    cursor: pointer;
}

.cta-form .form-check-input:checked {
    background-color: var(--sand);
    border-color: var(--sand);
}

.cta-form .form-check-label {
    color: var(--dust);
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.cta-form .form-check-label a {
    color: var(--sand);
    text-decoration: underline;
    transition: color 0.3s ease;
    pointer-events: auto;
}

.cta-form .form-check-label a:hover {
    color: var(--gold);
}

/* Honeypot field - hidden from real users but visible to bots */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

/* Success Modal Styles */
#successModal .modal-content, 
#errorModalPhone .modal-content,
#errorModalprivacyPolicyCheck .modal-content,
#errorModalpersonalDataCheck .modal-content
{
    background: var(--earth);
    border: 1px solid rgba(196,162,101,0.12);
    border-radius: 12px;
    padding: 2rem;
}

#successModal .modal-header {
    background: transparent;
    padding-bottom: 0;
}

#successModal .btn-close, 
#errorModalPhone .btn-close,
#errorModalprivacyPolicyCheck .btn-close,
#errorModalpersonalDataCheck .btn-close
{
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
}

#successModal .btn-close:hover {
    opacity: 1;
}

#successModal .modal-body {
    color: var(--dust);
}

#successModal .modal-title {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sand);
}

#successModal .success-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Privacy & Personal Data Modals */
#privacyModal .modal-content,
#personalDataModal .modal-content {
    background: var(--earth);
    border: 1px solid rgba(196,162,101,0.12);
    border-radius: 12px;
    border-top: 3px solid var(--gold);
}

#privacyModal .modal-header,
#personalDataModal .modal-header {
    background: transparent;
    padding-bottom: 0;
}

#privacyModal .btn-close,
#personalDataModal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
}

#privacyModal .btn-close:hover,
#personalDataModal .btn-close:hover {
    opacity: 1;
}

#privacyModal .modal-title,
#personalDataModal .modal-title {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--sand);
}

#privacyModal .modal-body,
#personalDataModal .modal-body {
    color: var(--dust);
    font-size: 0.95rem;
    line-height: 1.7;
    max-height: 70vh;
    overflow-y: auto;
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content strong {
    color: var(--gold);
}

.privacy-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    padding: 0;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: var(--dust);
}

/* Скроллбар для модальных окон */
#privacyModal .modal-body::-webkit-scrollbar,
#personalDataModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#privacyModal .modal-body::-webkit-scrollbar-track,
#personalDataModal .modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

#privacyModal .modal-body::-webkit-scrollbar-thumb,
#personalDataModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

#privacyModal .modal-body::-webkit-scrollbar-thumb:hover,
#personalDataModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(196, 162, 101, 0.8);
}

.cta-input {
    flex: 1; min-width: 200px;
    padding: 18px 24px;
    background: var(--earth);
    border: 1px solid rgba(196,162,101,0.12);
    border-radius: 60px; color: var(--dust);
    font-family: 'Onest', sans-serif; font-size: 0.95rem;
    outline: none; transition: all 0.4s;
    /*cursor: none;*/
}
.cta-input::placeholder { color: rgba(232,223,210,0.3); }
.cta-input:focus {
    border-color: var(--sand);
    box-shadow: 0 0 30px rgba(196,162,101,0.1);
}
.cta-phone {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
    margin-top: 20px; font-size: 0.88rem; color: var(--dust-dim); opacity: 0.5;
}
.cta-phone a {
    color: var(--sand); text-decoration: none; font-weight: 600;
    position: relative;
}
.cta-phone a::after {
    content: ''; position: absolute;
    bottom: -2px; left: 0; width: 100%; height: 1px;
    background: var(--sand); opacity: 0.3;
    transition: opacity 0.3s;
}
.cta-phone a:hover::after { opacity: 1; }

/* ═══════════ FOOTER ═══════════ */
footer {
        padding: 70px 48px 10px 40px;
    border-top: 1px solid rgba(196,162,101,0.06);
    background: var(--charcoal); position: relative; z-index: 5;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 0.87rem; color: var(--dust-dim); opacity: 0.5; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.72rem; font-weight: 600;
    color: var(--sand); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 20px;
}
.footer-col a {
    display: block; color: var(--dust-dim); opacity: 0.5;
    text-decoration: none; font-size: 0.87rem; margin-bottom: 12px;
    transition: all 0.3s;
}
.footer-col a:hover { color: var(--sand); opacity: 1; transform: translateX(4px); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 25px; border-top: 1px solid rgba(196,162,101,0.05);
    max-width: 1300px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: var(--dust-dim); opacity: 0.35; }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0; transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale {
    opacity: 0; transform: scale(0.92);
    transition: all 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left {
    opacity: 0; transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0; transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

/* ═══════════ MOBILE MENU ═══════════ */
.mobile-menu {
    display: none; position: fixed; inset: 0;
    background: rgba(13,11,9,0.97);
    backdrop-filter: blur(30px); z-index: 1045;
    flex-direction: column; align-items: center;
    justify-content: center; gap: 36px;
    opacity: 0; visibility: hidden;
    transition: all 0.5s;
}
.mobile-menu.show,
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .offcanvas-body {
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important;
    gap: 36px !important; width: 100%; height: 100%;
    padding: 0 !important;
}
.mobile-menu .offcanvas-header {
    border-bottom: none !important; padding: 0 !important;
    min-height: auto !important;
}
.mobile-menu a {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--dust) !important; text-decoration: none;
    transition: all 0.3s;
    opacity: 1; transform: translateY(0);
}
.mobile-menu.show a,
.mobile-menu.open a {
    opacity: 1; transform: translateY(0);
}
.mobile-menu a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu a:hover { color: var(--sand) !important; }
.mobile-close {
    position: absolute; 
    top: 120px;
    right: 18px;
    background: none; border: none; color: var(--sand);
    font-size: 2rem; /*cursor: none;*/ z-index: 1000;
    line-height: 1; padding: 0; width: auto; height: auto;
}
.mobile-close:hover { color: var(--sand-light); }

/* ═══════════ MAGNETIC BUTTONS ═══════════ */
.magnetic { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .hero-abstract { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: 1fr; gap: 48px; }
    .process-right { display: none; }
    .fleet-row { flex-wrap: wrap; }
    .fleet-card { flex: 1 1 calc(50% - 12px); min-width: 260px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
    .btn-primary, .btn-secondary, .service-card, .fleet-card, .pre-item, .cta-input, .mobile-close, .burger { cursor: auto; }
}
@media (max-width: 768px) {
    nav { padding: 16px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    .mobile-menu { display: flex !important; }
    #navbarNav { display: none; }
    .hero { padding: 0 24px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stats-section { padding: 0 24px; }
    .services { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .process { padding: 80px 24px; }
    .fleet { padding: 80px 24px; }
    .fleet-card { flex: 1 1 100%; }
    .advantages { padding: 80px 24px; }
    .pre-grid { grid-template-columns: 1fr; }
    .cta { padding: 80px 24px; }
    .cta-form { flex-direction: column; }
    footer { padding: 48px 24px 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section-divider { height: 100px; }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}
.nav-link:focus, .nav-link:hover {
    color: var(--dust-dim);
}

/* ───────────────────────────────────────────────────────────
   COOKIE CONSENT BANNER
   ─────────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth) 100%);
    border-top: 2px solid var(--sand);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 162, 101, 0.1);
    border-radius: 50%;
    color: var(--sand);
    animation: pulse 2s infinite;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
}

.cookie-message {
    flex: 1;
}

.cookie-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dust);
    margin-bottom: 6px;
}

.cookie-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dust-dim);
    line-height: 1.5;
    margin-bottom: 0rem;
}

.cookie-desc a {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-desc a:hover {
    color: var(--sand-light);
    text-decoration: underline;
}

.btn-cookie-accept {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    color: var(--charcoal);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 162, 101, 0.3);
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
}

.btn-cookie-accept svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 162, 101, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(196, 162, 101, 0);
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
    }
    
    .cookie-title {
        font-size: 1rem;
    }
    
    .cookie-desc {
        font-size: 0.85rem;
    }
    
    .btn-cookie-accept {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
}
a {
    color: unset;
    text-decoration: none;
}