:root {
    --pearl-white: #FFFFFF;
    --chalk-surface: #FAFAFA;
    --racing-red: #DC2626;
    --neon-cyan: #06B6D4;
    --electric-purple: #8B5CF6;
    --carbon-black: #171717;
    --charcoal-gray: #404040;
    --steel: #A3A3A3;
    --light-gray: #E5E5E5;
    --warm-gray: #525252;
    --red-hover: #B91C1C;
    --section-padding-desktop: 120px 100px;
    --section-padding-tablet: 80px 40px;
    --section-padding-mobile: 60px 20px;
    --grid-gap: 48px;
    --border-radius: 10px;
    --card-shadow: 0 16px 48px rgba(23, 23, 23, 0.08);
    --card-shadow-hover: 0 24px 64px rgba(220, 38, 38, 0.1);
    --transition-smooth: all 0.25s ease-out;
    --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



body {
    font-family: 'Barlow', 'Arial', sans-serif;
    background-color: var(--pearl-white);
    color: var(--charcoal-gray);
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--carbon-black);
}

strong, p {
    color: inherit;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--pearl-white);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 60px rgba(23, 23, 23, 0.12);
    z-index: 9999;
    max-width: 420px;
    display: none;
}

.cookie-consent-banner.visible {
    display: block;
}

.cookie-consent-banner h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--carbon-black);
}

.cookie-consent-banner p {
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Anton', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--racing-red), var(--red-hover));
    color: white;
    border: none;
}

.btn-cookie-accept:hover {
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--carbon-black);
    border: 2px solid var(--carbon-black);
}

.btn-cookie-decline:hover {
    border-color: var(--racing-red);
    color: var(--racing-red);
}

.site-header {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 64px;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(23, 23, 23, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-header .header-logo {
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
    width: 100%;
    text-align: center;
}

.site-header .header-logo svg {
    width: 36px;
    height: 36px;
}

.site-header nav {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.site-header nav a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.site-header nav a svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
    stroke: rgba(64, 64, 64, 0.6);
    transition: var(--transition-smooth);
}

.site-header nav a:hover {
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}

.site-header nav a:hover svg {
    stroke: var(--racing-red);
    transform: scale(1.1);
}

.site-header .header-cta {
    padding: 20px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.08);
    width: 100%;
    text-align: center;
}

.site-header .header-cta a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--racing-red), var(--red-hover));
    color: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: var(--transition-smooth);
}

.site-header .header-cta a:hover {
    box-shadow: 0 10px 32px rgba(220, 38, 38, 0.4);
    transform: scale(1.1);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo svg {
    width: 32px;
    height: 32px;
    fill: var(--racing-red);
}

.mobile-logo span {
    font-family: 'Anton', sans-serif;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--carbon-black);
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--racing-red);
    stroke-width: 2;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.mobile-overlay.active {
    display: flex;
}

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

.mobile-overlay .close-menu svg {
    stroke: var(--racing-red);
    stroke-width: 2;
}

.mobile-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-overlay nav a {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--carbon-black);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-overlay nav a:hover {
    color: var(--racing-red);
}

.mobile-overlay .nav-divider {
    width: 60px;
    height: 3px;
    background: var(--racing-red);
    margin: 0 auto;
}

.mobile-overlay .mobile-contact {
    margin-top: 48px;
    text-align: center;
}

.mobile-overlay .mobile-contact .phone {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--racing-red);
    margin-bottom: 8px;
}

.mobile-overlay .mobile-contact .address {
    font-size: 12px;
    color: var(--steel);
}

.hero-section {
    min-height: 100vh;
    background: var(--chalk-surface);
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(rgba(220, 38, 38, 0.12), rgba(6, 182, 212, 0.06), transparent 70%);
    top: -40px;
    right: 15%;
    animation: blobFloat1 30s ease-in-out infinite alternate;
}

.hero-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(rgba(139, 92, 246, 0.1), rgba(220, 38, 38, 0.05), transparent 80%);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    bottom: -60px;
    left: 25%;
    animation: blobFloat2 35s ease-in-out infinite alternate;
}

.hero-blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(rgba(6, 182, 212, 0.08), transparent 60%);
    top: 40%;
    left: 10%;
    animation: blobFloat3 25s ease-in-out infinite alternate;
}

@keyframes blobFloat1 {
    0% { transform: translateX(-30px) scale(0.95); }
    100% { transform: translateX(40px) scale(1.05); }
}

@keyframes blobFloat2 {
    0% { transform: translateX(20px) translateY(-20px) scale(0.92); }
    100% { transform: translateX(-40px) translateY(30px) scale(1.08); }
}

@keyframes blobFloat3 {
    0% { transform: translateY(30px) scale(0.9); }
    100% { transform: translateY(-40px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 80px 80px 160px;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    min-height: 100vh;
    align-items: center;
}

.hero-left {
    z-index: 1;
}

.hero-diagonal-decor {
    margin-bottom: 24px;
}

.hero-diagonal-decor svg {
    width: 48px;
    height: 48px;
}

.hero-title {
    font-size: 64px;
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: var(--carbon-black);
    max-width: 520px;
    margin-bottom: 20px;
    animation: titleReveal 0.7s ease-out;
}

@keyframes titleReveal {
    0% { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0% 0 0); }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--warm-gray);
    line-height: 1.75;
    max-width: 440px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-markers {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--racing-red);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.3));
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-primary {
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--racing-red), var(--red-hover));
    color: white;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.02em;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.3);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    padding: 18px 36px;
    background: transparent;
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black);
    font-family: 'Anton', sans-serif;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--racing-red);
    color: var(--racing-red);
}

.hero-right {
    position: relative;
    height: 520px;
    z-index: 0;
}

.hero-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-bento-grid .bento-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: bentoReveal 0.8s ease-out both;
}

.hero-bento-grid .bento-item:nth-child(1) {
    grid-row: span 2;
    animation-delay: 0.1s;
}

.hero-bento-grid .bento-item:nth-child(2),
.hero-bento-grid .bento-item:nth-child(3),
.hero-bento-grid .bento-item:nth-child(4) {
    animation-delay: 0.2s;
}

.hero-bento-grid .bento-item:nth-child(2) { animation-delay: 0.2s; }
.hero-bento-grid .bento-item:nth-child(3) { animation-delay: 0.32s; }
.hero-bento-grid .bento-item:nth-child(4) { animation-delay: 0.44s; }

@keyframes bentoReveal {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-bento-grid .bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) brightness(1.02);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: var(--card-shadow);
    animation: floatCardReveal 0.6s ease-out both;
}

.hero-float-card-1 {
    top: 40px;
    right: 0;
    animation-delay: 0.5s;
}

.hero-float-card-2 {
    bottom: 40px;
    right: 0;
    animation-delay: 0.65s;
}

@keyframes floatCardReveal {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-float-card .float-label {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--carbon-black);
}

.hero-float-card .float-value {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--racing-red);
}

@keyframes fadeInUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

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

.section {
    padding: var(--section-padding-desktop);
    position: relative;
}

.section-alt {
    background: var(--chalk-surface);
}

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

.section-dark strong,
.section-dark p {
    color: white;
}

.section-dark h2,
.section-dark h3 {
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

.node-center {
    width: 140px;
    height: 140px;
    background: rgba(220, 38, 38, 0.08);
    border: 2px solid var(--racing-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.node-center svg {
    width: 56px;
    height: 56px;
}

.node-peripheral {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(23, 23, 23, 0.05);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    transition: var(--transition-medium);
    cursor: pointer;
}

.node-peripheral:hover {
    transform: scale(1.08);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.08);
    z-index: 10;
}

.node-peripheral svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.node-peripheral h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.node-peripheral p {
    font-size: 12px;
    line-height: 1.5;
}

.process-slider {
    position: relative;
    overflow: hidden;
    padding: 0 80px;
}

.slider-container {
    display: flex;
    gap: 32px;
    transition: transform 0.4s ease;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
}

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

.slider-card {
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    scroll-snap-align: start;
    box-shadow: 0 16px 48px rgba(23, 23, 23, 0.06);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    transition: var(--transition-medium);
}

.slider-card:hover {
    box-shadow: 0 24px 64px rgba(220, 38, 38, 0.1);
    transform: translateY(-4px);
    border-color: rgba(220, 38, 38, 0.15);
}

.slider-card svg {
    margin: 28px 0 20px 28px;
}

.slider-card h4 {
    padding: 0 28px;
    font-size: 17px;
}

.slider-card p {
    padding: 8px 28px 0;
    font-size: 14px;
    line-height: 1.65;
}

.slider-card .card-accent {
    height: 3px;
    width: 40px;
    background: var(--neon-cyan);
    border-radius: 3px;
    margin: 20px 28px 28px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(23, 23, 23, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--racing-red);
    border-color: var(--racing-red);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
}

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

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--racing-red);
    stroke-width: 2;
}

.slider-arrow-prev {
    left: 0;
}

.slider-arrow-next {
    right: 0;
}

.marquee {
    overflow: hidden;
    padding: 40px 0;
    background: var(--chalk-surface);
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.marquee-item span {
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--carbon-black);
    white-space: nowrap;
}

.marquee-item .divider {
    width: 8px;
    height: 8px;
    background: var(--racing-red);
}

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

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

.advantage-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 28px;
    transition: var(--transition-medium);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.advantage-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 38, 38, 0.15);
}

.advantage-card svg {
    margin-bottom: 14px;
}

.advantage-card .adv-value {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--electric-purple);
}

.advantage-card:hover .adv-value {
    color: var(--racing-red);
}

.advantage-card .adv-label {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.achievements-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.achievement-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    box-shadow: 0 16px 48px rgba(23, 23, 23, 0.06);
    padding: 0;
    margin-bottom: -100px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    transition: var(--transition-medium);
}

.achievement-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--racing-red), var(--neon-cyan));
    border-radius: 3px 3px 0 0;
}

.achievement-card:hover {
    box-shadow: 0 24px 64px rgba(220, 38, 38, 0.1);
    transform: translateY(-4px);
    z-index: 10;
}

.achievement-card .card-inner {
    display: flex;
    align-items: center;
    padding: 0;
}

.achievement-card svg {
    margin: 28px;
    flex-shrink: 0;
}

.achievement-card .card-content {
    padding: 28px 40px 28px 0;
}

.achievement-card h4 {
    font-size: 16px;
}

.achievement-card .ach-value {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--racing-red) !important;
}

.achievement-card .ach-desc {
    font-size: 12px;
    color: var(--warm-gray) !important;
    margin-top: 4px;
}

.achievement-card .ach-tech {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--steel);
}

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

.team-info {
    padding-right: 40px;
}

.team-info h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.team-info p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.team-member {
    position: relative;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.team-member:hover {
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.06);
}

.team-member::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--racing-red);
    border-radius: 10px 0 0 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.team-member:hover::before {
    opacity: 1;
}

.team-member h5 {
    font-size: 16px;
}

.team-member .member-role {
    font-size: 12px;
    color: var(--racing-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-member .member-spec {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: var(--steel);
}

.team-photos {
    position: relative;
}

.team-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 12px 40px rgba(23, 23, 23, 0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.team-member:hover + .team-photo,
.team-photo:hover {
    opacity: 1;
    transform: translateX(0);
}

.faq-canvas {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    padding: 0 80px;
}

.faq-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(23, 23, 23, 0.06);
    padding: 0;
    cursor: grab;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    transition: var(--transition-smooth);
}

.faq-card::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--racing-red);
    border-radius: 3px 3px 0 0;
}

.faq-card svg {
    margin: 16px 0 10px 16px;
}

.faq-card h5 {
    font-size: 13px;
    padding: 0 16px;
}

.faq-card p {
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 16px 16px;
}

.faq-card.dragging {
    cursor: grabbing;
    transform: scale(1.03);
    box-shadow: 0 20px 64px rgba(220, 38, 38, 0.1);
    z-index: 100;
}

.testimonials-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.carousel-track {
    position: relative;
    width: 320px;
    height: 100%;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(23, 23, 23, 0.06);
    padding: 0;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: scale(1.06);
    box-shadow: 0 24px 64px rgba(220, 38, 38, 0.1);
    z-index: 100;
}

.testimonial-card .card-image {
    height: 140px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    filter: saturate(1.1);
}

.testimonial-card .card-content {
    padding: 24px;
}

.testimonial-card .stars {
    margin-bottom: 12px;
}

.testimonial-card .stars svg {
    fill: var(--racing-red);
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-gray);
    margin-bottom: 16px;
}

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

.testimonial-card .author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(220, 38, 38, 0.15);
}

.testimonial-card .author h6 {
    font-size: 14px;
}

.testimonial-card .author span {
    font-size: 12px;
    color: var(--steel);
}

.testimonial-card .card-footer {
    height: 4px;
    background: linear-gradient(90deg, var(--racing-red), var(--neon-cyan));
    border-radius: 4px;
    margin-top: 16px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 20;
}

.carousel-arrow:hover {
    background: var(--racing-red);
    border-color: var(--racing-red);
}

.carousel-arrow:hover svg {
    stroke: white;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--racing-red);
    stroke-width: 2;
}

.carousel-arrow-prev { left: -70px; }
.carousel-arrow-next { right: -70px; }

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

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

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

.split-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

.split-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 16px;
}

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

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

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 24px;
}

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

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

.form-group label {
    position: absolute;
    top: 0;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--steel);
    transition: var(--transition-smooth);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 2px solid rgba(23, 23, 23, 0.12);
    background: transparent;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: var(--charcoal-gray);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--racing-red);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--racing-red);
}

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

.contact-info {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 80px 48px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    box-shadow: 0 20px 60px rgba(23, 23, 23, 0.06);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.contact-block:last-of-type {
    border-bottom: none;
}

.contact-block svg {
    float: left;
    margin-right: 16px;
}

.contact-block p {
    overflow: hidden;
}

.contact-map {
    margin-top: 24px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(23, 23, 23, 0.06);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(100%);
}

.footer {
    background: var(--carbon-black);
    color: white;
    padding: 80px 60px 40px;
}

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

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.footer-col a {
    display: block;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--racing-red);
}

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

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 24px;
}

.footer-bottom a:hover {
    color: var(--racing-red);
}

.hero-internal {
    min-height: 280px;
    background: var(--pearl-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 80px 60px 160px;
}

.hero-internal .hero-blob-1 {
    opacity: 0.4;
}

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

.breadcrumbs {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--steel);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--steel);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
    color: var(--racing-red);
}

.hero-internal h1 {
    font-size: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-internal .h1-decor {
    display: inline-block;
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
}

.hero-internal .h1-decor svg {
    width: 24px;
    height: 24px;
}

.hero-internal .hero-markers {
    margin-top: 16px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    padding: 32px;
    transition: var(--transition-smooth);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(220, 38, 38, 0.15);
}

.service-card svg {
    margin-bottom: 16px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .service-price {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--racing-red);
}

.service-card .btn-secondary {
    margin-top: 16px;
    padding: 12px 24px;
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .item-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item .item-overlay h5 {
    color: white;
    font-size: 14px;
}

.gallery-item .item-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-item .faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-item .faq-question h5 {
    font-size: 16px;
    color: var(--carbon-black);
}

.faq-item .faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--racing-red);
    transition: var(--transition-smooth);
}

.faq-item .faq-question:hover {
    background: rgba(220, 38, 38, 0.04);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item .faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.7;
}

.legal-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px;
}

.legal-section h1 {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 8px;
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.thank-you-section h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thank-you-section p {
    font-size: 18px;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto 32px;
}

.thank-you-section .btn-primary {
    padding: 16px 32px;
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--racing-red), var(--neon-cyan));
    border-radius: 4px;
}

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

@media (max-width: 1200px) {
    .hero-content {
        padding: 140px 60px 60px 120px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .site-header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 20px 60px 20px;
        min-height: auto;
    }
    
    .hero-right {
        height: 400px;
        order: -1;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .hero-cta {
        flex-wrap: wrap;
    }
    
    .section {
        padding: var(--section-padding-tablet);
    }
    
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-bento-grid {
        height: 300px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .section {
        padding: var(--section-padding-mobile);
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .slider-arrow {
        display: none;
    }
    
    .process-slider {
        padding: 0 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom a {
        margin-left: 0;
        margin-right: 24px;
    }
    
    .hero-internal {
        padding: 100px 20px 40px 20px;
    }
    
    .hero-internal h1 {
        font-size: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card .card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-card svg {
        margin: 24px auto 0;
    }
    
    .achievement-card .card-content {
        padding: 0 24px 24px;
    }
    
    .carousel-arrow {
        display: none;
    }
}
