@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&display=swap');

:root {
    --turbo-red: #C24622;
    --deep-clay: #8A3218;
    --carbon-black: #050505;
    --engine-charcoal: #0A0909;
    --showroom-white: #FCFAF6;
    --workshop-mist: #F4F2ED;
    --service-stone: #E8E4DD;
    --glass-layer: rgba(255, 252, 248, 0.88);
    --panel-bg: rgba(252, 250, 247, 0.96);
    --shadow-red: rgba(195, 75, 35, 0.08);
    --shadow-red-hover: rgba(195, 75, 35, 0.18);
    --shadow-red-strong: rgba(195, 75, 35, 0.28);
    --border-red: rgba(195, 75, 35, 0.06);
    --border-red-input: rgba(195, 75, 35, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.94;
    color: var(--engine-charcoal);
    background-color: var(--showroom-white);
    overflow-x: hidden;
}

strong, p {
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.16s ease;
}

a:hover {
    color: var(--turbo-red);
}

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

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

.swiss-bold {
    font-weight: 700;
    letter-spacing: 0.001em;
    line-height: 0.68;
}

.swiss-medium {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.floating-panel {
    position: fixed;
    top: 0;
    left: 18px;
    width: auto;
    height: auto;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: var(--panel-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 14px 48px var(--shadow-red);
    border: 1px solid var(--border-red);
    transition: all 0.32s ease-out;
}

.panel-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 14px 12px;
}

.panel-visual {
    width: 26px;
    height: 26px;
    color: var(--turbo-red);
    transform: rotate(-2deg);
}

.panel-domain {
    font-weight: 700;
    font-size: 9px;
    color: var(--carbon-black);
    letter-spacing: 0.10em;
    line-height: 1.16;
}

.panel-company {
    font-weight: 500;
    font-size: 6px;
    color: var(--engine-charcoal);
    margin-top: 2px;
    line-height: 1.28;
}

.panel-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 14px 14px;
}

.nav-item {
    font-weight: 500;
    font-size: 9px;
    color: var(--engine-charcoal);
    cursor: pointer;
    transition: color 0.16s ease;
    padding: 6px 0;
}

.nav-item:hover {
    color: var(--turbo-red);
}

.nav-item.active {
    color: var(--turbo-red);
}

.panel-cta {
    margin: 0 14px 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    font-weight: 500;
    font-size: 9px;
    border-radius: 4px;
    box-shadow: 0 4px 14px var(--shadow-red-hover);
    cursor: pointer;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.panel-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 18px var(--shadow-red-strong);
    color: white;
}

.content-wrapper {
    padding-left: 140px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.88), rgba(252, 250, 247, 0.984));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(195, 75, 35, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(225, 185, 145, 0.02) 0%, transparent 40%),
                radial-gradient(ellipse at 60% 80%, rgba(215, 205, 195, 0.02) 0%, transparent 40%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 100px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 9rem);
    font-weight: 700;
    letter-spacing: 0.001em;
    line-height: 0.68;
    color: var(--carbon-black);
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 24px 54px;
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 24px 88px var(--shadow-red-strong);
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    margin-bottom: 24px;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 96px var(--shadow-red-strong);
    color: white;
}

.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
}

.hero-secondary svg {
    width: 16px;
    height: 16px;
    color: var(--turbo-red);
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
    background: var(--glass-layer);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--engine-charcoal);
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--turbo-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

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

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.9;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--engine-charcoal);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.bento-card {
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.28s ease;
    overflow: hidden;
    cursor: pointer;
}

.bento-card:hover {
    border-color: var(--turbo-red);
    box-shadow: 0 8px 32px var(--shadow-red);
    z-index: 88;
    transform: scale(1.02);
}

.bento-card.large {
    grid-column: span 2;
}

.bento-icon {
    width: 40px;
    height: 40px;
    font-size: 28px;
    margin-bottom: 16px;
}

.bento-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.bento-desc {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    flex-grow: 1;
}

.bento-price {
    margin-top: 16px;
    font-weight: 700;
    font-size: 14px;
    color: var(--turbo-red);
}

.timeline-section {
    background: var(--workshop-mist);
    padding: 120px 0;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--service-stone), transparent);
    transform: translateY(-50%);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    cursor: pointer;
}

.timeline-marker {
    width: 48px;
    height: 48px;
    background: var(--showroom-white);
    border: 3px solid var(--turbo-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.28s ease;
    position: relative;
    z-index: 2;
}

.timeline-item:hover .timeline-marker {
    background: var(--turbo-red);
    box-shadow: 0 0 0 8px rgba(195, 75, 35, 0.1);
}

.timeline-number {
    font-weight: 700;
    font-size: 16px;
    color: var(--turbo-red);
    transition: color 0.28s ease;
}

.timeline-item:hover .timeline-number {
    color: white;
}

.timeline-content {
    text-align: center;
    max-width: 160px;
}

.timeline-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 12px;
    color: var(--engine-charcoal);
    line-height: 1.5;
}

.marquee-section {
    background: var(--carbon-black);
    padding: 48px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 56px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 14px;
    color: white;
    letter-spacing: 0.03em;
}

.marquee-item span {
    font-size: 20px;
}

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

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

.flexgrow-card {
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.28s ease;
    cursor: pointer;
}

.flexgrow-card:hover {
    border-color: var(--turbo-red);
    transform: scale(1.05);
    box-shadow: 0 12px 40px var(--shadow-red);
    z-index: 88;
}

.flexgrow-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    font-size: 32px;
}

.flexgrow-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.flexgrow-title-en {
    font-weight: 500;
    font-size: 11px;
    color: var(--turbo-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.flexgrow-desc {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
}

.team-section {
    background: var(--workshop-mist);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    gap: 48px;
    align-items: center;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--service-stone);
    cursor: pointer;
    transition: all 0.28s ease;
}

.team-item:first-child {
    border-top: 1px solid var(--service-stone);
}

.team-item:hover {
    background: rgba(195, 75, 35, 0.03);
    padding-left: 16px;
}

.team-badge {
    font-size: 24px;
}

.team-info {
    flex-grow: 1;
}

.team-role {
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
    margin-bottom: 4px;
}

.team-name {
    font-size: 12px;
    color: var(--engine-charcoal);
}

.team-photo-zone {
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.team-photo-zone img {
    width: 100%;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.accordion {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid var(--service-stone);
    transition: all 0.28s ease;
}

.accordion-item:first-child {
    border-top: 1px solid var(--service-stone);
}

.accordion-item.active {
    border-left: 3px solid var(--turbo-red);
    background: rgba(195, 75, 35, 0.02);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.28s ease;
}

.accordion-header:hover {
    background: rgba(195, 75, 35, 0.03);
}

.accordion-question {
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon-black);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turbo-red);
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

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

.accordion-body {
    padding: 0 16px 24px;
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.7;
}

.carousel-section {
    background: var(--workshop-mist);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 80px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 320px;
    height: 340px;
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.review-card:hover {
    z-index: 90;
    box-shadow: 0 16px 48px var(--shadow-red);
}

.review-card.active {
    transform: scale(1.1);
    border-color: var(--turbo-red);
    z-index: 100;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--service-stone);
}

.review-card.active .review-avatar {
    border-color: var(--turbo-red);
}

.review-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.review-text {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-author {
    font-size: 12px;
    color: var(--turbo-red);
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s ease;
    z-index: 50;
}

.carousel-btn:hover {
    background: var(--turbo-red);
    border-color: var(--turbo-red);
    color: white;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    color: var(--engine-charcoal);
}

.carousel-btn:hover svg {
    color: white;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-block {
    padding: 24px;
    background: var(--workshop-mist);
    border-radius: 8px;
    border-left: 3px solid var(--turbo-red);
}

.contact-label {
    font-weight: 700;
    font-size: 12px;
    color: var(--turbo-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 14px;
    color: var(--carbon-black);
    line-height: 1.6;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    background: var(--service-stone);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
}

.form-label .required {
    color: var(--turbo-red);
    margin-left: 4px;
}

.form-input,
.form-textarea,
.form-select {
    padding: 14px 16px;
    border: 2px solid var(--border-red-input);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--engine-charcoal);
    transition: all 0.28s ease;
    background: var(--showroom-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--turbo-red);
    box-shadow: 0 0 0 4px rgba(195, 75, 35, 0.1);
}

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

.form-submit {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 8px 24px var(--shadow-red-hover);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--shadow-red-strong);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.12);
    z-index: 9998;
    display: block;
}

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

.cookie-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.cookie-desc {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.cookie-category {
    font-size: 12px;
    color: var(--engine-charcoal);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cookie-category::before {
    content: '•';
    color: var(--turbo-red);
    font-weight: 700;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.28s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    border: none;
}

.cookie-btn.accept:hover {
    box-shadow: 0 4px 16px var(--shadow-red-hover);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--engine-charcoal);
    border: 2px solid var(--service-stone);
}

.cookie-btn.decline:hover {
    border-color: var(--turbo-red);
    color: var(--turbo-red);
}

.cookie-links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--service-stone);
    display: flex;
    gap: 16px;
}

.cookie-link {
    font-size: 11px;
    color: var(--turbo-red);
    transition: color 0.16s ease;
}

.cookie-link:hover {
    color: var(--deep-clay);
}

.site-footer {
    background: var(--service-stone);
    border-top: 2px solid var(--turbo-red);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--turbo-red);
}

.footer-logo-text {
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
    line-height: 1.4;
}

.footer-desc {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
}

.footer-links-title {
    font-weight: 700;
    font-size: 12px;
    color: var(--carbon-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

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

.footer-link {
    font-size: 13px;
    color: var(--engine-charcoal);
    transition: color 0.16s ease;
}

.footer-link:hover {
    color: var(--turbo-red);
}

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

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--turbo-red);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-copyright {
    font-weight: 700;
    font-size: 11px;
    color: var(--engine-charcoal);
    margin-bottom: 12px;
}

.footer-text {
    font-weight: 300;
    font-size: 11px;
    color: var(--engine-charcoal);
}

.footer-special-text {
    font-size: 10px;
    color: var(--turbo-red);
}

.top-strip {
    display: none;
}

.mobile-menu {
    display: none;
}

.page-hero {
    min-height: 52vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.88), rgba(252, 250, 247, 0.984));
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 14px;
    color: var(--engine-charcoal);
    max-width: 600px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    font-size: 15px;
    color: var(--engine-charcoal);
    line-height: 1.8;
}

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

.service-card {
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.28s ease;
}

.service-card:hover {
    border-color: var(--turbo-red);
    box-shadow: 0 12px 40px var(--shadow-red);
    transform: translateY(-4px);
}

.service-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-card.large .service-card-content {
    padding: 32px;
}

.service-card.large .service-card-title {
    font-size: 24px;
}

.service-card.large .service-card-desc {
    font-size: 14px;
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card.large .service-card-image {
    height: 280px;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 20px;
}

.service-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.service-card-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--carbon-black);
    margin-bottom: 8px;
}

.service-card-desc {
    font-size: 13px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-card-features span {
    padding: 6px 12px;
    background: var(--workshop-mist);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--engine-charcoal);
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--service-stone);
}

.service-card-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--turbo-red);
}

.service-card-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    font-weight: 500;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.28s ease;
    box-shadow: 0 4px 12px var(--shadow-red-hover);
}

.service-card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--shadow-red-strong);
    color: white;
}

.cta-section {
    padding: 80px 0;
    background: var(--workshop-mist);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 16px;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 14px;
    color: var(--engine-charcoal);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.28s ease;
    cursor: pointer;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--turbo-red), var(--deep-clay));
    color: white;
    box-shadow: 0 8px 24px var(--shadow-red-hover);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--shadow-red-strong);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--carbon-black);
    border: 2px solid var(--service-stone);
}

.cta-btn.secondary:hover {
    border-color: var(--turbo-red);
    color: var(--turbo-red);
}

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

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 6px;
}

.gallery-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--showroom-white);
    border: 2px solid var(--service-stone);
    border-radius: 12px;
    transition: all 0.28s ease;
}

.process-step:hover {
    border-color: var(--turbo-red);
    box-shadow: 0 8px 32px var(--shadow-red);
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--turbo-red);
    line-height: 1;
    opacity: 0.3;
    transition: opacity 0.28s ease;
}

.process-step:hover .process-number {
    opacity: 1;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--carbon-black);
    margin-bottom: 12px;
}

.process-content p {
    font-size: 14px;
    color: var(--engine-charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
}

.process-time {
    display: inline-block;
    padding: 6px 14px;
    background: var(--workshop-mist);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--engine-charcoal);
}

.process-image {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.process-step:hover .process-image img {
    transform: scale(1.05);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--workshop-mist);
}

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

.about-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text p {
    font-size: 14px;
    color: var(--engine-charcoal);
    line-height: 1.8;
    margin-bottom: 20px;
}

.large-hero {
    min-height: 100vh;
}

.service-detail-hero {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.service-detail-content {
    padding-right: 40px;
}

.service-detail-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--carbon-black);
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-detail-subtitle {
    font-size: 15px;
    color: var(--engine-charcoal);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--turbo-red);
    margin-bottom: 32px;
}

.service-detail-price span {
    font-size: 14px;
    color: var(--engine-charcoal);
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--service-stone);
    font-size: 14px;
    color: var(--engine-charcoal);
}

.service-features li::before {
    content: '✓';
    color: var(--turbo-red);
    font-weight: 700;
}

.service-detail-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--workshop-mist);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .content-wrapper {
        padding-left: 0;
    }

    .top-strip {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 52px;
        background: rgba(252, 250, 247, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border-red);
        z-index: 9998;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
    }

    .top-strip-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .top-strip svg {
        width: 22px;
        height: 22px;
        color: var(--turbo-red);
        transform: rotate(-2deg);
    }

    .top-strip-domain {
        font-weight: 700;
        font-size: 9px;
        color: var(--carbon-black);
        letter-spacing: 0.10em;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        padding: 0;
        background: transparent;
        border: none;
        z-index: 9999;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--carbon-black);
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 52px;
        left: 0;
        width: 100%;
        height: calc(100vh - 52px);
        background: var(--showroom-white);
        z-index: 9997;
        flex-direction: column;
        padding: 32px 24px;
        overflow-y: auto;
    }

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

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 32px;
    }

    .mobile-menu-link {
        font-weight: 700;
        font-size: 16px;
        color: var(--carbon-black);
        padding: 16px 0;
        border-bottom: 1px solid var(--service-stone);
        transition: color 0.16s ease;
    }

    .mobile-menu-link:hover {
        color: var(--turbo-red);
    }

    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: auto;
    }

    .mobile-menu-phone {
        font-size: 14px;
        color: var(--engine-charcoal);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-menu-email {
        font-size: 13px;
        color: var(--turbo-red);
    }

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

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card {
        min-height: 200px;
    }

    .bento-card.large {
        grid-column: span 1;
    }

    .timeline-items {
        flex-direction: column;
        gap: 32px;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: auto;
        transform: none;
    }

    .timeline-item {
        flex-direction: row;
        gap: 24px;
    }

    .timeline-content {
        text-align: left;
        max-width: none;
    }

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

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

    .team-photo-zone {
        order: -1;
    }

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

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

    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-hero {
        grid-template-columns: 1fr;
    }

    .service-detail-content {
        padding-right: 0;
    }

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

    .service-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-card.large .service-card-image {
        height: 200px;
    }

    .service-card.large .service-card-content {
        padding: 20px;
    }

    .service-card.large .service-card-title {
        font-size: 18px;
    }

    .service-card.large .service-card-desc {
        font-size: 13px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

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

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }

    .gallery-overlay {
        opacity: 1;
    }

    .process-flow {
        gap: 24px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .process-step.reverse {
        direction: ltr;
    }

    .process-number {
        font-size: 36px;
    }

    .process-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .carousel-container {
        padding: 0 16px;
    }

    .carousel-btn.prev {
        left: -8px;
    }

    .carousel-btn.next {
        right: -8px;
    }

    .review-card {
        flex: 0 0 280px;
        height: auto;
        padding: 24px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .accordion-header {
        padding: 18px 12px;
    }

    .accordion-body {
        padding: 0 12px 18px;
    }
}
