/* ═══════════════════ DESIGN TOKENS ═══════════════════ */
:root {
    --bg: #09090b;
    --bg-elevated: #111114;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-hover: rgba(255, 255, 255, 0.065);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.15);
    --accent: #E8505B;
    --accent-soft: rgba(232, 80, 91, 0.1);
    --accent-glow: rgba(232, 80, 91, 0.2);
    --accent-glow-strong: rgba(232, 80, 91, 0.35);
    --accent-2: #ff8a8f;
    --text: #ededf2;
    --text-2: #8b8fa3;
    --text-3: #53556a;
    --nav-h: 72px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════ RESET & BASE ═══════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════ UTILITIES ═══════════════════ */
.text-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* ═══════════════════ AMBIENT EFFECTS ═══════════════════ */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
    opacity: 0.6;
}

.ambient-orb--warm {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 80, 91, 0.07), transparent 70%);
    top: -15%;
    right: -10%;
}

.ambient-orb--cool {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05), transparent 70%);
    bottom: 20%;
    left: -10%;
}

.grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease;
    filter: blur(50px);
    opacity: 0;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 1000;
    transition: all 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(9, 9, 11, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: var(--border);
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-logo img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    gap: 36px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -4px var(--accent-glow-strong);
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn-primary {
    background: var(--accent);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    font-family: inherit;
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px var(--accent-glow-strong);
}

.btn-glow {
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    font-family: inherit;
}

.btn-outline:hover {
    background: var(--surface);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 28px;
}

.hero-line {
    display: block;
}

.hero-line-accent {
    background: linear-gradient(135deg, #fff 20%, var(--accent) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: 17px;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero-note {
    font-size: 13px;
    color: var(--text-3);
    letter-spacing: 0.2px;
}

/* ═══════════════════ PHONE MOCKUP ═══════════════════ */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 1;
}

/* ═══════════════════ SECTIONS COMMON ═══════════════════ */
.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: rgba(0, 0, 0, 0.25);
}

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    background: var(--accent-soft);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(232, 80, 91, 0.15);
}

.section-h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee-section {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ═══════════════════ STEPS ═══════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.step-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}

.step-icon {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 24px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.step-visual {
    height: 140px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.visual-qr-scan svg {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.visual-scan-action {
    font-size: 40px;
    position: relative;
}

.scan-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: beam-move 2s infinite ease-in-out;
}

@keyframes beam-move {
    0%, 100% { top: -20px; height: 0; opacity: 0; }
    50% { top: 0; height: 100%; opacity: 1; }
}

.visual-notification {
    width: 80%;
}

.notif-bubble {
    background: var(--surface-hover);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 12px;
    animation: notif-slide 3s infinite;
}

.notif-bubble strong {
    display: block;
    color: var(--accent);
    margin-bottom: 4px;
    font-size: 13px;
}

@keyframes notif-slide {
    0%, 100% { transform: translateY(8px); opacity: 0; }
    20%, 80% { transform: translateY(0); opacity: 1; }
}

/* Universal QR CTA */
.universal-qr-cta {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s var(--ease);
}

.universal-qr-cta:hover {
    border-color: var(--border-hover);
}

.u-qr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.u-qr-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.u-qr-text p {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.6;
}

.u-qr-icon {
    width: 96px;
    height: 96px;
    background: var(--bg);
    border: 1px solid rgba(232, 80, 91, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 32px var(--accent-glow);
}

/* ═══════════════════ ANALYTICS ═══════════════════ */
.analytics-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.proof-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.proof-item {
    display: flex;
    gap: 16px;
}

.proof-check {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 0 16px var(--accent-glow);
}

.proof-content .proof-title {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
}

.proof-content .proof-desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.5;
}

.roi-card {
    background: var(--bg);
    border: 1px solid rgba(232, 80, 91, 0.2);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6), 0 0 48px -8px var(--accent-glow);
}

.roi-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    font-size: 18px;
    font-weight: 700;
}

.roi-badge {
    background: #22c55e;
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
}

.roi-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px;
    margin-bottom: 20px;
}

.roi-bar {
    flex: 1;
    background: var(--surface);
    border-radius: 6px 6px 0 0;
    height: var(--val);
    transition: 1.5s var(--ease);
}

.roi-bar.active {
    background: linear-gradient(to top, var(--accent), var(--accent-2));
    box-shadow: 0 0 20px var(--accent-glow);
}

.roi-footer {
    text-align: center;
    color: var(--text-3);
    font-size: 12px;
}

/* ═══════════════════ FEATURES ═══════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.5s var(--ease);
}

.feature-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.5);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}

.feature-card-lg {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 48px;
}

.feature-visual {
    flex: 1;
}

.mini-dashboard {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
}

.mini-dash-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.mini-bar {
    width: 100%;
    background: linear-gradient(to top, var(--accent), var(--accent-2));
    border-radius: 4px;
    height: var(--h);
    animation: bar-grow 2s ease-out;
    opacity: 0.85;
}

.feature-text {
    flex: 1;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    border: 1px solid rgba(232, 80, 91, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ═══════════════════ PROCESS ═══════════════════ */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border), transparent);
}

.process-step {
    padding-left: 100px;
    margin-bottom: 72px;
    position: relative;
}

.process-num {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--bg);
    border: 1px solid rgba(232, 80, 91, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent);
    font-size: 22px;
    box-shadow: 0 0 32px var(--accent-glow);
}

.process-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-content p {
    color: var(--text-2);
    font-size: 15px;
    max-width: 560px;
    line-height: 1.6;
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}

.pricing-card-featured {
    border-color: rgba(232, 80, 91, 0.3);
    position: relative;
    background: linear-gradient(135deg, rgba(232, 80, 91, 0.04), rgba(232, 80, 91, 0.01));
    box-shadow: 0 0 48px -8px var(--accent-glow);
}

.pricing-card-featured:hover {
    border-color: rgba(232, 80, 91, 0.5);
    box-shadow: 0 0 64px -8px var(--accent-glow), 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 4px 16px var(--accent-glow-strong);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-desc {
    color: var(--text-2);
    font-size: 14px;
    margin-bottom: 28px;
}

.pricing-price {
    margin-bottom: 36px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.price-currency {
    font-size: 28px;
    vertical-align: top;
    margin-left: 2px;
    font-weight: 600;
}

.price-period {
    color: var(--text-2);
    font-size: 15px;
    margin-left: 4px;
}

.price-custom {
    font-size: 44px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    color: var(--text-2);
}

/* ═══════════════════ CTA BANNER ═══════════════════ */
.cta-banner {
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--surface);
    border: 1px solid rgba(232, 80, 91, 0.2);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -1px;
    position: relative;
}

.cta-card p {
    font-size: 17px;
    margin-bottom: 36px;
    color: var(--text-2);
    position: relative;
}

.cta-card .btn-primary {
    background: var(--accent);
    color: #fff;
    margin: 0 auto;
    font-weight: 700;
}

.cta-card .btn-primary:hover {
    box-shadow: 0 16px 40px -8px var(--accent-glow-strong);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-2);
    margin-top: 20px;
    max-width: 240px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: var(--text-2);
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-3);
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--text-3);
    transition: color 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

/* ═══════════════════ MODAL ═══════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: 0.4s var(--ease);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-2);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.modal h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.modal p {
    color: var(--text-2);
    margin-bottom: 32px;
    font-size: 15px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    position: relative;
}

.form-field input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    color: var(--text);
    font-size: 15px;
    transition: 0.3s;
    font-family: inherit;
}

.form-field input:focus {
    border-color: var(--accent);
    background: var(--surface-hover);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    pointer-events: none;
    transition: 0.3s;
    font-size: 14px;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--accent);
    background: var(--bg-elevated);
    padding: 0 6px;
}

/* ═══════════════════ MOBILE DRAWER ═══════════════════ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 4px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    z-index: 1500;
    transition: 0.5s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-drawer-link {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.mobile-drawer.active .mobile-drawer-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-drawer-cta {
    margin-top: 8px;
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes bar-grow {
    from { height: 0; }
    to { height: var(--h); }
}

/* ═══════════════════ REVEAL ═══════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .feature-card-lg {
        grid-column: span 2;
    }
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .analytics-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }

    .hero {
        padding: 110px 0 60px;
        min-height: auto;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-h1 {
        font-size: clamp(32px, 8vw, 44px);
        letter-spacing: -1.5px;
        line-height: 1.05;
    }
    .hero-p {
        font-size: 15px;
        margin-bottom: 28px;
        padding: 0 8px;
    }
    .hero-actions {
        width: 100%;
        align-items: center;
    }
    .hero-actions .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }
    .hero-visual {
        margin-top: 0;
    }
    .hero-mockup-img {
        max-width: 280px;
    }

    .features-grid,
    .pricing-grid,
    .footer-top,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-lg {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .section-h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    .cta-card {
        padding: 56px 24px;
        border-radius: 24px;
    }
    .cta-card h2 {
        font-size: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .u-qr-inner {
        flex-direction: column;
        text-align: center;
    }
    .u-qr-icon {
        margin: 0 auto;
    }
    .pricing-card {
        padding: 40px 28px;
    }

    .ambient-orb--warm {
        width: 300px;
        height: 300px;
    }
    .ambient-orb--cool {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 80px 0;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .hero-h1 {
        font-size: 32px;
    }
    .process-step {
        padding-left: 80px;
    }
    .process-num {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    .process-line {
        left: 30px;
    }
}