/* --- RENK & EFEKT DEĞİŞKENLERİ --- */
:root {
    --green-main: #5F82FF;
    --green-light: #86A8FF;
    --red-accent: #FF6B6B;
    --dark-fume: #242836;
    --darker-bg: #090B17;
    --font-sans: 'Outfit', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    /* Daha derin, premium bir siyah/füme */
    --white: #F5F7FF;

    /* Glassmorphism (Cam Efekti) */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(24px);
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--darker-bg);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

button,
input,
textarea,
select {
    font-family: var(--font-sans);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 15% 15%, rgba(95, 130, 255, 0.08), transparent 15%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05), transparent 14%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* --- ARKAPLAN PARLAMALARI (Sabit - Fixed) --- */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 10s infinite alternate;
}

.glow-1 {
    width: clamp(200px, 50vw, 600px);
    height: clamp(200px, 50vw, 600px);
    background: var(--green-main);
    top: -10%;
    left: -10%;
}

.glow-2 {
    width: clamp(180px, 45vw, 500px);
    height: clamp(180px, 45vw, 500px);
    background: var(--dark-fume);
    bottom: -10%;
    right: -10%;
    opacity: 0.8;
}

.glow-3 {
    width: clamp(150px, 35vw, 400px);
    height: clamp(150px, 35vw, 400px);
    background: var(--green-light);
    top: 30%;
    left: 40%;
    opacity: 0.2;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2) translate(40px, 40px);
        opacity: 0.7;
    }
}


/* --- SNAP SCROLL CONTAINER --- */
.scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    position: relative;
    z-index: 1;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.slide {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 120px;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(95, 130, 255, 0.09), transparent 22%),
        radial-gradient(circle at 78% 24%, rgba(255, 107, 107, 0.07), transparent 18%);
    pointer-events: none;
}

.slide:nth-of-type(odd)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: -4%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(95, 130, 255, 0.12), transparent 60%);
    transform: rotate(18deg);
    pointer-events: none;
}

.slide:nth-of-type(even)::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -6%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1), transparent 58%);
    transform: rotate(-14deg);
    pointer-events: none;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    filter: blur(10px);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

/* --- ALT YÜZEN MENÜ (DYNAMIC ISLAND) --- */
.top-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    padding: 10px 16px;
    background: rgba(10, 12, 25, 0.78);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(97vw, 1480px);
    gap: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 130, 255, 0.18);
    color: var(--white);
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.brand-name {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--white);
}

.brand-subtitle {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(95, 130, 255, 0.14);
    border-color: rgba(95, 130, 255, 0.28);
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    padding: 4px 0;
}

.top-nav::-webkit-scrollbar {
    display: none;
}

.nav-item {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.95px;
    white-space: nowrap;
    text-align: center;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-item i {
    font-size: 0.85rem;
    color: var(--green-main);
}

.nav-item:hover,
.nav-item.active {
    color: var(--white);
    background: rgba(95, 130, 255, 0.22);
    border-color: rgba(95, 130, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 24px rgba(95, 130, 255, 0.12);
}

@media (max-width: 1440px) {
    .top-bar {
        width: min(98vw, 1360px);
        gap: 12px;
        padding: 10px 14px;
    }

    .top-nav {
        justify-content: flex-start;
        gap: 5px;
    }

    .nav-item {
        font-size: 0.7rem;
        padding: 8px 10px;
        letter-spacing: 0.8px;
    }

    .brand-subtitle {
        font-size: 0.64rem;
        letter-spacing: 0.95px;
    }
}

@media (max-width: 1280px) {
    .top-bar {
        flex-wrap: wrap;
        border-radius: 28px;
        justify-content: center;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .top-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-top: 4px;
    }
}

.hero-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-pretitle {
    display: inline-flex;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-tags span {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.8px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn.primary {
    background: linear-gradient(135deg, var(--green-main), var(--green-light));
    box-shadow: 0 18px 42px rgba(95, 130, 255, 0.28);
}

.hero-btn.primary::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 56%);
    opacity: 0.65;
    z-index: -1;
}

.hero-btn.primary:hover {
    box-shadow: 0 22px 52px rgba(95, 130, 255, 0.36);
}

.hero-btn.primary:focus-visible {
    outline: 2px solid rgba(134, 168, 255, 0.7);
    outline-offset: 3px;
    box-shadow: 0 16px 40px rgba(95, 130, 255, 0.3);
}

.hero-btn.secondary {
    background: transparent;
    color: rgba(245, 247, 255, 0.92);
    border-color: rgba(134, 168, 255, 0.45);
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-btn.secondary:hover {
    background: rgba(95, 130, 255, 0.08);
    border-color: rgba(134, 168, 255, 0.72);
    box-shadow: 0 14px 34px rgba(9, 11, 23, 0.24);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    perspective: 1400px;
}

.machine-diagram {
    width: min(500px, 100%);
    padding: 28px 26px 20px;
    border-radius: 40px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 32%, rgba(7, 10, 20, 0.45) 100%),
        radial-gradient(circle at 20% 18%, rgba(95, 130, 255, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(8, 10, 20, 0.95), rgba(11, 15, 28, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -30px 60px rgba(0, 0, 0, 0.25),
        0 44px 100px rgba(0, 0, 0, 0.38);
    transform-style: preserve-3d;
    transform-origin: center center;
    transform: rotateX(8deg) rotateY(-14deg) translateZ(0) scale(1.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    filter: drop-shadow(0 40px 54px rgba(0, 0, 0, 0.22));
    overflow: hidden;
}

.hero-simple-visual {
    width: min(460px, 100%);
    position: relative;
    z-index: 1;
}

.simple-panel {
    position: relative;
    padding: 24px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        linear-gradient(180deg, rgba(8, 10, 20, 0.96), rgba(11, 15, 28, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 40px 90px rgba(0, 0, 0, 0.36);
}

.simple-panel-top {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.simple-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}

.simple-stage {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 25% 20%, rgba(95, 130, 255, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(12, 17, 32, 0.94), rgba(7, 10, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.simple-layers {
    position: absolute;
    inset: 56px 36px 86px;
    display: grid;
    gap: 22px;
}

.simple-layers span {
    display: block;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(95, 130, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.simple-core {
    position: absolute;
    inset: 42px 48px 42px;
}

.simple-column {
    position: absolute;
    top: 12px;
    right: 56px;
    width: 64px;
    height: 198px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(95, 130, 255, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(8, 12, 24, 0.88);
    border: 1px solid rgba(95, 130, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.simple-column::before,
.simple-column::after {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
}

.simple-column::before {
    left: 16px;
}

.simple-column::after {
    right: 16px;
}

.simple-track {
    position: absolute;
    left: 18px;
    right: 88px;
    bottom: 28px;
    height: 44px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(95, 130, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(10, 14, 28, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-track::before {
    content: '';
    position: absolute;
    inset: 12px 18px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.12) 0 14px,
            transparent 14px 26px);
    opacity: 0.5;
}

.simple-product {
    position: absolute;
    width: 30px;
    height: 20px;
    border-radius: 6px;
    bottom: 40px;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.simple-product-a {
    left: 62px;
    background: linear-gradient(180deg, #6d8fff, #4668da);
}

.simple-product-b {
    left: 118px;
    background: linear-gradient(180deg, #ff8a8a, #d85a5a);
}

.simple-metrics {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.simple-metric strong {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--green-main);
}

.simple-metric span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-abstract-visual {
    width: min(470px, 100%);
    position: relative;
    z-index: 1;
}

.hero-photo-visual {
    width: min(520px, 100%);
}

.hero-photo-shell {
    position: relative;
    padding: 16px;
    border-radius: 40px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 36%, rgba(7, 10, 20, 0.44) 100%),
        linear-gradient(180deg, rgba(10, 14, 28, 0.96), rgba(7, 10, 18, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 40px 90px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.hero-photo-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(95, 130, 255, 0.08), transparent 24%, transparent 76%, rgba(9, 11, 23, 0.4));
    pointer-events: none;
    z-index: 0;
}

.hero-machine-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
}

.hero-photo-badge {
    position: absolute;
    z-index: 2;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(8, 12, 24, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.hero-photo-badge span,
.hero-photo-inset-copy span {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    margin-bottom: 6px;
}

.hero-photo-badge strong,
.hero-photo-inset-copy strong {
    font-size: 1.05rem;
    color: var(--white);
}

.hero-photo-badge-top {
    top: 28px;
    left: 28px;
}

.hero-photo-inset {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    width: min(220px, 46%);
    padding: 10px;
    border-radius: 26px;
    background: rgba(8, 12, 24, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-machine-photo-alt {
    border-radius: 18px;
    box-shadow: none;
}

.hero-photo-inset-copy {
    padding: 12px 6px 4px;
}

.abstract-shell {
    position: relative;
    min-height: 470px;
    border-radius: 40px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(95, 130, 255, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(10, 14, 28, 0.96), rgba(7, 10, 18, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 40px 90px rgba(0, 0, 0, 0.34);
}

.abstract-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(95, 130, 255, 0.18);
}

.orbit-a {
    inset: 68px 88px 148px;
}

.orbit-b {
    inset: 102px 122px 182px;
    border-color: rgba(255, 255, 255, 0.08);
}

.abstract-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.9));
    opacity: 0.45;
}

.abstract-core {
    position: absolute;
    inset: 94px 110px 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(95, 130, 255, 0.24);
    box-shadow: inset 0 0 30px rgba(95, 130, 255, 0.08);
}

.core-ring-alt {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.08);
}

.core-center {
    position: relative;
    width: 136px;
    height: 136px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background:
        radial-gradient(circle at 50% 35%, rgba(95, 130, 255, 0.26), rgba(10, 14, 28, 0.96) 70%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 40px rgba(95, 130, 255, 0.16);
}

.core-center strong {
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--white);
}

.core-center span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.58);
}

.abstract-card {
    position: absolute;
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.18);
}

.abstract-card span {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 6px;
}

.abstract-card strong {
    font-size: 1.35rem;
    color: var(--white);
}

.abstract-card-top {
    top: 46px;
    left: 34px;
}

.abstract-card-right {
    top: 152px;
    right: 26px;
}

.abstract-card-bottom {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.machine-diagram::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(95, 130, 255, 0.12), transparent 26%);
    pointer-events: none;
}

.machine-diagram::after {
    content: '';
    position: absolute;
    inset: auto 10% -44px;
    height: 88px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95, 130, 255, 0.24), rgba(95, 130, 255, 0));
    filter: blur(20px);
    pointer-events: none;
}

.hero-visual:hover .machine-diagram {
    transform: rotateX(3deg) rotateY(-6deg) translateY(-8px) translateZ(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -30px 60px rgba(0, 0, 0, 0.22),
        0 54px 120px rgba(0, 0, 0, 0.42);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(95, 130, 255, 0.14), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 14px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
}

.visual-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 36px;
    padding: 26px 22px 22px;
    backdrop-filter: blur(30px);
    box-shadow: 0 58px 110px rgba(9, 11, 23, 0.28);
    overflow: hidden;
}

#slide1 {
    background-size: cover;
    background-position: center;
}

#slide1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 11, 23, 0.92) 0%, rgba(9, 11, 23, 0.75) 50%, rgba(9, 11, 23, 0.88) 100%);
    z-index: 0;
    pointer-events: none;
}

#slide1 .hero-grid {
    position: relative;
    z-index: 2;
}


.machine-svg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(95, 130, 255, 0.22));
}

.machine-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
    width: 100%;
    padding: 16px 24px;
    margin-top: -4px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mstat strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green-main);
    line-height: 1;
}

.mstat span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-glow {
    position: absolute;
    content: '';
    position: absolute;
    top: -30px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(95, 130, 255, 0.18);
    border-radius: 50%;
    filter: blur(36px);
}

.visual-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.visual-screen {
    background: rgba(9, 11, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-screen-header {
    width: 46%;
    height: 10px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.visual-bars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    height: 132px;
}

.visual-bar {
    display: block;
    width: 100%;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, rgba(95, 130, 255, 0.95), rgba(255, 107, 107, 0.4));
}

.bar-1 {
    height: 32%;
}

.bar-2 {
    height: 62%;
}

.bar-3 {
    height: 82%;
}

.bar-4 {
    height: 52%;
}

.visual-data {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.visual-data>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-data strong {
    font-size: 1.8rem;
    color: var(--white);
}

.visual-data p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

.visual-details {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
}

.detail-dot,
.detail-dot.dot-alt {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(95, 130, 255, 0.9);
}

.detail-dot.dot-alt {
    background: rgba(255, 107, 107, 0.9);
}

.detail strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
}

.detail span {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
}

.hero-float-tag {
    position: absolute;
    top: 8px;
    right: -14px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(95, 130, 255, 0.26), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
    z-index: 2;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.slide-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    max-width: 800px;
    position: relative;
}

.slide-header p {
    color: var(--green-light);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 10px;
}

.slide-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
}

.slide-header::after {
    content: '';
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    display: block;
    margin: 24px auto 0;
    border-radius: 999px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(9, 11, 23, 0.25);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 58%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.glass-card:hover::before {
    left: 160%;
}

.glass-card:hover {
    transform: translateY(-14px) scale(1.015);
    border-color: rgba(95, 130, 255, 0.65);
    background: rgba(255, 255, 255, 0.09);
    box-shadow:
        0 0 0 1px rgba(95, 130, 255, 0.18),
        0 0 34px rgba(95, 130, 255, 0.12),
        0 32px 100px rgba(9, 11, 23, 0.32);
}

.hero-title {
    font-size: 9vw;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, var(--green-main), var(--green-light));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-title span {
    color: rgba(255, 255, 255, 0.85);
}

.hero-desc {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    max-width: 620px;
    text-align: center;
    line-height: 1.7;
    margin: 0 auto;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.diff-card i {
    font-size: 45px;
    color: var(--green-light);
    margin-bottom: 25px;
    display: inline-block;
}

.diff-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.diff-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

.about-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-header {
    text-align: left;
    margin-bottom: 0;
    max-width: 700px;
}

.about-header::after {
    margin: 24px 0 0;
}

.about-lead {
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
}

.about-text {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 620px;
}

.about-points {
    display: grid;
    gap: 14px;
}

.about-points span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

.about-points i {
    color: var(--green-main);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-copy .hero-btn {
    align-self: flex-start;
    margin-top: 6px;
}

.about-panel {
    padding: 34px 30px;
    background:
        radial-gradient(circle at top right, rgba(95, 130, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
}

.about-panel-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.about-panel-head span {
    display: inline-flex;
    align-self: flex-start;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(95, 130, 255, 0.16);
    border: 1px solid rgba(95, 130, 255, 0.26);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.about-panel-head h3 {
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 800;
    max-width: 520px;
}

.about-flow {
    display: grid;
    gap: 14px;
}

.about-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 10, 18, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.about-step strong {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(95, 130, 255, 0.24), rgba(134, 168, 255, 0.14));
    border: 1px solid rgba(95, 130, 255, 0.24);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.about-step:hover,
.about-step:focus-within {
    transform: translateY(-4px);
    background: rgba(10, 14, 24, 0.46);
    border-color: rgba(95, 130, 255, 0.24);
    box-shadow: 0 16px 34px rgba(7, 10, 18, 0.22);
}

.about-step:hover strong,
.about-step:focus-within strong {
    transform: translateY(-1px);
    border-color: rgba(134, 168, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(95, 130, 255, 0.12),
        0 0 18px rgba(95, 130, 255, 0.18);
}

.about-step h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.about-step p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.about-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(7, 10, 18, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--green-light);
    font-size: 0.98rem;
}

.about-stat span {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    font-size: 0.92rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.why-copy {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 620px;
}

.why-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.why-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 0.4px;
}

.why-highlights span i {
    color: var(--green-main);
    font-size: 0.85rem;
}

.why-cards {
    display: grid;
    gap: 22px;
}

.why-card {
    padding: 30px 24px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(9, 11, 23, 0.2);
    position: relative;
    overflow: hidden;
}

.why-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.why-card:hover .why-card-bg {
    opacity: 0.24;
}

.why-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: rgba(95, 130, 255, 0.12);
    border-radius: 50%;
    filter: blur(12px);
    z-index: 0;
}

.why-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.why-card .card-top span {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--green-main);
}

.why-card .card-top i {
    font-size: 22px;
    color: rgba(95, 130, 255, 0.95);
}

.why-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.why-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .why-highlights {
        grid-template-columns: 1fr;
    }
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.fleet-cta-band {
    width: 100%;
    max-width: 1100px;
    margin-top: 34px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 34px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(95, 130, 255, 0.18), rgba(95, 130, 255, 0.06) 34%, rgba(9, 11, 23, 0.92) 100%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(95, 130, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 70px rgba(0, 0, 0, 0.22);
}

.fleet-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 50%, rgba(95, 130, 255, 0.18), transparent 34%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.fleet-cta-band p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.5;
    font-weight: 700;
    color: rgba(245, 247, 255, 0.96);
    max-width: 640px;
}

.fleet-cta-band .hero-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 18px 38px rgba(95, 130, 255, 0.24);
}

.fleet-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
    min-height: 0;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 34%, rgba(7, 10, 20, 0.48) 100%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform-origin: center center;
    transition:
        transform 0.38s ease,
        box-shadow 0.38s ease,
        border-color 0.38s ease,
        background 0.38s ease;
}

.fleet-card::after {
    content: '';
    position: absolute;
    inset: auto -8% -24% 26%;
    height: 220px;
    background: radial-gradient(circle, rgba(95, 130, 255, 0.18), transparent 66%);
    pointer-events: none;
    z-index: 0;
}

.fc-media {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 170px;
    flex: 0 0 132px;
    aspect-ratio: auto;
    flex-shrink: 0;
    padding: 6px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(95, 130, 255, 0.08) 24%, rgba(8, 12, 24, 0.94) 100%),
        linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(11, 15, 28, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -18px 28px rgba(0, 0, 0, 0.18),
        0 20px 36px rgba(0, 0, 0, 0.24);
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease, filter 0.38s ease;
}

.fc-media::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%, transparent 62%, rgba(7, 10, 18, 0.18)),
        radial-gradient(circle at center, transparent 28%, rgba(7, 10, 18, 0.14) 64%, rgba(7, 10, 18, 0.34) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 2;
}

.fc-media img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: var(--fleet-machine-position, center center);
    transform: scale(var(--fleet-machine-scale, 1.6));
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
    filter: saturate(0.98) contrast(1.08) brightness(0.97);
}

.fleet-card:hover .fc-media {
    transform: translate3d(0, -4px, 0) rotate(-0.6deg);
    border-color: rgba(95, 130, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -18px 28px rgba(0, 0, 0, 0.16),
        0 0 0 1px rgba(95, 130, 255, 0.12),
        0 0 26px rgba(95, 130, 255, 0.14),
        0 24px 44px rgba(0, 0, 0, 0.28);
}

.fleet-card:hover .fc-media img {
    transform: translate3d(5px, -2px, 0) scale(calc(var(--fleet-machine-scale, 1.6) + 0.05));
    filter: saturate(1.03) contrast(1.11) brightness(1);
}

.fleet-card:hover {
    border-color: rgba(95, 130, 255, 0.32);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(95, 130, 255, 0.09) 34%, rgba(7, 10, 20, 0.52) 100%),
        rgba(255, 255, 255, 0.07);
    box-shadow:
        0 0 0 1px rgba(95, 130, 255, 0.08),
        0 0 30px rgba(95, 130, 255, 0.08),
        0 28px 60px rgba(0, 0, 0, 0.26);
}

.fleet-card-conveyor {
    --fleet-machine-scale: 1.48;
    --fleet-machine-position: 35% 50%;
}

.fleet-card-lift {
    --fleet-machine-scale: 1.5;
    --fleet-machine-position: 35% 50%;
}

.fleet-card-locker {
    --fleet-machine-scale: 1.1;
    --fleet-machine-position: 50% 50%;
}

.fleet-card-hybrid {
    --fleet-machine-scale: 1.5;
    --fleet-machine-position: 35% 50%;
}

.fc-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    transition: transform 0.35s ease;
}

.fc-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.fc-content p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.fleet-features span {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-features i {
    color: var(--green-main);
    font-size: 12px;
}

.fc-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--dark-fume);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.fc-badge.red {
    color: var(--red-accent);
    border-color: rgba(255, 107, 107, 0.3);
}

.fc-badge.green {
    color: var(--green-main);
    border-color: rgba(95, 130, 255, 0.3);
}

.fleet-card:hover .fc-content {
    transform: translateX(2px);
}

.fleet-card:hover .fc-content h3 {
    color: rgba(245, 247, 255, 0.98);
    text-shadow: 0 0 18px rgba(95, 130, 255, 0.08);
    transform: translateX(1px);
}

.fleet-card:hover .fc-badge {
    transform: translateY(-1px);
    border-color: rgba(95, 130, 255, 0.5);
    box-shadow: 0 10px 24px rgba(95, 130, 255, 0.12);
}

.tech-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
}

.tech-center {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.tech-center::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--green-main);
    border-bottom-color: var(--green-light);
    animation: spin 6s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.tech-tag {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #ddd;
    z-index: 1;
}

.tech-center h2 {
    font-size: 3.2rem;
    line-height: 1;
    margin: 0;
}

.tech-center span {
    font-size: 0.85rem;
    color: var(--green-light);
    letter-spacing: 2px;
    margin-top: 10px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    z-index: 1;
}

.tech-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(95, 130, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ddd;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.tech-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    padding: 25px 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateX(-10px);
    border-color: var(--green-main);
}

.tech-item i {
    font-size: 24px;
    color: var(--green-main);
}

.tech-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tech-item p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.sector-card {
    position: relative;
    min-height: 320px;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(95, 130, 255, 0.18), inset 0 0 30px rgba(0, 0, 0, 0.12);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.25);
}

.sector-card:hover::before {
    border-color: rgba(95, 130, 255, 0.45);
    box-shadow: inset 0 0 0 1px rgba(95, 130, 255, 0.25), inset 0 0 40px rgba(0, 0, 0, 0.16);
}

.sc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.36;
    transition: var(--transition);
    z-index: 0;
}

.sc-bg.bg1 {
    background-position: center;
}

.sc-bg.bg2 {
    background-position: center;
}

.sc-bg.bg3 {
    background-position: center;
}

.sc-bg.bg4 {
    background-position: center;
}

.sc-bg.bg5 {
    background-position: center;
}

.sc-bg.bg6 {
    background-position: center;
}

.sector-card:hover .sc-bg {
    opacity: 0.8;
    transform: scale(1.05);
}

.sc-content {
    position: relative;
    z-index: 1;
    padding: 35px;
    background: linear-gradient(to top, var(--darker-bg) 70%, transparent);
    width: 100%;
}

.sc-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sc-content p {
    font-size: 0.95rem;
    color: #ccc;
}

.sc-content i {
    font-size: 2rem;
    color: var(--green-main);
    margin-bottom: 10px;
}

.sector-features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.sector-features span {
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sector-features i {
    color: var(--green-main);
    font-size: 10px;
}

.eco-wrapper {
    display: grid;
    grid-template-columns: 1.2fr minmax(320px, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    align-items: center;
}

.eco-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
}

.eco-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eco-text h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.eco-text h2 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--green-light);
}

.eco-text p {
    font-size: 1.05rem;
    color: #bbb;
    line-height: 1.7;
}

.eco-note {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.8;
    max-width: 460px;
}

.eco-highlights {
    display: grid;
    gap: 12px;
}

.eco-highlights span {
    font-size: 0.95rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(95, 130, 255, 0.07);
    border: 1px solid rgba(95, 130, 255, 0.12);
}

.eco-highlights i {
    color: var(--green-main);
    font-size: 14px;
}

.eco-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 32px 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.stat-box.featured {
    background: rgba(95, 130, 255, 0.14);
    border-color: rgba(95, 130, 255, 0.2);
}

.stat-box i {
    font-size: 2rem;
    color: var(--green-main);
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--green-main);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-box p {
    font-size: 0.95rem;
    color: #ddd;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .eco-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eco-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eco-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .eco-text h2 {
        font-size: 2.8rem;
    }

    .eco-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-wrapper {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.glass-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 40px auto;
    max-width: 860px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(245, 247, 255, 0.82);
    text-align: left;
}

.glass-form input,
.glass-form textarea {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 20px 30px;
    border-radius: 26px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    backdrop-filter: var(--glass-blur);
    transition: var(--transition);
    width: 100%;
}

.glass-form textarea {
    grid-column: 1 / -1;
    min-height: 160px;
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
    color: rgba(245, 247, 255, 0.58);
}

.glass-form input:focus,
.glass-form textarea:focus {
    border-color: var(--green-main);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(95, 130, 255, 0.1);
}

.glass-form button {
    background: var(--green-main);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 280px;
}

.glass-form button:disabled {
    opacity: 0.72;
    cursor: wait;
    box-shadow: none;
}

.glass-form button:hover {
    background: var(--white);
    color: var(--dark-fume);
    box-shadow: 0 20px 40px rgba(95, 130, 255, 0.22);
}

.form-submit-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
}

.form-feedback {
    grid-column: 1 / -1;
    margin-top: 6px;
    padding: 16px 20px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    border: 1px solid transparent;
}

.form-feedback.is-success {
    background: rgba(45, 214, 111, 0.12);
    border-color: rgba(45, 214, 111, 0.28);
    color: #dff8e9;
}

.form-feedback.is-error {
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ffe3e3;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.cd-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #aaa;
    font-size: 0.95rem;
}

.cd-item i {
    color: var(--green-main);
    font-size: 20px;
}

.cd-item span {
    color: var(--white);
    font-weight: 600;
    display: block;
}

.final-footer {
    margin-top: 60px;
    font-size: 12px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    backdrop-filter: var(--glass-blur);
}

.social-link:hover {
    border-color: var(--green-main);
    color: var(--green-main);
    transform: scale(1.1);
}

.social-link i {
    font-size: 18px;
}

.chevron-down-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(95, 130, 255, 0.15);
    border: 1px solid rgba(95, 130, 255, 0.4);
    color: var(--green-main);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

.chevron-down-btn:hover {
    opacity: 1;
    background: rgba(95, 130, 255, 0.3);
    border-color: rgba(95, 130, 255, 0.8);
    box-shadow: 0 0 20px rgba(95, 130, 255, 0.4);
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 98px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(95, 130, 255, 0.15);
    border: 1px solid rgba(95, 130, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-main);
    font-size: 16px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top-btn:hover {
    background: rgba(95, 130, 255, 0.3);
    border-color: rgba(95, 130, 255, 0.8);
    box-shadow: 0 0 20px rgba(95, 130, 255, 0.4);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2dd66f, #128c45);
    color: #fff;
    text-decoration: none;
    box-shadow:
        0 18px 38px rgba(18, 140, 69, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 24px 46px rgba(18, 140, 69, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.16);
    filter: saturate(1.05);
}

.whatsapp-float i {
    font-size: 30px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .glass-card:hover,
    .hero-btn:hover,
    .sector-card:hover,
    .scroll-top-btn:hover,
    .social-link:hover,
    .whatsapp-float:hover {
        transform: none;
    }
}

@media (max-width: 1200px) {
    .tech-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .tech-item {
        justify-content: center;
        text-align: left;
    }

    .tech-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    body.menu-open .scroll-container {
        overflow: hidden;
    }

    .scroll-container {
        scroll-snap-type: none;
        overflow-x: hidden;
        padding-top: 80px;
    }

    .slide {
        min-height: auto;
        padding: 80px 5% 60px;
        scroll-snap-align: none;
    }

    .top-bar {
        flex-wrap: wrap;
        border-radius: 24px;
        top: 10px;
        padding: 12px 16px;
        gap: 10px;
        align-items: center;
        width: min(94vw, 460px);
    }

    .brand {
        justify-content: flex-start;
        flex: 1;
        min-width: 0;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .top-nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow: hidden;
        gap: 8px;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        padding: 0;
        margin-top: 0;
        border-top: 1px solid transparent;
        transform: translateY(-8px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, padding 0.25s ease, margin 0.25s ease, border-color 0.25s ease;
    }

    .top-bar.menu-open .top-nav {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 12px;
        margin-top: 2px;
        border-top-color: rgba(255, 255, 255, 0.08);
        transform: translateY(0);
    }

    .nav-item {
        font-size: 0.76rem;
        padding: 12px 14px;
        white-space: nowrap;
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .machine-diagram {
        width: min(450px, 100%);
        transform: rotateX(4deg) rotateY(-8deg) scale(1.02);
    }

    .hero-simple-visual {
        width: min(420px, 100%);
    }

    .hero-abstract-visual {
        width: min(430px, 100%);
    }

    .hero-photo-shell {
        border-radius: 32px;
        padding: 14px;
    }

    .hero-photo-inset {
        width: min(200px, 44%);
        right: 18px;
        bottom: 18px;
    }

    .hero-photo-badge-top {
        top: 22px;
        left: 22px;
    }

    .visual-card {
        max-width: 340px;
        padding: 22px 18px 18px;
    }

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

    .why-highlights {
        grid-template-columns: 1fr 1fr;
    }

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

    .fleet-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
        padding: 24px 22px;
    }

    .fleet-cta-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .fleet-cta-band .hero-btn {
        width: auto;
    }

    .diff-grid,
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .glass-card {
        padding: 24px 18px;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .tech-list {
        grid-template-columns: 1fr;
    }

    .tech-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .tech-center {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .scroll-container {
        padding-top: 70px;
    }

    .slide {
        padding: 70px 4% 50px;
    }

    .hero-title {
        font-size: 16vw;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-pretitle {
        font-size: 0.7rem;
        text-align: center;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-visual {
        align-items: center;
    }

    .machine-diagram {
        width: min(100%, 390px);
        padding: 22px 18px 16px;
        border-radius: 30px;
        transform: none;
    }

    .hero-simple-visual {
        width: min(100%, 380px);
    }

    .hero-abstract-visual {
        width: min(100%, 390px);
    }

    .hero-photo-shell {
        padding: 12px;
        border-radius: 28px;
    }

    .hero-machine-photo {
        border-radius: 22px;
    }

    .hero-photo-badge {
        padding: 10px 12px;
        border-radius: 18px;
    }

    .hero-photo-badge strong,
    .hero-photo-inset-copy strong {
        font-size: 0.9rem;
    }

    .hero-photo-inset {
        width: min(168px, 43%);
        right: 14px;
        bottom: 14px;
        padding: 8px;
        border-radius: 20px;
    }

    .hero-machine-photo-alt {
        border-radius: 14px;
    }

    .hero-photo-inset-copy {
        padding: 10px 4px 2px;
    }

    .abstract-shell {
        min-height: 400px;
        border-radius: 30px;
    }

    .orbit-a {
        inset: 56px 62px 132px;
    }

    .orbit-b {
        inset: 88px 92px 164px;
    }

    .abstract-core {
        inset: 82px 78px 150px;
    }

    .core-center {
        width: 112px;
        height: 112px;
    }

    .core-center strong {
        font-size: 1.6rem;
    }

    .abstract-card {
        min-width: 132px;
        padding: 14px 16px;
    }

    .abstract-card strong {
        font-size: 1.1rem;
    }

    .abstract-card-top {
        top: 24px;
        left: 20px;
    }

    .abstract-card-right {
        top: 128px;
        right: 18px;
    }

    .abstract-card-bottom {
        bottom: 20px;
    }

    .simple-panel {
        padding: 18px;
        border-radius: 28px;
    }

    .simple-stage {
        min-height: 260px;
    }

    .simple-core {
        inset: 32px 28px 30px;
    }

    .simple-column {
        right: 28px;
        width: 52px;
        height: 170px;
    }

    .simple-track {
        right: 66px;
        height: 38px;
    }

    .simple-metrics {
        gap: 14px;
        padding: 14px 12px;
    }

    .hero-visual:hover .machine-diagram {
        transform: translateY(-4px);
    }

    .visual-card {
        max-width: 100%;
        padding: 18px 14px 14px;
    }

    .visual-badge {
        font-size: 0.62rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .visual-bars {
        height: 90px;
    }

    .hero-float-tag {
        font-size: 0.58rem;
        padding: 6px 10px;
        max-width: 140px;
    }

    .hero-photo-badge span,
    .hero-photo-inset-copy span {
        font-size: 0.58rem;
        letter-spacing: 0.9px;
    }

    .simple-metric strong {
        font-size: 1.2rem;
    }

    .simple-metric span {
        font-size: 0.62rem;
    }

    .slide-header h2 {
        font-size: 2rem;
    }

    .why-highlights {
        grid-template-columns: 1fr;
    }

    .fleet-card {
        flex-direction: column;
        align-items: stretch;
    }

    .fleet-cta-band {
        gap: 18px;
    }

    .fleet-cta-band p {
        font-size: 1.02rem;
    }

    .fleet-cta-band .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .fc-media {
        width: 120px;
        height: 154px;
        flex: 0 0 120px;
    }

    .fc-content h3 {
        font-size: 1.3rem;
    }

    .diff-grid,
    .sector-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sector-card {
        min-height: 260px;
    }

    .glass-form {
        grid-template-columns: 1fr;
    }

    .glass-form input,
    .glass-form textarea,
    .glass-form button {
        border-radius: 14px;
        padding: 16px 20px;
    }

    .glass-form button {
        min-width: 100%;
    }

    .whatsapp-float {
        right: 20px;
        bottom: 20px;
        width: 54px;
        height: 54px;
    }

    .scroll-top-btn {
        right: 20px;
        bottom: 88px;
    }

    .tech-center {
        width: 200px;
        height: 200px;
    }

    .tech-center h2 {
        font-size: 2rem;
    }

    .eco-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        min-height: auto;
        padding: 24px 14px;
    }

    .eco-text h2 {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        padding: 0 4px;
    }

    .social-links {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        border-radius: 18px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .nav-item {
        font-size: 0.7rem;
        padding: 11px 12px;
        gap: 4px;
    }

    .nav-item i {
        font-size: 0.75rem;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-title {
        font-size: 18vw;
    }

    .hero-btn {
        padding: 13px 22px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .slide-header h2 {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }

    .eco-stats {
        grid-template-columns: 1fr;
    }

    .why-card h3 {
        font-size: 1.2rem;
    }

    .tech-center {
        width: 170px;
        height: 170px;
    }

    .tech-center h2 {
        font-size: 1.6rem;
    }

    .fleet-card {
        gap: 16px;
    }

    .fc-media {
        width: 108px;
        height: 138px;
        flex-basis: 108px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 80px;
    }
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-header {
        text-align: center;
        max-width: 760px;
    }

    .about-header::after {
        margin: 24px auto 0;
    }

    .about-lead,
    .about-text {
        max-width: none;
        text-align: center;
    }

    .about-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-copy .hero-btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .about-panel {
        padding: 24px 18px;
    }

    .about-panel-head h3 {
        font-size: 1.45rem;
    }

    .about-points,
    .about-meta {
        grid-template-columns: 1fr;
    }

    .about-step {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .about-step strong {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .about-points span {
        padding: 14px 15px;
        border-radius: 18px;
        font-size: 0.92rem;
    }
}
