/* =============================================
   Ki'Cook — Premium Marketing Website CSS
   Dark Emerald Aesthetic
   ============================================= */

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

:root {
    --bg: #080e0b;
    --surface: #0f1a13;
    --surface2: #162014;
    --border: rgba(255,255,255,0.07);
    --accent: #10b981;
    --accent-glow: rgba(16,185,129,0.25);
    --accent-light: rgba(16,185,129,0.1);
    --text: #f1ede4;
    --text-sec: rgba(241,237,228,0.55);
    --danger: #ef4444;
    --amber: #f59e0b;
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --pink: #ec4899;
    --gold: #d97706;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-glow: 0 0 60px rgba(16,185,129,0.15);
}

html { scroll-behavior: smooth; }

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 24px;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
    background: rgba(8,14,11,0.85);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    height: 70px; display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text); flex-shrink: 0;
}
.nav-logo-img { height: 45px; width: auto; display: block; object-fit: contain; }
.nav-logo-icon { font-size: 28px; }
.nav-logo-text {
    font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 22px;
    background: linear-gradient(135deg, var(--accent), #6ee7b7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
    padding: 8px 16px; border-radius: var(--radius-sm);
    color: var(--text-sec); text-decoration: none; font-weight: 600; font-size: 14px;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.07); }
.nav-cta {
    background: var(--accent); color: #0a0f0d; font-weight: 800; font-size: 14px;
    padding: 10px 22px; border-radius: 20px; border: none; cursor: pointer;
    transition: all 0.2s; flex-shrink: 0; font-family: 'Outfit', sans-serif;
}
.nav-cta:hover { background: #34d399; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   SECTIONS & CONTAINER
   ============================================= */
.section { padding: 120px 24px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-tag {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: var(--accent-light); border: 1px solid rgba(16,185,129,0.3);
    color: var(--accent); font-size: 13px; font-weight: 700; margin-bottom: 20px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.section-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(32px, 5vw, 48px);
    font-weight: 900; margin-bottom: 16px; line-height: 1.15;
}
.section-subtitle { font-size: 17px; color: var(--text-sec); max-width: 640px; margin: 0 auto; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 100vh; display: flex; align-items: center; padding-top: 100px;
    overflow: hidden;
}
.hero-bg-gradient {
    position: absolute; top: -20%; left: -20%; width: 140%; height: 140%;
    background: radial-gradient(ellipse at 30% 40%, rgba(16,185,129,0.12) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 20%, rgba(16,185,129,0.06) 0%, transparent 45%);
    pointer-events: none;
}
.hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
    position: absolute; border-radius: 50%;
    background: var(--accent); opacity: 0;
    animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite;
}
@keyframes floatUp {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: var(--op, 0.3); }
    90% { opacity: var(--op, 0.3); }
    100% { opacity: 0; transform: translateY(-100px) scale(1); }
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
    border-radius: 20px; padding: 8px 18px; font-size: 13px; font-weight: 600;
    color: var(--accent); margin-bottom: 28px;
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}
.hero-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(48px, 8vw, 88px);
    font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #6ee7b7 50%, #34d399 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
    font-size: 18px; color: var(--text-sec); max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-hero-primary {
    padding: 16px 32px; border-radius: 20px; background: var(--accent);
    color: #0a0f0d; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px;
    border: none; cursor: pointer; transition: all 0.25s;
}
.btn-hero-primary:hover { background: #34d399; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16,185,129,0.35); }
.btn-hero-secondary {
    padding: 16px 32px; border-radius: 20px;
    background: transparent; color: var(--text); font-family: 'Outfit', sans-serif;
    font-weight: 700; font-size: 16px; border: 1.5px solid var(--border); cursor: pointer;
    transition: all 0.25s;
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 900; color: var(--accent); }
.hero-stat-label { font-size: 12px; color: var(--text-sec); font-weight: 600; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* App mockup */
.hero-mockup-wrap {
    position: absolute; right: max(24px, calc((100vw - 1200px)/2));
    top: 50%; transform: translateY(-50%);
    perspective: 1200px;
}
.hero-mockup {
    width: 280px; background: var(--surface);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 36px; padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(16,185,129,0.1);
    transform: rotateY(-12deg) rotateX(4deg);
    animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
    0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
    50% { transform: rotateY(-12deg) rotateX(4deg) translateY(-16px); }
}
.mockup-status-bar { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-sec); margin-bottom: 16px; }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mockup-logo { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 15px; color: var(--accent); }
.mockup-avatar { width: 30px; height: 30px; border-radius: 15px; background: linear-gradient(135deg, var(--accent), #064e3b); }
.mockup-card { border-radius: var(--radius-sm); padding: 14px; margin-bottom: 12px; }
.mockup-card.green { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.05)); border: 1px solid rgba(16,185,129,0.2); }
.mockup-card-label { font-size: 10px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.mockup-card-val { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 800; margin-top: 4px; }
.mockup-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.mockup-stat-box { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-align: center; }
.mockup-stat-box.accent { background: var(--accent-light); border-color: rgba(16,185,129,0.2); }
.mockup-stat-n { display: block; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900; color: var(--accent); }
.mockup-stat-l { font-size: 9px; color: var(--text-sec); font-weight: 600; }
.mockup-notif { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; margin-bottom: 8px; }
.mockup-notif.green-notif { border-color: rgba(16,185,129,0.2); background: var(--accent-light); }
.mockup-notif-icon { font-size: 18px; }
.mockup-notif-text { display: flex; flex-direction: column; }
.mockup-notif-text strong { font-size: 11px; font-weight: 800; }
.mockup-notif-text span { font-size: 10px; color: var(--text-sec); }

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section { background: var(--surface); }
.feature-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-visual {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    padding: 48px; background: var(--surface2);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    min-height: 300px; justify-content: center;
}
.feature-icon-wrap {
    width: 80px; height: 80px; border-radius: 24px;
    display: flex; justify-content: center; align-items: center;
    font-size: 40px;
}
.feature-icon-wrap.emerald { background: rgba(16,185,129,0.12); box-shadow: 0 0 40px rgba(16,185,129,0.15); }
.feature-icon-wrap.amber { background: rgba(245,158,11,0.12); box-shadow: 0 0 40px rgba(245,158,11,0.15); }
.feature-icon-wrap.blue { background: rgba(59,130,246,0.12); box-shadow: 0 0 40px rgba(59,130,246,0.15); }
.feature-icon-wrap.purple { background: rgba(139,92,246,0.12); box-shadow: 0 0 40px rgba(139,92,246,0.15); }
.feature-icon-wrap.pink { background: rgba(236,72,153,0.12); box-shadow: 0 0 40px rgba(236,72,153,0.15); }
.feature-icon-wrap.gold { background: rgba(217,119,6,0.12); box-shadow: 0 0 40px rgba(217,119,6,0.15); }

.feature-lines { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.feature-line { height: 10px; border-radius: 5px; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0.4; }
.feature-line.short { opacity: 0.2; }

/* Feature text */
.feature-number { font-family: 'Outfit', sans-serif; font-size: 64px; font-weight: 900; color: rgba(16,185,129,0.1); line-height: 1; display: block; margin-bottom: -8px; }
.feature-title { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 900; margin-bottom: 16px; }
.feature-desc { color: var(--text-sec); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { font-size: 14px; font-weight: 600; color: var(--text-sec); }
.feature-list li::first-child { color: var(--text); }

/* Preview components in visuals */
.feature-cards-preview { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.preview-card { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 12px; padding: 10px 14px; }
.preview-card-name { font-size: 13px; font-weight: 700; }
.preview-card-qty { font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 8px; }
.preview-card-qty.danger { background: rgba(239,68,68,0.15); color: var(--danger); }
.preview-card-qty.ok { background: rgba(16,185,129,0.12); color: var(--accent); }

/* Chat preview */
.chat-preview { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.chat-msg { display: flex; flex-direction: column; gap: 3px; }
.chat-msg.sent { align-items: flex-end; }
.chat-sender { font-size: 10px; font-weight: 700; color: var(--text-sec); margin: 0 4px; }
.chat-bubble-prev { padding: 10px 14px; border-radius: 16px; font-size: 12px; font-weight: 600; max-width: 90%; }
.chat-msg.received .chat-bubble-prev { background: rgba(255,255,255,0.07); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-msg.sent .chat-bubble-prev { background: var(--accent); color: #0a0f0d; border-bottom-right-radius: 4px; }
.mention { background: rgba(16,185,129,0.2); color: var(--accent); border-radius: 6px; padding: 1px 5px; font-weight: 800; }

/* Team preview */
.team-preview { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.team-member { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 14px; padding: 12px; }
.team-avatar { width: 38px; height: 38px; border-radius: 19px; display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.team-avatar.emerald-av { background: rgba(16,185,129,0.2); color: var(--accent); }
.team-avatar.amber-av { background: rgba(245,158,11,0.2); color: var(--amber); }
.team-avatar.blue-av { background: rgba(59,130,246,0.2); color: var(--blue); }
.team-info { display: flex; flex-direction: column; gap: 2px; }
.team-info strong { font-size: 13px; }
.status-badge { font-size: 11px; font-weight: 700; }
.status-badge.present { color: var(--accent); }
.status-badge.absent { color: var(--amber); }

/* Menu preview */
.menu-preview { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.menu-item-prev { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.menu-emoji { font-size: 22px; flex-shrink: 0; }
.menu-item-info { flex: 1; }
.menu-item-info strong { display: block; font-size: 12px; font-weight: 800; }
.menu-item-info span { font-size: 11px; color: var(--accent); font-weight: 700; }
.avail-badge { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 8px; flex-shrink: 0; background: rgba(16,185,129,0.12); color: var(--accent); }
.avail-badge.stock-out { background: rgba(239,68,68,0.12); color: var(--danger); }

/* Multi-resto preview */
.multiresto-preview { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.resto-tab { padding: 12px 18px; border-radius: 14px; font-size: 13px; font-weight: 700; background: rgba(255,255,255,0.04); border: 1px solid var(--border); cursor: default; }
.resto-tab.active-resto { background: var(--accent-light); border-color: rgba(16,185,129,0.3); color: var(--accent); }
.resto-tab.dashed { border-style: dashed; color: var(--text-sec); font-weight: 600; }

/* =============================================
   PRICING SECTION (SPACIOUS & AIRY)
   ============================================= */
.pricing-section { background: var(--bg); padding: 100px 0; }
.pricing-grid { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; margin-top: 40px; }
.pricing-card {
    background: var(--surface); border: 1.5px solid var(--border); border-radius: 28px;
    padding: 48px 40px 42px; display: flex; flex-direction: column; gap: 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
    width: 100%; max-width: 480px; min-height: 640px; box-sizing: border-box;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(16,185,129,0.3); }
.pricing-card.featured {
    background: linear-gradient(155deg, rgba(16,185,129,0.08) 0%, var(--surface) 60%);
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 10px 40px rgba(16,185,129,0.12);
}
.pricing-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--accent), #6ee7b7);
}
.pricing-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 12px;
    font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    align-self: flex-start;
}
.pricing-badge.green { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.pricing-badge.neutral { background: rgba(255,255,255,0.06); color: var(--text-sec); border: 1px solid rgba(255,255,255,0.08); }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin: 6px 0 0 0; }
.price-num { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900; line-height: 1; color: #fff; }
.price-period { font-size: 16px; color: var(--text-sec); font-weight: 600; }
.pricing-desc { font-size: 15px; color: var(--text-sec); line-height: 1.6; margin-bottom: 8px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 15px; flex: 1; margin: 12px 0 32px 0; padding: 0; }
.pricing-features li { font-size: 14.5px; font-weight: 500; color: #e2e8f0; line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.pricing-btn {
    margin-top: auto; flex-shrink: 0;
    width: 100%; padding: 18px 24px; border-radius: 16px;
    font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px;
    border: none; cursor: pointer; transition: all 0.25s ease;
    letter-spacing: 0.3px;
}
.pricing-btn.primary { background: var(--accent); color: #0a0f0d; }
.pricing-btn.primary:hover { background: #34d399; box-shadow: 0 10px 30px rgba(16,185,129,0.4); transform: translateY(-2px); }
.pricing-btn.secondary { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--border); }
.pricing-btn.secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card {
    display: flex; flex-direction: column; gap: 12px;
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
    text-decoration: none; color: var(--text);
    transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.contact-card-icon { font-size: 40px; margin-bottom: 8px; }
.discord-card .contact-card-icon { color: #5865F2; }
.contact-card-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900; }
.contact-card-desc { color: var(--text-sec); font-size: 15px; line-height: 1.6; }
.contact-card-value { font-size: 14px; font-weight: 700; color: var(--accent); background: var(--accent-light); padding: 8px 14px; border-radius: 10px; width: fit-content; }
.contact-card-cta { font-size: 14px; font-weight: 700; color: var(--text-sec); margin-top: auto; padding-top: 8px; }
.contact-card:hover .contact-card-cta { color: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    border-top: 1px solid var(--border); padding: 32px 24px;
    background: var(--bg);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 18px; }
.footer-logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.footer-text { color: var(--text-sec); font-size: 13px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-sec); text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* =============================================
   CHECKOUT MODAL
   ============================================= */
.checkout-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px); z-index: 9000;
    display: flex; justify-content: center; align-items: flex-end;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }
.checkout-modal {
    background: var(--bg); border: 1px solid var(--border);
    border-top-left-radius: 32px; border-top-right-radius: 32px;
    padding: 32px 28px 48px; width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto; overflow-x: hidden;
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.checkout-overlay.open .checkout-modal { transform: translateY(0); }
@media (min-width: 600px) {
    .checkout-overlay { align-items: center; }
    .checkout-modal { border-radius: 32px; max-height: 90vh; }
}
.checkout-close {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.07); border: none; color: var(--text);
    width: 36px; height: 36px; border-radius: 18px; cursor: pointer; font-size: 14px;
}
.checkout-header { text-align: center; margin-bottom: 32px; }
.checkout-icon { font-size: 48px; margin-bottom: 12px; }
.checkout-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.checkout-price { color: var(--accent); font-size: 18px; font-weight: 800; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-field { display: flex; flex-direction: column; gap: 6px; }
.checkout-field label { font-size: 13px; font-weight: 700; color: var(--text-sec); }
.checkout-field input, .checkout-field select {
    width: 100%;
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 13px 16px; font-size: 15px;
    color: var(--text); outline: none; font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}
.checkout-field input:focus, .checkout-field select:focus { border-color: var(--accent); }
.checkout-separator {
    font-size: 12px; font-weight: 700; color: var(--text-sec); text-transform: uppercase;
    letter-spacing: 0.5px; padding-top: 8px; border-top: 1px solid var(--border);
}
.checkout-submit {
    padding: 16px; border-radius: 18px; background: var(--accent);
    color: #0a0f0d; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 16px;
    border: none; cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.checkout-submit:hover { background: #34d399; box-shadow: 0 8px 24px rgba(16,185,129,0.3); }
.checkout-notice { text-align: center; font-size: 12px; color: var(--text-sec); margin-top: 4px; }
.checkout-success { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; padding: 24px 0; }
.success-icon { font-size: 64px; }
.checkout-success h3 { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 900; }
.checkout-success p { color: var(--text-sec); }

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}
.nav-btn-login {
    background: transparent;
    color: var(--text-sec);
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}
.nav-btn-login:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}
.nav-btn-register {
    background: transparent;
    color: var(--accent);
    font-weight: 800;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--accent);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}
.nav-btn-register:hover {
    background: var(--accent);
    color: #0a0f0d;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25);
    transform: translateY(-1px);
}
.nav-btn-profile {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 800;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1.5px solid rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Outfit', sans-serif;
}
.nav-btn-profile:hover {
    background: var(--accent);
    color: #0a0f0d;
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25);
}
.mobile-only { display: none; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .hero-mockup-wrap { display: none; }
    .feature-block { grid-template-columns: 1fr; gap: 40px; }
    .feature-block.reverse { direction: ltr; }
    .pricing-grid { flex-direction: column; align-items: center; max-width: 400px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-links.mobile-open {
        display: flex; flex-direction: column;
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(8,14,11,0.97); backdrop-filter: blur(24px);
        padding: 20px; gap: 4px; border-bottom: 1px solid var(--border);
    }
    .nav-link { padding: 14px 20px; font-size: 16px; }
    .mobile-only { display: block !important; }
    .nav-actions { display: none !important; }
    .section { padding: 80px 20px; }
    .hero-title { font-size: 48px; }
    .checkout-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
}

/* =============================================
   CUSTOM SCROLLBAR FOR MODALS & LISTS
   ============================================= */
.checkout-modal::-webkit-scrollbar,
#profileRestoList::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.checkout-modal::-webkit-scrollbar-track,
#profileRestoList::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
}
.checkout-modal::-webkit-scrollbar-thumb,
#profileRestoList::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.2);
    border-radius: 10px;
    transition: background 0.2s;
}
.checkout-modal::-webkit-scrollbar-thumb:hover,
#profileRestoList::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.4);
}
.checkout-modal,
#profileRestoList {
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.2) rgba(255, 255, 255, 0.01);
}

/* Pricing Toggle Styles */
.pricing-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.pricing-toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-sec);
    transition: color 0.3s;
}
.pricing-toggle-label.active {
    color: var(--text);
    font-weight: 700;
}
.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}
.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--accent);
    transition: .4s;
    border-radius: 34px;
}
.pricing-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.pricing-toggle-switch input:checked + .pricing-slider {
    background-color: rgba(234, 179, 8, 0.9);
}
.pricing-toggle-switch input:focus + .pricing-slider {
    box-shadow: 0 0 1px #2196F3;
}
.pricing-toggle-switch input:checked + .pricing-slider:before {
    transform: translateX(28px);
}

/* Premium Tab Pills */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 40px;
    width: fit-content;
    margin: 0 auto 40px;
    position: relative;
}
.pricing-tab {
    background: transparent;
    border: none;
    color: var(--text-sec);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pricing-tab:hover {
    color: white;
}
.pricing-tab.active {
    background: var(--accent) !important;
    color: #111 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}
.pricing-tab:active { transform: scale(0.92); }


/* =============================================
   PROFILE MODAL TOGGLE STYLES
   ============================================= */
#profileEditForm { display: none; }
#profileEditForm.active { display: flex !important; flex-direction: column !important; gap: 12px !important; margin-top: 8px !important; }
#changePasswordForm { display: none; }
#changePasswordForm.active { display: flex !important; flex-direction: column !important; gap: 12px !important; margin-top: 14px !important; border-top: 1px solid var(--border) !important; padding-top: 14px !important; }
#profileStaticView.hidden { display: none !important; }
