:root {
    /* Premium Light Tech & Hope */
    --bg-light: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.75);
    --text-primary: #0F172A; /* Deep Navy/Charcoal */
    --text-muted: #64748B;
    --text-dark: #94A3B8;
    
    --cyan: #0EA5E9; /* Sky Blue */
    --blue: #2563EB; /* Cobalt Blue */
    --magenta: #F59E0B; /* Soft Gold (Winning/Hope) */
    
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 16px 40px rgba(14, 165, 233, 0.08); /* Air Shadow */
    
    --font-sans: 'Pretendard', sans-serif;
    --font-num: 'Space Grotesk', 'Pretendard', sans-serif;
    
    /* V3 Overshoot */
    --ease-overshoot: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; background: var(--bg-light); color: var(--text-primary); }
body { 
    font-family: var(--font-sans); 
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    word-break: keep-all; 
    letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }

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

/* Utility Classes */
.text-cyan { color: var(--cyan); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--text-muted); }
.text-glow { text-shadow: 0 0 10px rgba(14, 165, 233, 0.3); }
.num-font { font-family: var(--font-num); letter-spacing: -0.02em; }
.btn-cyan { display: inline-block; background: var(--cyan); border: none; color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: 0.3s; box-shadow: 0 4px 12px rgba(14,165,233,0.3); }
.btn-cyan:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(14,165,233,0.4); background: #0284C7; }

/* Light Mesh Background */
.quant-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; background: var(--bg-light); }
.grid-overlay { position: absolute; width: 100%; height: 100%; background-image: linear-gradient(rgba(14,165,233,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,233,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; mix-blend-mode: multiply; animation: float 15s ease-in-out infinite alternate; }
.orb-1 { width: 600px; height: 600px; background: rgba(14,165,233,0.3); top: -100px; left: -100px; }
.orb-2 { width: 800px; height: 800px; background: rgba(245,158,11,0.2); bottom: -200px; right: -200px; animation-delay: -5s; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 50px) scale(1.1); } }

/* Terminal Nav -> Light Glass Nav */
.terminal-nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 100; transition: transform 0.4s ease, opacity 0.4s ease; transform: translateY(0); opacity: 1; }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto; }
.terminal-nav.fade-up { transform: translateY(-20px); opacity: 0; }
.terminal-nav.is-visible { transform: translateY(0); opacity: 1; }
.t-brand { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; color: var(--text-primary); letter-spacing: 0.05em; font-weight: 700; }
.t-brand i { font-size: 1.5rem; color: var(--cyan); }
.t-brand strong { font-family: var(--font-num); font-weight: 800; }
.t-status { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; letter-spacing: 0.02em; color: var(--text-dark); font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
.t-menu { display: flex; gap: 32px; align-items: center; font-size: 1rem; font-weight: 600; }
.t-menu a:not(.btn-cyan) { color: var(--text-dark); transition: color 0.2s; }
.t-menu a:not(.btn-cyan):hover { color: var(--cyan); }

/* Hero Core */
.hero-core { padding: 100px 0; display: flex; flex-direction: column; align-items: center; min-height: 70vh; justify-content: center; position: relative; }
.ticker-wrap { position: absolute; top: 0; left: 50%; width: 100vw; transform: translateX(-50%); background: rgba(14, 165, 233, 0.05); border-bottom: 1px solid rgba(14, 165, 233, 0.1); overflow: hidden; white-space: nowrap; padding: 6px 0; }
.ticker { display: inline-block; font-family: var(--font-num); font-size: 0.85rem; font-weight: 600; color: var(--blue); animation: ticker-scroll 35s linear infinite; }
@keyframes ticker-scroll { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

.hero-content { text-align: center; max-width: 1000px; margin: 40px auto 0; padding: 0 24px; }
.badge-terminal { display: inline-flex; align-items: center; gap: 8px; background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.2); padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; color: var(--blue); letter-spacing: 0.02em; margin-bottom: 24px; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.25; margin-bottom: 24px; letter-spacing: -0.04em; }
.hero-content h1 strong { font-weight: 800; background: linear-gradient(90deg, var(--blue), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.2rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 48px; font-weight: 400; }

.search-terminal { background: rgba(255, 255, 255, 0.85); border: 1px solid var(--glass-border); border-radius: 16px; width: 100%; max-width: 600px; margin: 0 auto; overflow: hidden; box-shadow: var(--glass-shadow); text-align: left; backdrop-filter: blur(20px); }
.term-header { background: rgba(248, 250, 252, 0.9); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.ctrl-btn { width: 12px; height: 12px; border-radius: 50%; box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); }
.ctrl-btn.red { background: #FF5F56; }
.ctrl-btn.yellow { background: #FFBD2E; }
.ctrl-btn.green { background: #27C93F; }
.term-title { font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; color: var(--text-dark); margin-left: auto; margin-right: auto; }
.term-body { padding: 24px; }
.input-line { display: flex; align-items: center; gap: 12px; }
.prompt { font-family: var(--font-num); color: var(--blue); font-weight: 700; }
.input-line input { flex: 1; background: transparent; border: none; outline: none; font-size: 1.05rem; width: 100%; color: var(--text-primary); font-family: var(--font-sans); font-weight: 500; }
.input-line input::placeholder { color: var(--text-muted); font-weight: 400; }
.btn-execute { background: var(--text-primary); color: #fff; border: none; padding: 10px 16px; font-weight: 700; cursor: pointer; border-radius: 8px; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-execute:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3); }

/* Live Stats */
.live-stats { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 0 auto 80px; position: relative; z-index: 10; max-width: 1200px; padding: 0 24px; }
.stat-box { flex: 1; background: var(--bg-card); border: 1px solid var(--glass-border); padding: 28px; border-radius: 20px; min-width: 220px; display: flex; flex-direction: column; position: relative; backdrop-filter: blur(20px); transition: transform 0.4s var(--ease-overshoot), box-shadow 0.4s; box-shadow: var(--glass-shadow); }
.stat-box:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.3); }
.s-label { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; margin-bottom: 8px; }
.s-value { font-size: 2.5rem; font-weight: 700; color: var(--text-primary); }
.stat-box i { position: absolute; right: 24px; top: 24px; font-size: 2rem; color: var(--cyan); opacity: 0.2; }

/* Intelligence Grid */
.intel-grid { margin: 0 auto 100px; padding: 0 24px; max-width: 1200px; }
.grid-header { margin-bottom: 50px; text-align: center; }
.grid-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.grid-header p { color: var(--text-dark); font-size: 1.1rem; font-weight: 500; }

.bento-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bento-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; padding: 36px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; backdrop-filter: blur(20px); transition: transform 0.4s var(--ease-overshoot), box-shadow 0.4s, border-color 0.4s; box-shadow: var(--glass-shadow); }
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15); border-color: rgba(14, 165, 233, 0.3); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.bento-card h3 { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.metric-tag { font-size: 0.8rem; font-weight: 700; background: rgba(14, 165, 233, 0.1); color: var(--blue); padding: 6px 12px; border-radius: 20px; border: 1px solid rgba(14, 165, 233, 0.2); }
.c-desc { color: var(--text-dark); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; font-weight: 400; }

/* ML Visual */
.card-ml { grid-column: span 3; }
.ml-visual { height: 160px; position: relative; display: flex; align-items: center; justify-content: center; background: rgba(14, 165, 233, 0.04); border-radius: 20px; border: 1px solid rgba(14, 165, 233, 0.1); overflow: hidden; box-shadow: inset 0 4px 20px rgba(0,0,0,0.02); }
.scan-line { position: absolute; left: 0; top: 0; height: 100%; width: 120px; background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.4), transparent); animation: scan-x 3s infinite cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 20px rgba(14, 165, 233, 0.2); }
@keyframes scan-x { 0% { left: -20%; } 100% { left: 120%; } }
.hex-numbers { display: flex; gap: 20px; position: relative; z-index: 2; flex-wrap: wrap; justify-content: center; }
.h-num { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; font-family: var(--font-num); font-weight: 800; font-size: 1.5rem; color: var(--text-primary); background: #fff; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 0 0 2px rgba(14, 165, 233, 0.1); position: relative; transition: transform 0.3s; }
.h-num:nth-child(3) { box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 0 0 2px var(--cyan); }
.h-num:nth-child(5) { box-shadow: 0 8px 20px rgba(0,0,0,0.06), inset 0 0 0 2px var(--blue); color: var(--blue); }
.h-num:last-child { background: linear-gradient(135deg, #F59E0B, #D97706); color: #fff; box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); border: none; }

/* Heatmap */
.card-heat { grid-column: span 2; }
.heat-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 100px; gap: 8px; margin-top: auto; }
.h-bar { flex: 1; background: rgba(0,0,0,0.03); border-radius: 4px; height: 100%; display: flex; align-items: flex-end; overflow: hidden; }
.h-bar .fill { width: 100%; background: #CBD5E1; transition: height 1s var(--ease-overshoot); border-radius: 4px; }
.h-bar .fill.cyan { background: var(--cyan); box-shadow: 0 0 15px rgba(14,165,233,0.3); }
.h-bar .fill.blue { background: var(--blue); box-shadow: 0 0 15px rgba(37,99,235,0.3); }

/* Donut */
.card-dist { grid-column: span 1; text-align: center; }
.dist-donut { position: relative; width: 120px; height: 120px; margin: 0 auto; border-radius: 50%; background: conic-gradient(var(--cyan) 0% 50%, var(--magenta) 50% 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.donut-ring { position: absolute; width: 90px; height: 90px; background: var(--bg-card); border-radius: 50%; backdrop-filter: blur(10px); }
.d-text { position: relative; z-index: 2; font-size: 0.85rem; color: var(--text-dark); line-height: 1.4; font-weight: 600; }
.d-text strong { color: var(--text-primary); font-size: 1.5rem; font-weight: 800; }

/* SEO SECTION 1: App Teaser */
.app-teaser { max-width: 1200px; margin: 0 auto 100px; padding: 0 24px; }
.app-teaser-inner { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 32px; display: flex; align-items: center; justify-content: space-between; padding: 80px 60px; overflow: hidden; position: relative; backdrop-filter: blur(20px); box-shadow: var(--glass-shadow); }
.teaser-content { flex: 1; z-index: 10; max-width: 520px; }
.teaser-content h2 { font-size: 2.5rem; font-weight: 300; line-height: 1.35; margin-bottom: 24px; letter-spacing: -0.03em; }
.teaser-content h2 strong { color: var(--blue); font-weight: 800; }
.teaser-content p { color: var(--text-dark); font-size: 1.1rem; margin-bottom: 40px; font-weight: 400; }
.dl-buttons { display: flex; gap: 16px; }
.btn-store { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; padding: 14px 24px; font-weight: 700; font-size: 1rem; color: var(--text-primary); transition: transform 0.4s var(--ease-overshoot), box-shadow 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.btn-store i { font-size: 1.5rem; color: var(--blue); }
.btn-store:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(37,99,235,0.15); border-color: rgba(37,99,235,0.2); color: var(--blue); }

.teaser-visual { flex-shrink: 0; perspective: 800px; display: flex; justify-content: center; width: 100%; }
.mockup-frame { width: 280px; height: 550px; border: 12px solid #fff; border-radius: 40px; background: #F8FAFC; overflow: hidden; transform: rotateY(-15deg) rotateX(5deg); position: relative; box-shadow: -30px 30px 60px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(0,0,0,0.05); transition: transform 0.6s var(--ease-overshoot); }
.mockup-frame:hover { transform: rotateY(0) rotateX(0) translateY(-10px); }
.mockup-screen { padding: 24px; color: var(--text-primary); display: flex; flex-direction: column; height: 100%; position: relative; background: #F8FAFC; }
.m-nav { font-size: 0.85rem; font-weight: 800; color: var(--blue); border-bottom: 1px dashed rgba(0,0,0,0.1); padding-bottom: 12px; margin-bottom: 24px; }
.m-chart { height: 120px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.m-balls { display: flex; gap: 12px; justify-content: center; margin-bottom: auto; }
.m-ball { width: 44px; height: 44px; border-radius: 22px; background: var(--cyan); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; color: #fff; box-shadow: 0 4px 10px rgba(14,165,233,0.3); }
.m-ball:last-child { background: var(--magenta); box-shadow: 0 4px 10px rgba(245,158,11,0.3); }
.m-alert { position: absolute; bottom: 20px; left: 20px; right: 20px; background: #fff; border: 1px solid rgba(37,99,235,0.2); padding: 12px; border-radius: 12px; font-size: 0.85rem; font-weight: 700; color: var(--blue); text-align: center; box-shadow: 0 10px 20px rgba(37,99,235,0.1); }

/* SEO SECTION 2: FAQ Block (New) */
.seo-faq-section { max-width: 1200px; margin: 0 auto 100px; padding: 0 24px; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 12px; }
.faq-header p { color: var(--text-dark); font-size: 1.05rem; }
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.faq-item { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); }
.faq-item h3 { font-size: 1.15rem; font-weight: 800; color: var(--blue); margin-bottom: 12px; line-height: 1.4; display: flex; gap: 8px; }
.faq-item h3::before { content: 'Q.'; color: var(--cyan); }
.faq-item p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* SEO SECTION 3: Text / FAQ -> SEO Grid V3 */
.seo-text-section { border-top: 1px solid rgba(0,0,0,0.05); padding: 100px 0; background: rgba(255,255,255,0.5); }
.seo-text-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.seo-header { margin-bottom: 60px; text-align: center; }
.seo-header i { font-size: 3rem; margin-bottom: 20px; display: inline-block; color: var(--blue); }
.seo-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.seo-header p { color: var(--text-dark); font-size: 1.1rem; }

.seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.seo-column { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 20px; padding: 32px; box-shadow: var(--glass-shadow); backdrop-filter: blur(20px); transition: transform 0.4s var(--ease-overshoot), box-shadow 0.4s; }
.seo-column:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1); border-color: rgba(14, 165, 233, 0.2); }

.seo-column h4 { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; color: var(--blue); margin-bottom: 24px; font-weight: 800; padding-bottom: 16px; border-bottom: 1px dashed rgba(14, 165, 233, 0.2); }
.seo-column h4 i { font-size: 1.4rem; color: var(--cyan); }

.seo-column a { display: flex; align-items: center; gap: 8px; color: var(--text-primary); margin-bottom: 12px; font-size: 0.95rem; transition: 0.3s; position: relative; font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.seo-column a::before { content: '\2022'; color: var(--cyan); font-weight: 800; font-size: 1.2rem; line-height: 1; transition: 0.3s; }
.seo-column a:hover { background: rgba(14, 165, 233, 0.05); color: var(--blue); transform: translateX(4px); }
.seo-column a:hover::before { color: var(--blue); }

/* Footer */
.terminal-footer { border-top: 1px solid rgba(0,0,0,0.05); padding: 80px 24px; background: #fff; }
.f-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.f-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--text-primary); }
.f-brand i { color: var(--blue); font-size: 1.6rem; }
.f-brand span { color: var(--text-dark); font-size: 0.9rem; letter-spacing: 0.05em; font-weight: 600; }
.f-meta p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.f-links { display: flex; gap: 24px; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-top: 10px; }
.f-links a:hover { color: var(--blue); }
.f-copy { font-size: 0.9rem; margin-top: 20px; color: var(--text-muted); }

/* Mobile Menu Button & Overlay */
.mobile-menu-btn { display: none; background: transparent; border: none; font-size: 2rem; color: var(--text-primary); cursor: pointer; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255,255,255,0.95); backdrop-filter: blur(30px); z-index: 999; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: 0.4s var(--ease-overshoot); transform: translateY(-100%); }
.mobile-overlay.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-overlay-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.mobile-overlay-header .brand { font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }
.mobile-close { font-size: 2rem; color: var(--text-primary); cursor: pointer; }
.overlay-links { display: flex; flex-direction: column; gap: 24px; padding: 40px 24px; }
.overlay-links a { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); transition: 0.3s; }
.overlay-links a:hover { color: var(--blue); padding-left: 10px; }

/* Responsive */
@media (max-width: 900px) {
    .terminal-nav { padding: 16px 24px; }
    .t-status, .t-menu { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-core { padding: 60px 24px; }
    
    /* V3 Search Box Rescue */
    .search-terminal { display: block; margin-top: 40px; border-radius: 12px; }
    .term-body { padding: 16px; }
    .input-line { flex-direction: column; align-items: stretch; gap: 12px; }
    .prompt { display: none; }
    .input-line input { height: 60px; background: rgba(0,0,0,0.03); border-radius: 12px; padding: 0 16px; font-size: 1.05rem; -webkit-appearance: none; appearance: none; }
    .btn-execute { height: 60px; border-radius: 12px; font-size: 1.1rem; }
    
    /* V3 Mobile Swipe Matrix */
    .live-stats { flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 24px 40px; justify-content: flex-start; margin: 0 -24px -24px; -ms-overflow-style: none; scrollbar-width: none; }
    .live-stats::-webkit-scrollbar { display: none; }
    .stat-box { min-width: 80%; scroll-snap-align: center; }
    
    .bento-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 24px 40px; margin-right: -24px; margin-left: -24px; gap: 16px; -ms-overflow-style: none; scrollbar-width: none; }
    .bento-container::-webkit-scrollbar { display: none; }
    .bento-card { min-width: 85%; scroll-snap-align: center; }
    
    .app-teaser { padding: 0 24px; }
    .app-teaser-inner { flex-direction: column; padding: 40px 24px; text-align: center; border-radius: 24px; }
    .dl-buttons { flex-direction: column; width: 100%; }
    .btn-store { width: 100%; justify-content: center; }
    .teaser-visual { margin-top: 40px; }
    .mockup-frame { transform: rotate(0); }
    
    .faq-list { grid-template-columns: 1fr; }
    .seo-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    
    .f-inner { padding: 0 24px; }
    .f-links { flex-direction: column; gap: 12px; }
}

@media (max-width: 500px) {
    .seo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
    .seo-column { padding: 24px 16px; border-radius: 16px; }
    .seo-column h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; }
    .seo-column a { font-size: 0.85rem; margin-bottom: 8px; padding: 6px 8px; }
    .seo-text-section { padding: 60px 0; }
    .seo-header { margin-bottom: 40px; }
    .seo-header h2 { font-size: 1.8rem; }
    
    .bento-card { padding: 24px; }
    .stat-box { padding: 20px; }
    .mockup-frame { width: 100%; max-width: 280px; height: 500px; transform: rotateY(0) rotateX(0); }
}

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s var(--ease-overshoot); }
.fade-in { opacity: 0; transition: opacity 1s ease-out; }
.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
