/*
 * FoodPicks Pro - Apple-inspired Landing Page
 * 想いを伝える、余白を活かしたデザイン
 */

/* =====================================
   Base / Reset
===================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "Kozuka Gothic Pro", "小塚ゴシック Pro", "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", "KozGoPr6N-Regular", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #1d1d1f;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

/* =====================================
   Layout
===================================== */
.container {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 720px;
}

.container--wide {
    max-width: 1200px;
}

/* =====================================
   Typography - Apple Style
===================================== */
.headline-xl {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1d1d1f;
}

.headline-lg {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.headline-md {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.headline-sm {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.3;
    color: #1d1d1f;
}

.body-lg {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.8;
    color: #1d1d1f;
}

.body-md {
    font-size: 17px;
    line-height: 1.8;
    color: #1d1d1f;
}

.body-sm {
    font-size: 14px;
    line-height: 1.7;
    color: #86868b;
}

/* テキストカラー */
.text-muted {
    color: #86868b;
}

.text-accent {
    color: #F5A623;
}

.text-white {
    color: #fff;
}

/* 強調 */
.text-highlight {
    background: linear-gradient(transparent 60%, rgba(245, 166, 35, 0.25) 60%);
    padding: 0 4px;
}

.text-emphasis {
    font-weight: 700;
    color: #1d1d1f;
}

.text-gradient {
    background: linear-gradient(135deg, #F5A623 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================
   Buttons
===================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    font-size: 21px;
    font-weight: 600;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-primary {
    background: #F5A623;
    color: #fff;
}

.btn-primary:hover {
    background: #E59400;
    opacity: 1;
    transform: scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: #F5A623;
    border: 2px solid #F5A623;
}

.btn-secondary:hover {
    background: #F5A623;
    color: #fff;
    opacity: 1;
}

.btn-white {
    background: #fff;
    color: #1d1d1f;
}

.btn-white:hover {
    background: #f5f5f7;
    opacity: 1;
    transform: scale(1.02);
}

.btn-dark {
    background: #1d1d1f;
    color: #fff;
}

.btn-dark:hover {
    background: #000;
    opacity: 1;
    transform: scale(1.02);
}

.btn-link {
    padding: 0;
    background: none;
    color: #F5A623;
    font-weight: 600;
}

.btn-link::after {
    content: '→';
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    opacity: 1;
}

.btn-link:hover::after {
    transform: translateX(4px);
}

.btn small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

/* =====================================
   Scroll Animation
===================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }


/* =====================================
   Header
===================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 35px;
}

.gnav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.gnav a {
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
}

.header-cta {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    background: #F5A623;
    color: #fff;
    border-radius: 980px;
}

.header-cta:hover {
    opacity: 0.85;
}


/* =====================================
   Hero - New Design with Product Grid
===================================== */
.hero-new {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 商品グリッド背景 - モザイクレイアウト */
.hero-product-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    grid-auto-rows: 40px;
    gap: 3px;
    padding: 3px;
    z-index: 1;
    overflow: hidden;
}

.hero-product-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    border-radius: 2px;
    animation: gridFadeIn 0.8s ease-out forwards, gridFloat 8s ease-in-out infinite;
    transform-origin: center center;
}

/* 順次フェードインのための遅延 */
.hero-product-grid img:nth-child(6n+1) { animation-delay: 0s, 0s; }
.hero-product-grid img:nth-child(6n+2) { animation-delay: 0.1s, 0.5s; }
.hero-product-grid img:nth-child(6n+3) { animation-delay: 0.2s, 1s; }
.hero-product-grid img:nth-child(6n+4) { animation-delay: 0.3s, 1.5s; }
.hero-product-grid img:nth-child(6n+5) { animation-delay: 0.4s, 2s; }
.hero-product-grid img:nth-child(6n+6) { animation-delay: 0.5s, 2.5s; }

/* ランダムな浮遊パターン */
.hero-product-grid img:nth-child(4n+1) { animation-name: gridFadeIn, gridFloat1; }
.hero-product-grid img:nth-child(4n+2) { animation-name: gridFadeIn, gridFloat2; }
.hero-product-grid img:nth-child(4n+3) { animation-name: gridFadeIn, gridFloat3; }
.hero-product-grid img:nth-child(4n+4) { animation-name: gridFadeIn, gridFloat4; }

/* シマー効果（一部の画像が輝く） */
.hero-product-grid img:nth-child(7n) {
    animation: gridFadeIn 0.8s ease-out forwards, gridShimmer 4s ease-in-out infinite;
}

@keyframes gridFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 0.75;
        transform: scale(1);
    }
}

@keyframes gridFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(2px, -3px) scale(1.02); }
}

@keyframes gridFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2px, 2px) scale(1.01); }
}

@keyframes gridFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(3px, 2px) scale(1.02); }
}

@keyframes gridFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-1px, -2px) scale(1.01); }
}

@keyframes gridShimmer {
    0%, 100% {
        opacity: 0.75;
        filter: brightness(1);
    }
    50% {
        opacity: 0.9;
        filter: brightness(1.15);
    }
}

/* モザイクパターン - 大きさを変える */
.hero-product-grid img:nth-child(12n+1) { grid-column: span 3; grid-row: span 4; }
.hero-product-grid img:nth-child(12n+2) { grid-column: span 2; grid-row: span 3; }
.hero-product-grid img:nth-child(12n+3) { grid-column: span 3; grid-row: span 2; }
.hero-product-grid img:nth-child(12n+4) { grid-column: span 2; grid-row: span 2; }
.hero-product-grid img:nth-child(12n+5) { grid-column: span 2; grid-row: span 3; }
.hero-product-grid img:nth-child(12n+6) { grid-column: span 3; grid-row: span 2; }
.hero-product-grid img:nth-child(12n+7) { grid-column: span 2; grid-row: span 4; }
.hero-product-grid img:nth-child(12n+8) { grid-column: span 2; grid-row: span 2; }
.hero-product-grid img:nth-child(12n+9) { grid-column: span 3; grid-row: span 3; }
.hero-product-grid img:nth-child(12n+10) { grid-column: span 2; grid-row: span 2; }
.hero-product-grid img:nth-child(12n+11) { grid-column: span 2; grid-row: span 3; }
.hero-product-grid img:nth-child(12n+12) { grid-column: span 3; grid-row: span 2; }

/* オーバーレイ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.7) 70%,
        rgba(255, 255, 255, 0.5) 100%
    );
    z-index: 2;
}

/* コンテンツエリア */
.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 60px 0px;
    gap: 40px;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.hero-visual img {
    max-height: 85vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* =====================================
   Hero - Full Impact (Legacy)
===================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(253,251,249,0.7) 50%, rgba(250,247,244,0.75) 100%),
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920&q=80') center center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, transparent 0%, rgba(255,255,255,0.4) 100%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Hero New - Text Styles */
.hero-new .hero-eyebrow {
    font-size: 24px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-new .hero-title {
    font-size: clamp(32px, 6vw, 66px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.hero-new .hero-title span {
    display: block;
}

.hero-new .hero-title .accent {
    color: #F5A623;
}

.hero-new .hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.5;
    color: #F5A623;
    margin-bottom: 20px;
}

.hero-new .hero-lead {
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.hero-new .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hero-new .hero-note {
    font-size: 13px;
    color: #86868b;
    margin-top: 12px;
}

.hero-new .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #86868b;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    z-index: 5;
}

.hero-new .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #86868b, transparent);
}

/* Legacy Hero Styles */
.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 9vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.hero-title span {
    display: block;
}

.hero-title .accent {
    color: #F5A623;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.5;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: clamp(15px, 2vw, 19px);
    line-height: 2;
    color: #86868b;
    max-width: 560px;
    margin: 0 auto 48px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-note {
    font-size: 13px;
    color: #86868b;
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #86868b;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #86868b, transparent);
}

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


/* =====================================
   Section - Common
===================================== */
.section {
    padding: 140px 0;
}

.section--tight {
    padding: 100px 0;
}

.section--bg-light {
    background: #faf9f7;
}

.section--bg-dark {
    background: #1d1d1f;
}

.section--bg-warm {
    background: linear-gradient(180deg, #fdfbf9 0%, #f8f4f0 100%);
}

.section--bg-accent {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.95) 0%, rgba(255, 184, 77, 0.95) 100%),
                url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?w=1920&q=80') center center / cover no-repeat;
}

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

.section-header--left {
    text-align: left;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.section--bg-dark .section-title,
.section--bg-accent .section-title {
    color: #fff;
}

.section--bg-dark .section-eyebrow {
    color: rgba(255,255,255,0.6);
}

.section-lead {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 2;
    color: #86868b;
    margin-top: 24px;
    max-width: 640px;
}

.section-header:not(.section-header--left) .section-lead {
    margin-left: auto;
    margin-right: auto;
}


/* =====================================
   Problem Section - Compact Design
===================================== */
.problem-section {
    background: #fff;
    padding: 140px 0;
    overflow: hidden;
}

.problem-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.problem-title-accent {
    font-weight: 700;
}

.problem-lead {
    font-size: clamp(14px, 2vw, 16px);
    color: #86868b;
    line-height: 1.8;
}

/* Pain Cards */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 80px;
}

.problem-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.problem-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.problem-card-quote {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
    color: #F5A623;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.6;
}

.problem-card-text {
    font-size: clamp(15px, 2vw, 16px);
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.8;
    margin-bottom: 16px;
}

.problem-card-context {
    font-size: 12px;
    color: #86868b;
    letter-spacing: 0.02em;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

/* Conclusion */
.problem-conclusion {
    text-align: center;
    margin-bottom: 60px;
}

.problem-stuck {
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.problem-stuck .accent {
    color: #F5A623;
    font-weight: 700;
}

.problem-feeling {
    font-size: clamp(15px, 2vw, 21px);
    color: #86868b;
    line-height: 2;
}

/* Solution */
.problem-solution {
    padding: 80px 0 20px;
    text-align: center;
}

.problem-solution-text {
    font-size: clamp(22px, 4vw, 45px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.problem-solution-text .text-bg {
    background: #1d1d1f;
    padding: 6px 16px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.problem-solution-text .accent {
    color: #F5A623;
}


/* =====================================
   Solution - Definition (Impact Layout)
===================================== */
.solution-section {
    padding: 160px 0 120px;
    background: #fff;
    overflow: hidden;
}

.solution-inner {
    display: grid;
    grid-template-columns: 48% 52%;
    grid-template-rows: 1fr auto;
    min-height: 580px;
}

.solution-text {
    grid-column: 1;
    grid-row: 1;
    padding: 20px 60px 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-tagline {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.solution-headline {
    margin-bottom: 40px;
}

.solution-headline .line1 {
    display: block;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.solution-headline .line2 {
    display: block;
    font-size: clamp(34px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-top: 4px;
    padding-left: 0.3em;
}

.solution-headline .accent {
    color: #F5A623;
}

.solution-desc {
    font-size: 15px;
    line-height: 2;
    color: #86868b;
    max-width: 400px;
}

/* Image - Full bleed right */
.solution-image {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    min-height: 480px;
}

.solution-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom Catch */
.solution-bottom {
    grid-column: 1 / 3;
    grid-row: 2;
    position: relative;
    z-index: 2;
    padding: 0 80px;
    margin-top: -100px;
}

.solution-catch {
    font-size: clamp(26px, 3.2vw, 42px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.015em;
    line-height: 1.5;
    background: #fff;
    display: inline;
    padding: 12px 24px 12px 0;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.solution-catch .accent {
    color: #F5A623;
}


/* =====================================
   Features - AI Section
===================================== */
.section--bg-light .container {
    position: relative;
}

.ai-hero {
    position: relative;
    overflow: hidden;
    margin: 0 calc(-50vw + 50%) 80px;
    width: 100vw;
    border-radius: 0;
}

.ai-hero-image {
    width: 100%;
    height: 480px;
}

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

.ai-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 29, 31, 0.75) 0%, rgba(29, 29, 31, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
}

.ai-hero-overlay .section-eyebrow {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.ai-hero-overlay .section-title {
    color: #fff;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 0.05em;
}

.ai-hero-overlay .section-lead {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-top: 28px;
}

/* Bento Grid Layout */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 40px;
    background: linear-gradient(145deg, #1d1d1f 0%, #2d2d2f 100%);
}

.feature-item--large .feature-num {
    color: rgba(255,255,255,0.3);
}

.feature-item--large .feature-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-item--large .feature-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.9;
}

.feature-item--large .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-item--large .feature-visual {
    margin-top: 32px;
}

.feature-item--large .feature-visual svg {
    width: 100%;
    height: 100px;
}

.feature-item--wide {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
}

.feature-item--wide .feature-title {
    margin-bottom: 8px;
}

.feature-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #F5A623;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #86868b;
}

.feature-badge {
    margin-left: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F5A623 0%, #FFB84D 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 8px;
    white-space: nowrap;
}

.features-note {
    text-align: center;
    margin-top: 60px;
    font-size: 18px;
    color: #000000;
    font-style: normal;
    padding: 20px 40px;
    background: #fff;
    border-radius: 12px;
    display: inline-block;
    margin-left: 0;
    transform: translateX(-50%);
    width: 100%;
}


/* =====================================
   Shelf Section - Editorial Style
===================================== */
.shelf-section {
    background: #faf9f7;
    padding: 0;
    overflow: hidden;
}

.shelf-header-area {
    padding: 120px 0 80px;
    text-align: center;
}

.shelf-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.shelf-headline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shelf-headline-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: 0.02em;
}

.shelf-headline-main {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
}

/* Showcase Grid */
.shelf-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.shelf-showcase-featured,
.shelf-showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.shelf-showcase-featured {
    aspect-ratio: 4 / 3;
}

.shelf-showcase-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shelf-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.shelf-showcase-featured:hover .shelf-showcase-image img,
.shelf-showcase-item:hover .shelf-showcase-image img {
    transform: scale(1.08);
}

.shelf-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(0,0,0,0.7) 100%
    );
    transition: opacity 0.4s ease;
}

.shelf-showcase-featured:hover .shelf-showcase-overlay,
.shelf-showcase-item:hover .shelf-showcase-overlay {
    opacity: 0.85;
}

.shelf-showcase-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 24px 28px;
    z-index: 2;
    /* background: rgba(0, 0, 0, 0.3); */
    border-radius: 12px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(4px);
}

.shelf-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 166, 35, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 4px;
    margin-bottom: 16px;
}

.shelf-showcase-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.shelf-showcase-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    font-weight: bold;
}

/* Side Items */
.shelf-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shelf-showcase-item {
    flex: 1;
    min-height: 200px;
}

.shelf-showcase-item .shelf-showcase-content {
    padding: 20px 24px;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.shelf-showcase-item .shelf-showcase-title {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 0;
}

.shelf-showcase-item .shelf-tag {
    margin-bottom: 4px;
}

/* Bottom Note */
.shelf-bottom {
    padding: 60px 0 100px;
}

.shelf-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 40px;
    background: rgba(0,0,0,0.04);
    border-radius: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.shelf-note-icon {
    flex-shrink: 0;
    color: rgba(0,0,0,0.4);
}

.shelf-note p {
    font-size: 20px;
    color: #1d1d1f;
    line-height: 1.7;
}

.shelf-note strong {
    color: #1d1d1f;
    font-weight: 600;
}


/* =====================================
   Flow - Process Steps
===================================== */
.flow-section {
    position: relative;
    overflow: hidden;
}

.flow-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.08;
}

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

.flow-section .container {
    position: relative;
    z-index: 1;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(to right, #F5A623, rgba(245, 166, 35, 0.2));
    transform: translateX(50%);
}

.flow-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #F5A623 0%, #FFB84D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.flow-title {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.flow-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #86868b;
}

.flow-message {
    text-align: center;
    padding: 48px;
    background: #fff;
    border-radius: 20px;
}

.flow-message p {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 2;
    color: #1d1d1f;
}

.flow-message strong {
    color: #F5A623;
}


/* =====================================
   Support Section - Timeline Style
===================================== */
.support-section {
    padding: 160px 0;
    background: #fff;
    position: relative;
}

.support-header {
    text-align: center;
    margin-bottom: 100px;
}

.support-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.support-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

/* Timeline Layout */
.support-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 100px;
}

.support-timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #F5A623 0%, rgba(245, 166, 35, 0.1) 100%);
}

.support-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.support-step:last-child {
    margin-bottom: 0;
}

.support-step-marker {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid #F5A623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5A623;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.support-step:hover .support-step-marker {
    background: #F5A623;
    color: #fff;
    transform: scale(1.1);
}

.support-step-content {
    flex: 1;
    padding-top: 8px;
}

.support-step-num {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #F5A623;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.support-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.support-step-desc {
    font-size: 15px;
    line-height: 2;
    color: #86868b;
}

/* Conclusion */
.support-conclusion {
    text-align: center;
}

.support-conclusion-inner {
    display: inline-block;
    padding: 48px 80px;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
    border-radius: 20px;
}

.support-conclusion-text {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #fff;
    line-height: 1.8;
}

.support-conclusion-highlight {
    color: #F5A623;
    background: linear-gradient(transparent 60%, rgba(245, 166, 35, 0.3) 60%);
    padding: 0 4px;
}


/* =====================================
   FAQ
===================================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
    list-style: none;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 24px;
    font-weight: 300;
    color: #86868b;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: #F5A623;
}

.faq-q {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #fef5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #F5A623;
}

.faq-answer {
    padding: 0 0 28px 56px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 2;
    color: #86868b;
}

.faq-answer strong {
    color: #1d1d1f;
    font-weight: 600;
}


/* =====================================
   CTA Section
===================================== */
.cta-section {
    padding: 120px 0;
    background: #fff;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-eyebrow {
    font-size: 15px;
    color: #86868b;
    margin-bottom: 16px;
}

.cta-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.cta-message {
    max-width: 600px;
    margin: 0 auto;
}

.cta-message p {
    font-size: 17px;
    line-height: 2;
    color: #86868b;
}

.cta-message .highlight {
    display: block;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 16px;
}

.cta-message .highlight em {
    font-style: normal;
    color: #F5A623;
}

.cta-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.cta-visual {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.cta-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: #86868b;
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
}

.cta-action {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.cta-action:first-child {
    border-top: 1px solid #e5e5e5;
}

.cta-action:hover {
    padding-left: 16px;
    background: #fafafa;
    margin: 0 -16px;
    padding-right: 16px;
}

.cta-action-icon {
    font-size: 28px;
    width: 48px;
    text-align: center;
}

.cta-action-content {
    flex: 1;
}

.cta-action-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 4px;
}

.cta-action-sub {
    font-size: 13px;
    color: #86868b;
}


/* =====================================
   About - Unified Storytelling Design
===================================== */
.about-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: url('../lp/about-bg.jpg') center top / 100% auto no-repeat fixed;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 249, 247, 0.88);
    z-index: 0;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 100px;
}

.about-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.25em;
    margin-bottom: 24px;
}

.about-title {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Story Flow */
.about-story {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-story-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
}

.about-story-block:first-child {
    padding-top: 0;
}

.about-story-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-story-num {
    font-size: 13px;
    font-weight: 700;
    color: rgba(0,0,0,0.25);
    letter-spacing: 0.1em;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    padding-top: 6px;
}

.about-story-content {
    flex: 1;
}

.about-story-lead {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.about-story-text {
    font-size: clamp(17px, 2vw, 20px);
    color: #1d1d1f;
    line-height: 2.2;
    letter-spacing: 0.01em;
}

.about-story-text strong {
    color: #1d1d1f;
    font-weight: 600;
}

.about-story-text em {
    font-style: normal;
    color: #F5A623;
    font-weight: 700;
}

/* Highlight Block */
.about-story-block--highlight {
    background: rgba(0,0,0,0.03);
    margin: 0 -48px;
    padding: 60px 48px;
    border-radius: 0;
    border-bottom: none;
}

.about-story-block--highlight + .about-story-block {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.about-story-text--large {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.9;
    text-align: center;
}

.about-story-block--highlight .about-story-num {
    color: #F5A623;
}

/* Stats Block */
.about-story-block--stats {
    padding: 60px 0;
}

.about-stats-row {
    display: flex;
    gap: 40px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-stat-num {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.02em;
}

.about-stat-unit {
    font-size: 20px;
    font-weight: 600;
    color: #F5A623;
    margin-left: 2px;
}

.about-stat-label {
    font-size: 13px;
    color: rgba(0,0,0,0.5);
}

.about-stat--full {
    flex-basis: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.about-stat--full::before {
    content: '•';
    color: #F5A623;
    font-size: 20px;
}

.about-stat-text {
    font-size: 15px;
    color: rgba(0,0,0,0.7);
}

/* Badge Block */
.about-story-block--badge .about-story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.15) 0%, rgba(245, 166, 35, 0.05) 100%);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 8px;
    align-self: flex-start;
}

.about-badge-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.about-badge-status {
    font-size: 12px;
    font-weight: 700;
    color: #F5A623;
    padding: 4px 10px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 4px;
}

.jstartup-logo {
    display: block;
    max-width: 200px;
    height: auto;
    margin-top: 20px;
}

/* Vision Block */
.about-story-block--vision {
    padding: 80px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 32px;
}

.about-vision-main {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 20px 0 32px;
}

/* Visual */
.about-visual {
    margin-top: 100px;
    border-radius: 20px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}


/* =====================================
   Final CTA
===================================== */
.final-cta {
    padding: 160px 0;
    position: relative;
    text-align: center;
    background: #fff;
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.final-cta-lead {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 2.2;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 48px;
}


/* =====================================
   Footer
===================================== */
.footer {
    padding: 60px 0 40px;
    background: #faf9f7;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 24px;
}

.footer-logo {
    height: 24px;
    margin-bottom: 20px;
    filter: none;
}

.footer-company address {
    font-style: normal;
    font-size: 13px;
    line-height: 2;
    color: #6e6e73;
}

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

.footer-links a {
    font-size: 13px;
    color: #6e6e73;
}

.footer-links a:hover {
    color: #1d1d1f;
    opacity: 1;
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: #86868b;
}


/* =====================================
   Fixed CTA Bar
===================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 12px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.fixed-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fixed-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
}

.fixed-cta-btn--primary {
    background: #F5A623;
    color: #fff;
}

.fixed-cta-btn--primary:hover {
    background: #E59400;
}

.fixed-cta-btn--secondary {
    background: #1d1d1f;
    color: #fff;
}

.fixed-cta-btn--secondary:hover {
    background: #333;
}

.fixed-cta-tel {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .fixed-cta {
        padding: 10px 12px;
    }

    .fixed-cta-inner {
        gap: 8px;
    }

    .fixed-cta-btn {
        padding: 12px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .fixed-cta-btn svg {
        width: 16px;
        height: 16px;
    }

    .fixed-cta-tel {
        font-size: 12px;
    }
}


/* =====================================
   Modal
===================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal.is-open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1f;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 40px 40px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.modal-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 14px;
    color: #86868b;
    line-height: 1.8;
}

/* Staff Profile in Modal */
.modal-staff {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: #f8f8f8;
    border-radius: 12px;
    margin: 0 32px 24px;
}

.modal-staff-photo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.modal-staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-staff-info {
    flex: 1;
}

.modal-staff-greeting {
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.6;
    margin-bottom: 8px;
}

.modal-staff-name {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.modal-staff-role {
    font-size: 12px;
    color: #86868b;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

#timerex_calendar {
    min-height: 400px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 32px 24px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-staff {
        margin: 0 16px 20px;
        padding: 20px;
        gap: 16px;
    }

    .modal-staff-photo {
        width: 56px;
        height: 56px;
    }

    .modal-staff-greeting {
        font-size: 13px;
    }

    .modal-staff-name {
        font-size: 16px;
    }

    .modal-iframe {
        height: 400px;
    }
}


/* =====================================
   AI Stack Trigger Button
===================================== */
.ai-stack-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0;
    background: none;
    border: none;
    font-size: 15px;
    color: #6e6e73;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ai-stack-trigger::after {
    content: '→';
    transition: transform 0.3s ease;
}

.ai-stack-trigger:hover {
    color: #F5A623;
}

.ai-stack-trigger:hover::after {
    transform: translateX(4px);
}


/* =====================================
   AI Stack Modal Content
===================================== */
.modal-container--wide {
    max-width: 1000px;
}

.ai-stack-body {
    padding: 0 !important;
}

.ai-stack-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ai-stack-explanation {
    padding: 40px;
    background: #fff;
}

.ai-stack-subtitle {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 16px;
}

.ai-stack-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.ai-stack-method {
    padding: 24px;
    background: #f8f8f8;
    border-left: 3px solid #F5A623;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.ai-stack-method-title {
    font-size: 15px;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 12px;
}

.ai-stack-method-desc {
    font-size: 14px;
    color: #1d1d1f;
    line-height: 1.8;
}

.ai-stack-conclusion {
    padding: 24px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0.02) 100%);
    border-radius: 8px;
    margin-top: 24px;
}

.ai-stack-conclusion p {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.8;
}

.ai-stack-tech {
    padding: 40px;
    background: #faf9f7;
    border-left: 1px solid rgba(0,0,0,0.06);
}

.ai-stack-tech-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ai-stack-tech-category {
    margin-bottom: 28px;
}

.ai-stack-tech-category:last-child {
    margin-bottom: 0;
}

.ai-stack-tech-label {
    font-size: 13px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.ai-stack-tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-stack-tech-list li {
    font-size: 13px;
    color: #6e6e73;
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.ai-stack-tech-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #F5A623;
}

/* AI Stack Modal Responsive */
@media (max-width: 768px) {
    .modal-container--wide {
        max-width: 95%;
    }

    .ai-stack-content {
        grid-template-columns: 1fr;
    }

    .ai-stack-explanation {
        padding: 24px;
    }

    .ai-stack-tech {
        padding: 24px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .ai-stack-heading {
        font-size: 16px;
    }

    .ai-stack-method {
        padding: 20px;
    }
}


/* =====================================
   Responsive
===================================== */
@media (max-width: 1024px) {
    /* Solution responsive */
    .solution-section {
        padding: 100px 0 80px;
    }

    .solution-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
    }

    .solution-text {
        grid-column: 1;
        grid-row: 1;
        padding: 0 40px 48px;
        justify-content: flex-start;
    }

    .solution-image {
        grid-column: 1;
        grid-row: 2;
        min-height: 320px;
    }

    .solution-image img {
        position: relative;
    }

    .solution-bottom {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
        padding: 48px 40px 0;
    }

    .solution-catch {
        background: none;
        padding: 0;
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Bento Grid Responsive - Tablet */
    .features-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 16px;
    }

    .feature-item--large {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        padding: 36px 32px;
    }

    .feature-item--large .feature-visual svg {
        height: 80px;
    }

    .feature-item--wide {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .feature-item {
        padding: 32px 28px;
    }

    .feature-num {
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .flow-steps {
        flex-wrap: wrap;
    }

    .flow-step {
        flex: 0 0 calc(50% - 10px);
    }

    .flow-step::after {
        display: none;
    }

    /* Shelf Showcase Responsive - Tablet */
    .shelf-header-area {
        padding: 100px 0 60px;
    }

    .shelf-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .shelf-showcase-featured {
        aspect-ratio: 3 / 4;
    }

    .shelf-showcase-content {
        padding: 20px 24px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }

    .shelf-showcase-item .shelf-showcase-content {
        padding: 16px 20px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .shelf-bottom {
        padding: 48px 0 80px;
    }

    .shelf-note {
        padding: 20px 28px;
    }

    /* Support Section Responsive - Tablet */
    .support-section {
        padding: 120px 0;
    }

    .support-header {
        margin-bottom: 80px;
    }

    .support-timeline {
        margin-bottom: 80px;
    }

    .support-step {
        gap: 32px;
        margin-bottom: 48px;
    }

    .support-step-marker {
        width: 56px;
        height: 56px;
    }

    .support-timeline-line {
        left: 28px;
    }

    .support-conclusion-inner {
        padding: 40px 60px;
    }

    /* About Section Responsive - Tablet */
    .about-hero-inner {
        gap: 60px;
    }

    .about-headline {
        font-size: 60px;
    }

    .about-insight-inner {
        gap: 48px;
    }

    .about-philosophy-grid {
        gap: 60px;
    }

    .about-stats-grid {
        gap: 20px;
    }

    .about-stat-num {
        font-size: 52px;
    }

    .cta-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cta-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    /* Hero New - Tablet */
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 40px 60px;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        order: 1;
    }

    .hero-visual {
        order: 2;
        justify-content: center;
    }

    .hero-visual img {
        max-height: 50vh;
    }

    .hero-new .hero-cta {
        align-items: center;
    }

    .hero-product-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-auto-rows: 35px;
    }
}

@media (max-width: 768px) {
    /* Hero New - Mobile */
    .hero-new {
        min-height: auto;
    }

    .hero-content {
        padding: 80px 24px 40px;
        gap: 32px;
    }

    .hero-product-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 30px;
    }

    .hero-product-grid img {
        animation: gridFadeInMobile 0.6s ease-out forwards;
    }

    @keyframes gridFadeInMobile {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 0.25;
            transform: scale(1);
        }
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.85) 100%
        );
    }

    .hero-visual img {
        max-height: 40vh;
    }

    .hero-new .hero-scroll {
        display: none;
    }

    .section {
        padding: 100px 0;
    }

    .section--tight {
        padding: 80px 0;
    }

    .gnav {
        display: none;
    }

    .header-inner {
        height: 48px;
    }

    .logo img {
        height: 20px;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Problem Section Responsive - Mobile */
    .problem-section {
        padding: 100px 0;
    }

    .problem-container {
        padding: 0 24px;
    }

    .problem-header {
        margin-bottom: 48px;
    }

    .problem-title {
        font-size: 26px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 56px;
    }

    .problem-card {
        padding: 28px 24px 24px;
    }

    .problem-card-quote {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .problem-card-text {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .problem-card-context {
        font-size: 11px;
        padding-top: 12px;
    }

    .problem-conclusion {
        margin-bottom: 48px;
    }

    .problem-stuck {
        font-size: 20px;
    }

    .problem-feeling {
        font-size: 14px;
    }

    .problem-solution {
        padding: 56px 0 20px;
    }

    .problem-solution-text {
        font-size: 20px;
    }

    .problem-solution-text .text-bg {
        padding: 4px 12px;
    }

    /* Solution 768px */
    .solution-section {
        padding: 80px 0 60px;
    }

    .solution-text {
        padding: 0 24px 40px;
    }

    .solution-tagline {
        margin-bottom: 24px;
    }

    .solution-headline {
        margin-bottom: 28px;
    }

    .solution-headline .line1,
    .solution-headline .line2 {
        font-size: 26px;
    }

    .solution-headline .line2 {
        padding-left: 0;
    }

    .solution-image {
        min-height: 240px;
    }

    .solution-bottom {
        padding: 36px 24px 0;
    }

    .solution-catch {
        font-size: 20px;
    }

    .flow-step {
        flex: 0 0 100%;
    }

    .flow-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .flow-message {
        padding: 32px 24px;
    }

    .feature-card {
        padding: 36px 28px;
    }

    /* Bento Grid Responsive - Mobile */
    .features-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        max-width: 440px;
        margin: 0 auto;
    }

    .feature-item--large {
        grid-column: 1;
        grid-row: auto;
        min-height: auto;
        padding: 40px 32px;
    }

    .feature-item--large .feature-content {
        margin-bottom: 24px;
    }

    .feature-item--large .feature-visual {
        margin-top: 16px;
    }

    .feature-item--wide {
        grid-column: 1;
        grid-row: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 32px 28px;
    }

    .feature-badge {
        margin-left: 0;
        margin-top: 8px;
    }

    .feature-item {
        padding: 28px 24px;
    }

    .feature-num {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .feature-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .ai-hero {
        margin: 0 -24px 48px;
        width: calc(100% + 48px);
    }

    .ai-hero-image {
        height: 360px;
    }

    .ai-hero-overlay {
        padding: 40px 24px;
    }

    .ai-hero-overlay .section-title {
        font-size: 28px;
    }

    .flow-bg-image {
        display: none;
    }

    /* Shelf Showcase Responsive - Mobile */
    .shelf-header-area {
        padding: 80px 0 48px;
    }

    .shelf-headline-main {
        font-size: 36px;
    }

    .shelf-showcase {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 16px;
    }

    .shelf-showcase-featured {
        aspect-ratio: 4 / 3;
    }

    .shelf-showcase-side {
        flex-direction: row;
        gap: 12px;
    }

    .shelf-showcase-item {
        min-height: 180px;
    }

    .shelf-showcase-content {
        padding: 16px 20px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }

    .shelf-showcase-title {
        font-size: 20px;
    }

    .shelf-showcase-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .shelf-showcase-item .shelf-showcase-content {
        padding: 12px 16px;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .shelf-showcase-item .shelf-showcase-title {
        font-size: 15px;
    }

    .shelf-showcase-item .shelf-tag {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .shelf-bottom {
        padding: 40px 0 60px;
    }

    .shelf-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 24px;
    }

    /* Support Section Responsive - Mobile */
    .support-section {
        padding: 100px 0;
    }

    .support-header {
        margin-bottom: 60px;
    }

    .support-headline {
        font-size: 28px;
    }

    .support-timeline {
        margin-bottom: 60px;
    }

    .support-timeline-line {
        left: 24px;
    }

    .support-step {
        gap: 24px;
        margin-bottom: 40px;
    }

    .support-step-marker {
        width: 48px;
        height: 48px;
    }

    .support-step-marker svg {
        width: 20px;
        height: 20px;
    }

    .support-step-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .support-step-desc {
        font-size: 14px;
    }

    .support-conclusion-inner {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .support-conclusion-text {
        font-size: 18px;
    }

    .faq-item summary {
        padding: 20px 0;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 0 20px 56px;
    }

    .cta-action:hover {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }

    /* About Section Responsive - Mobile */
    .about-hero {
        padding: 100px 0 80px;
    }

    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 24px;
    }

    .about-headline {
        font-size: 48px;
    }

    .about-hero-visual::before {
        top: -12px;
        right: -12px;
    }

    .about-hero-visual img {
        height: 280px;
    }

    .about-insight {
        padding: 80px 0;
    }

    .about-insight-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
    }

    .about-insight-label {
        flex-direction: row;
        align-items: center;
    }

    /* About Section Responsive - Mobile */
    .about-section {
        padding: 100px 0;
    }

    .about-container {
        padding: 0 24px;
    }

    .about-header {
        margin-bottom: 60px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-story-block {
        grid-template-columns: 40px 1fr;
        gap: 20px;
        padding: 36px 0;
    }

    .about-story-num {
        font-size: 11px;
    }

    .about-story-text {
        font-size: 16px;
        line-height: 2;
    }

    .about-story-text--large {
        font-size: 20px;
    }

    .about-story-block--highlight {
        margin: 0 -24px;
        padding: 48px 24px;
    }

    .about-stats-row {
        gap: 24px;
    }

    .about-stat-num {
        font-size: 36px;
    }

    .about-stat-unit {
        font-size: 16px;
    }

    .about-vision-main {
        font-size: 24px;
    }

    .about-visual {
        margin-top: 60px;
    }

    .about-visual img {
        height: 280px;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .final-cta {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 0;
    }

    .btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .problem-title {
        font-size: 22px;
    }

    .problem-stuck {
        font-size: 18px;
    }

    .problem-solution-text {
        font-size: 18px;
    }

    .problem-solution-text .text-bg {
        padding: 4px 10px;
    }

    .faq-q {
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding-left: 52px;
    }

    .about-headline {
        font-size: 36px;
    }

    .about-insight-quote {
        font-size: 20px;
    }

    .about-philosophy-main {
        font-size: 24px;
    }

    .about-vision-headline {
        font-size: 22px;
    }
}


/* =====================================
   Pricing Section
===================================== */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #F5A623;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.pricing-card {
    flex: 1;
    max-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-label {
    font-size: 15px;
    font-weight: 600;
    color: #86868b;
    margin-bottom: 16px;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-zero {
    font-size: 64px;
    font-weight: 700;
    color: #F5A623;
    line-height: 1;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-unit {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
}

.pricing-note {
    text-align: center;
}

.pricing-note p {
    display: inline-block;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: #1d1d1f;
    padding: 20px 40px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(245, 166, 35, 0.3);
}

.pricing-note .accent {
    color: #F5A623;
    font-weight: 700;
}

/* Pricing Responsive - Tablet */
@media (max-width: 768px) {
    .pricing-section {
        padding: 100px 0;
    }

    .pricing-header {
        margin-bottom: 48px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 40px;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
        padding: 32px 24px;
    }

    .pricing-zero {
        font-size: 52px;
    }

    .pricing-unit {
        font-size: 20px;
    }

    .pricing-note p {
        font-size: 16px;
        padding: 16px 24px;
    }
}

/* Pricing Responsive - Mobile */
@media (max-width: 480px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card-label {
        font-size: 14px;
    }

    .pricing-zero {
        font-size: 44px;
    }

    .pricing-unit {
        font-size: 18px;
    }

    .pricing-note p {
        font-size: 15px;
        padding: 14px 20px;
    }
}
