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

:root {
    --pure-white: #FFF8F3;
    --light-peach: #FEF0E8;
    --warm-coral: #FDE8D8;
    --deep-charcoal: #1F1F1F;
    --warm-taupe: #8B7355;
    --muted-coral: #E8A87C;
    --coral-orange: #E07B39;
    --lime-chrome: #A3E635;
    --lime-dark: #8CC63F;
}

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

strong, p {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-taupe);
    background: var(--pure-white);
    overflow-x: hidden;
}

.corporate-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    z-index: 1000;
    background: rgba(255, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(224, 123, 87, 0.08);
    box-shadow: 0 4px 16px rgba(224, 123, 87, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--lime-chrome), var(--coral-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(163, 230, 53, 0.2);
}

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

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: var(--deep-charcoal);
}

.header-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--lime-chrome), var(--lime-dark));
    color: var(--deep-charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
    border-radius: 24px;
    box-shadow: 0 4px 16px rgba(163, 230, 53, 0.25);
    text-decoration: none;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.header-cta:hover {
    box-shadow: 0 8px 24px rgba(163, 230, 53, 0.35);
    transform: translateY(-2px);
}

.command-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    z-index: 1001;
    background: linear-gradient(135deg, var(--coral-orange), #D4622A);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.3), 0 0 48px rgba(224, 123, 87, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-out;
}

.command-btn:hover {
    box-shadow: 0 12px 48px rgba(224, 123, 87, 0.4), 0 0 64px rgba(224, 123, 87, 0.2);
    transform: scale(1.08);
}

.command-btn svg {
    width: 24px;
    height: 24px;
}

.command-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 243, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.command-overlay.active {
    display: flex;
    opacity: 1;
}

.overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(224, 123, 87, 0.08);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease-out;
}

.overlay-close:hover {
    background: rgba(224, 123, 87, 0.15);
    transform: scale(1.08);
}

.overlay-content {
    padding: 120px 80px 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.menu-category h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--lime-chrome);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(224, 123, 87, 0.08);
}

.menu-category a {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--deep-charcoal);
    text-decoration: none;
    transition: all 0.25s ease-out;
    display: block;
}

.menu-category a:hover {
    color: var(--coral-orange);
    transform: translateX(8px);
}

.gradient-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.gradient-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: gradientFloat 45s ease-in-out infinite alternate;
}

.gradient-layer-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(224, 123, 87, 0.08) 0%, rgba(253, 216, 187, 0.05) 30%, rgba(255, 248, 243, 0.03) 50%, transparent 70%);
    top: -200px;
    right: -200px;
}

.gradient-layer-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 216, 187, 0.04) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -15s;
}

.gradient-layer-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 123, 87, 0.03) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -30s;
}

@keyframes gradientFloat {
    0% { transform: translate(0, 0) scale(0.95); }
    100% { transform: translate(40px, 40px) scale(1.05); }
}

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

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

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

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

.hero-decor svg {
    width: 56px;
    height: 56px;
}

.hero-title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 140px;
    line-height: 0.68;
    letter-spacing: -0.03em;
    color: var(--deep-charcoal);
    animation: kineticPulse 3s ease-in-out infinite, clipReveal 0.7s ease-out forwards;
}

.hero-title-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 0.88;
    letter-spacing: -0.02em;
    color: var(--coral-orange);
    margin-top: 8px;
}

.hero-comment {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(139, 115, 85, 0.5);
    margin-top: 16px;
}

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

.marker {
    width: 24px;
    height: 10px;
    background: var(--lime-chrome);
    border-radius: 5px;
    filter: drop-shadow(0 4px 12px rgba(163, 230, 53, 0.3));
    animation: revealSwiss 0.4s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

.hero-line {
    height: 2px;
    width: 200px;
    background: linear-gradient(90deg, var(--lime-chrome), var(--coral-orange));
    margin-top: 16px;
}

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

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

.btn-primary {
    padding: 24px 52px;
    background: linear-gradient(135deg, var(--lime-chrome), var(--lime-dark));
    color: var(--deep-charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(163, 230, 53, 0.35), 0 0 24px rgba(163, 230, 53, 0.15);
    text-decoration: none;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    box-shadow: 0 12px 48px rgba(163, 230, 53, 0.45), 0 0 40px rgba(163, 230, 53, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 22px 44px;
    background: transparent;
    border: 2px solid var(--deep-charcoal);
    color: var(--deep-charcoal);
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-secondary:hover {
    border-color: var(--coral-orange);
    color: var(--deep-charcoal);
    box-shadow: 0 6px 24px rgba(224, 123, 87, 0.15);
}

.hero-right {
    position: relative;
    height: 520px;
}

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

.bento-item {
    border-radius: 20px;
    border: 1px solid rgba(224, 123, 87, 0.1);
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
    z-index: 5;
}

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

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

.info-card-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--deep-charcoal);
}

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

@keyframes kineticPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

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

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

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

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

.reveal-fade {
    opacity: 0;
}

.reveal-fade.visible {
    animation: fadeIn 0.6s ease-out forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
}

.reveal-up.visible {
    animation: fadeInUp 0.65s ease-out forwards;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
}

.reveal-scale.visible {
    animation: fadeInUp 0.65s ease-out forwards;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-24px);
}

.reveal-left.visible {
    animation: fadeIn 0.6s ease-out forwards;
}

.reveal-swiss {
    opacity: 0;
    transform: scale(0.9);
}

.reveal-swiss.visible {
    animation: revealSwiss 0.5s ease-out forwards;
}

.reveal-kinetic {
    animation: kineticPulse 3s ease-in-out infinite;
}

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

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

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

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

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.02em;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: var(--warm-taupe);
    max-width: 600px;
}

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

.swiss-decor svg {
    width: 24px;
    height: 24px;
    stroke: var(--lime-chrome);
}

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

.lime-marker {
    width: 12px;
    height: 6px;
    background: var(--lime-chrome);
    border-radius: 3px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(224, 123, 87, 0.25);
    box-shadow: 0 12px 48px rgba(224, 123, 87, 0.1);
    transform: translateY(-4px);
    z-index: 10;
}

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

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--coral-orange);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.service-title-jp {
    font-size: 13px;
    color: var(--coral-orange);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--warm-taupe);
    margin-bottom: 16px;
}

.service-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--lime-chrome);
}

.lime-accent {
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, var(--lime-chrome), var(--coral-orange));
    margin-bottom: 16px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(224, 123, 87, 0.08);
}

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

.about-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-charcoal);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--lime-chrome);
}

.stat-label {
    font-size: 14px;
    color: var(--warm-taupe);
    margin-top: 8px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.03);
    border-color: rgba(224, 123, 87, 0.2);
    box-shadow: 0 12px 48px rgba(224, 123, 87, 0.08);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: rgba(163, 230, 53, 0.15);
    position: absolute;
    top: 16px;
    right: 20px;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--coral-orange);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--warm-taupe);
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    flex-grow: 1.8;
    background: white;
    border-color: rgba(163, 230, 53, 0.25);
    z-index: 25;
    transform: scale(1.06);
}

.portfolio-image {
    height: 180px;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 24px;
}

.portfolio-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.portfolio-desc {
    font-size: 14px;
    color: var(--warm-taupe);
    line-height: 1.5;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.review-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: scale(1.03);
    border-color: rgba(224, 123, 87, 0.2);
    box-shadow: 0 12px 48px rgba(224, 123, 87, 0.08);
}

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

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--coral-orange);
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--warm-taupe);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--deep-charcoal);
}

.author-info span {
    font-size: 13px;
    color: var(--muted-coral);
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-question h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--deep-charcoal);
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    stroke: var(--coral-orange);
}

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

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

.faq-answer-content {
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-taupe);
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 123, 87, 0.2);
    box-shadow: 0 12px 48px rgba(224, 123, 87, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(224, 123, 87, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--coral-orange);
}

.contact-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--warm-taupe);
}

.contact-info a {
    color: var(--coral-orange);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info a:hover {
    color: var(--lime-chrome);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 123, 87, 0.1);
    border-radius: 20px;
    padding: 48px;
    margin-top: 48px;
    box-shadow: 0 8px 32px rgba(224, 123, 87, 0.06);
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--warm-taupe);
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--deep-charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid rgba(224, 123, 87, 0.15);
    border-radius: 12px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    color: var(--deep-charcoal);
    background: white;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime-chrome);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-coral);
}

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

.form-submit {
    margin-top: 32px;
}

.btn-submit {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--lime-chrome), var(--lime-dark));
    color: var(--deep-charcoal);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 28px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(163, 230, 53, 0.35);
    transition: all 0.25s ease-out;
}

.btn-submit:hover {
    box-shadow: 0 12px 48px rgba(163, 230, 53, 0.45);
    transform: translateY(-2px);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 48px;
    box-shadow: 0 16px 64px rgba(224, 123, 87, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.footer {
    background: var(--deep-charcoal);
    color: white;
    padding: 80px 80px 40px;
}

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

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--lime-chrome);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: var(--lime-chrome);
}

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

.footer-bottom p {
    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);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

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

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

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

.cookie-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.btn-cookie {
    padding: 12px 24px;
    border-radius: 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-cookie.accept {
    background: linear-gradient(135deg, var(--lime-chrome), var(--lime-dark));
    color: var(--deep-charcoal);
}

.btn-cookie.decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.hero-compact {
    min-height: 320px;
    padding: 120px 80px 60px;
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.hero-compact .gradient-layer {
    opacity: 0.5;
}

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

.breadcrumbs a {
    color: var(--muted-coral);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--coral-orange);
}

.hero-compact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -0.02em;
    color: var(--deep-charcoal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-compact-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--lime-chrome);
}

.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 80px;
}

.thank-you-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 56px;
    color: var(--deep-charcoal);
    margin-bottom: 24px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--warm-taupe);
    margin-bottom: 32px;
}

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

.legal-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--deep-charcoal);
    margin-bottom: 32px;
}

.legal-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--deep-charcoal);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-taupe);
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--warm-taupe);
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 40px 120px;
        gap: 48px;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .hero-title-main {
        font-size: 80px;
    }
    
    .hero-title-sub {
        font-size: 36px;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 80px 40px 60px;
    }
    
    .hero-compact {
        padding: 100px 40px 48px;
    }
}

@media (max-width: 768px) {
    .corporate-header {
        padding: 0 16px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-content {
        padding: 100px 24px 100px;
    }
    
    .hero-title-main {
        font-size: 60px;
    }
    
    .hero-title-sub {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .process-steps,
    .reviews-container,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .footer {
        padding: 60px 24px 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .overlay-content {
        padding: 100px 24px 60px;
    }
    
    .section {
        padding: 60px 24px 48px;
    }
    
    .hero-compact {
        padding: 80px 24px 40px;
        min-height: 280px;
    }
    
    .hero-compact-title {
        font-size: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-section {
        padding: 32px 24px;
    }
    
    .legal-section {
        padding: 100px 24px 60px;
    }
    
    .thank-you-section {
        padding: 100px 24px;
    }
    
    .thank-you-content h1 {
        font-size: 36px;
    }
}
