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

:root {
    --color-asphalt-frost: #F4F6F8;
    --color-steel-white: #FAFBFC;
    --color-deep-carbon: #1A1D23;
    --color-gunmetal: #4A5568;
    --color-chrome-mist: #A0AEC0;
    --color-racing-red: #E53E3E;
    --color-racing-red-dark: #C53030;
    --color-chrome-silver: #718096;
    --color-bg-light: #FFFFFF;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --sidebar-width: 240px;
    --transition-fast: 0.25s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-chrome: 0 20px 56px rgba(26, 29, 35, 0.08);
    --shadow-red: 0 8px 28px rgba(229, 62, 62, 0.3);
    --shadow-red-hover: 0 12px 40px rgba(229, 62, 62, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

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

strong, p, span {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-gunmetal);
    background-color: var(--color-steel-white);
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-racing-red);
    color: white;
}

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

::-webkit-scrollbar-track {
    background: var(--color-asphalt-frost);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-deep-carbon);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.magnetic-element {
    transition: transform 0.15s ease-out;
    will-change: transform;
}

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

.fluid-blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.6;
    animation: fluidMove 30s ease-in-out infinite alternate;
}

.fluid-blob-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: 10%;
    background: radial-gradient(ellipse at center, rgba(113, 128, 150, 0.15) 0%, rgba(160, 174, 192, 0.1) 50%, transparent 80%);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    animation-duration: 28s;
}

.fluid-blob-2 {
    width: 700px;
    height: 700px;
    bottom: -200px;
    left: 20%;
    background: radial-gradient(ellipse at center, rgba(229, 62, 62, 0.08) 0%, rgba(113, 128, 150, 0.06) 50%, transparent 80%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 35s;
    animation-delay: -5s;
}

.fluid-blob-3 {
    width: 500px;
    height: 500px;
    top: 30%;
    left: 40%;
    background: radial-gradient(ellipse at center, rgba(229, 62, 62, 0.06) 0%, rgba(113, 128, 150, 0.04) 50%, transparent 80%);
    border-radius: 50%;
    animation-duration: 40s;
    animation-delay: -10s;
}

.fluid-blob-4 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 25%;
    background: radial-gradient(ellipse at center, rgba(113, 128, 150, 0.12) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-duration: 32s;
    animation-delay: -15s;
}

@keyframes fluidMove {
    0% {
        transform: translate(0, 0) scale(0.95);
    }
    100% {
        transform: translate(60px, 40px) scale(1.05);
    }
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(244, 246, 248, 0.99);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(229, 62, 62, 0.12);
    box-shadow: 4px 0 56px rgba(26, 29, 35, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 24px,
        var(--color-racing-red) 24px,
        var(--color-racing-red) 25px
    );
}

.sidebar-logo {
    padding: 32px 24px;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-racing-red), var(--color-chrome-silver));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-deep-carbon);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 9px;
    color: var(--color-chrome-mist);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sidebar-nav {
    flex: 1;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    color: rgba(74, 85, 104, 0.8);
}

.nav-item:hover {
    background: rgba(229, 62, 62, 0.08);
    color: var(--color-racing-red);
}

.nav-item:hover .nav-icon {
    stroke: var(--color-racing-red);
}

.nav-item.active {
    background: rgba(229, 62, 62, 0.08);
    color: var(--color-racing-red);
}

.nav-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    transition: stroke var(--transition-fast);
}

.nav-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
}

.sidebar-footer {
    padding: 24px 16px;
    border-top: 1px solid rgba(229, 62, 62, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-cta {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--color-racing-red), var(--color-racing-red-dark));
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.sidebar-cta:hover {
    box-shadow: 0 10px 32px rgba(229, 62, 62, 0.35);
    transform: scale(1.02);
}

.sidebar-phone {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-racing-red);
    letter-spacing: 0.02em;
    text-align: center;
}

.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(244, 246, 248, 0.99);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

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

.mobile-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-racing-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mobile-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-deep-carbon);
}

.hamburger {
    width: 44px;
    height: 44px;
    background: rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.hamburger:hover {
    background: rgba(229, 62, 62, 0.12);
}

.hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 246, 248, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
}

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

.mobile-nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 28px;
    color: var(--color-deep-carbon);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.mobile-menu-contact {
    margin-top: 40px;
    text-align: center;
}

.mobile-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-racing-red);
}

.mobile-address {
    font-size: 12px;
    color: var(--color-chrome-mist);
    margin-top: 8px;
}

.hero {
    min-height: 100vh;
    background: var(--color-steel-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 120px 80px 80px;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-decor {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    animation: scaleIn 0.4s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(229, 62, 62, 0.08);
    border-radius: 100px;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-racing-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 52px;
    line-height: 0.88;
    margin-bottom: 20px;
    max-width: 520px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: rgba(229, 62, 62, 0.6);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    color: var(--color-gunmetal);
    max-width: 440px;
    margin-bottom: 32px;
}

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

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

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 44px;
    background: linear-gradient(135deg, var(--color-racing-red), var(--color-racing-red-dark));
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-red);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: var(--shadow-red-hover);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    background: transparent;
    color: var(--color-deep-carbon);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--color-deep-carbon);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.hero-right {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    height: 520px;
    animation: fadeIn 1.2s ease-out;
}

.hero-image {
    border-radius: var(--radius-lg);
    object-fit: cover;
    transition: all var(--transition-medium);
}

.hero-image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
    margin-top: -20px;
    margin-left: -20px;
    box-shadow: 0 24px 64px rgba(26, 29, 35, 0.15);
}

.hero-image-2 {
    grid-column: 2 / 4;
    grid-row: 1;
    height: 248px;
    box-shadow: 0 20px 56px rgba(26, 29, 35, 0.12);
}

.hero-image-3 {
    grid-column: 2;
    grid-row: 2;
    height: 248px;
    margin-top: 20px;
    box-shadow: 0 20px 56px rgba(26, 29, 35, 0.12);
}

.hero-image-4 {
    grid-column: 3;
    grid-row: 2;
    height: 248px;
    margin-top: 20px;
    margin-left: 20px;
    box-shadow: 0 20px 56px rgba(26, 29, 35, 0.12);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.1);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-chrome);
    z-index: 10;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero-card-1 {
    top: 40px;
    right: -20px;
}

.hero-card-2 {
    bottom: 80px;
    right: -20px;
}

.hero-card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-deep-carbon);
}

.hero-card-value {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-racing-red);
    margin-top: 4px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.06) 0%, transparent 60%);
    z-index: 2;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes clipReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-gunmetal);
    max-width: 560px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.seamless-transition {
    height: 60px;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(244, 246, 248, 0.8), transparent);
}

.seamless-transition-dark {
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(26, 29, 23, 0.8), transparent);
}

.organic-decor {
    display: inline-block;
    margin-bottom: 16px;
}

.organic-line {
    width: 48px;
    height: 2px;
    background: var(--color-racing-red);
    margin-top: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
    transition: all var(--transition-medium);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    background: white;
    border-color: rgba(229, 62, 62, 0.2);
    box-shadow: 0 24px 64px rgba(229, 62, 62, 0.08);
    transform: translateY(-3px);
    z-index: 10;
}

.service-card-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-racing-red), var(--color-racing-red-dark));
    border-radius: 3px 3px 0 0;
}

.service-card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.service-icon {
    width: 44px;
    height: 44px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-deep-carbon);
    margin-bottom: 4px;
}

.service-description {
    font-size: 14px;
    color: var(--color-gunmetal);
    line-height: 1.6;
    margin-top: 4px;
}

.service-image {
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: 16px;
    filter: saturate(0.98);
}

.service-price {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-racing-red);
    margin-top: 12px;
    font-weight: 500;
}

.sticky-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
}

.sticky-left {
    position: sticky;
    top: 0;
    height: 100vh;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.04), rgba(113, 128, 150, 0.02));
    border-right: 1px solid rgba(229, 62, 62, 0.08);
    padding: 80px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sticky-right {
    padding: 80px;
}

.split-screen {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 500px;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

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

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--color-racing-red), var(--color-racing-red-dark), var(--color-racing-red));
    transform: translateX(-50%);
}

.timeline-item {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: var(--shadow-chrome);
    position: relative;
    margin-bottom: 40px;
}

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

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

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

.timeline-number {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    color: rgba(229, 62, 62, 0.15);
    margin-bottom: 6px;
}

.timeline-icon {
    width: 44px;
    height: 44px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    margin-bottom: 12px;
}

.timeline-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-deep-carbon);
}

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

.timeline-image {
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: 16px;
    filter: saturate(0.98);
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15);
    border-color: rgba(229, 62, 62, 0.15);
    z-index: 10;
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    margin-bottom: 14px;
    transition: transform var(--transition-fast);
}

.advantage-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 40px;
    color: var(--color-racing-red);
    transition: color var(--transition-fast);
}

.advantage-label {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-gunmetal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.achievements-stack {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: var(--shadow-chrome);
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.achievement-card:hover {
    z-index: 10;
    transform: translateY(-4px);
    box-shadow: 0 28px 72px rgba(229, 62, 62, 0.1);
}

.achievement-card-red {
    height: 4px;
    background: linear-gradient(90deg, var(--color-racing-red), var(--color-chrome-silver));
}

.achievement-card-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 40px;
}

.achievement-icon {
    width: 48px;
    height: 48px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.achievement-info {
    flex: 1;
}

.achievement-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-deep-carbon);
}

.achievement-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    color: var(--color-racing-red);
}

.achievement-subtitle {
    font-size: 12px;
    color: var(--color-gunmetal);
    margin-top: 4px;
}

.achievement-meta {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-chrome-mist);
}

.marquee-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

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

.marquee-wrapper-reverse {
    animation-direction: reverse;
}

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

.marquee-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-deep-carbon);
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--color-racing-red);
    border-radius: 50%;
    flex-shrink: 0;
}

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

.team-marquee {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.team-marquee-track {
    display: flex;
    gap: 32px;
}

.team-marquee-track:nth-child(1) {
    animation: marquee 40s linear infinite;
}

.team-marquee-track:nth-child(2) {
    animation: marquee-reverse 35s linear infinite;
}

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

.team-card {
    min-width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-chrome);
    overflow: hidden;
}

.team-card-image {
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.team-card-content {
    padding: 16px;
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-card-icon {
    width: 44px;
    height: 44px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
}

.team-card-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-deep-carbon);
}

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

.team-card-description {
    font-size: 13px;
    color: var(--color-gunmetal);
    margin-top: 8px;
    line-height: 1.5;
    padding-bottom: 16px;
}

.team-card-line {
    height: 2px;
    background: rgba(229, 62, 62, 0.1);
    margin-top: 12px;
}

.faq-masonry {
    columns: 3;
    column-gap: 24px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-chrome);
    margin-bottom: 24px;
    break-inside: avoid;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.faq-card:hover {
    transform: scale(1.03);
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: 0 24px 64px rgba(229, 62, 62, 0.12);
    z-index: 10;
}

.faq-card-image {
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.faq-card-content {
    padding: 20px 24px 24px;
}

.faq-card-category {
    font-size: 11px;
    color: var(--color-racing-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-deep-carbon);
    margin-top: 8px;
}

.faq-card-description {
    font-size: 14px;
    color: var(--color-gunmetal);
    margin-top: 8px;
    line-height: 1.6;
}

.faq-card-line {
    height: 2px;
    width: 40px;
    background: var(--color-racing-red);
    border-radius: 2px;
    margin-top: 20px;
}

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

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

.review-card {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-chrome);
    overflow: hidden;
    transition: all 0.5s ease;
    transform: rotateY(var(--rotate)) translateZ(300px);
}

.review-card.active {
    z-index: 100;
}

.review-card.active:hover {
    transform: rotateY(var(--rotate)) translateZ(300px) scale(1.04);
    box-shadow: 0 28px 72px rgba(229, 62, 62, 0.12);
}

.review-card-image {
    height: 120px;
    width: 100%;
    object-fit: cover;
    filter: saturate(0.98);
}

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

.review-card-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-card-star {
    width: 16px;
    height: 16px;
    fill: var(--color-racing-red);
}

.review-card-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 15px;
    color: var(--color-gunmetal);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(229, 62, 62, 0.15);
}

.review-card-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-deep-carbon);
}

.review-card-company {
    font-size: 12px;
    color: var(--color-chrome-mist);
}

.review-card-glow {
    height: 4px;
    background: linear-gradient(90deg, var(--color-racing-red), var(--color-chrome-silver));
    border-radius: 0 0 4px 4px;
}

.carousel-arrow {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 100;
}

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

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
}

.carousel-arrow-prev {
    left: calc(50% - 250px);
}

.carousel-arrow-next {
    right: calc(50% - 250px);
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

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

.contact-info-side {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    border: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: var(--shadow-chrome);
}

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

.form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-chrome-mist);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(26, 29, 35, 0.1);
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-deep-carbon);
    transition: border-color var(--transition-fast);
}

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

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

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

.contact-block {
    padding: 20px 0;
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
}

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

.contact-block-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 12px;
}

.contact-block-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-deep-carbon);
    margin-bottom: 4px;
}

.contact-block-text {
    font-size: 15px;
    color: var(--color-gunmetal);
}

.contact-map {
    filter: grayscale(100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: 0 8px 24px rgba(26, 29, 35, 0.06);
    margin-top: 24px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-racing-red), var(--color-chrome-silver));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    color: white;
}

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

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
    display: inline-block;
}

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

.footer-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-racing-red);
    transition: width var(--transition-fast);
}

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

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 56px rgba(26, 29, 35, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-deep-carbon);
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    transition: all var(--transition-fast);
}

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

.cookie-btn-accept:hover {
    box-shadow: var(--shadow-red);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(26, 29, 35, 0.1);
    color: var(--color-gunmetal);
}

.cookie-btn-decline:hover {
    border-color: var(--color-deep-carbon);
    color: var(--color-deep-carbon);
}

.cookie-banner-links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(229, 62, 62, 0.1);
    display: flex;
    gap: 16px;
}

.cookie-banner-link {
    font-size: 12px;
    color: var(--color-chrome-mist);
    text-decoration: underline;
}

.cookie-banner-link:hover {
    color: var(--color-racing-red);
}

.page-hero {
    min-height: 280px;
    background: var(--color-asphalt-frost);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-chrome-mist);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--color-chrome-mist);
}

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

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero-title {
    font-size: 44px;
    margin-bottom: 16px;
}

.page-hero-line {
    display: inline-block;
    width: 24px;
    height: 3px;
    background: var(--color-racing-red);
    margin-right: 12px;
    vertical-align: middle;
}

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

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

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

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

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

.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-organic {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

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

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

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: 0 16px 48px rgba(229, 62, 62, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: var(--color-deep-carbon);
    cursor: pointer;
    background: transparent;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-racing-red);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

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

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--color-gunmetal);
    line-height: 1.7;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(229, 62, 62, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.9), transparent);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

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

.gallery-overlay-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.gallery-overlay-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    stroke: var(--color-racing-red);
    fill: none;
    stroke-width: 2;
    margin-bottom: 32px;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--color-gunmetal);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 8px;
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 100px 60px 60px;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-masonry {
        columns: 2;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 64px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 24px 60px;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .hero-card-1 {
        right: 20px;
    }
    
    .hero-card-2 {
        right: 20px;
    }
    
    .sticky-split {
        grid-template-columns: 1fr;
    }
    
    .sticky-left {
        position: relative;
        height: auto;
        min-height: 140px;
        padding: 32px 24px;
    }
    
    .sticky-right {
        padding: 40px 24px;
    }
    
    .split-screen {
        grid-template-columns: 1fr;
    }
    
    .split-content {
        padding: 40px 24px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translate(-50%, 0);
        top: 0;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 40px 24px;
    }
    
    .contact-info-side {
        padding: 40px 24px;
    }
    
    .footer {
        padding: 60px 24px 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-right {
        height: 300px;
    }
    
    .hero-image-1 {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 180px;
        margin: 0;
    }
    
    .hero-image-2 {
        display: none;
    }
    
    .hero-image-3 {
        grid-column: 1;
        grid-row: 2;
        height: 120px;
        margin: 20px 0 0 0;
    }
    
    .hero-image-4 {
        grid-column: 2;
        grid-row: 2;
        height: 120px;
        margin: 20px 0 0 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-masonry {
        columns: 1;
    }
    
    .reviews-carousel {
        height: 420px;
    }
    
    .carousel-arrow-prev {
        left: 10px;
    }
    
    .carousel-arrow-next {
        right: 10px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .achievement-card-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-markers {
        display: none;
    }
    
    .team-card {
        min-width: 280px;
    }
}
