@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Archivo+Black&family=Manrope:wght@400;500;600;700&family=Russo+One&display=swap');

:root {
    --bg-primary: #FDFCFB;
    --bg-secondary: #F8F4EC;
    --bg-tertiary: #F0ECE4;
    --text-primary: #2A2420;
    --text-secondary: #7A7568;
    --accent-orange: #FF6B35;
    --accent-emerald: #00D4AA;
    --accent-gold: #FFB84D;
    --accent-rose: #FF6B9D;
    --neon-glow: 0 0 20px rgba(255, 107, 53, 0.4);
    --neon-glow-strong: 0 0 30px rgba(255, 107, 53, 0.6), 0 0 60px rgba(255, 107, 53, 0.3);
    --transition-pop: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

strong, p, span {
    color: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', 'Noto Sans JP', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.mesh-gradient-bg {
    background: 
        radial-gradient(ellipse 140px 180px at 20% 30%, rgba(253, 228, 212, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 180px 220px at 75% 20%, rgba(248, 224, 232, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 160px 200px at 50% 70%, rgba(255, 232, 216, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 200px 240px at 85% 65%, rgba(240, 232, 248, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 150px 190px at 15% 80%, rgba(248, 240, 216, 0.55) 0%, transparent 70%),
        var(--bg-primary);
    background-attachment: fixed;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 2px solid var(--accent-orange);
    transition: all 0.3s var(--transition-pop);
}

header.shrink {
    transform: translateY(-16px);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--neon-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.domain-name {
    font-family: 'Russo One', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-primary);
}

.site-name-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--text-secondary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-nav a {
    font-family: 'Russo One', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s var(--transition-pop);
    box-shadow: var(--neon-glow);
}

.desktop-nav a:hover {
    color: var(--accent-orange);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a.active {
    color: var(--accent-orange);
}

.desktop-nav a.active::after {
    width: 100%;
}

.ripple-echo-trigger {
    position: relative;
    overflow: hidden;
}

.ripple-echo-trigger::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: all 250ms ease-out;
}

.ripple-echo-trigger:hover::before {
    opacity: 1;
    animation: rippleExpand 500ms ease-out forwards;
}

@keyframes rippleExpand {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; border-width: 3px; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; border-width: 1px; }
}

.ripple-echo-trigger::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30%;
    height: 30%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    opacity: 0;
    transition: all 200ms ease-out;
}

.ripple-echo-trigger:hover::after {
    opacity: 1;
    animation: rippleInner 500ms ease-out infinite;
}

@keyframes rippleInner {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.ripple-echo-trigger:hover {
    z-index: 100 !important;
    position: relative;
    transform: translateZ(0) translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.28);
    transition: all 240ms ease-out;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1001;
    opacity: 0;
    transform: scale(0.94);
    transition: all 360ms var(--transition-pop);
}

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

.mobile-menu-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 2px solid var(--accent-orange);
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    list-style: none;
}

.mobile-nav-list a {
    font-family: 'Russo One', sans-serif;
    font-size: 17px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--accent-orange);
}

.mobile-cta {
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c5a 100%);
    color: white;
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    width: calc(100% - 96px);
    margin: 0 auto 48px;
    border-radius: 8px;
}

.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text h1 .line1 {
    display: block;
    font-size: clamp(48px, 8vw, 96px);
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.hero-text h1 .line2 {
    display: block;
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: 0.02em;
    color: var(--accent-orange);
    text-shadow: var(--neon-glow);
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    border: 3px solid var(--accent-orange);
    border-radius: 8px;
    color: var(--accent-orange);
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-pop);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--neon-glow-strong);
}

.hero-visual {
    position: relative;
}

.neon-frame {
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--neon-glow), inset 0 0 20px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.neon-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background-image: 
        linear-gradient(var(--accent-orange) 2px, transparent 2px),
        linear-gradient(90deg, var(--accent-orange) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    pointer-events: none;
}

.neon-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.corner-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange);
    box-shadow: var(--neon-glow);
}

.corner-marker.tl { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.corner-marker.tr { top: -10px; right: -10px; border-left: none; border-bottom: none; }
.corner-marker.bl { bottom: -10px; left: -10px; border-right: none; border-top: none; }
.corner-marker.br { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--text-primary);
    color: white;
}

.section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.4px;
}

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

.bento-card {
    background: var(--bg-primary);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.24s ease-out;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--accent-orange);
    z-index: 100;
    transform: translateZ(0) translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.28);
}

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

.bento-card.featured .bento-image {
    height: 100%;
    min-height: 300px;
}

.bento-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

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

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

.bento-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.bento-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bento-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-price {
    margin-top: 16px;
    font-family: 'Russo One', sans-serif;
    font-size: 18px;
    color: var(--accent-orange);
}

.about-parallax {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 60px;
    align-items: start;
}

.parallax-viewport {
    position: sticky;
    top: 100px;
}

.parallax-image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.parallax-img {
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--neon-glow);
}

.parallax-img:nth-child(2) {
    transform: translateX(30px) rotate(2deg);
}

.parallax-img:nth-child(3) {
    transform: translateX(-15px) rotate(-1deg);
}

.parallax-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-content {
    padding-top: 20px;
}

.drop-cap::first-letter {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--accent-orange);
    float: left;
    line-height: 1;
    margin-right: 12px;
    margin-top: 4px;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 52px;
    color: var(--accent-orange);
    text-shadow: var(--neon-glow);
    line-height: 1;
}

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

.process-horizontal {
    overflow-x: auto;
    padding: 40px 0;
    -webkit-overflow-scrolling: touch;
}

.process-track {
    display: flex;
    gap: 0;
    min-width: max-content;
    padding: 0 48px;
}

.process-node {
    display: flex;
    align-items: center;
    position: relative;
}

.process-marker {
    width: 12px;
    height: 12px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: var(--neon-glow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.process-node:hover .process-marker {
    transform: scale(1.4);
}

.process-connector {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    position: relative;
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    animation: flowRight 2s linear infinite;
}

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

.process-label {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-node:hover .process-label {
    opacity: 1;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.strength-card {
    background: var(--bg-primary);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.24s ease-out;
}

.strength-card:hover {
    border-color: var(--accent-orange);
    z-index: 100;
    transform: translateZ(0) translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.28);
}

.strength-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.strength-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.strength-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

.achievement-stream {
    height: 95mm;
    background: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.achievement-stream::before,
.achievement-stream::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-emerald), var(--accent-rose));
    box-shadow: var(--neon-glow);
}

.achievement-stream::before { top: 0; }
.achievement-stream::after { bottom: 0; }

.stream-bands {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}

.stream-band {
    display: flex;
    animation: streamScroll 18s linear infinite;
}

.stream-band:nth-child(2) { animation-direction: reverse; }

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

.stream-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    white-space: nowrap;
}

.stream-item {
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    color: white;
}

.stream-delimiter {
    color: var(--accent-gold);
    font-size: 16px;
}

.stream-counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    padding: 0 48px;
}

.stream-counter {
    text-align: center;
}

.counter-number {
    font-family: 'Russo One', sans-serif;
    font-size: 60px;
    color: var(--accent-orange);
    text-shadow: var(--neon-glow);
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

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

.team-card {
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.24s ease-out;
}

.team-card:hover {
    border-color: var(--accent-orange);
    z-index: 100;
    transform: translateZ(0) translateY(-12px) scale(1.04);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.28);
}

.team-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.team-role {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: var(--neon-glow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-primary);
    border: none;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    font-size: 20px;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

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

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    border-left: 4px solid var(--accent-orange);
    margin-left: 20px;
}

.reviews-carousel {
    perspective: 1000px;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    justify-content: center;
    gap: 24px;
    transform-style: preserve-3d;
}

.review-card {
    flex: 0 0 calc(33.333% - 24px);
    background: var(--bg-primary);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 0 0 4px 4px;
    box-shadow: var(--neon-glow);
}

.review-card:nth-child(1),
.review-card:nth-child(3) {
    transform: rotateY(18deg) scale(0.82);
    opacity: 0.5;
    filter: blur(1px);
}

.review-card:nth-child(2) {
    z-index: 100;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

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

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-orange);
    box-shadow: var(--neon-glow);
}

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

.review-meta h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-top: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-orange);
    opacity: 1;
    box-shadow: var(--neon-glow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
}

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

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--text-secondary);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

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

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--accent-orange);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Russo One', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--neon-glow);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: var(--neon-glow-strong);
}

.contact-info {
    padding-top: 20px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-text p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: var(--neon-glow);
}

footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--accent-orange);
    padding: 60px 0 30px;
}

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

.footer-brand .logo-group {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

.copyright {
    font-size: 13px;
    color: var(--text-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: block;
}

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

.cookie-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-orange);
    border: none;
    color: white;
}

.cookie-btn.accept:hover {
    box-shadow: var(--neon-glow);
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.42s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 0 24px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .about-parallax {
        grid-template-columns: 1fr;
    }
    
    .parallax-viewport {
        position: relative;
        top: 0;
        overflow: hidden;
    }
    
    .parallax-image-stack {
        flex-direction: row;
    }
    
    .parallax-img:nth-child(2),
    .parallax-img:nth-child(3) {
        transform: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    header.shrink {
        transform: none;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 120px;
    }
    
    .services-bento {
        grid-template-columns: 1fr;
    }
    
    .bento-card.featured {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stream-counters {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .counter-number {
        font-size: 48px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        flex: 0 0 100%;
    }
    
    .review-card:nth-child(1),
    .review-card:nth-child(3) {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cookie-banner {
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-text h1 .line1,
    .hero-text h1 .line2 {
        font-size: 36px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .parallax-image-stack {
        flex-direction: column;
    }
    
    .parallax-img img {
        height: 150px;
    }
}