@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@400&display=swap');

:root {
    --pearl-white: #FFFEFB;
    --cream-mist: #FFF9F5;
    --racing-red: #DC2626;
    --chrome-silver: #94A3B8;
    --deep-slate: #1E293B;
    --carbon-black: #0F172A;
    --steel: #475569;
    --silver: #94A3B8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--steel);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

strong, p, b {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--carbon-black);
}

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

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

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

.vertical-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 72px;
    background: rgba(255, 254, 251, 0.99);
    backdrop-filter: blur(16px);
    border-right: 1px solid rgba(220, 38, 38, 0.12);
    box-shadow: 4px 0 56px rgba(15, 23, 42, 0.06);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vertical-sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 23px, rgba(220, 38, 38, 0.06) 24px);
    pointer-events: none;
}

.vertical-sidebar.expanded {
    width: 260px;
}

.sidebar-logo {
    padding: 28px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
}

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

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

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--carbon-black);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-sidebar.expanded .logo-text {
    opacity: 1;
}

.sidebar-nav {
    flex: 1;
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    overflow-y: auto;
    overflow-x: hidden;
}

.vertical-sidebar.expanded .sidebar-nav {
    align-items: flex-start;
    padding-left: 20px;
}

.nav-item {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    stroke: rgba(71, 85, 105, 0.5);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.vertical-sidebar.expanded .nav-item {
    width: calc(100% - 16px);
    height: 48px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 12px;
}

.nav-item span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(71, 85, 105, 0.7);
    white-space: nowrap;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.vertical-sidebar.expanded .nav-item span {
    opacity: 1;
    display: inline-block;
}

.nav-item:hover {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
}

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

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

.vertical-sidebar.expanded .nav-item:hover {
    background: rgba(220, 38, 38, 0.08);
}

.sidebar-cta {
    padding: 28px 0;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--racing-red), #B91C1C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-button:hover {
    box-shadow: 0 10px 32px rgba(220, 38, 38, 0.35);
    transform: scale(1.05);
}

.vertical-sidebar.expanded .cta-button {
    width: calc(100% - 16px);
}

.cta-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--racing-red);
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-sidebar.expanded .cta-phone {
    opacity: 1;
}

.main-content {
    margin-left: 72px;
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-sidebar.expanded ~ .main-content {
    margin-left: 260px;
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 254, 251, 0.99);
    backdrop-filter: blur(16px);
    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: 10px;
}

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

.mobile-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--carbon-black);
}

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

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

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

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

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

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

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

.mobile-menu-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--carbon-black);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.mobile-menu-overlay.active .mobile-menu-item {
    animation: slideUp 0.4s ease forwards;
}

.mobile-menu-item:nth-child(1) { animation-delay: 0ms; }
.mobile-menu-item:nth-child(2) { animation-delay: 70ms; }
.mobile-menu-item:nth-child(3) { animation-delay: 140ms; }
.mobile-menu-item:nth-child(4) { animation-delay: 210ms; }
.mobile-menu-item:nth-child(5) { animation-delay: 280ms; }
.mobile-menu-item:nth-child(6) { animation-delay: 350ms; }
.mobile-menu-item:nth-child(7) { animation-delay: 420ms; }

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

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

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

.mobile-menu-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--racing-red);
}

.mobile-menu-address {
    font-size: 13px;
    color: var(--steel);
    margin-top: 8px;
}

.hero {
    min-height: 100vh;
    background: var(--cream-mist);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 80px 80px;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glassy-pastels {
    position: absolute;
    inset: 0;
    filter: blur(100px);
    opacity: 0.5;
}

.pastel-1 {
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%);
    animation: float1 25s ease-in-out infinite alternate;
}

.pastel-2 {
    background: radial-gradient(circle at 70% 60%, rgba(148, 163, 184, 0.04) 0%, transparent 50%);
    animation: float2 30s ease-in-out infinite alternate;
}

.pastel-3 {
    background: radial-gradient(circle at 50% 80%, rgba(224, 231, 255, 0.05) 0%, transparent 50%);
    animation: float3 35s ease-in-out infinite alternate;
}

@keyframes float1 {
    0% { transform: translate(0, 0) scale(0.98); }
    100% { transform: translate(30px, -20px) scale(1.02); }
}

@keyframes float2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, 15px) scale(1.01); }
}

@keyframes float3 {
    0% { transform: translate(0, 0) scale(0.99); }
    100% { transform: translate(20px, 25px) scale(1.02); }
}

.editorial-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent calc(8.33% - 1px), rgba(220, 38, 38, 0.02) calc(8.33% - 1px), rgba(220, 38, 38, 0.02) 8.33%);
    pointer-events: none;
}

.construction-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.construction-line {
    stroke: rgba(220, 38, 38, 0.08);
    stroke-width: 1;
    fill: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.construction-angle {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
}

.construction-angle svg {
    width: 100%;
    height: 100%;
    stroke: rgba(220, 38, 38, 0.4);
    fill: none;
    stroke-width: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 0.9;
    letter-spacing: 0.12em;
    color: var(--carbon-black);
    max-width: 480px;
    animation: clipReveal 0.7s ease-out forwards;
}

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

.hero-subtitle {
    font-style: italic;
    font-size: 18px;
    color: var(--chrome-silver);
    margin-top: 8px;
    animation: fadeIn 0.4s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

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

.hero-description {
    font-size: 17px;
    color: #64748B;
    line-height: 1.75;
    max-width: 440px;
    margin-top: 16px;
}

.red-markers {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    animation: scaleIn 0.4s ease forwards;
    animation-delay: 0.3s;
    transform: scale(0);
}

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

.red-marker {
    width: 10px;
    height: 10px;
    background: var(--racing-red);
    border-radius: 2px;
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.25));
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-primary {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--racing-red), #B91C1C);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    transition: all 0.25s ease-out;
    display: inline-block;
    white-space: nowrap;
}

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

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--carbon-black);
    color: var(--carbon-black);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    display: inline-block;
}

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

.hero-right {
    position: relative;
}

.editorial-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 140px);
    gap: 12px;
    height: 480px;
    position: relative;
}

.bento-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    box-shadow: inset 0 0 40px rgba(220, 38, 38, 0.08);
}

.bento-small {
    border-radius: 10px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    z-index: 10;
}

.floating-card-top {
    top: 20px;
    right: -20px;
}

.floating-card-bottom {
    bottom: 40px;
    left: -20px;
}

.floating-card-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    color: var(--carbon-black);
}

.floating-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--racing-red);
}

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

.section-light {
    background: var(--pearl-white);
}

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

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

.section-title {
    font-size: 48px;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.section-title-light {
    color: white;
}

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

.section-header {
    margin-bottom: 60px;
}

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

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

.service-bento-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-bento-item:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 56px rgba(220, 38, 38, 0.1);
    transform: translateY(-3px);
}

.service-bento-item.featured {
    border-top: 3px solid var(--racing-red);
}

.service-bento-item.cta-card {
    background: linear-gradient(135deg, var(--racing-red), #B91C1C);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-bento-item.cta-card .service-title {
    color: white;
}

.service-bento-item.cta-card .service-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-bento-photo {
    grid-column: span 2;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
}

.service-bento-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    filter: saturate(0.98);
}

.service-bento-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(220, 38, 38, 0.08);
    pointer-events: none;
}

.service-bento-header {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--racing-red);
    margin-top: 4px;
}

.service-desc {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.5;
}

.btn-white {
    padding: 14px 28px;
    background: white;
    color: var(--racing-red);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease-out;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

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

.construction-angle-abs {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
}

.construction-angle-abs svg {
    width: 100%;
    height: 100%;
    stroke: rgba(220, 38, 38, 0.3);
    fill: none;
    stroke-width: 2;
}

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

.process-scroll {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 80px;
    scroll-snap-type: x mandatory;
}

.process-cards {
    display: flex;
    gap: 20px;
    align-items: center;
}

.process-card {
    width: 300px;
    height: 420px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
    scroll-snap-align: center;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
}

.process-card:hover {
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 20px 56px rgba(220, 38, 38, 0.12);
    transform: scale(1.02);
}

.process-card-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--racing-red), var(--chrome-silver));
    border-radius: 12px 12px 0 0;
}

.process-step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(220, 38, 38, 0.15);
    position: absolute;
    top: 16px;
    left: 20px;
}

.process-icon {
    width: 44px;
    height: 44px;
    margin: 70px 0 20px 20px;
}

.process-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.process-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--carbon-black);
    padding: 0 20px;
}

.process-card-desc {
    font-size: 14px;
    color: var(--steel);
    margin-top: 8px;
    line-height: 1.6;
    padding: 0 20px;
}

.process-card-image {
    height: 120px;
    margin-top: auto;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

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

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    cursor: pointer;
    animation: pulse 1.5s ease-in-out infinite;
}

.scroll-arrow-left {
    left: 20px;
}

.scroll-arrow-right {
    right: 20px;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 3;
}

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

.marquee {
    overflow: hidden;
    padding: 24px 0;
    background: rgba(220, 38, 38, 0.04);
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 30s linear infinite;
}

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

.marquee-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    color: var(--carbon-black);
    letter-spacing: 0.15em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.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(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

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

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

.advantage-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.advantage-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--carbon-black);
    transition: color 0.3s ease;
}

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

.construction-decor {
    position: absolute;
    right: 28px;
    top: 28px;
    width: 40px;
    height: 2px;
    background: rgba(220, 38, 38, 0.4);
}

.achievements-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    margin-bottom: -80px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--racing-red), var(--chrome-silver));
    border-radius: 12px 12px 0 0;
}

.achievement-icon {
    width: 48px;
    height: 48px;
    margin: 28px;
    flex-shrink: 0;
}

.achievement-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

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

.achievement-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--carbon-black);
}

.achievement-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: var(--racing-red);
    margin-top: 4px;
}

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

.achievement-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--chrome-silver);
    margin-top: 4px;
}

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

.team-member {
    position: relative;
    padding: 24px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    gap: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: white;
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 16px 48px rgba(220, 38, 38, 0.1);
    z-index: 10;
}

.member-photo-reveal {
    position: absolute;
    top: 0;
    right: -20px;
    width: 200px;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

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

.member-photo-reveal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.15);
}

.member-photo-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    pointer-events: none;
}

.member-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.member-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--carbon-black);
}

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

.member-desc {
    font-size: 14px;
    color: var(--steel);
    margin-top: 8px;
    line-height: 1.5;
}

.member-tech {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--chrome-silver);
    margin-top: auto;
    text-align: right;
}

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

.faq-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: scale(1.03);
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 20px 56px rgba(220, 38, 38, 0.1);
    z-index: 10;
}

.faq-card-image {
    height: 180px;
    margin: -24px -24px 16px -24px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

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

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

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--carbon-black);
}

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

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

.faq-decor {
    width: 40px;
    height: 2px;
    background: var(--racing-red);
    border-radius: 2px;
    margin: 16px 0;
}

.testimonials-carousel {
    position: relative;
    height: 460px;
    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;
}

.testimonial-card {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.testimonial-image {
    height: 120px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

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

.testimonial-content {
    padding: 24px;
}

.testimonial-corner {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.testimonial-corner svg {
    width: 100%;
    height: 100%;
    stroke: rgba(220, 38, 38, 0.15);
    fill: none;
    stroke-width: 1;
}

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

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

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    color: var(--steel);
    line-height: 1.65;
    margin-bottom: 16px;
}

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

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

.author-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--carbon-black);
}

.author-company {
    font-size: 12px;
    color: var(--chrome-silver);
}

.testimonial-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--racing-red), var(--chrome-silver));
    border-radius: 3px;
    margin-top: 16px;
}

.carousel-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
}

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

.carousel-nav-prev {
    left: 20%;
}

.carousel-nav-next {
    right: 20%;
}

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

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

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

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

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

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

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

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

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

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

.contact-divider {
    height: 1px;
    background: rgba(220, 38, 38, 0.1);
    margin: 20px 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 1.5;
}

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

.contact-map {
    filter: grayscale(100%);
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    margin-top: 24px;
}

.contact-map iframe {
    width: 100%;
    border-radius: 12px;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px;
    background: var(--cream-mist);
    position: relative;
    overflow: hidden;
}

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

.thank-you-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

.thank-you-title {
    font-size: 56px;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

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

.footer {
    background: var(--pearl-white);
    border-top: 1px solid rgba(220, 38, 38, 0.1);
    padding: 60px 80px 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

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

.footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--carbon-black);
}

.footer-desc {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.6;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 14px;
    color: var(--steel);
}

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

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

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

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

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

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
    max-width: 400px;
    z-index: 9999;
    display: none;
}

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

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

.page-title {
    font-size: 48px;
    color: var(--carbon-black);
    display: flex;
    align-items: center;
    gap: 0;
}

.page-title .red-line {
    display: inline-block;
    width: 24px;
    height: 4px;
    background: var(--racing-red);
    margin-right: 12px;
}

.page-title-text {
    display: inline;
}

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

.page-marker {
    width: 8px;
    height: 8px;
    background: var(--racing-red);
    border-radius: 2px;
}

.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.5s 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-editorial {
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

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

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    padding: 20px 0;
}

.service-price-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    color: var(--racing-red);
    margin-bottom: 24px;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-feature-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

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

.service-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.service-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--racing-red);
    fill: none;
    stroke-width: 2;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(8px);
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 20px 56px rgba(220, 38, 38, 0.1);
}

.process-step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: rgba(220, 38, 38, 0.2);
    flex-shrink: 0;
    line-height: 1;
}

.process-step-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.6;
}

/* Price Table */
.price-table {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(220, 38, 38, 0.06);
    transition: background 0.3s ease;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: rgba(220, 38, 38, 0.02);
}

.price-service {
    font-size: 15px;
    color: var(--carbon-black);
}

.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--racing-red);
    white-space: nowrap;
}

.price-row-highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.04), rgba(220, 38, 38, 0.08));
}

.price-row-highlight .price-service {
    font-weight: 700;
    color: var(--carbon-black);
}

.price-row-highlight .price-amount {
    font-size: 16px;
    font-weight: 700;
}

/* CTA Center */
.cta-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-light {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.15);
    box-shadow: 0 20px 56px rgba(220, 38, 38, 0.08);
}

.faq-question-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
}

.faq-q {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: var(--racing-red);
    flex-shrink: 0;
}

.faq-question-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--carbon-black);
    flex: 1;
}

.faq-toggle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--racing-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

@media (max-width: 1024px) {
    .vertical-sidebar {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero {
        padding: 100px 40px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .editorial-bento {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-main {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section {
        padding: 80px 40px;
    }
    
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .service-bento-photo {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }
    
    .service-bento-header {
        grid-column: span 2;
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 300px;
    }
    
    .about-content {
        padding: 40px;
    }
    
    .process-scroll {
        height: auto;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 40px 20px;
    }
    
    .process-cards {
        flex-direction: column;
        align-items: stretch;
    }
    
    .process-card {
        width: 100%;
        height: auto;
    }
    
    .scroll-arrow {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .member-photo-reveal {
        display: none;
    }
    
    .faq-masonry {
        columns: 1;
    }
    
    .testimonials-carousel {
        height: auto;
        overflow-x: auto;
    }
    
    .carousel-track {
        flex-direction: row;
        gap: 20px;
        padding: 20px;
    }
    
    .testimonial-card {
        position: relative;
        width: 280px;
        flex-shrink: 0;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .service-bento-photo {
        grid-column: span 1;
    }
    
    .service-bento-header {
        grid-column: span 1;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 100px 20px 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column;
        gap: 12px;
    }
    
    .process-step-number {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary-light {
        width: 100%;
        text-align: center;
    }
    
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}