@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=JetBrains+Mono:wght@400;500&family=Outfit:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --racing-cream: #FFFBF5;
    --warm-ivory: #FFF8F0;
    --sunset-orange: #F97316;
    --chrome-navy: #1E3A5F;
    --carbon-gray: #64748B;
    --deep-carbon: #0F172A;
    --steel: #475569;
    --silver: #94A3B8;
    --white: #FFFFFF;
    --orange-glow: rgba(249, 115, 22, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--racing-cream);
    color: var(--steel);
    line-height: 1.7;
    overflow-x: hidden;
}

strong, p, b {
    color: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sunset-orange), #EA580C);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 960px;
    height: 72px;
    background: rgba(255, 251, 245, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 36px;
    box-shadow: 0 16px 56px rgba(15, 23, 42, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    height: 60px;
    border-radius: 30px;
    background: rgba(255, 251, 245, 0.99);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.header-inner {
    width: 100%;
    max-width: 960px;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--chrome-navy));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--deep-carbon);
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    padding: 10px 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--steel);
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 20px;
}

.header-inner nav a {
    padding: 10px 6px;
}

nav a:hover {
    color: var(--sunset-orange);
    background: rgba(249, 115, 22, 0.08);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.08);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--sunset-orange);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 251, 245, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 120px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 48px;
    height: 48px;
    stroke: var(--sunset-orange);
}

.mobile-menu nav {
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--deep-carbon);
    padding: 20px 0;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.mobile-menu-divider {
    width: 60px;
    height: 2px;
    background: var(--sunset-orange);
    margin: 0 auto;
}

.kinetic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.kinetic-text {
    position: absolute;
    font-family: 'Archivo Black', sans-serif;
    font-size: 160px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-carbon);
    opacity: 0.03;
    white-space: nowrap;
    pointer-events: none;
}

.kinetic-text:nth-child(1) {
    top: 10%;
    left: 0;
    animation: kineticMove1 50s linear infinite;
}

.kinetic-text:nth-child(2) {
    top: 40%;
    right: 0;
    text-align: right;
    font-size: 120px;
    letter-spacing: 0.08em;
    animation: kineticMove2 45s linear infinite reverse;
}

.kinetic-text:nth-child(3) {
    bottom: 20%;
    left: 0;
    font-size: 180px;
    letter-spacing: 0.12em;
    animation: kineticMove1 55s linear infinite;
    animation-delay: 5s;
}

@keyframes kineticMove1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes kineticMove2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

main {
    position: relative;
    z-index: 1;
}

.hero {
    min-height: 100vh;
    background: var(--warm-ivory);
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 80px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    grid-column: span 5;
    z-index: 1;
}

.hero-racing-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 56px;
    line-height: 0.88;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-carbon);
    max-width: 520px;
}

.hero-kinetic-phrase {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(249, 115, 22, 0.6);
    margin-top: 16px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--carbon-gray);
    line-height: 1.7;
    max-width: 440px;
    margin-top: 20px;
}

.hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 32px;
}

.marker {
    width: 10px;
    height: 10px;
    background: var(--sunset-orange);
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.3));
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-main {
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.3);
    transition: all 0.25s ease;
}

.btn-main:hover {
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 18px 36px;
    background: transparent;
    border: 3px solid var(--deep-carbon);
    color: var(--deep-carbon);
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
}

.hero-visual {
    grid-column: span 7;
    position: relative;
    height: 520px;
}

.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    position: relative;
}

.hero-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.15);
    transition: all 0.3s ease;
}

.hero-card:nth-child(1) {
    grid-row: span 2;
    margin-top: -24px;
    margin-left: -20px;
}

.hero-card:nth-child(2) { margin-right: 20px; }
.hero-card:nth-child(3) { margin-left: -20px; }
.hero-card:nth-child(4) { margin-right: 20px; }

.hero-card:hover {
    z-index: 10;
    transform: scale(1.03);
    box-shadow: 0 36px 80px rgba(249, 115, 22, 0.2);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.98);
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.08);
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 0;
    padding: 16px 20px;
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.1);
}

.floating-stat-1 {
    top: 40px;
    right: 20px;
}

.floating-stat-2 {
    bottom: 40px;
    right: 20px;
}

.floating-stat-label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    color: var(--deep-carbon);
}

.floating-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--sunset-orange);
}

.section {
    padding: 140px 80px 120px;
}

.section-dark {
    background: var(--deep-carbon);
    color: var(--white);
}

.section-cream {
    background: var(--racing-cream);
}

.section-ivory {
    background: var(--warm-ivory);
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    letter-spacing: 0.06em;
    color: var(--deep-carbon);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-light {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--steel);
    max-width: 600px;
}

.section-divider {
    width: 100%;
    height: 2px;
    background: var(--sunset-orange);
}

.services-slider {
    position: relative;
    overflow: hidden;
    padding: 0 100px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--sunset-orange);
    border-color: var(--sunset-orange);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--sunset-orange);
    transition: stroke 0.25s ease;
}

.slider-nav:hover svg {
    stroke: white;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    width: 340px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 0;
    flex-shrink: 0;
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
    margin: 24px 0;
    margin-right: -48px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    z-index: 10;
    transform: scale(1.04);
    box-shadow: 0 28px 72px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.15);
}

.service-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.service-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), #EA580C);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    margin: 20px 0 16px 20px;
}

.service-card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--sunset-orange);
}

.service-card-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
    padding: 0 20px;
}

.service-card-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--sunset-orange);
    margin-top: 8px;
    padding: 0 20px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--carbon-gray);
    margin-top: 4px;
    line-height: 1.6;
    padding: 0 20px 20px;
}

.split-section {
    display: grid;
    grid-template-columns: 55% 45%;
}

.split-divider {
    width: 4px;
    background: linear-gradient(180deg, var(--sunset-orange), var(--chrome-navy));
    position: absolute;
    left: 55%;
    top: 0;
    height: 100%;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.08);
}

.about-image-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.about-content {
    padding: 80px 60px;
}

.about-content-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.about-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.about-text {
    font-size: 16px;
    color: var(--carbon-gray);
    line-height: 1.8;
    margin-top: 20px;
}

.about-text p {
    margin-bottom: 16px;
}

.btn-about {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    transition: all 0.25s ease;
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.timeline-section {
    background: var(--deep-carbon);
    position: relative;
    overflow: hidden;
}

.timeline-bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(249, 115, 22, 0.06) 40px,
        rgba(249, 115, 22, 0.06) 41px
    );
}

.timeline-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sunset-orange), #EA580C, var(--sunset-orange));
    transform: translateX(-50%);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    /* width: calc(50% - 60px); */
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0;
    padding: 28px 32px;
    border: 1px solid rgba(249, 115, 22, 0.08);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) {
    align-self: start;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    align-self: end;
    margin-left: auto;
    margin-top: 80px;
}

.timeline-item:hover {
    z-index: 10;
    transform: scale(1.03);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--sunset-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--sunset-orange);
}

.timeline-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 40px;
    color: rgba(249, 115, 22, 0.15);
    margin-bottom: 8px;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.timeline-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--sunset-orange);
}

.timeline-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.timeline-desc {
    font-size: 14px;
    color: var(--carbon-gray);
    margin-top: 8px;
    line-height: 1.6;
}

.timeline-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    margin-top: 16px;
    filter: saturate(0.98);
}

.marquee {
    background: var(--sunset-orange);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeMove 30s linear infinite;
}

.marquee-item {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    color: white;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.marquee-divider {
    width: 8px;
    height: 8px;
    background: var(--white);
    margin: 0 32px;
}

@keyframes marqueeMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.advantages-canvas {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(30, 58, 95, 0.02));
    overflow: hidden;
}

.advantages-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.advantage-card {
    width: 280px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 0;
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.1);
    padding: 24px;
    cursor: grab;
    position: absolute;
    transition: all 0.3s ease;
}

.advantage-card:active {
    cursor: grabbing;
    box-shadow: 0 32px 80px rgba(249, 115, 22, 0.15);
    z-index: 100;
}

.advantage-card:hover {
    box-shadow: 0 28px 72px rgba(249, 115, 22, 0.12);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
}

.advantage-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--sunset-orange);
}

.advantage-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    color: var(--deep-carbon);
}

.advantage-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--carbon-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.advantage-decor {
    width: 40px;
    height: 2px;
    background: rgba(249, 115, 22, 0.4);
    margin-top: 12px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 0;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.15);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.achievement-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--sunset-orange);
}

.achievement-value {
    font-family: 'Archivo Black', sans-serif;
    font-size: 40px;
    color: var(--deep-carbon);
}

.achievement-card:hover .achievement-value {
    color: var(--sunset-orange);
}

.achievement-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(71, 85, 105, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.achievement-decor {
    width: 40px;
    height: 2px;
    background: rgba(249, 115, 22, 0.4);
    margin-top: 12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 0 80px;
}

.team-panel {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0;
    border: 1px solid rgba(249, 115, 22, 0.08);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-panel:nth-child(odd) {
    align-self: start;
}

.team-panel:nth-child(even) {
    align-self: end;
    margin-top: 24px;
}

.team-panel:hover {
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 20px 56px rgba(249, 115, 22, 0.08);
    z-index: 10;
}

.team-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
}

.team-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
}

.team-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--sunset-orange);
}

.team-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.team-role {
    font-size: 14px;
    color: var(--carbon-gray);
    line-height: 1.6;
}

.team-photo {
    width: 120px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.team-arrow {
    margin-left: auto;
}

.team-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--silver);
    transition: all 0.3s ease;
}

.team-panel.expanded .team-arrow svg {
    transform: rotate(180deg);
    stroke: var(--sunset-orange);
}

.team-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.team-panel.expanded .team-content {
    max-height: 400px;
}

.team-content-inner {
    padding: 0 24px 24px;
}

.team-full-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-top: 16px;
}

.team-full-desc {
    font-size: 16px;
    color: var(--carbon-gray);
    line-height: 1.75;
    margin-top: 12px;
}

.btn-team {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--sunset-orange);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.25s ease;
}

.btn-team:hover {
    background: #EA580C;
}

.faq-nodes {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.faq-center-node {
    width: 140px;
    height: 140px;
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.faq-center-icon {
    width: 56px;
    height: 56px;
}

.faq-center-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--deep-carbon);
}

.faq-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0;
    border: 1px solid rgba(249, 115, 22, 0.08);
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    margin: -10px;
}

.faq-node:hover {
    transform: scale(1.08);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 24px 64px rgba(249, 115, 22, 0.12);
    z-index: 10;
}

.faq-node-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.faq-node-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--sunset-orange);
}

.faq-node-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.faq-node-desc {
    font-size: 13px;
    color: var(--carbon-gray);
    margin-top: 8px;
    line-height: 1.5;
}

.faq-node-decor {
    width: 40px;
    height: 2px;
    background: rgba(249, 115, 22, 0.3);
    margin-top: 8px;
}

.testimonials-masonry {
    columns: 3 320px 280px 320px;
    column-gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 0;
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
    margin-bottom: 20px;
    break-inside: avoid;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
    border-color: rgba(249, 115, 22, 0.15);
    box-shadow: 0 24px 64px rgba(249, 115, 22, 0.12);
    z-index: 10;
    position: relative;
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px 24px 8px;
}

.testimonial-category {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: var(--sunset-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 24px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--carbon-gray);
    line-height: 1.6;
    padding: 0 24px 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--sunset-orange);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249, 115, 22, 0.15);
}

.testimonial-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.testimonial-company {
    font-size: 11px;
    color: var(--silver);
}

.testimonial-divider {
    height: 2px;
    width: 40px;
    background: var(--sunset-orange);
    margin: 0 24px 20px;
}

.contact-split {
    display: grid;
    grid-template-columns: 50% 50%;
}

.contact-divider {
    width: 4px;
    background: linear-gradient(180deg, var(--sunset-orange), var(--chrome-navy));
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
}

.contact-form {
    padding: 80px 60px;
}

.contact-form-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.contact-form-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--silver);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding-bottom: 12px;
    border: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.1);
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--steel);
    transition: border-color 0.25s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--sunset-orange);
}

.form-input:focus + .form-label,
.form-input:focus ~ .form-label {
    color: var(--sunset-orange);
}

textarea.form-input {
    resize: none;
    min-height: 100px;
}

.btn-submit {
    padding: 18px 44px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 0;
    padding: 80px 48px;
    border: 1px solid rgba(249, 115, 22, 0.08);
    box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
    position: relative;
}

.contact-info-block {
    padding: 20px 0;
}

.contact-info-line {
    height: 1px;
    background: rgba(249, 115, 22, 0.1);
    margin: 20px 0;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sunset-orange);
}

.contact-info-text {
    font-size: 15px;
    color: var(--carbon-gray);
}

.contact-map {
    width: 100%;
    height: 200px;
    border-radius: 0;
    border: 1px solid rgba(249, 115, 22, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    filter: grayscale(100%);
}

footer {
    background: var(--deep-carbon);
    padding: 80px 80px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--sunset-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 13px;
    color: var(--silver);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--silver);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--sunset-orange);
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.08);
    border-radius: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--deep-carbon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--sunset-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: rgba(255, 251, 245, 0.99);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(249, 115, 22, 0.15);
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
    padding: 24px;
    z-index: 999;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: var(--deep-carbon);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-cookie-accept {
    background: var(--sunset-orange);
    color: white;
}

.btn-cookie-accept:hover {
    background: #EA580C;
}

.btn-cookie-decline {
    background: transparent;
    border: 1px solid var(--steel);
    color: var(--steel);
}

.btn-cookie-decline:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.65s ease-out;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.65s ease-out;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s ease-out;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-kinetic {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

.reveal-kinetic.visible {
    opacity: 1;
    transform: scale(1);
}

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

.page-hero {
    min-height: 280px;
    background: var(--racing-cream);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 80px 60px;
}

.page-hero-content {
    max-width: 560px;
    margin-left: 40px;
}

.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--silver);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 44px;
    letter-spacing: 0.06em;
    color: var(--deep-carbon);
    display: flex;
    align-items: center;
}

.racing-line {
    width: 32px;
    height: 4px;
    background: var(--sunset-orange);
    margin-right: 12px;
}

.page-markers {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.service-detail-content h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--deep-carbon);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--steel);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.15);
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    font-size: 15px;
    color: var(--steel);
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sunset-orange);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--deep-carbon);
    margin: 40px 0 20px;
}

.legal-content p {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 8px;
}

.thank-you-content {
    text-align: center;
    padding: 120px 40px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.thank-you-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--sunset-orange);
}

.thank-you-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: var(--deep-carbon);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--steel);
    max-width: 500px;
    margin: 0 auto 32px;
}

@media (max-width: 1024px) {
    header {
        max-width: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        height: 64px;
        box-sizing: border-box;
    }

    nav,
    .header-cta {
        display: none;
    }

    .mobile-menu.active nav {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 40px 60px;
    }

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

    .hero-content {
        grid-column: span 1;
    }

    .hero-visual {
        grid-column: span 1;
        height: 400px;
    }

    .hero-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .hero-card:nth-child(1) {
        grid-row: span 2;
        margin: 0;
    }

    .hero-card:nth-child(2),
    .hero-card:nth-child(3),
    .hero-card:nth-child(4) {
        margin: 0;
    }

    .floating-stat {
        display: none;
    }

    .section {
        padding: 80px 40px;
    }

    .services-slider {
        padding: 0 60px;
    }

    .slider-nav {
        display: none;
    }

    .slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .service-card {
        scroll-snap-align: start;
        margin-right: 16px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-divider {
        display: none;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        padding: 60px 40px;
    }

    .timeline-center-line {
        left: 30px;
    }

    .timeline-item {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-top: 0 !important;
    }

    .advantage-card {
        position: relative !important;
        margin: 10px;
    }

    .advantages-canvas {
        min-height: auto;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }

    .team-panel {
        margin-top: 0 !important;
    }

    .faq-nodes {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }

    .faq-center-node {
        display: none;
    }

    .faq-node {
        position: relative !important;
        margin: 10px 0;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
    }

    .testimonials-masonry {
        columns: 1;
    }

    .contact-split,
    .timeline-container {
        grid-template-columns: 1fr !important;
    }

    .contact-divider {
        display: none;
    }

    .contact-form {
        padding: 60px 40px;
    }

    .contact-info {
        padding: 60px 40px;
    }

    footer {
        padding: 60px 40px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .page-hero {
        padding: 100px 40px 40px;
    }

    .page-hero-content {
        margin-left: 0;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .kinetic-text {
        font-size: 80px;
    }

    .kinetic-text:nth-child(2),
    .kinetic-text:nth-child(3) {
        font-size: 60px;
    }
}

@media (max-width: 640px) {
    .logo-text {
        display: none;
    }

    .hero {
        padding: 90px 20px 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-bento {
        grid-template-columns: 1fr;
    }

    .hero-card:nth-child(1) {
        grid-row: span 1;
        height: 200px;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-main,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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

    .page-title {
        font-size: 32px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}