@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&family=JetBrains+Mono:wght@400;500&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
    --sky-white: #FFFFFF;
    --cloud-silver: #F8FAFC;
    --blueprint-navy: #1E3A5F;
    --steel-blue: #334E68;
    --soft-blue: #64748B;
    --sapphire: #3B82F6;
    --sapphire-dark: #2563EB;
    --blueprint-line: rgba(59, 130, 246, 0.12);
    --blueprint-line-strong: rgba(59, 130, 246, 0.5);
    --blueprint-glow: rgba(59, 130, 246, 0.06);
}

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

strong, p, b, i {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: var(--steel-blue);
    background-color: var(--sky-white);
    overflow-x: hidden;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--sapphire), var(--sapphire-dark));
    border-radius: 4px;
}

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

.serif {
    font-family: 'Noto Serif JP', serif;
}

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

.text-navy {
    color: var(--blueprint-navy);
}

.text-steel {
    color: var(--steel-blue);
}

.text-soft {
    color: var(--soft-blue);
}

.text-sapphire {
    color: var(--sapphire);
}

.bg-white {
    background-color: var(--sky-white);
}

.bg-silver {
    background-color: var(--cloud-silver);
}

.bg-navy {
    background-color: var(--blueprint-navy);
}

.bg-sapphire {
    background-color: var(--sapphire);
}

.blueprint-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(var(--blueprint-glow) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-glow) 1px, transparent 1px);
    background-size: 72px 72px;
    animation: gridMove 30s ease-in-out infinite alternate;
}

.blueprint-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(59, 130, 246, 0.25) 2px, transparent 2px);
    background-size: 72px 72px;
    animation: nodePulse 3s ease-in-out infinite;
}

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

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.header-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--blueprint-line);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.06);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
}

.header-mobile .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-mobile .logo-icon {
    width: 32px;
    height: 32px;
}

.header-mobile .logo-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--blueprint-navy);
    letter-spacing: 0.02em;
}

.hamburger {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.hamburger:hover {
    transform: scale(1.08);
}

.hamburger svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.close-menu {
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.mobile-menu-nav {
    padding-top: 60px;
    padding-left: 40px;
}

.mobile-menu-nav a {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--blueprint-navy);
    text-decoration: none;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu-nav a:nth-child(1) { transition-delay: 0.07s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(3) { transition-delay: 0.21s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(6) { transition-delay: 0.42s; }
.mobile-menu.active .mobile-menu-nav a:nth-child(7) { transition-delay: 0.49s; }

.mobile-menu-line {
    width: 60px;
    height: 1px;
    background: rgba(59, 130, 246, 0.3);
    margin: 16px 0;
    margin-left: 40px;
}

.mobile-menu-contact {
    padding: 40px 40px;
}

.mobile-menu-contact .contact-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--sapphire);
    margin-bottom: 8px;
}

.mobile-menu-contact .contact-address {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 13px;
    color: var(--steel-blue);
}

.floating-side-island {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 78px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--blueprint-line);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.1);
    z-index: 1000;
    overflow: visible;
    transition: all 0.3s ease;
}

.floating-side-island:hover {
    width: 320px;
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 64px rgba(59, 130, 246, 0.15);
}

.island-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 10px;
}

.island-logo .logo-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.island-logo .logo-icon svg {
    width: 36px !important;
    height: 36px !important;
}

.island-logo-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--blueprint-navy);
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.floating-side-island:hover .island-logo-text {
    display: block;
}

.island-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.island-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.island-nav-item:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: var(--blueprint-line);
}

.island-nav-item svg {
    stroke: var(--soft-blue);
    stroke-width: 1.5;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.island-nav-item span {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--steel-blue);
    opacity: 0;
    max-width: 0;
    display: none;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.3s ease;
}

.floating-side-island:hover .island-nav-item span {
    opacity: 1;
    max-width: 200px;
    display: block;
}

.island-nav-item:hover span {
    color: var(--sapphire);
}

.island-cta {
    padding: 12px 16px 16px;
    display: none;
}

.floating-side-island:hover .island-cta {
    display: block;
}

.island-cta a {
    display: block;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    color: white;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.25s ease;
}

.island-cta a:hover {
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

main {
    position: relative;
    z-index: 1;
}

section {
    position: relative;
}

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

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

.hero-left {
    padding-right: 40px;
}

.hero-decor {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
}

.hero-decor svg {
    stroke: var(--sapphire);
    stroke-width: 2;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 0.78;
    letter-spacing: -0.03em;
    color: var(--blueprint-navy);
    margin-bottom: 12px;
}

.hero-title-accent {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: var(--sapphire);
    margin-bottom: 16px;
}

.hero-annotation {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(100, 116, 139, 0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--steel-blue);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 24px;
}

.hero-markers {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-marker {
    width: 28px;
    height: 8px;
}

.hero-marker svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.hero-line {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire), rgba(59, 130, 246, 0.3));
    margin-bottom: 32px;
}

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

.btn-primary {
    display: inline-block;
    padding: 22px 48px;
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    color: white;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 20px 40px;
    background: transparent;
    color: var(--blueprint-navy);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid var(--blueprint-navy);
    border-radius: 20px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--sapphire);
    color: var(--sapphire);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 100%;
    border: 1px solid var(--blueprint-line);
    position: relative;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--blueprint-line);
}

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

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.96);
}

.bento-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.08);
    z-index: 5;
}

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

.bento-card-2 {
    bottom: 40px;
    right: 16px;
    z-index: 4;
}

.bento-card-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--blueprint-navy);
}

.bento-card-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--sapphire);
}

.blueprint-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.blueprint-card:hover {
    transform: scale(1.03);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.08);
    z-index: 10;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--blueprint-navy);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--soft-blue);
    margin-bottom: 48px;
}

.services-section {
    background: var(--cloud-silver);
    padding: 100px 80px;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sky-white);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--blueprint-line);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: scale(1.03);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.08);
    z-index: 10;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

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

.service-category {
    font-size: 10px;
    color: var(--sapphire);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.service-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--blueprint-navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--steel-blue);
    margin-bottom: 12px;
}

.service-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: var(--sapphire);
}

.service-line {
    width: 40px;
    height: 2px;
    background: var(--sapphire);
    margin-top: 12px;
}

.service-card-simple {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--blueprint-line);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire), rgba(59, 130, 246, 0.2));
}

.service-card-simple:hover {
    transform: scale(1.03);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 24px 64px rgba(59, 130, 246, 0.08);
    z-index: 10;
}

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

.service-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.about-section {
    background: var(--sky-white);
    padding: 100px 80px;
}

.about-split {
    display: grid;
    grid-template-columns: 55% 45%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    position: relative;
}

.about-divider {
    width: 8px;
    background: linear-gradient(180deg, var(--sapphire), rgba(59, 130, 246, 0.3));
    position: absolute;
    left: 55%;
    height: 100%;
    transform: translateX(-50%);
}

.about-left {
    position: relative;
    overflow: hidden;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.about-overlay-block {
    position: absolute;
    top: 20px;
    left: -48px;
    width: 140px;
    height: 90px;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid var(--blueprint-line);
    z-index: 10;
    transition: all 0.3s ease;
}

.about-left:hover .about-overlay-block {
    z-index: 20;
    opacity: 1;
}

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

.about-decor-corner svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.about-right {
    padding: 80px 56px;
}

.about-decor {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
}

.about-decor svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.about-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 0.82;
    letter-spacing: -0.02em;
    color: var(--blueprint-navy);
    margin-bottom: 20px;
}

.about-text {
    font-size: 15px;
    color: var(--steel-blue);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-divider-line {
    width: 40px;
    height: 1px;
    background: var(--blueprint-line);
    margin: 16px 0;
}

.btn-team {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    color: white;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    transition: all 0.25s ease;
    margin-top: 16px;
}

.btn-team:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.process-section {
    background: var(--cloud-silver);
    padding: 100px 80px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--sapphire), rgba(59, 130, 246, 0.3), var(--sapphire));
    transform: translateX(-50%);
}

.timeline-item {
    width: calc(50% - 56px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.06);
    position: relative;
    margin-bottom: -8px;
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: auto;
}

.timeline-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

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

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

.timeline-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.timeline-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--blueprint-navy);
    margin-bottom: 8px;
}

.timeline-text {
    font-size: 12px;
    color: var(--steel-blue);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    margin-top: 12px;
}

.timeline-line-decor {
    width: 40px;
    height: 1px;
    background: var(--blueprint-line);
    margin-top: 10px;
}

.portfolio-section {
    background: var(--sky-white);
    padding: 100px 80px;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -8px;
    position: relative;
    z-index: 1;
}

.portfolio-item:hover {
    background: white;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 56px rgba(59, 130, 246, 0.08);
    z-index: 10;
}

.portfolio-item-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    flex-shrink: 0;
}

.portfolio-item-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.portfolio-item-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--blueprint-navy);
}

.portfolio-item-chevron {
    margin-left: auto;
}

.portfolio-item-chevron svg {
    stroke: var(--soft-blue);
    stroke-width: 1.5;
    width: 16px;
    transition: all 0.2s ease;
}

.portfolio-item:hover .portfolio-item-chevron svg {
    stroke: var(--sapphire);
    transform: translateX(4px);
}

.portfolio-reveal {
    position: relative;
    min-height: 280px;
}

.portfolio-reveal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 20px 56px rgba(59, 130, 246, 0.08);
    opacity: 0;
    transform: translateX(32px) scale(0.95);
    transition: all 0.4s ease;
}

.portfolio-reveal.active .portfolio-reveal-img {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.portfolio-reveal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 4px;
}

.portfolio-reveal-desc {
    position: absolute;
    bottom: -60px;
    left: 0;
    font-size: 13px;
    color: var(--steel-blue);
    line-height: 1.6;
    padding-top: 14px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-reveal.active .portfolio-reveal-desc {
    opacity: 1;
    bottom: -50px;
}

.testimonials-section {
    background: var(--cloud-silver);
    padding: 100px 80px;
}

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

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

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

.testimonial-card {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.06);
    overflow: hidden;
    transition: all 0.5s ease;
    transform-origin: center center;
}

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

.testimonial-content {
    padding: 20px;
}

.testimonial-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
}

.testimonial-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.testimonial-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--blueprint-navy);
}

.testimonial-role {
    font-size: 11px;
    color: var(--soft-blue);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.testimonial-text {
    font-size: 12px;
    color: var(--steel-blue);
    margin-top: 6px;
    line-height: 1.5;
}

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

.testimonial-stars svg {
    fill: var(--sapphire);
    width: 14px;
    height: 14px;
}

.testimonial-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire), rgba(59, 130, 246, 0.3));
}

.carousel-arrow {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--blueprint-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 100;
}

.carousel-arrow:hover {
    border-color: var(--sapphire);
}

.carousel-arrow svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

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

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

.faq-section {
    background: var(--sky-white);
    padding: 100px 80px;
}

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

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

.faq-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
    z-index: 10;
    transform: scale(1.03);
}

.faq-card:hover .faq-icon {
    transform: scale(1.1);
}

.faq-card:hover .faq-title {
    color: var(--sapphire);
}

.faq-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.faq-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--blueprint-navy);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.faq-text {
    font-size: 12px;
    color: var(--steel-blue);
    line-height: 1.6;
}

.faq-line {
    width: 40px;
    height: 1px;
    background: var(--blueprint-line);
    margin-top: 10px;
}

.achievements-section {
    background: var(--blueprint-navy);
    padding: 100px 80px;
    position: relative;
}

.achievements-container {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.06);
    padding: 0;
    margin-bottom: -64px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

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

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire), rgba(59, 130, 246, 0.3));
}

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

.achievement-icon {
    width: 44px;
    height: 44px;
    margin: 20px;
    flex-shrink: 0;
}

.achievement-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.achievement-img {
    width: 130px;
    height: 90px;
    object-fit: cover;
    margin-right: 20px;
    flex-shrink: 0;
}

.achievement-text-group {
    padding: 20px;
}

.achievement-number {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--sapphire);
}

.achievement-label {
    font-size: 12px;
    color: var(--soft-blue);
    margin-top: 4px;
}

.achievement-desc {
    font-size: 13px;
    color: var(--steel-blue);
    margin-top: 6px;
    line-height: 1.6;
}

.achievement-line {
    width: 40px;
    height: 1px;
    background: var(--blueprint-line);
    margin-top: 10px;
}

.team-section {
    background: var(--cloud-silver);
    padding: 100px 80px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 480px;
}

.team-center-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid var(--sapphire);
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
    z-index: 10;
}

.team-center-node::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

.team-center-node::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.team-center-icon {
    width: 56px;
    height: 56px;
}

.team-center-icon svg {
    stroke: white;
    stroke-width: 2;
}

.team-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    padding: 16px;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.06);
    transition: all 0.3s ease;
    margin-bottom: -12px;
}

.team-node:hover {
    z-index: 10;
    transform: scale(1.05);
}

.team-node-img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    margin-bottom: 8px;
}

.team-node-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
}

.team-node-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.team-node-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--blueprint-navy);
}

.team-node-role {
    font-size: 11px;
    color: var(--steel-blue);
    margin-top: 4px;
}

.team-node-line {
    width: 40px;
    height: 1px;
    background: var(--blueprint-line);
    margin-top: 8px;
}

.team-connection {
    position: absolute;
    stroke: rgba(59, 130, 246, 0.12);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 6 4;
}

.contact-section {
    background: var(--sky-white);
    padding: 100px 80px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.accordion-panel {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-panel:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 56px rgba(59, 130, 246, 0.08);
    z-index: 10;
}

.accordion-panel.active {
    border-left: 3px solid var(--sapphire);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

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

.accordion-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
}

.accordion-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--blueprint-navy);
    flex-grow: 1;
}

.accordion-chevron {
    transition: transform 0.3s ease;
}

.accordion-chevron svg {
    stroke: var(--soft-blue);
    stroke-width: 1.5;
}

.accordion-panel.active .accordion-chevron svg {
    stroke: var(--sapphire);
    transform: rotate(180deg);
}

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

.accordion-panel.active .accordion-content {
    max-height: 400px;
}

.accordion-content-inner {
    padding: 0 20px 20px;
}

.accordion-content-inner img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    margin-top: 14px;
}

.accordion-text {
    font-size: 15px;
    color: var(--steel-blue);
    line-height: 1.75;
    margin-top: 12px;
}

.accordion-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire), rgba(59, 130, 246, 0.3));
    margin-bottom: 14px;
}

.cta-section {
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    padding: 80px;
    text-align: center;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--sapphire);
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

footer {
    background: var(--blueprint-navy);
    padding: 60px 80px 30px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--sapphire);
    border-radius: 8px;
}

.footer-logo-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    letter-spacing: 0.02em;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-column h4 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: var(--sapphire);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--blueprint-line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    z-index: 9999;
    display: block;
}

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

.cookie-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--blueprint-navy);
    margin-bottom: 12px;
}

.cookie-text {
    font-size: 13px;
    color: var(--steel-blue);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    color: white;
}

.cookie-btn.accept:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--soft-blue);
    border: 1px solid var(--blueprint-line);
}

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

.hero-compact {
    min-height: 280px;
    background: var(--sky-white);
    display: flex;
    align-items: center;
    padding: 80px 80px 60px;
    position: relative;
}

.hero-compact-content {
    max-width: 560px;
    margin-left: 40px;
}

.breadcrumbs {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--soft-blue);
    margin-bottom: 16px;
}

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

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

.hero-compact h1 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 44px;
    color: var(--blueprint-navy);
    margin-bottom: 16px;
}

.hero-compact-decor {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.hero-compact-decor svg {
    stroke: var(--sapphire);
    stroke-width: 2;
}

.hero-compact-markers {
    display: flex;
    gap: 8px;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 28px;
    color: var(--blueprint-navy);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    stroke: var(--sapphire);
    stroke-width: 1.5;
    width: 24px;
    height: 24px;
}

.contact-item-label {
    font-size: 12px;
    color: var(--soft-blue);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 15px;
    color: var(--blueprint-navy);
    font-weight: 500;
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid var(--blueprint-line);
    padding: 40px;
}

.contact-form h3 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--blueprint-navy);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--steel-blue);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--blueprint-line);
    border-radius: 12px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 15px;
    color: var(--blueprint-navy);
    background: white;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sapphire);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    color: white;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.form-submit:hover {
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
    height: 300px;
    border: 1px solid var(--blueprint-line);
    margin-top: 40px;
}

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

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

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sapphire), var(--sapphire-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thank-you-icon svg {
    stroke: white;
    stroke-width: 2;
    width: 40px;
    height: 40px;
}

.thank-you-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--blueprint-navy);
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--steel-blue);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.legal-page h1 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--blueprint-navy);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--blueprint-navy);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 15px;
    color: var(--steel-blue);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.legal-page li {
    font-size: 15px;
    color: var(--steel-blue);
    line-height: 1.8;
    margin-bottom: 8px;
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.65s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}

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

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

.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.count-up {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--sapphire);
}

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-split {
        grid-template-columns: 1fr;
    }
    
    .about-divider {
        display: none;
    }
    
    .about-left {
        height: 300px;
    }
    
    .about-right {
        padding: 40px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-reveal {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .floating-side-island {
        display: none;
    }
    
    .header-mobile {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title-accent {
        font-size: 32px;
    }
    
    .services-section,
    .about-section,
    .process-section,
    .portfolio-section,
    .testimonials-section,
    .faq-section,
    .team-section,
    .contact-section {
        padding: 60px 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 56px);
        margin-left: 56px !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translate(-50%, -50%);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .achievements-section {
        padding: 60px 20px;
    }
    
    .achievement-content {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-img {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .hero-compact {
        padding: 80px 20px 40px;
    }
    
    .hero-compact h1 {
        font-size: 32px;
    }
    
    .legal-page {
        padding: 60px 20px;
    }
    
    .legal-page h1 {
        font-size: 28px;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title-accent {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .team-container {
        min-height: auto;
    }
    
    .team-center-node {
        display: none;
    }
    
    .team-node {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin: 0 auto 16px;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .carousel-track {
        transform-style: flat;
    }
    
    .testimonial-card {
        position: relative;
        width: 100%;
        margin-bottom: 24px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
