/* ===== Fonts ===== */
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil1Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil2Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil3Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil4Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil5Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'TheJamsil';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/TheJamsil6ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

/* ===== Variables ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --font-sans: 'TheJamsil', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    line-height: 1.6;
    background: #fff;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.header.scrolled .logo {
    color: var(--secondary);
}

.header.scrolled .logo i {
    color: var(--primary);
}

.header.scrolled .nav-link {
    color: var(--gray-600);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

.header.scrolled .btn-ghost {
    color: var(--gray-700);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: white;
}

.btn-ghost {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-ghost {
    background: transparent;
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .btn-ghost {
    color: var(--gray-700);
}

.header.scrolled .btn-ghost:hover {
    background: var(--gray-100);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

.btn-xl {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 12px;
}

.btn-white {
    background: white;
    color: var(--gray-900);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s infinite;
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--primary), var(--primary-light));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite;
}

.hero-description {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* ===== Animations ===== */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

.hero-badge,
.hero-title,
.hero-description,
.hero-stats {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.hero-description { animation-delay: 0.6s; }
.hero-stats { animation-delay: 0.8s; }

/* Scroll Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.15s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.45s; }
.fade-in:nth-child(5) { transition-delay: 0.6s; }

.section-header.fade-in { transition-delay: 0s; }
.comparison-card.fade-in:first-of-type { transition-delay: 0.2s; }
.comparison-divider.fade-in { transition-delay: 0.35s; }
.comparison-card.fade-in:last-of-type { transition-delay: 0.5s; }

.feature-card.fade-in:nth-of-type(1) { transition-delay: 0.1s; }
.feature-card.fade-in:nth-of-type(2) { transition-delay: 0.25s; }
.feature-card.fade-in:nth-of-type(3) { transition-delay: 0.4s; }

.pricing-card.fade-in:nth-of-type(1) { transition-delay: 0.1s; }
.pricing-card.fade-in:nth-of-type(2) { transition-delay: 0.25s; }

.flow-steps.fade-in { transition-delay: 0.1s; }
.step-screens.fade-in { transition-delay: 0.3s; }

/* ===== Scroll Hint ===== */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
    z-index: 10;
}

.scroll-hint-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-hint-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

/* ===== Floating Button ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Section Common ===== */
.section {
    padding: 120px 24px;
}

.section-dark {
    background: var(--gray-900);
    color: white;
}

.section-gray {
    background: var(--gray-50);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-dark .section-description {
    color: var(--gray-400);
}

/* ===== Before & After ===== */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.comparison-card.before {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    box-shadow: none;
}

.comparison-card.after {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.comparison-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.7;
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.comparison-item i {
    font-size: 20px;
    margin-top: 2px;
}

.comparison-card.before .comparison-item i {
    color: var(--danger);
}

.comparison-card.after .comparison-item i {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-item-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.comparison-item-content span {
    font-size: 14px;
    opacity: 0.7;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-grid.two-cols {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.7;
}

.pricing-period {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.pricing-feature i {
    color: var(--success);
}

.pricing-feature.disabled {
    color: var(--gray-400);
}

.pricing-feature.disabled i {
    color: var(--gray-400);
}

.pricing-card.featured .pricing-feature i {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-feature.disabled {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured .pricing-feature.disabled i {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.featured .btn-primary {
    background: white;
    color: var(--primary);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--gray-100);
}

/* ===== Preview Section ===== */
.preview-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(60px);
    z-index: -1;
}

/* ===== Flow Steps ===== */
.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.flow-step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
}

.flow-step-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.flow-step-item.active {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.flow-step-item.active .flow-step-icon {
    transform: scale(1.1);
}

.flow-step-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.flow-step-text strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.flow-step-text span {
    font-size: 12px;
    color: var(--gray-500);
}

.flow-step-arrow {
    color: var(--gray-300);
    font-size: 16px;
}

/* ===== Step Screens ===== */
.step-screens {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 480px;
}

.step-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.step-screen.active {
    opacity: 1;
    visibility: visible;
}

.screen-mockup {
    display: flex;
    background: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    height: 480px;
}

.screen-sidebar {
    width: 180px;
    background: var(--gray-900);
    padding: 16px 12px;
    flex-shrink: 0;
}

.screen-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px;
    margin-bottom: 20px;
}

.screen-logo i {
    color: var(--primary-light);
}

.screen-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.screen-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--gray-400);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.screen-nav-item.active {
    background: var(--primary);
    color: white;
}

.screen-main {
    flex: 1;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: white;
    border-bottom: 1px solid var(--gray-200);
}

.screen-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 8px;
}

.screen-header h3 i {
    color: var(--primary);
}

.screen-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.screen-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.screen-content {
    padding: 24px;
    flex: 1;
    overflow: hidden;
}

/* Step 1: Scan */
.scan-upload-area {
    background: white;
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.scan-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.scan-text strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.scan-text span {
    font-size: 13px;
    color: var(--gray-500);
}

.scan-formats {
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 12px;
}

.scan-tip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    font-size: 12px;
    color: var(--warning);
}

/* Step 2: Info */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.info-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-form {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-row label {
    font-size: 11px;
    color: var(--gray-500);
    width: 60px;
    flex-shrink: 0;
}

.info-input {
    flex: 1;
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-900);
    font-weight: 500;
}

.info-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.info-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-btn.primary {
    background: var(--primary);
    color: white;
}

.info-btn.secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.info-btn.full {
    flex: 1;
    justify-content: center;
}

/* Step 3: Doc Select */
.doc-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.doc-select-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.doc-select-card.checked {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.doc-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.doc-select-card > i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.doc-select-card strong {
    display: block;
    font-size: 13px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.doc-select-card span {
    font-size: 11px;
    color: var(--gray-500);
}

/* Step 4: Complete */
.complete-message {
    text-align: center;
    margin-bottom: 24px;
}

.complete-icon {
    width: 64px;
    height: 64px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.complete-message h4 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.complete-message p {
    font-size: 14px;
    color: var(--gray-500);
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
}

.download-item > i {
    font-size: 20px;
    color: var(--danger);
}

.download-item span {
    flex: 1;
    font-size: 13px;
    color: var(--gray-700);
}

.download-item button {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 6px;
    color: var(--gray-500);
    cursor: pointer;
}

.download-item button:hover {
    background: var(--primary);
    color: white;
}

/* ===== CTA Section ===== */
.cta {
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 64px 24px 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.footer-logo i {
    color: var(--primary);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info {
    font-size: 13px;
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 4px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
}

.footer-copyright {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 24px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .comparison-divider {
        transform: rotate(90deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .flow-step-arrow {
        display: none;
    }
    
    .flow-steps {
        gap: 10px;
    }
    
    .flow-step-item {
        padding: 10px 14px;
    }
    
    .screen-sidebar {
        display: none;
    }
    
    .step-screens {
        height: auto;
    }
    
    .screen-mockup {
        height: auto;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-select-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .flow-step-item {
        flex: 1;
        min-width: 120px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
    
    .flow-step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
