@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cormorant+Garamond:wght@400;600&family=DM+Sans:wght@400;500&family=Space+Mono:wght@400&display=swap');

:root {
    --warm-white: #FAFAFA;
    --pure-gray: #F4F4F5;
    --neutral-900: #18181B;
    --neutral-500: #71717A;
    --neutral-300: #D4D4D8;
    --crimson-forge: #DC2626;
    --crimson-dark: #B91C1C;
    --industrial-orange: #F97316;
    --shadow-card: 0 32px 128px rgba(220,38,38,0.15) 0 16px 64px rgba(249,115,22,0.08);
    --shadow-card-hover: 0 40px 160px rgba(220,38,38,0.2);
    --shadow-header: 0 4px 24px rgba(220,38,38,0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--neutral-900);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.88;
    color: var(--neutral-900);
}

.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.mono {
    font-family: 'Space Mono', monospace;
}

.glow-torch {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-torch.active {
    opacity: 1;
}

.industrial-separator {
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    box-shadow: 0 4px 16px rgba(220,38,38,0.2);
}

.forge-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(250,250,250,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(220,38,38,0.08);
    box-shadow: var(--shadow-header);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--crimson-forge), var(--crimson-dark));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220,38,38,0.2);
}

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

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--neutral-900);
}

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

.nav-item {
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--neutral-500);
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
    position: relative;
}

.nav-item:hover {
    color: var(--crimson-forge);
    box-shadow: 0 0 8px rgba(220,38,38,0.15);
}

.header-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--crimson-forge), var(--crimson-dark));
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(220,38,38,0.25);
    cursor: pointer;
    transition: all 0.25s ease-out;
    border: none;
}

.header-cta:hover {
    box-shadow: 0 8px 32px rgba(220,38,38,0.35);
    transform: translateY(-2px);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250,250,250,0.99);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 16px 64px rgba(220,38,38,0.08);
    overflow: hidden;
    height: 0;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
}

.dropdown-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    box-shadow: 0 4px 16px rgba(220,38,38,0.2);
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 40px 80px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-wrapper:hover .dropdown-panel {
    height: 480px;
}

.nav-wrapper:hover .dropdown-content {
    opacity: 1;
}

.dropdown-card {
    border: 1px solid rgba(220,38,38,0.08);
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-card:hover {
    border-color: var(--crimson-forge);
    box-shadow: 0 8px 32px rgba(220,38,38,0.15);
}

.dropdown-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.dropdown-card-text {
    font-size: 13px;
    color: var(--neutral-500);
}

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

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

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250,250,250,0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-left: 32px;
    opacity: 1;
    transform: scale(1);
}

.mobile-overlay .nav-item {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    padding: 20px 0;
    color: var(--neutral-900);
}

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

.mobile-close svg {
    stroke: var(--crimson-forge);
    stroke-width: 2;
}

.hero-section {
    min-height: 100vh;
    background: var(--warm-white);
    padding-top: 56px;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220,38,38,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,38,38,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    filter: blur(40px);
    animation: gridMove 25s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

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

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

.hero-decor {
    margin-bottom: 28px;
    animation: fadeScale 0.4s ease-out;
}

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

.hero-title-line1 {
    font-family: 'Anton', sans-serif;
    font-size: 140px;
    line-height: 0.68;
    letter-spacing: 0.04em;
    color: var(--neutral-900);
    max-width: 480px;
    animation: clipReveal 0.7s ease-out;
}

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

.hero-title-line2 {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    line-height: 0.88;
    letter-spacing: 0.03em;
    color: var(--crimson-forge);
    margin-top: 8px;
    animation: clipReveal 0.7s ease-out 0.1s backwards;
}

.hero-subtitle-en {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: rgba(113,113,122,0.5);
    margin-top: 16px;
    letter-spacing: 0.08em;
}

.hero-line {
    height: 3px;
    width: 200px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    margin-top: 16px;
}

.hero-description {
    font-size: 17px;
    color: var(--neutral-500);
    line-height: 1.65;
    max-width: 440px;
    margin-top: 20px;
    animation: fadeIn 0.6s ease-out 0.4s backwards;
}

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

.hero-markers {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    animation: fadeScale 0.4s ease-out 0.3s backwards;
}

.marker {
    width: 24px;
    height: 10px;
    background: var(--crimson-forge);
    filter: drop-shadow(4px 4px 0 rgba(220,38,38,0.2));
}

.hero-btns {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    animation: scaleFade 0.6s ease-out 0.6s backwards;
}

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

.btn-primary {
    padding: 24px 52px;
    background: linear-gradient(135deg, var(--crimson-forge), var(--crimson-dark));
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 48px rgba(220,38,38,0.35);
    cursor: pointer;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 16px 64px rgba(220,38,38,0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 22px 44px;
    background: transparent;
    border: 2px solid var(--neutral-900);
    color: var(--neutral-900);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--crimson-forge);
    box-shadow: 0 6px 24px rgba(220,38,38,0.15);
}

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

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

.bento-item {
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

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

.bento-item:nth-child(1) {
    grid-row: span 2;
}

.bento-item:nth-child(1) img {
    height: 100%;
}

.bento-item img {
    width: 100%;
    height: 244px;
    object-fit: cover;
    filter: saturate(1.02) grayscale(0.05);
}

.hero-stat-card {
    position: absolute;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220,38,38,0.08);
    border-radius: 0;
    padding: 14px 18px;
    box-shadow: 0 24px 96px rgba(220,38,38,0.06);
    z-index: 5;
}

.hero-stat-card:nth-child(6) {
    top: 40px;
    right: 24px;
}

.hero-stat-card:nth-child(7) {
    bottom: 40px;
    right: 24px;
}

.stat-title {
    font-family: 'Anton', sans-serif;
    font-size: 12px;
    color: var(--neutral-900);
}

.stat-value {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--crimson-forge);
}

.section {
    padding: 80px 0 64px;
    position: relative;
}

.section-gray {
    background: var(--pure-gray);
}

.section-dark {
    background: var(--neutral-900);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--neutral-500);
    margin-bottom: 48px;
}

.services-marquee {
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}

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

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

.services-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.service-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    padding: 24px 28px;
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    min-width: 280px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: scale(1.06);
    border-color: rgba(220,38,38,0.25);
    box-shadow: 0 32px 128px rgba(220,38,38,0.12);
    z-index: 35;
}

.service-card-accent {
    height: 4px;
    width: 60px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

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

.service-title {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.service-text {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.5;
}

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

.node-center {
    width: 160px;
    height: 160px;
    border-radius: 0;
    background: rgba(220,38,38,0.04);
    border: 3px solid var(--crimson-forge);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 24px 96px rgba(220,38,38,0.2);
}

.node-center::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(249,115,22,0.2);
    border-radius: 0;
}

.node-center::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(220,38,38,0.08);
    border-radius: 0;
}

.node-center svg {
    width: 64px;
    height: 64px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.node-card {
    position: absolute;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    padding: 18px 20px;
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.node-card:hover {
    transform: scale(1.06);
    border-color: var(--crimson-forge);
    box-shadow: 0 32px 128px rgba(220,38,38,0.15);
    z-index: 35;
}

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

.node-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.node-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--neutral-900);
}

.node-text {
    font-size: 12px;
    color: var(--neutral-500);
    margin-top: 4px;
    line-height: 1.5;
}

.node-value {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--crimson-forge);
    margin-top: 8px;
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: repeating-linear-gradient(180deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    transform: translateX(-50%);
}

.timeline-item {
    width: calc(50% - 60px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    padding: 24px 28px;
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

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

.timeline-item:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 32px 128px rgba(220,38,38,0.15);
    z-index: 35;
}

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

.timeline-number {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: rgba(220,38,38,0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

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

.timeline-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.timeline-title {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.timeline-text {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

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

.portfolio-card {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}

.portfolio-card:hover {
    flex-grow: 1.8;
    background: white;
    border-color: rgba(220,38,38,0.25);
    z-index: 35;
    transform: scale(1.06);
}

.portfolio-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 16px;
}

.portfolio-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.portfolio-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.portfolio-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.portfolio-text {
    font-size: 13px;
    color: var(--neutral-500);
    line-height: 1.5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 0 80px;
}

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

.testimonial-card {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    background: white;
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 32px 128px rgba(220,38,38,0.1);
    z-index: 35;
    transform: scale(1.06);
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
}

.testimonial-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.testimonial-name {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--neutral-900);
}

.testimonial-chevron {
    margin-left: auto;
}

.testimonial-chevron svg {
    width: 20px;
    height: 20px;
    stroke: rgba(113,113,122,0.3);
    stroke-width: 2;
    fill: none;
    transition: all 0.2s;
}

.testimonial-card:hover .testimonial-chevron svg {
    stroke: var(--crimson-forge);
    transform: translateX(4px);
}

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

.testimonial-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 32px 128px rgba(220,38,38,0.1);
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.4s ease;
}

.testimonial-photo.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 80px;
}

.faq-panel {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    overflow: hidden;
}

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

.faq-question:hover {
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 32px 128px rgba(220,38,38,0.1);
    z-index: 35;
}

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

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

.faq-title {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    flex-grow: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-chevron svg {
    width: 100%;
    height: 100%;
    stroke: var(--neutral-300);
    stroke-width: 2;
    fill: none;
}

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

.faq-panel.active .faq-chevron svg {
    stroke: var(--crimson-forge);
}

.faq-panel.active .faq-question {
    border-left: 4px solid var(--crimson-forge);
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
}

.faq-answer-text {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.75;
    margin-top: 12px;
}

.achievements-section {
    position: relative;
}

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

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

.achievement-card {
    position: absolute;
    width: 300px;
    height: 400px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.achievement-card:hover {
    transform: scale(1.06);
    box-shadow: 0 32px 128px rgba(220,38,38,0.1);
    z-index: 35;
}

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

.achievement-content {
    padding: 24px;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

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

.achievement-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.achievement-text {
    font-size: 12px;
    color: var(--neutral-500);
    line-height: 1.5;
}

.achievement-value {
    font-family: 'Space Mono', monospace;
    font-size: 42px;
    color: var(--crimson-forge);
    margin-top: 4px;
}

.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.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
}

.carousel-nav:hover {
    background: var(--crimson-forge);
}

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

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

.carousel-nav.prev {
    left: calc(50% - 220px);
}

.carousel-nav.next {
    right: calc(50% - 220px);
}

.team-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.team-left {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(250,250,250,0.98);
    padding: 40px;
}

.team-bg-text {
    font-family: 'Anton', sans-serif;
    font-size: 80px;
    line-height: 0.78;
    letter-spacing: 0.03em;
    color: var(--neutral-900);
    opacity: 0.06;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.team-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 3;
    fill: none;
}

.team-left-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--neutral-900);
}

.team-left-text {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.65;
    max-width: 480px;
    margin-top: 16px;
}

.team-markers {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.team-marker {
    width: 24px;
    height: 10px;
    background: var(--crimson-forge);
}

.team-right {
    overflow-y: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 80px 0;
}

.team-card {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    padding: 24px;
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    transform: scale(1.03);
    border-color: rgba(220,38,38,0.2);
    box-shadow: 0 32px 128px rgba(220,38,38,0.1);
    z-index: 35;
}

.team-card-accent {
    height: 4px;
    width: 40px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
}

.team-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.team-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.team-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.team-card-text {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

.team-card-photo {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
    margin-top: 12px;
}

.team-card-number {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: rgba(220,38,38,0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

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

.contact-card {
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    margin-bottom: -64px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    z-index: 35;
    box-shadow: 0 32px 128px rgba(220,38,38,0.15);
}

.contact-card-accent {
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    box-shadow: 0 4px 12px rgba(220,38,38,0.2);
}

.contact-card-content {
    display: flex;
    padding: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 24px 0 24px 24px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.contact-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    margin-right: 24px;
    flex-shrink: 0;
}

.contact-info {
    padding: 24px;
}

.contact-title {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.contact-text {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

.contact-form {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    border: 1px solid rgba(220,38,38,0.08);
    box-shadow: 0 24px 96px rgba(220,38,38,0.08);
    padding: 40px;
    margin-top: 48px;
}

.form-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--neutral-900);
    margin-bottom: 24px;
}

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

.form-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    background: white;
    border: 1px solid rgba(220,38,38,0.15);
    border-radius: 0;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--crimson-forge);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--neutral-900);
    background: white;
    border: 1px solid rgba(220,38,38,0.15);
    border-radius: 0;
    min-height: 120px;
    resize: vertical;
    transition: all 0.2s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--crimson-forge);
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--crimson-forge), var(--crimson-dark));
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(220,38,38,0.25);
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.form-submit:hover {
    box-shadow: 0 12px 48px rgba(220,38,38,0.35);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.active {
    display: block;
}

.form-success-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.form-success-text {
    font-size: 18px;
    color: var(--neutral-500);
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(24,24,27,0.98);
    backdrop-filter: blur(12px);
    border-radius: 0;
    padding: 24px;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 16px 64px rgba(0,0,0,0.2);
}

.cookie-title {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: white;
    margin-bottom: 12px;
}

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

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

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

.cookie-btn.accept {
    background: var(--crimson-forge);
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    background: var(--crimson-dark);
}

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

.cookie-btn.decline:hover {
    border-color: white;
    color: white;
}

.cookie-links {
    margin-top: 12px;
    font-size: 12px;
}

.cookie-links a {
    color: var(--neutral-300);
    text-decoration: underline;
}

.cookie-links a:hover {
    color: white;
}

.site-footer {
    background: var(--neutral-900);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-brand {
    color: white;
}

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

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--crimson-forge), var(--crimson-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.65;
    margin-top: 16px;
}

.footer-title {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--neutral-500);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--crimson-forge);
}

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

.footer-contact-icon {
    width: 20px;
    height: 20px;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--crimson-forge);
    stroke-width: 2;
    fill: none;
}

.footer-contact-text {
    font-size: 14px;
    color: var(--neutral-500);
}

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

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

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

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

.footer-legal a:hover {
    color: var(--crimson-forge);
}

.page-hero {
    height: 280px;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    padding-top: 56px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220,38,38,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,38,38,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    filter: blur(40px);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

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

.page-hero-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    letter-spacing: 0.03em;
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.page-hero-marker {
    width: 12px;
    height: 6px;
    background: var(--crimson-forge);
}

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

.privacy-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--neutral-900);
    margin-bottom: 24px;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section-title {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.privacy-text {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.75;
}

.thank-you-content {
    min-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    text-align: center;
}

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

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

.thank-you-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--neutral-900);
    margin-bottom: 16px;
}

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

@media (max-width: 1024px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        padding: 80px 40px;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-title-line1 {
        font-size: 80px;
    }
    
    .hero-title-line2 {
        font-size: 36px;
    }
    
    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 24px;
    }
    
    .nav-wrapper:hover .dropdown-panel {
        height: 400px;
    }
    
    .section-container {
        padding: 0 24px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .testimonials-reveal {
        display: none;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .team-split {
        grid-template-columns: 1fr;
    }
    
    .team-left {
        position: relative;
        height: auto;
        padding: 40px 24px;
    }
    
    .team-right {
        height: auto;
        padding: 40px 24px;
    }
    
    .team-bg-text {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .forge-header {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 60px 24px;
    }
    
    .hero-title-line1 {
        font-size: 60px;
    }
    
    .hero-title-line2 {
        font-size: 28px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 60px 0 48px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        width: 100%;
        margin: 0 0 32px 0 !important;
        margin-top: 0 !important;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-card-content {
        flex-direction: column;
    }
    
    .contact-photo {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .cookie-banner {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--pure-gray);
}

::-webkit-scrollbar-thumb {
    background: repeating-linear-gradient(180deg, var(--crimson-forge) 0px, var(--crimson-forge) 4px, transparent 4px, transparent 8px);
    border-radius: 0;
}

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

.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.6s ease-out;
}

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

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

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