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

:root {
    --chrome-white: #FFFFFF;
    --light-amber: #FEF3C7;
    --deep-bronze: #78350F;
    --warm-amber: #92400E;
    --muted-bronze: #B45309;
    --chrome-gold: #F59E0B;
    --deep-gold: #D97706;
    --bronze-dark: #B45309;
    --deep-teal: #0F766E;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-amber);
    background: var(--chrome-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 56px;
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 48px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--chrome-gold), var(--deep-teal));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0 rgba(245, 158, 11, 0.25);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--deep-bronze);
}

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

.nav-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    color: var(--warm-amber);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    background: transparent;
}

.nav-item:hover {
    background: rgba(245, 158, 11, 0.08);
    color: var(--chrome-gold);
}

.nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--chrome-gold);
    transition: width 0.25s ease;
}

.nav-item:hover::after {
    width: 60%;
}

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

.header-phone {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--chrome-gold);
    letter-spacing: 0.02em;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--chrome-gold), var(--deep-gold));
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
    border-radius: 6px;
    box-shadow: 6px 6px 0 rgba(245, 158, 11, 0.25);
    transition: all 0.25s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 8px 8px 0 rgba(245, 158, 11, 0.35);
    transform: translateY(-2px);
}

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

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--deep-bronze);
    color: var(--deep-bronze);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--chrome-gold);
    box-shadow: 6px 6px 0 rgba(245, 158, 11, 0.15);
}

.btn-secondary:active {
    transform: scale(0.98);
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--chrome-gold);
    stroke-width: 2;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    transform: scale(0.98);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-content {
    padding-top: 100px;
    padding-left: 40px;
}

.mobile-nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-bronze);
    padding: 16px 0;
    display: block;
    position: relative;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 60px;
    height: 4px;
    background: var(--chrome-gold);
    box-shadow: 4px 4px 0 rgba(245, 158, 11, 0.2);
}

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

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--chrome-gold);
    stroke-width: 2;
}

.mobile-contact-info {
    margin-top: auto;
    padding: 40px;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

.mobile-phone {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--chrome-gold);
    display: block;
    margin-bottom: 8px;
}

.mobile-address {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-bronze);
}

@media (max-width: 1024px) {
    .header-nav, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

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

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

.fluid-canvas {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 600px 600px at 20% 30%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 500px 500px at 80% 70%, rgba(217, 119, 6, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(180, 83, 9, 0.04) 0%, transparent 50%);
    animation: fluidMove 40s ease-in-out infinite alternate;
}

@keyframes fluidMove {
    0% {
        transform: translate(-40px, -20px) scale(0.95);
    }
    50% {
        transform: translate(20px, 40px) scale(1.02);
    }
    100% {
        transform: translate(40px, -40px) scale(0.98);
    }
}

.diagonal-grid {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(245, 158, 11, 0.06) 80px,
        rgba(245, 158, 11, 0.06) 81px
    );
    animation: gridMove 25s ease-in-out infinite alternate;
    opacity: 0.4;
    filter: blur(30px);
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 140px 80px 120px;
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 0% 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-badge svg {
    width: 56px;
    height: 56px;
    stroke: rgba(245, 158, 11, 0.5);
    stroke-width: 3;
    fill: none;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(180, 83, 9, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 96px);
    letter-spacing: -0.02em;
    line-height: 0.78;
    color: var(--deep-bronze);
    margin-bottom: 8px;
}

.hero-title-accent {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 56px);
    letter-spacing: -0.01em;
    line-height: 0.85;
    color: var(--chrome-gold);
    text-shadow: 4px 4px 0 rgba(245, 158, 11, 0.2);
}

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

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

.marker {
    width: 28px;
    height: 10px;
    background: var(--chrome-gold);
    box-shadow: 4px 4px 0 rgba(245, 158, 11, 0.2);
}

.hero-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
    margin-top: 16px;
}

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

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 520px;
    gap: 0;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 12%);
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image-1 {
    grid-row: span 2;
    grid-column: span 1;
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 40px rgba(245, 158, 11, 0.08);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
    z-index: 5;
}

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

.hero-card-2 {
    bottom: 40px;
    right: 24px;
}

.hero-card-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-bronze);
}

.hero-card-value {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--chrome-gold);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 24px 80px;
    }
    
    .hero-visual {
        display: none;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.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);
}

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

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

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

.section-bronze {
    background: var(--deep-bronze);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--deep-bronze);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--warm-amber);
    max-width: 600px;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.section-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--chrome-gold);
    stroke-width: 2;
    fill: none;
}

.section-markers {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.products-grid {
    columns: 3;
    column-width: 300px;
    gap: 24px;
}

.product-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    padding: 0;
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.1);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 24px), 0% 100%);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.03);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.15);
    z-index: 10;
}

.product-card-image {
    height: 200px;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 16px), 0% 100%);
}

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

.product-card-content {
    padding: 20px 22px 22px;
}

.product-card-category {
    font-size: 11px;
    color: var(--chrome-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.product-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-bronze);
}

.product-card-desc {
    font-size: 14px;
    color: var(--warm-amber);
    margin-top: 8px;
    line-height: 1.65;
}

.product-card-footer {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
    margin: 22px 22px 0;
}

.product-card-simple {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    padding: 22px;
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.1);
    clip-path: polygon(0% 12%, 100% 0%, 100% calc(100% - 24px), 0% 100%);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.product-card-simple:hover {
    transform: scale(1.03);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.15);
    z-index: 10;
}

.product-card-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
    margin-bottom: 14px;
}

.product-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
}

.product-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--chrome-gold);
    stroke-width: 2;
    fill: none;
}

@media (max-width: 1024px) {
    .products-grid {
        columns: 2;
        column-width: 280px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        columns: 1;
    }
}

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

.about-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 48px), 0% 100%);
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.about-image-decor {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.about-image-decor svg {
    width: 56px;
    height: 56px;
    stroke: rgba(245, 158, 11, 0.4);
    stroke-width: 3;
    fill: none;
}

.about-overlap {
    position: absolute;
    top: 20px;
    left: -48px;
    width: 140px;
    height: 100px;
    background: rgba(245, 158, 11, 0.04);
    clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 80%);
    z-index: 10;
}

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

.about-decor {
    margin-bottom: 24px;
}

.about-decor svg {
    width: 48px;
    height: 48px;
    stroke: rgba(245, 158, 11, 0.5);
    stroke-width: 3;
    fill: none;
}

.about-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--deep-bronze);
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--warm-amber);
    line-height: 1.75;
}

.about-text p {
    margin-bottom: 16px;
}

.about-divider {
    width: 40px;
    height: 4px;
    background: rgba(245, 158, 11, 0.1);
    margin: 20px 0;
}

@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    .about-content {
        padding: 60px 24px;
    }
}

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

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

.brand-card {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.1);
    padding: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 16px), 0% 100%);
    transform: rotateY(var(--rotate)) translateZ(320px);
    transition: all 0.4s ease;
    overflow: hidden;
    left: 50%;
    margin-left: -150px;
}

.brand-card:hover {
    transform: rotateY(var(--rotate)) translateZ(320px) scale(1.04);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.15);
    z-index: 100;
}

.brand-card-image {
    height: 120px;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

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

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

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

.brand-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--chrome-gold);
    stroke-width: 2;
    fill: none;
}

.brand-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-bronze);
}

.brand-card-subtitle {
    font-size: 12px;
    color: var(--muted-bronze);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.brand-card-desc {
    font-size: 13px;
    color: var(--warm-amber);
    margin-top: 8px;
    line-height: 1.5;
}

.brand-card-footer {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
    margin-top: 16px;
}

.carousel-arrow {
    position: absolute;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

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

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

.carousel-arrow-prev {
    left: 10%;
}

.carousel-arrow-next {
    right: 10%;
}

@media (max-width: 1024px) {
    .brands-carousel {
        height: auto;
        flex-direction: column;
        gap: 24px;
    }
    
    .carousel-track {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: static;
        transform: none !important;
    }
    
    .brand-card {
        position: static;
        margin-left: 0;
        transform: none !important;
        width: 100%;
        max-width: 400px;
    }
    
    .carousel-arrow {
        display: none;
    }
}

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

.gallery-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

.gallery-item:hover {
    background: white;
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.08);
    z-index: 10;
}

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

.gallery-item-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--chrome-gold);
    stroke-width: 2;
    fill: none;
}

.gallery-item-text {
    flex: 1;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-bronze);
}

.gallery-item-arrow {
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.gallery-item-arrow svg {
    width: 100%;
    height: 100%;
    stroke: rgba(146, 64, 14, 0.3);
    stroke-width: 2;
    fill: none;
}

.gallery-item:hover .gallery-item-arrow svg {
    stroke: var(--chrome-gold);
    transform: translateX(4px);
}

.gallery-reveal {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-reveal-image {
    position: absolute;
    width: 340px;
    height: 340px;
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    transition: all 0.3s ease;
}

.gallery-reveal-image.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}

.gallery-reveal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.1);
}

.gallery-reveal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(245, 158, 11, 0.9);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    padding: 12px 24px;
}

.gallery-reveal-desc {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    font-size: 14px;
    color: var(--warm-amber);
    line-height: 1.6;
    padding-top: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-reveal-image.visible + .gallery-reveal-desc {
    opacity: 1;
}

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

@media (max-width: 1024px) {
    .gallery-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .gallery-reveal {
        display: none;
    }
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 2px solid rgba(245, 158, 11, 0.1);
    border-radius: 0;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

.testimonial-card:hover {
    flex-grow: 1.8;
    background: white;
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    z-index: 10;
    scale: 1.04;
}

.testimonial-image {
    height: 100px;
    overflow: hidden;
    margin-bottom: 16px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

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

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

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

.testimonial-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--deep-bronze);
}

.testimonial-text {
    font-size: 13px;
    color: var(--warm-amber);
    margin-top: 6px;
    line-height: 1.5;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--chrome-gold);
}

.testimonial-divider {
    width: 40px;
    height: 4px;
    background: rgba(245, 158, 11, 0.2);
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

.faq-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--chrome-gold), var(--deep-teal), var(--chrome-gold));
    transform: translateX(-50%);
}

.faq-item {
    width: calc(50% - 60px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 0;
    border: 2px solid rgba(245, 158, 11, 0.1);
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.08);
    padding: 24px 28px;
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 16px), 0% 100%);
    margin-bottom: 32px;
    z-index: 1;
}

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

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

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

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

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

.faq-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-bronze);
}

.faq-text {
    font-size: 14px;
    color: var(--warm-amber);
    margin-top: 6px;
    line-height: 1.6;
}

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

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.15);
}

.faq-item.active .faq-dot {
    transform: translate(-50%, -50%) scale(1.2);
}

.faq-item.active .faq-icon svg {
    stroke: var(--deep-teal);
}

@media (max-width: 1024px) {
    .faq-line {
        left: 24px;
    }
    
    .faq-item {
        width: calc(100% - 72px);
        margin-left: 72px !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
    }
    
    .faq-dot {
        left: 24px;
    }
}

.achievement-stacking {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.achievement-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 0;
    border: 2px solid rgba(245, 158, 11, 0.1);
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.08);
    margin-bottom: -80px;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 24px), 0% 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card:nth-child(2) { z-index: 2; }
.achievement-card:nth-child(3) { z-index: 3; }
.achievement-card:nth-child(4) { z-index: 4; }
.achievement-card:nth-child(5) { z-index: 5; }
.achievement-card:nth-child(6) { z-index: 6; }

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

.achievement-header {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
}

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

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

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

.achievement-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 24px;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

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

.achievement-info {
    padding: 24px 24px 24px 0;
    flex: 1;
}

.achievement-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: var(--chrome-gold);
}

.achievement-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted-bronze);
    margin-top: 4px;
}

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

@media (max-width: 768px) {
    .achievement-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .achievement-image {
        width: 100%;
        height: 160px;
        margin-right: 0;
    }
    
    .achievement-info {
        padding: 16px 24px 24px;
    }
}

.contact-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 0;
    border: 2px solid rgba(245, 158, 11, 0.1);
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.08);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 16px), 0% 100%);
    overflow: hidden;
}

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

.contact-panel:hover {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 16px 16px 0 rgba(245, 158, 11, 0.08);
    z-index: 10;
}

.contact-panel-icon {
    width: 44px;
    height: 44px;
    margin-right: 16px;
    flex-shrink: 0;
}

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

.contact-panel-title {
    flex: 1;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-bronze);
}

.contact-panel-arrow {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.contact-panel-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--muted-bronze);
    stroke-width: 2;
    fill: none;
}

.contact-panel.active .contact-panel-arrow svg {
    transform: rotate(180deg);
    stroke: var(--chrome-gold);
}

.contact-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.contact-panel.active .contact-panel-content {
    max-height: 500px;
}

.contact-panel-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--chrome-gold), var(--deep-teal));
}

.contact-panel-body {
    padding: 24px;
}

.contact-panel-image {
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), 0% 100%);
}

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

.contact-panel-text {
    font-size: 16px;
    color: var(--warm-amber);
    line-height: 1.75;
}

.contact-panel-link {
    display: block;
    color: var(--chrome-gold);
    font-family: var(--font-mono);
    font-size: 14px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .contact-panels {
        grid-template-columns: 1fr;
    }
}

.contact-form-section {
    background: var(--light-amber);
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border: 2px solid rgba(245, 158, 11, 0.1);
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.1);
}

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

.form-label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--deep-bronze);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    font-size: 16px;
    color: var(--warm-amber);
    background: white;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--chrome-gold);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .contact-form {
        padding: 24px;
    }
}

.footer {
    background: var(--deep-bronze);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 40px;
}

.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: 16px;
}

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

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

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--chrome-gold);
    margin-bottom: 8px;
}

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

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

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--chrome-gold);
}

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

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

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--chrome-gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: white;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 12px 12px 0 rgba(245, 158, 11, 0.15);
    padding: 24px;
    max-width: 400px;
    z-index: 9999;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-text {
    font-size: 14px;
    color: var(--warm-amber);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--chrome-gold), var(--deep-gold));
    color: white;
}

.cookie-decline {
    background: transparent;
    border: 2px solid var(--deep-bronze);
    color: var(--deep-bronze);
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

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

.page-hero-content {
    position: relative;
    z-index: 4;
    max-width: 560px;
    margin-left: 40px;
}

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

.page-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--deep-bronze);
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--chrome-gold);
    stroke-width: 3;
    fill: none;
}

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

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

.legal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-bronze);
    margin-bottom: 24px;
}

.legal-text {
    font-size: 16px;
    color: var(--warm-amber);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-bronze);
    margin-bottom: 12px;
}

.thanks-section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--deep-bronze);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 18px;
    color: var(--warm-amber);
    max-width: 500px;
    margin: 0 auto 32px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--chrome-gold);
    stroke-width: 2;
    fill: none;
}

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

::-webkit-scrollbar-track {
    background: var(--light-amber);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--chrome-gold), var(--deep-gold));
    border-radius: 0;
}

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

input::placeholder,
textarea::placeholder {
    color: var(--muted-bronze);
    opacity: 0.6;
}
