@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue+Pro&family=Exo+2:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@400;500&display=swap');

:root {
    --deep-indigo: #1E1B4B;
    --rich-navy: #312E81;
    --chrome-white: #F8FAFC;
    --steel-gray: #94A3B8;
    --amber-glow: #F59E0B;
    --sunset-orange: #F97316;
    --electric-cyan: #06B6D4;
    --glow-orange: rgba(249, 115, 22, 0.3);
    --glow-cyan: rgba(6, 182, 212, 0.2);
    --glass-bg: rgba(30, 27, 75, 0.9);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--steel-gray);
    background-color: var(--deep-indigo);
    overflow-x: hidden;
}

strong, p, span {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--chrome-white);
}

.garage-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(30, 27, 75, 0.99);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--glow-orange);
    box-shadow: 0 4px 24px rgba(249, 115, 22, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    transition: all 0.3s ease;
}

.garage-header.scrolled {
    height: 56px;
    box-shadow: 0 4px 32px rgba(249, 115, 22, 0.15);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--electric-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.2));
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--chrome-white);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--steel-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.nav-item:hover {
    background: rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.2);
    color: var(--sunset-orange);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sunset-orange);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
    transition: width 0.25s ease;
}

.nav-item:hover::after {
    width: 24px;
}

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

.cta-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.2));
    transition: all 0.25s ease-out;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cta-button:hover {
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.3));
}

.header-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--sunset-orange);
    letter-spacing: 0.02em;
}

.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    stroke: var(--sunset-orange);
    stroke-width: 2;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 27, 75, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    padding-top: 100px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

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

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

.mobile-nav-item {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 32px;
    color: var(--chrome-white);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

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

.mobile-nav-line {
    width: 60px;
    height: 2px;
    background: var(--sunset-orange);
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
    margin: 0 auto;
}

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

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

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

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

.close-menu-btn svg {
    stroke: var(--sunset-orange);
    stroke-width: 2;
}

.hero-section {
    min-height: 100vh;
    background: var(--deep-indigo);
    position: relative;
    overflow: hidden;
    padding: 140px 80px 120px;
}

.metallic-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(248, 250, 252, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(148, 163, 184, 0.02) 0%, transparent 50%);
    animation: metallicShift 45s ease-in-out infinite alternate;
    z-index: 0;
}

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

.neon-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridShift 25s ease-in-out infinite alternate;
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
}

@keyframes gridShift {
    0% { transform: translateX(-20px) translateY(-20px); }
    100% { transform: translateX(20px) translateY(20px); }
}

.orange-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    grid-column: span 6;
    animation: fadeSlideIn 1.2s ease-out;
}

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

.neon-decor {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4)); }
    50% { filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.6)); }
}

.hero-title-main {
    font-size: clamp(80px, 10vw, 120px);
    letter-spacing: -0.03em;
    color: var(--chrome-white);
    max-width: 520px;
}

.hero-title-sub {
    font-size: clamp(48px, 6vw, 64px);
    letter-spacing: -0.02em;
    color: var(--sunset-orange);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    margin-top: -8px;
}

.hero-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: 17px;
    color: var(--steel-gray);
    line-height: 1.6;
    max-width: 480px;
    margin-top: 20px;
}

.orange-markers {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.marker {
    width: 24px;
    height: 10px;
    background: var(--sunset-orange);
    border-radius: 5px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.neon-line-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--electric-cyan));
    border-radius: 2px;
    margin-top: 16px;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

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

.cta-primary {
    padding: 24px 52px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.35);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.25));
    transition: all 0.25s ease-out;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.cta-primary:hover {
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.45);
    transform: translateY(-2px);
}

.cta-secondary {
    padding: 22px 44px;
    background: transparent;
    border: 2px solid var(--chrome-white);
    color: var(--chrome-white);
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease-out;
    cursor: pointer;
    white-space: nowrap;
}

.cta-secondary:hover {
    border-color: var(--sunset-orange);
    color: var(--sunset-orange);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.15);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.2));
}

.hero-right {
    grid-column: span 6;
    position: relative;
    height: 520px;
    animation: fadeSlideIn 1.2s ease-out 0.3s backwards;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    height: 100%;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.2));
}

.bento-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.bento-item:first-child {
    grid-row: span 2;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transition: transform 0.3s ease;
}

.bento-item:hover img {
    transform: scale(1.02);
    z-index: 10;
}

.bento-item:first-child {
    box-shadow: inset 0 0 40px rgba(249, 115, 22, 0.08);
}

.neon-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.1));
    z-index: 5;
}

.neon-card-top {
    top: 40px;
    right: 24px;
}

.neon-card-bottom {
    bottom: 40px;
    right: 24px;
    z-index: 4;
}

.neon-card-label {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 12px;
    color: var(--chrome-white);
}

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

.section-dark {
    background: var(--deep-indigo);
    padding: 100px 80px;
    position: relative;
}

.section-navy {
    background: var(--rich-navy);
    padding: 100px 80px;
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: -0.02em;
    color: var(--chrome-white);
    margin-bottom: 16px;
}

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

.neon-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

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

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -12px;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    border-color: rgba(249, 115, 22, 0.3);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.15));
    z-index: 10;
}

.service-card-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.service-card-icon {
    display: block;
    margin: 16px 0 12px 20px;
}

.service-card-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 15px;
    color: var(--chrome-white);
    padding: 0 20px;
}

.service-card-desc {
    font-size: 13px;
    color: var(--steel-gray);
    margin-top: 6px;
    line-height: 1.5;
    padding: 0 20px;
}

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

.service-card-divider {
    height: 4px;
    width: calc(100% - 40px);
    margin: 16px 20px 20px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--electric-cyan));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
}

.split-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.split-divider {
    position: absolute;
    left: 55%;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--sunset-orange), var(--electric-cyan));
    transform: translateX(-50%);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.3));
}

.split-left {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.split-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.split-right {
    padding: 80px 60px;
}

.split-title {
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--chrome-white);
    margin-bottom: 24px;
}

.split-text {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.split-neon-line {
    width: 40px;
    height: 2px;
    background: rgba(249, 115, 22, 0.2);
    margin: 20px 0;
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.2));
}

.timeline-section {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--sunset-orange), var(--electric-cyan), var(--sunset-orange));
    transform: translateX(-50%);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.3));
}

.timeline-item {
    width: calc(50% - 60px);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    padding: 24px 28px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: -12px;
    transition: all 0.4s ease;
}

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

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--sunset-orange);
    border-radius: 50%;
    border: 4px solid var(--rich-navy);
    box-shadow: 0 0 0 4px var(--sunset-orange), 0 0 12px rgba(249, 115, 22, 0.4);
}

.timeline-img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 12px;
    filter: saturate(1.1);
}

.timeline-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    color: var(--chrome-white);
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portfolio-item {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: -12px;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover {
    background: rgba(30, 27, 75, 0.98);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.15));
    z-index: 10;
}

.portfolio-item-icon {
    width: 40px;
    height: 40px;
    margin-right: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

.portfolio-item-text {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 14px;
    color: var(--chrome-white);
    flex-grow: 1;
}

.portfolio-item-arrow {
    width: 20px;
    height: 20px;
    stroke: rgba(148, 163, 184, 0.3);
    transition: all 0.2s;
}

.portfolio-item:hover .portfolio-item-arrow {
    stroke: var(--sunset-orange);
    transform: translateX(4px);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.portfolio-reveal {
    position: relative;
    min-height: 320px;
}

.portfolio-reveal-img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.4s ease;
}

.portfolio-reveal.active .portfolio-reveal-img {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-reveal-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 6px;
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
}

.portfolio-showcase {
    margin-bottom: 64px;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-showcase-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-showcase-item:hover .portfolio-showcase-img {
    transform: scale(1.08);
}

.portfolio-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(30, 27, 75, 0.98) 0%, rgba(30, 27, 75, 0.7) 60%, transparent 100%);
    transform: translateY(40%);
    transition: transform 0.4s ease;
}

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

.portfolio-showcase-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    color: var(--chrome-white);
    margin-bottom: 8px;
}

.portfolio-showcase-desc {
    font-size: 14px;
    color: var(--steel-gray);
    margin-bottom: 8px;
    line-height: 1.5;
}

.portfolio-showcase-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--sunset-orange);
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat-value {
    display: block;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 48px;
    color: var(--sunset-orange);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.portfolio-stat-label {
    font-size: 14px;
    color: var(--steel-gray);
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 20px;
    padding: 12px 24px;
    border-radius: 6px;
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
}

.carousel-3d {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1400px;
    margin-top: 48px;
}

.carousel-card {
    width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    position: absolute;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.carousel-card.active {
    transform: scale(1.04);
    z-index: 100;
    box-shadow: 0 24px 64px rgba(249, 115, 22, 0.15);
    filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.2));
}

.carousel-card-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

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

.carousel-card-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    color: var(--chrome-white);
}

.carousel-card-role {
    font-size: 12px;
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.carousel-card-text {
    font-size: 13px;
    color: var(--steel-gray);
    margin-top: 8px;
    line-height: 1.5;
}

.carousel-stars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.star {
    width: 16px;
    height: 16px;
    fill: var(--sunset-orange);
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.3));
}

.carousel-gradient {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--sunset-orange), var(--electric-cyan));
    border-radius: 0 0 8px 8px;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
}

.carousel-nav {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.1));
}

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

.carousel-nav svg {
    stroke: var(--sunset-orange);
    stroke-width: 2;
    transition: stroke 0.2s;
}

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

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

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(49, 46, 129, 0.9);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    flex-grow: 1.6;
    background: rgba(30, 27, 75, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    border-color: rgba(249, 115, 22, 0.25);
}

.faq-card:hover .faq-card-title {
    color: var(--sunset-orange);
}

.faq-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

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

.faq-card-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 14px;
    color: var(--chrome-white);
    transition: color 0.2s;
}

.faq-card-text {
    font-size: 13px;
    color: var(--steel-gray);
    margin-top: 6px;
    line-height: 1.6;
}

.faq-neon-line {
    width: 40px;
    height: 2px;
    background: rgba(249, 115, 22, 0.2);
    margin-top: 16px;
    filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.15));
}

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

.achievement-card {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    border: 2px solid rgba(249, 115, 22, 0.15);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.achievement-card:hover {
    transform: translateY(-4px);
    z-index: 10;
}

.achievement-gradient {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--sunset-orange), var(--electric-cyan));
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.3);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    margin: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

.achievement-img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.achievement-value {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 48px;
    color: var(--sunset-orange);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.achievement-title {
    font-size: 13px;
    color: var(--steel-gray);
    margin-top: 4px;
}

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

.team-graph {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.team-center {
    width: 160px;
    height: 160px;
    background: rgba(249, 115, 22, 0.08);
    border: 3px solid var(--sunset-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.3);
    position: relative;
    z-index: 5;
}

.team-center-inner {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
}

.team-center-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: 50%;
}

.team-center-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.team-node {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    border: 2px solid rgba(249, 115, 22, 0.12);
    padding: 18px 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    width: 160px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: -16px;
}

.team-node:hover {
    transform: scale(1.06);
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 20px 56px rgba(249, 115, 22, 0.15);
    z-index: 10;
}

.team-node-img {
    height: 70px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.team-node-name {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 14px;
    color: var(--chrome-white);
}

.team-node-role {
    font-size: 12px;
    color: var(--steel-gray);
    margin-top: 4px;
    line-height: 1.5;
}

.team-connection {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.contact-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.accordion-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    border: 2px solid rgba(249, 115, 22, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-panel:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 20px 56px rgba(249, 115, 22, 0.1);
}

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

.accordion-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

.accordion-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    color: var(--chrome-white);
    flex-grow: 1;
    border: none;
}

.accordion-title:hover {
    background: none;
}

.accordion-title::before {
    content: '';
}

.accordion-chevron {
    width: 20px;
    height: 20px;
    stroke: var(--steel-gray);
    stroke-width: 2;
    transition: all 0.3s;
}

.accordion-panel.active .accordion-chevron {
    stroke: var(--sunset-orange);
    transform: rotate(180deg);
}

.accordion-panel.active {
    grid-column: span 2;
    border-left: 4px solid var(--sunset-orange);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-panel.active .accordion-content {
    max-height: 1000px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: block;
}

.accordion-img {
    height: 180px;
    width: calc(100% - 48px);
    margin: 16px 24px;
    object-fit: cover;
    border-radius: 6px;
}

.accordion-text {
    font-size: 16px;
    color: var(--steel-gray);
    line-height: 1.75;
    margin-top: 12px;
    padding: 0 24px 24px;
}

.accordion-gradient {
    height: 4px;
    width: calc(100% - 48px);
    margin: 0 24px 16px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--electric-cyan));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.2);
}

.footer-section {
    background: var(--deep-indigo);
    padding: 80px 80px 40px;
    border-top: 2px solid rgba(249, 115, 22, 0.15);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--sunset-orange), var(--electric-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    color: var(--chrome-white);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--steel-gray);
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    stroke: var(--sunset-orange);
}

.footer-heading {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    color: var(--chrome-white);
    margin-bottom: 20px;
}

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

.footer-link {
    margin-bottom: 12px;
}

.footer-link a {
    font-size: 14px;
    color: var(--steel-gray);
    transition: color 0.2s;
}

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

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

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

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

.footer-legal a {
    font-size: 13px;
    color: var(--steel-gray);
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: block;
}

.cookie-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    color: var(--chrome-white);
    margin-bottom: 12px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
}

.cookie-accept:hover {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

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

.cookie-decline:hover {
    border-color: var(--chrome-white);
    color: var(--chrome-white);
}

.cookie-link {
    font-size: 12px;
    color: var(--sunset-orange);
    margin-top: 12px;
    display: block;
}

.cookie-link:hover {
    text-decoration: underline;
}

.page-hero {
    min-height: 280px;
    background: var(--deep-indigo);
    position: relative;
    overflow: hidden;
    padding: 120px 80px 60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(248, 250, 252, 0.02) 0%, transparent 50%);
    animation: metallicShift 40s ease-in-out infinite alternate;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridShift 20s ease-in-out infinite alternate;
    filter: blur(20px);
}

.page-breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--steel-gray);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: -0.02em;
    color: var(--chrome-white);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}

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

.page-marker {
    width: 12px;
    height: 6px;
    background: var(--sunset-orange);
    border-radius: 3px;
}

.contact-form-section {
    background: var(--rich-navy);
    padding: 80px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    color: var(--chrome-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(30, 27, 75, 0.8);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: var(--chrome-white);
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--steel-gray);
}

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

.form-select option {
    background: var(--deep-indigo);
    color: var(--chrome-white);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sunset-orange), #EA580C);
    color: white;
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease-out;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.form-submit:hover {
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.contact-info-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 16px;
    color: var(--chrome-white);
    margin-bottom: 8px;
}

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

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.thank-you-section {
    min-height: 100vh;
    background: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.4));
}

.thank-you-title {
    font-size: clamp(40px, 6vw, 56px);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--steel-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}
.thank-you-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.thank-you-card {
    background: rgba(30, 27, 75, 0.9);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.thank-you-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
}

.thank-you-card h3 {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.thank-you-card p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #F97316;
    margin-bottom: 4px;
}

.thank-you-card span {
    font-size: 12px;
    color: #94A3B8;
}

.legal-updated {
    font-size: 13px;
    color: #94A3B8;
    margin-bottom: 32px;
    font-family: 'JetBrains Mono', monospace;
}

.legal-section {
    background: var(--deep-indigo);
    padding: 100px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 32px;
}

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

.legal-content h3 {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 20px;
    color: var(--chrome-white);
    margin: 32px 0 16px;
}

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

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

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

.faq-panel {
    background: rgba(49, 46, 129, 0.9);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(249, 115, 22, 0.12);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-panel-header {
    display: flex;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-panel-header:hover {
    background: rgba(249, 115, 22, 0.08);
}

.faq-panel-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.3));
}

.faq-panel-title {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 18px;
    color: #F8FAFC;
    flex-grow: 1;
    margin: 0;
}

.faq-panel-chevron {
    width: 20px;
    height: 20px;
    stroke: #94A3B8;
    stroke-width: 2;
    transition: transform 0.3s ease, stroke 0.3s ease;
    flex-shrink: 0;
}

.faq-panel.active .faq-panel-chevron {
    transform: rotate(180deg);
    stroke: #F97316;
}

.faq-panel.active .faq-panel-header {
    background: rgba(249, 115, 22, 0.08);
}

.faq-panel.active .faq-panel-title {
    color: #F97316;
}

.faq-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-panel.active .faq-panel-content {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-panel-content p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    padding-left: 60px;
}

.faq-cta {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
}

.faq-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    background: rgba(30, 27, 75, 0.9);
    border: 2px solid rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    flex-wrap: wrap;
}

.faq-cta-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.4));
}

.faq-cta-text {
    text-align: left;
    flex-grow: 1;
}

.faq-cta-text h3 {
    font-family: 'Bebas Neue Pro', sans-serif;
    font-size: 24px;
    color: #F8FAFC;
    margin: 0 0 8px;
}

.faq-cta-text p {
    font-size: 16px;
    color: #94A3B8;
    margin: 0;
}

.faq-cta-text span {
    color: #F97316;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.footer-brand-section {
    grid-column: span 1;
}

.footer-links-section {
    grid-column: span 1;
}

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

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

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

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

.reveal-neon {
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.3));
    transition: all 0.5s ease-out;
}

.reveal-fade.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-neon.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

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

::-webkit-scrollbar-track {
    background: var(--deep-indigo);
}

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

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

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-left,
    .hero-right {
        grid-column: span 12;
    }
    
    .hero-right {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .garage-header {
        padding: 0 20px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-cta .cta-button,
    .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .section-dark,
    .section-navy {
        padding: 80px 40px;
    }
    
    .hero-section {
        padding: 120px 40px 80px;
    }
    
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .split-divider {
        display: none;
    }
    
    .split-left {
        height: 300px;
    }
    
    .split-right {
        padding: 40px 0;
    }
    
    .timeline-section {
        padding: 0 40px;
    }
    
    .timeline-item {
        width: 100%;
        margin: 0 0 24px 0 !important;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .contact-accordion {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .accordion-panel.active {
        grid-column: span 1;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-hero {
        padding: 100px 40px 40px;
    }
    
    .contact-form-section {
        padding: 60px 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .legal-section {
        padding: 80px 40px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        width: auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .cta-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-img {
        width: 100%;
        height: 150px;
    }
    
    .team-graph {
        flex-direction: column;
        gap: 24px;
    }
    
    .team-center {
        position: relative;
        top: auto;
        left: auto;
    }
    
    .team-node {
        position: relative;
        width: 100%;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento-item:first-child {
        grid-row: span 1;
    }
    
    .hero-right {
        height: 300px;
    }
}
