:root {
    --bg-color: #ffffff;
    --text-main: #0a0a0a;
    --text-sub: #555555;
    --accent-color: #0033ff;
    --accent-hover: #0022cc;
    --border-color: #e0e0e0;
    --grid-color: rgba(0, 0, 0, 0.03);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --font-heading: 'Space Grotesk', 'Zen Kaku Gothic New', sans-serif;
    --font-body: 'Inter', 'Zen Kaku Gothic New', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.03"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 9998;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 51, 255, 0.3);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    z-index: 99;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.floating-cta.hidden {
    transform: translateY(100%);
}

.btn-floating {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.04em;
}

.logo-img {
    height: 28px;
    width: auto;
}

.logo-text {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.btn-header-outline {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-header-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-main);
}

.btn-header {
    padding: 0.6rem 1.2rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-header:hover {
    background: var(--accent-hover);
}

/* Header Navigation */
.site-header nav {
    display: none;
}

.site-header nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease;
}

.site-header nav ul li a:hover {
    color: var(--accent-color);
}

@media (min-width: 1024px) {
    .site-header nav {
        display: block;
    }
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4vw 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 51, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    animation: gradientMove 20s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(3deg); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 51, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 51, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero-glow-1 {
    top: 10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 51, 255, 0.15), rgba(99, 102, 241, 0.1));
    animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 51, 255, 0.05));
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 1px solid rgba(0, 51, 255, 0.1);
    border-radius: 4px;
}

.shape-1 {
    top: 15%;
    left: 10%;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    transform: rotate(12deg);
    animation: shapeFloat 15s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 25%;
    left: 20%;
    width: 30px;
    height: 30px;
    transform: rotate(-20deg);
    animation: shapeFloat 10s ease-in-out infinite 2s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(55deg); opacity: 0.6; }
}

/* Hero Content */
.hero-premium .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Top Badge */
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-sub);
}

/* Premium Title */
.hero-title-premium {
    font-size: clamp(3rem, 10vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    animation: titleReveal 0.8s cubic-bezier(0.2, 1, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

.title-line-1 .title-word { animation-delay: 0.1s; }
.title-line-2 .title-word { animation-delay: 0.2s; }
.title-line-3 .title-word { animation-delay: 0.3s; }

@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.title-highlight {
    position: relative;
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: linear-gradient(90deg, var(--accent-color), #6366f1);
    opacity: 0.2;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineReveal 0.6s ease-out 0.8s forwards;
}

@keyframes underlineReveal {
    to { transform: scaleX(1); }
}

/* Premium Subtitle */
.hero-subtitle-premium {
    font-size: 1.15rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
    line-height: 1.9;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 600;
}

.subtitle-small {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* Feature Pills */
.hero-pills {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pill:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 255, 0.1);
}

.pill svg {
    color: var(--success-color);
}

/* Premium CTA */
.hero-cta-premium {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.btn-cta-primary {
    position: relative;
    display: inline-flex;
    padding: 1.25rem 2.5rem;
    background: #000;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.btn-cta-primary .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.btn-cta-primary:hover .btn-bg {
    transform: translateX(0);
}

.btn-cta-primary .btn-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.btn-cta-primary svg {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
}

.cta-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-sub);
}

/* Premium Stats */
.hero-stats-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

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

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.stat-sup {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.1rem;
    vertical-align: super;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-sub);
    margin-left: 0.15rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Urgency Banner */
.hero-urgency {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.urgency-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.03));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 100px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: var(--error-color);
    border-radius: 50%;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.urgency-text {
    font-size: 0.85rem;
    color: var(--error-color);
}

.urgency-text strong {
    font-weight: 700;
}

/* Premium Scroll Indicator */
.scroll-indicator-premium {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--text-sub);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator-premium span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-sub);
    text-transform: uppercase;
}

/* Backward compatibility for old classes */
.hero-cta {
    margin-bottom: 3rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: #000;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary .arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-sub);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.stat-number sup,
.stat-number small {
    font-size: 0.5em;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-sub);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-lead {
    font-size: 1rem;
    color: var(--text-sub);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: 6rem 0;
}

.problem-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 3rem;
    text-align: center;
}

.sp-only {
    display: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    padding: 2rem;
    background: #fafafa;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    border-color: var(--accent-color);
    background: #fff;
}

.problem-icon {
    color: var(--text-sub);
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution-section {
    padding: 6rem 0;
    background: #000;
    color: #fff;
}

.solution-section .section-number {
    color: rgba(255, 255, 255, 0.5);
}

.solution-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.solution-intro h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.solution-intro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison-header {
    background: rgba(255, 255, 255, 0.1);
}

.comparison-cell {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.comparison-cell.header-cell {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-cell.label-cell {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.comparison-cell.highlight {
    background: var(--accent-color);
    color: #fff;
}

.comparison-row {
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-smooth);
}

.comparison-row.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 6rem 0;
}

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

.benefit-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--accent-color);
}

.benefit-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.7;
}

.benefit-content strong {
    color: var(--accent-color);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 6rem 0;
    background: #fafafa;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
}

.step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-sub);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 3.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    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, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   APPLY SECTION
   ============================================ */
.apply-section {
    padding: 6rem 0;
    background: #fafafa;
}

/* Urgency Banner */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning-color);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-icon {
    color: var(--warning-color);
    flex-shrink: 0;
}

.urgency-text {
    font-size: 0.95rem;
}

/* Form Container */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-sub);
    margin-bottom: 1.5rem;
}

/* Form Group */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Error States */
.error-message {
    display: block;
    font-size: 0.8rem;
    color: var(--error-color);
    margin-top: 0.35rem;
    min-height: 1.2em;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--error-color);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Checkbox */
.form-agreement {
    margin-top: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.terms-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.terms-link:hover {
    text-decoration: none;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: #000;
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    margin-top: 1.5rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-sub);
}

/* ============================================
   SUCCESS CONTAINER
   ============================================ */
.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: #fff;
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-icon svg {
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-container h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-message {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.next-steps {
    text-align: left;
    background: #f9f9f9;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
}

.next-steps h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.next-steps ol {
    padding-left: 1.25rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.download-section {
    background: #f9f9f9;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.download-section h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.download-section > p {
    color: var(--text-sub);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-download:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ============================================
   TERMS SECTION
   ============================================ */
.terms-section {
    padding: 6rem 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.terms-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.terms-intro {
    margin-bottom: 2rem;
    color: var(--text-sub);
    line-height: 1.8;
    font-size: 0.95rem;
}

.terms-article {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terms-article:last-of-type {
    border-bottom: none;
}

.terms-article h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.terms-article ol {
    padding-left: 1.5rem;
}

.terms-article ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.terms-article ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.terms-article ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.terms-article a {
    color: var(--accent-color);
    text-decoration: underline;
}

.terms-date {
    margin-top: 2rem;
    text-align: right;
    color: var(--text-sub);
    font-size: 0.85rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 6rem 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.final-cta .btn-primary {
    background: #fff;
    color: #000;
}

.final-cta .btn-primary:hover {
    background: #f5f5f5;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.footer-logo-img {
    height: 24px;
    width: auto;
}

.footer-brand p {
    color: var(--text-sub);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-sub);
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.copyright p {
    font-size: 0.8rem;
    color: var(--text-sub);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 4vw;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .btn-header-outline {
        display: none;
    }

    .header-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }

    .btn-header {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    /* Premium Hero Responsive */
    .hero-premium {
        padding: 7rem 4vw 4rem;
        min-height: auto;
    }

    .hero-glow-1,
    .hero-glow-2 {
        width: 200px;
        height: 200px;
    }

    .floating-shapes {
        display: none;
    }

    .hero-title-premium {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-subtitle-premium {
        font-size: 1rem;
    }

    .hero-pills {
        gap: 0.5rem;
    }

    .pill {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .btn-cta-primary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .hero-stats-premium {
        gap: 1rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stat-divider {
        height: 30px;
    }

    .scroll-indicator-premium {
        display: none;
    }

    /* Old hero responsive */
    .hero {
        padding: 7rem 4vw 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .sp-only {
        display: inline;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell.header-cell:first-child,
    .comparison-cell.label-cell {
        display: none;
    }

    .comparison-cell.header-cell {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .comparison-cell {
        padding: 0.75rem 1rem;
        justify-content: space-between;
    }

    .comparison-cell::before {
        content: attr(data-label);
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container,
    .terms-content,
    .success-container {
        padding: 2rem 1.5rem;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .floating-cta {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.75rem 4vw;
    }

    .logo-text {
        display: none;
    }

    .header-right {
        gap: 0.5rem;
    }

    .header-badge {
        display: none;
    }

    .btn-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .problem-card,
    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card {
        flex-direction: column;
    }

    .benefit-icon {
        margin: 0;
    }

    .download-buttons {
        gap: 0.75rem;
    }

    .btn-download {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   LINE REQUIRED SECTION (Success Screen)
   ============================================ */
.line-required-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%);
    border: 2px solid #06c755;
    border-radius: 16px;
    text-align: center;
}

.line-required-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #06c755;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #06c755;
    margin-bottom: 1rem;
}

.line-required-badge svg {
    stroke: #06c755;
    flex-shrink: 0;
}

.line-instruction {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.line-message-template {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.template-label {
    font-size: 0.75rem;
    color: var(--text-sub);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.template-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.company-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #06c755 0%, #00b341 100%);
    color: #fff;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

/* LINE Button */
.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #06c755 0%, #00b341 100%);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
}

.btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(6, 199, 85, 0.5);
    background: linear-gradient(135deg, #05b34c 0%, #009c39 100%);
}

.btn-line svg {
    flex-shrink: 0;
}

.line-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: #b91c1c;
    font-weight: 500;
}

.line-note svg {
    stroke: #b91c1c;
    flex-shrink: 0;
}

/* Next Steps */
.next-steps {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.next-steps h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 1.5rem;
    color: var(--text-sub);
}

.next-steps li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive - LINE Section */
@media (max-width: 768px) {
    .line-required-section {
        padding: 1.5rem;
    }

    .btn-line {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-line {
        animation: none;
    }
}
