:root {
    --amber-canvas: #FFF8F0;
    --warm-cream: #FEF3C7;
    --soft-gold: #FDE68A;
    --deep-amber: #92400E;
    --warm-umber: #A16207;
    --golden-edge: #D97706;
    --auto-gold: #FBBF24;
    --rich-amber: #F59E0B;
    --font-display: 'Space Grotesk', sans-serif;
    --font-serif: 'DM Serif Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@400&family=JetBrains+Mono:wght@400;700&family=Outfit:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--amber-canvas);
    color: var(--warm-umber);
    font-size: 18px;
    line-height: 1.78;
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

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

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

.geometric-clip {
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
}

.geometric-border {
    border: 2px solid rgba(251, 191, 36, 0.2);
}

.gold-shadow {
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.15);
}

.gold-glow {
    box-shadow: 0 0 48px rgba(251, 191, 36, 0.45);
}

.glass-effect {
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px) saturate(140%);
    -webkit-backdrop-filter: blur(56px) saturate(140%);
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, var(--warm-cream) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, var(--soft-gold) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, #FCD34D 0%, transparent 40%);
    perspective: 1200px;
    transform: rotateX(8deg);
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

@keyframes mesh-rotate {
    0% { transform: translateY(-8px) rotateX(3deg); }
    100% { transform: translateY(8px) rotateX(-3deg); }
}

.gradient-mesh-animated {
    animation: mesh-rotate 28s ease-in-out infinite alternate;
}

.hero-content {
    min-height: 100vh;
    padding: 140px 80px 200px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 56px;
    background: var(--amber-canvas);
}

.hero-left {
    grid-column: span 6;
    z-index: 4;
    position: relative;
}

.hero-right {
    grid-column: span 6;
    z-index: 4;
    position: relative;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3.5rem, 6.5vw, 5.5rem);
    line-height: 0.88;
    letter-spacing: 0.015em;
    color: var(--deep-amber);
    max-width: 520px;
}

.hero-underline {
    height: 5px;
    width: 200px;
    background: linear-gradient(90deg, var(--auto-gold), var(--rich-amber));
    margin-top: 20px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 44px;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--auto-gold);
    margin-top: 8px;
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(146, 64, 14, 0.5);
    margin-top: 8px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.78;
    color: var(--warm-umber);
    max-width: 480px;
    margin-top: 22px;
}

.gold-markers {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    align-items: center;
}

.gold-marker {
    width: 7px;
    height: 7px;
    background: var(--auto-gold);
    border: 2px solid white;
    border-radius: 50%;
}

.gold-line {
    height: 1.5px;
    flex: 1;
    background: rgba(251, 191, 36, 0.3);
    max-width: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 22px 48px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 0;
    box-shadow: 0 14px 56px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    transition: all 0.3s ease-out;
    margin-top: 24px;
}

.cta-primary:hover {
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.5);
    transform: translateY(-3px) scale(1.04);
}

.cta-secondary {
    display: inline-block;
    padding: 20px 44px;
    background: transparent;
    border: 2px solid var(--deep-amber);
    color: var(--deep-amber);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease-out;
    margin-top: 24px;
    margin-left: 14px;
}

.cta-secondary:hover {
    border-color: var(--auto-gold);
    color: var(--auto-gold);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.2);
}

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

.bento-block {
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-out;
    cursor: pointer;
}

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

.bento-block-1 {
    grid-row: span 2;
    grid-column: span 1;
    margin-left: -16px;
}

.bento-block-2,
.bento-block-3,
.bento-block-4,
.bento-block-5 {
    height: 242px;
}

.bento-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.06);
}

.bento-icon {
    width: 44px;
    height: 44px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

.bento-pattern {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(251, 191, 36, 0.08) 10px,
            rgba(251, 191, 36, 0.08) 20px
        );
}

.bento-card {
    position: absolute;
    background: rgba(255, 251, 248, 0.98);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    padding: 14px 18px;
    z-index: 5;
}

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

.bento-card-2 {
    bottom: 40px;
    right: 20px;
}

.bento-card-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    color: var(--deep-amber);
}

.bento-card-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    color: var(--golden-edge);
}

.stat-card {
    position: absolute;
    background: rgba(255, 251, 248, 0.98);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    padding: 14px 18px;
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.1);
    z-index: 5;
}

.stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    color: var(--deep-amber);
}

.stat-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    color: var(--golden-edge);
}

.morphing-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, rgba(255, 251, 248, 0.97), rgba(255, 250, 243, 0.97));
    backdrop-filter: blur(56px);
    border: 2.5px solid rgba(251, 191, 36, 0.3);
    border-radius: 0;
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 24px;
    width: 250px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.morphing-header:hover,
.morphing-header.expanded {
    width: 100%;
}

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

.header-logo svg {
    width: 48px;
    height: 48px;
    stroke: var(--rich-amber);
    stroke-width: 2.8;
    fill: none;
    flex-shrink: 0;
}

.header-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-amber);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.morphing-header:hover .header-nav,
.morphing-header.expanded .header-nav {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.header-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-amber);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--auto-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transform: scale(1.08);
}

.header-cta {
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.45);
    cursor: pointer;
    transition: all 0.3s ease-out;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

.morphing-header:hover .header-cta,
.morphing-header.expanded .header-cta {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 14px 56px rgba(251, 191, 36, 0.5);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 56px;
    z-index: 9999;
    background: linear-gradient(135deg, rgba(255, 251, 248, 0.97), rgba(255, 250, 243, 0.97));
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 0;
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.18);
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

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

.mobile-logo svg {
    width: 36px;
    height: 36px;
    stroke: var(--rich-amber);
    stroke-width: 2.2;
    fill: none;
}

.mobile-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-amber);
}

.mobile-cta {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 10px;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    white-space: nowrap;
}

.mobile-hamburger {
    width: 48px;
    height: 48px;
    background: rgba(251, 191, 36, 0.1);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-hamburger svg {
    width: 24px;
    height: 24px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 251, 248, 0.99);
    backdrop-filter: blur(56px);
    z-index: 10001;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    gap: 24px;
}

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

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

.mobile-menu-close svg {
    width: 48px;
    height: 48px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--deep-amber);
    text-align: center;
}

.mobile-menu-divider {
    height: 2px;
    width: 48px;
    background: linear-gradient(90deg, var(--auto-gold), var(--rich-amber));
    margin: 0 auto;
}

.mobile-contact-info {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--rich-amber);
    text-align: center;
    margin-top: 16px;
}

.mobile-menu-cta {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 0;
    margin: 24px 48px 48px;
    cursor: pointer;
    width: calc(100% - 96px);
    text-align: center;
}

.section {
    padding: 96px 48px;
    position: relative;
}

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

.section-soft-gold {
    background: var(--soft-gold);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    line-height: 0.88;
    letter-spacing: 0.015em;
    color: var(--deep-amber);
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.section-title-icon {
    width: 22px;
    height: 22px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

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

.page-hero {
    min-height: 300px;
    padding: 120px 48px 60px;
    position: relative;
    background: var(--amber-canvas);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 24px;
}

.service-card-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.12);
    cursor: pointer;
    transition: all 0.35s ease-out;
    text-align: center;
}

.service-card-home:hover {
    background: white;
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.12);
    z-index: 84;
    transform: translateY(-8px);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    stroke: rgba(251, 191, 36, 0.6);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 16px;
    transition: all 0.35s ease-out;
}

.service-card-home:hover .service-card-icon {
    stroke: var(--auto-gold);
    transform: scale(1.1);
}

.service-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-amber);
    margin-bottom: 16px;
}

.service-card-arrow {
    width: 18px;
    height: 18px;
    stroke: rgba(146, 64, 14, 0.3);
    stroke-width: 2;
    fill: none;
    transition: all 0.2s ease;
}

.service-card-home:hover .service-card-arrow {
    stroke: var(--auto-gold);
    transform: translateY(4px);
}

.service-reveal-text {
    position: absolute;
    bottom: 80px;
    left: 20px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-umber);
    line-height: 1.6;
    padding-top: 16px;
    max-width: 200px;
}

.about-carousel {
    position: relative;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1300px;
    margin-top: 48px;
    margin-bottom: 80px;
    overflow: visible;
}

.carousel-container {
    position: relative;
    width: 260px;
    height: 280px;
    transform-style: preserve-3d;
}

.carousel-card {
    position: absolute;
    width: 260px;
    min-height: 280px;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.12);
    overflow: hidden;
}

.carousel-card-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
}

.carousel-card-icon {
    position: absolute;
    top: 76px;
    right: 16px;
    width: 32px;
    height: 32px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

.carousel-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-amber);
    padding: 12px 16px 4px;
}

.carousel-card-text {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--warm-umber);
    padding: 0 16px;
    line-height: 1.5;
}

.carousel-card-accent {
    height: 4px;
    width: 40px;
    background: linear-gradient(90deg, var(--auto-gold), var(--rich-amber));
    margin: 8px 16px;
}

.carousel-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    box-shadow: 0 0 48px rgba(251, 191, 36, 0.45);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
}

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

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

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

.process-center {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-center-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    fill: rgba(251, 191, 36, 0.06);
    stroke: var(--auto-gold);
    stroke-width: 2.5;
}

.process-center-inner {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 2.5px solid rgba(245, 158, 11, 0.2);
    border-radius: 50%;
}

.process-center-outer {
    position: absolute;
    width: 165px;
    height: 165px;
    border: 2.5px solid rgba(251, 191, 36, 0.08);
    border-radius: 50%;
}

.process-center-icon {
    width: 52px;
    height: 52px;
    stroke: white;
    stroke-width: 2.5;
    fill: none;
    z-index: 10;
}

.process-node {
    position: absolute;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.15);
    padding: 14px 18px;
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.1);
    margin-bottom: -72px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.process-node:hover {
    z-index: 84;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 48px 192px rgba(251, 191, 36, 0.2);
}

.process-node-icon {
    width: 36px;
    height: 36px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
    margin-bottom: 8px;
}

.process-node-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-amber);
}

.process-node-text {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--warm-umber);
    margin-top: 3px;
    line-height: 1.4;
}

.process-node-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 24px;
    color: var(--auto-gold);
    margin-top: 8px;
}

.stacking-cards {
    position: relative;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0 48px;
}

.stacking-card {
    width: 100%;
    max-width: 860px;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.14);
    padding: 26px 28px;
    position: relative;
    transition: all 0.35s ease;
    cursor: pointer;
}

.stacking-card:hover {
    z-index: 84;
    transform: scale(1.08);
    box-shadow: 0 48px 192px rgba(251, 191, 36, 0.2);
}

.stacking-card-icon {
    width: 48px;
    height: 48px;
    stroke: var(--auto-gold);
    stroke-width: 3;
    fill: none;
    margin-bottom: 14px;
}

.stacking-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-amber);
}

.stacking-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-umber);
    margin-top: 6px;
    line-height: 1.55;
}

.stacking-card-image {
    height: 120px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
    margin-top: 14px;
}

.stacking-card-number {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 56px;
    color: rgba(251, 191, 36, 0.1);
}

.flex-grow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.achievement-card {
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.15);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.achievement-card:hover {
    flex-grow: 2.6;
    background: white;
    border-color: rgba(251, 191, 36, 0.3);
    z-index: 84;
    transform: scale(1.08);
}

.achievement-card-icon {
    width: 48px;
    height: 48px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
    margin-bottom: 14px;
}

.achievement-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-amber);
}

.achievement-card-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(161, 98, 7, 0.7);
    margin-top: 6px;
    line-height: 1.5;
}

.achievement-card-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 52px;
    color: var(--auto-gold);
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-card-value {
    transform: scale(1.1);
}

.team-grid {
    position: relative;
    min-height: 520px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
}

.team-card {
    position: relative;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
}

.team-card:hover {
    z-index: 84;
    transform: scale(1.08);
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
}

.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(146, 64, 14, 0.9));
    color: white;
}

.team-card-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}

.team-card-role {
    font-family: var(--font-body);
    font-size: 12px;
    opacity: 0.8;
}

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

.faq-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--auto-gold), var(--rich-amber), var(--auto-gold));
    transform: translateX(-50%);
}

.faq-item {
    width: calc(50% - 80px);
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.15);
    padding: 22px 24px;
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.15);
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
}

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

.faq-item:nth-child(even) {
    align-self: end;
    margin-left: auto;
    margin-top: 72px;
}

.faq-item:hover {
    z-index: 84;
    transform: scale(1.1) translateY(-4px);
}

.faq-item-icon {
    width: 44px;
    height: 44px;
    stroke: var(--auto-gold);
    stroke-width: 2.5;
    fill: none;
    margin-bottom: 10px;
}

.faq-item-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--deep-amber);
}

.faq-item-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--warm-umber);
    margin-top: 5px;
    line-height: 1.45;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
}
.faq-item.active .faq-item-text {
    max-height: 120px;
    margin-top: 12px;
}

.faq-item-image {
    height: 90px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
    margin-top: 12px;
}

.faq-item-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    color: rgba(251, 191, 36, 0.16);
}

.faq-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--auto-gold);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--auto-gold);
}

.testimonials-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    position: sticky;
    top: 0;
}

.testimonials-left {
    position: sticky;
    top: 0;
    height: 100vh;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border-right: 2.5px solid rgba(251, 191, 36, 0.32);
    box-shadow: 24px 0 96px rgba(251, 191, 36, 0.18);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
}

.testimonials-left-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    line-height: 0.88;
    color: var(--deep-amber);
}

.testimonials-left-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--warm-umber);
    line-height: 1.65;
    max-width: 340px;
    margin-top: 18px;
}

.testimonials-left-cta {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.32);
    cursor: pointer;
    margin-top: 24px;
    display: inline-block;
    width: fit-content;
}

.testimonials-left-cta:hover {
    transform: translateY(-2px) scale(1.06);
}

.testimonials-right {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 52px 36px;
}

.testimonial-card {
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.15);
    padding: 18px;
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.1);
    cursor: pointer;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    z-index: 84;
    transform: scale(1.08);
}

.testimonial-card-accent {
    height: 3px;
    width: 36px;
    background: linear-gradient(90deg, var(--auto-gold), var(--rich-amber));
    margin-bottom: 10px;
}

.testimonial-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--deep-amber);
}

.testimonial-card-text {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--warm-umber);
    margin-top: 4px;
    line-height: 1.45;
}

.contact-panels {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-panel {
    width: 100%;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
    padding: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
}

.contact-panel:hover {
    z-index: 84;
    transform: scale(1.08);
}

.contact-panel-accent {
    height: 5px;
    background: linear-gradient(90deg, var(--auto-gold), var(--rich-amber));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.contact-panel-content {
    display: flex;
    align-items: center;
    padding: 26px;
    flex: 1;
}

.contact-panel-icon {
    width: 44px;
    height: 44px;
    stroke: var(--auto-gold);
    stroke-width: 3;
    fill: none;
    margin-bottom: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-panel-info {
    flex: 1;
}

.contact-panel-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-amber);
}

.contact-panel-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--warm-umber);
    margin-top: 8px;
    line-height: 1.6;
}

.contact-panel-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 44px;
    color: var(--auto-gold);
    margin-top: 10px;
}

.contact-panel-image {
    height: 160px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 3%, 98% 100%, 2% 100%);
    margin-right: 18px;
    flex-shrink: 0;
    width: 200px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.18);
}

.contact-form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-amber);
    margin-bottom: 32px;
    text-align: center;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px;
    background: var(--amber-canvas);
    border: 2px solid rgba(251, 191, 36, 0.2);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--warm-umber);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--auto-gold);
}

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

.form-submit {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.32);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 56px rgba(251, 191, 36, 0.4);
}

.footer {
    background: var(--deep-amber);
    color: var(--amber-canvas);
    padding: 64px 48px 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--auto-gold);
}

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

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--amber-canvas);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--auto-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 14px;
    opacity: 0.7;
}

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

.footer-legal a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--amber-canvas);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--auto-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    padding: 24px;
    background: rgba(255, 251, 248, 0.98);
    backdrop-filter: blur(56px);
    border: 2px solid rgba(251, 191, 36, 0.25);
    box-shadow: 0 24px 96px rgba(251, 191, 36, 0.2);
    z-index: 10000;
}

.cookie-banner-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-amber);
    margin-bottom: 12px;
}

.cookie-banner-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--warm-umber);
    margin-bottom: 16px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
}

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

.cookie-btn:hover {
    transform: translateY(-2px);
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-fade {
    opacity: 0;
    animation: fadeIn 0.7s ease-out forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    animation: slideUp 0.75s ease-out forwards;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    animation: scaleIn 0.7s ease-out forwards;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-26px);
    animation: slideLeft 0.7s ease-out forwards;
}

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

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

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

@keyframes slideLeft {
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

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

.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

.cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
}

.cursor-trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(251, 191, 36, 0.6);
    border-radius: 50%;
    filter: blur(4px);
    transform: translate(-50%, -50%);
}

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

.scrollbar-custom::-webkit-scrollbar-track {
    background: var(--amber-canvas);
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--auto-gold), var(--rich-amber));
    border-radius: 0;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .morphing-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .hero-content {
        padding: 120px 24px 120px;
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-right {
        grid-column: span 1;
    }

    .hero-right {
        display: none;
    }

    .section {
        padding: 64px 24px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }

    .flex-grow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .testimonials-left {
        position: relative;
        height: auto;
        padding: 48px 24px;
    }

    .testimonials-right {
        height: auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 48px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 16px 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-primary,
    .cta-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 16px;
    }

    .section-title {
        font-size: 2rem;
    }

    .flex-grow-grid {
        grid-template-columns: 1fr;
    }

    .faq-line {
        left: 20px;
    }

    .faq-item {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        margin-top: 0 !important;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .process-graph {
        flex-wrap: wrap;
    }

    .stacking-cards {
        padding: 0 16px;
    }
}

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background: var(--amber-canvas);
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    stroke: var(--auto-gold);
    stroke-width: 2;
    fill: none;
    margin-bottom: 24px;
}

.thank-you-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-amber);
    margin-bottom: 16px;
}

.thank-you-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--warm-umber);
    line-height: 1.6;
    margin-bottom: 32px;
}

.thank-you-btn {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--auto-gold), var(--rich-amber));
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 0;
    box-shadow: 0 14px 56px rgba(251, 191, 36, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-you-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 80px rgba(251, 191, 36, 0.5);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(146, 64, 14, 0.9));
    color: white;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

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

@media (max-width: 480px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}