/* =====================================================
   Digital Menu Book — Landing Page Styles (Professional)
   ===================================================== */

/* ---- Variables ---- */
:root {
    --primary: #0A2540;
    --primary-light: #163a5e;
    --accent: #FF6B35;
    --accent-dark: #e55a2b;
    --accent-glow: rgba(255, 107, 53, 0.35);
    --green: #00D4AA;
    --green-dark: #00956f;
    --yellow: #FFB800;
    --text: #1A202C;
    --text-muted: #718096;
    --bg: #FFFFFF;
    --bg-alt: #F7FAFC;
    --border: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(10,37,64,0.08);
    --shadow-md: 0 8px 30px rgba(10,37,64,0.12);
    --shadow-lg: 0 20px 60px rgba(10,37,64,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:hover { text-decoration: none !important; color: inherit; }
img { max-width: 100%; }

/* ---- Section Shared ---- */
.section-tag {
    display: inline-block;
    background: rgba(255,107,53,0.08);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255,107,53,0.15);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 52px;
    line-height: 1.7;
}

/* ===========================================================
   NAVBAR
   =========================================================== */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.lp-navbar.scrolled {
    background: rgba(15, 23, 42, 0.97); /* Matches the new dark slate #0F172A */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.20);
}

.lp-navbar .navbar-brand {
    font-size: 21px;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.5px;
}

.lp-navbar .navbar-brand span { color: var(--accent); }

/* Navbar logo image */
.navbar-logo {
    height: 38px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.lp-navbar .nav-link {
    color: rgba(255,255,255,0.78) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 16px !important;
    transition: var(--transition);
    position: relative;
}

.lp-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.lp-navbar .nav-link:hover { color: #fff !important; }
.lp-navbar .nav-link:hover::after { transform: scaleX(1); }

.lp-navbar .btn-nav-login::after,
.lp-navbar .btn-nav-cta::after {
    display: none !important;
}

.btn-nav-login {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    padding: 7px 20px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    position: relative;
    overflow: hidden;
}

.btn-nav-login:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff !important;
}

.btn-nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 22px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: none !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 12px rgba(255,107,53,0.3);
    position: relative;
    overflow: hidden;
}

.btn-nav-cta:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.45);
}

/* Button Animations */
.nav-icon-login, .nav-icon-cta {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-nav-login:hover .nav-icon-login {
    transform: translateX(4px);
}

.btn-nav-cta:hover .nav-icon-cta {
    transform: translateX(4px);
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-nav-cta:hover::before {
    left: 100%;
}

.navbar-toggler {
    border: none;
    padding: 4px 6px;
    outline: none;
    box-shadow: none;
}

/* ===========================================================
   HERO
   =========================================================== */
#hero {
    background: linear-gradient(155deg, #0F172A 0%, #1E293B 40%, #334155 70%, #0F172A 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
#hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255,107,53,0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Keep text block from growing */
#hero > .container {
    flex-shrink: 0;
}

/* Text block — generous spacing */
.hero-text-block {
    position: relative;
    z-index: 2;
    padding: 40px 0 32px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    color: #FF9B72;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -1.5px;
}

.hero-title .accent {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.58);
    max-width: 520px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255,107,53,0.35);
}

.btn-hero-primary:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,53,0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 500;
    padding: 13px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}

/* ===========================================================
   VIDEO SECTION (Professional cinematic frame)
   =========================================================== */

/* Video wrapper */
.hero-vid-wrap {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    min-height: 0;
    padding: 0 24px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 10px;
}

/* The inner frame */
.hero-vid-frame {
    height: auto;
    max-height: 60vh;
    width: 100%;
    max-width: 1000px; /* Constrain max width so it doesn't look huge */
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Video itself */
.hero-vid-frame video {
    width: 100%;
    height: auto;
    display: block;
}

/* Play / Pause floating button */
.vid-play-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(10, 37, 64, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    outline: none;
}

.vid-play-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}


/* ===========================================================
   STATS
   =========================================================== */
#stats {
    background: var(--primary);
    padding: 44px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 10px 40px;
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .accent { color: var(--accent); }

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 46px;
    background: rgba(255,255,255,0.08);
}

/* ===========================================================
   FEATURES
   =========================================================== */
#features {
    padding: 100px 0;
    background: var(--bg);
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-card:hover::after { transform: scaleX(1); }

/* ---- Feature SVG Micro-Animations ---- */
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

/* Backgrounds */
.fi-orange { background: rgba(255,107,53,0.1); }
.fi-orange svg { stroke: var(--accent); }

.fi-green  { background: rgba(0,212,170,0.1); }
.fi-green svg { stroke: var(--green); }

.fi-blue   { background: rgba(10,37,64,0.06); }
.fi-blue svg { stroke: var(--primary); }

.fi-yellow { background: rgba(255,184,0,0.1); }
.fi-yellow svg { stroke: #c88a00; }

/* Animation Sub-elements */
.fi-qr-laser { stroke: var(--green); opacity: 0; }
.fi-price-arrow { opacity: 0; transform: translateY(5px); }
.fi-eye-slash { stroke-dasharray: 20; stroke-dashoffset: 20; }
.fi-leaf-grow { opacity: 0; transform: scale(0) rotate(-15deg); transform-origin: bottom left; }
.fi-chart-bar { transform-origin: bottom; }
.fi-invoice-check { opacity: 0; transform: scale(0.5); }

/* Hover Triggers */
.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

/* 1. Instant QR Code (Laser scanning down) */
.feature-card:hover .fi-qr-laser {
    animation: fiQrScan 1.5s ease-in-out infinite;
}
@keyframes fiQrScan {
    0% { transform: translateY(-8px); opacity: 0; }
    20% { opacity: 1; }
    80% { transform: translateY(8px); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

/* 2. Live Price (Tag flips, arrow goes up) */
.feature-card:hover .fi-orange svg path:first-child {
    animation: fiTagFlip 0.5s ease-out forwards;
}
.feature-card:hover .fi-price-arrow {
    animation: fiPriceUp 0.6s ease-out 0.2s forwards;
}
@keyframes fiTagFlip {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}
@keyframes fiPriceUp {
    to { opacity: 1; transform: translateY(-2px); }
}

/* 3. Hide Unavailable (Slash draws through eye) */
.feature-card:hover .fi-eye-slash {
    animation: fiSlashDraw 0.6s ease-out forwards;
}
@keyframes fiSlashDraw {
    to { stroke-dashoffset: 0; }
}

/* 4. Seasonal Items (Calendar pops, star twinkles) */
.feature-card:hover .fi-yellow svg {
    animation: fiCalPop 0.4s ease-out forwards;
}
@keyframes fiCalPop {
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* 5. Analytics (Bars grow up) */
.feature-card:hover .fi-chart-bar:nth-child(1) { animation: fiBarGrow 0.4s ease-out forwards; }
.feature-card:hover .fi-chart-bar:nth-child(2) { animation: fiBarGrow 0.4s ease-out 0.1s forwards; }
.feature-card:hover .fi-chart-bar:nth-child(3) { animation: fiBarGrow 0.4s ease-out 0.2s forwards; }
@keyframes fiBarGrow {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

/* 6. Invoicing (Checkmark stamps) */
.feature-card:hover .fi-invoice-check {
    animation: fiStamp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes fiStamp {
    to { opacity: 1; transform: scale(1); }
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
#how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.hiw-row {
    position: relative;
}

.step-card {
    text-align: center;
    padding: 12px 24px 0;
    position: relative;
}

.step-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-card:hover .step-illustration {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.step-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255,107,53,0.3);
    z-index: 5;
}

.step-svg {
    width: 64px;
    height: 64px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

/* Step Animations */
.s1-window { stroke: var(--primary); }
.s1-avatar { stroke: var(--accent); animation: popIn 3s infinite; transform-origin: center; }
.s1-line { stroke: #cbd5e1; stroke-dasharray: 20; animation: typeLine 3s infinite; }
.s1-line-2 { stroke: #cbd5e1; stroke-dasharray: 14; animation: typeLine 3s infinite 0.2s; }

.s2-board { stroke: var(--primary); }
.s2-item-1 { stroke: var(--green); animation: dropIn 3s infinite 0.2s; }
.s2-item-2 { stroke: var(--leaf); animation: dropIn 3s infinite 0.4s; }
.s2-item-3 { stroke: var(--orange); animation: dropIn 3s infinite 0.6s; }

.s3-qr { stroke: var(--primary); }
.s3-pulse { stroke: var(--accent); animation: scanPulse 3s infinite; transform-origin: center; }
.s3-scan-line { stroke: var(--green); animation: qrScanVert 3s infinite linear; }

@keyframes popIn {
    0%, 20% { transform: scale(0); opacity: 0; }
    30%, 80% { transform: scale(1); opacity: 1; }
    90%, 100% { transform: scale(0); opacity: 0; }
}
@keyframes typeLine {
    0%, 30% { stroke-dashoffset: 20; opacity: 0; }
    40%, 80% { stroke-dashoffset: 0; opacity: 1; }
    90%, 100% { stroke-dashoffset: 20; opacity: 0; }
}
@keyframes dropIn {
    0%, 20% { transform: translateY(-10px); opacity: 0; }
    30%, 80% { transform: translateY(0); opacity: 1; }
    90%, 100% { transform: translateY(10px); opacity: 0; }
}
@keyframes scanPulse {
    0%, 20% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.3; }
    80%, 100% { transform: scale(1.3); opacity: 0; }
}
@keyframes qrScanVert {
    0%, 20% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    70% { transform: translateY(28px); opacity: 1; }
    80%, 100% { transform: translateY(28px); opacity: 0; }
}

.step-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* Connectors */
.step-connector {
    position: absolute;
    top: 60px; /* Aligned to middle of step-illustration */
    left: calc(50% + 70px);
    width: calc(100% - 140px);
    height: 2px;
    background: rgba(10, 37, 64, 0.08);
    z-index: 1;
    overflow: hidden;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, rgba(255,107,53,0), var(--accent), rgba(255,107,53,0));
    animation: flowLine 2.5s infinite linear;
}

@keyframes flowLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* ===========================================================
   PRICING
   =========================================================== */
#pricing {
    padding: 100px 0;
    background: var(--bg);
}

.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}

.billing-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.billing-label.active {
    color: var(--primary);
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input { display: none; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #CBD5E0;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.save-badge {
    background: rgba(0,212,170,0.1);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    vertical-align: middle;
}

.pricing-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(255,107,53,0.15);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.popular-ribbon {
    position: absolute;
    top: -1px;
    right: 28px;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 16px 7px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.plan-icon.basic { background: rgba(10,37,64,0.06); color: var(--primary); }
.plan-icon.pro   { background: rgba(255,107,53,0.08); color: var(--accent); }

.plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    min-height: 38px;
    line-height: 1.5;
}

.price-area {
    margin-bottom: 20px;
    min-height: 70px;
    display: flex;
    align-items: flex-start;
}

.price-block { line-height: 1; }

.price-orig {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    display: block;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.price-currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -2px;
    line-height: 1;
}

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

.price-savings-tag {
    display: inline-block;
    background: rgba(0,212,170,0.08);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: 10px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.pricing-features-list li:last-child { border-bottom: none; }
.pricing-features-list li.excluded { color: var(--text-muted); }
.pricing-features-list li .fa-check-circle { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-features-list li .fa-times-circle { color: #CBD5E0; flex-shrink: 0; margin-top: 2px; }

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
    cursor: pointer;
    border: 1.5px solid transparent;
}

.btn-plan.basic {
    background: var(--bg-alt);
    color: var(--primary);
    border-color: var(--border);
}

.btn-plan.basic:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-plan.popular {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255,107,53,0.25);
}

.btn-plan.popular:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,107,53,0.45);
    color: #fff;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
#testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Decorative quote mark */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 52px;
    color: rgba(255,107,53,0.08);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.t-stars {
    color: var(--yellow);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 16px;
}

.t-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===========================================================
   FAQ
   =========================================================== */
#faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
    border-color: rgba(255,107,53,0.3);
    box-shadow: 0 4px 20px rgba(255,107,53,0.06);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 12px;
    transition: var(--transition);
}

.faq-item.open .faq-question .faq-icon {
    background: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    background: #fff;
}

.faq-item.open .faq-answer { display: block; }

/* ===========================================================
   FINAL CTA
   =========================================================== */
#cta-section {
    padding: 100px 0;
    background: linear-gradient(140deg, #0A2540 0%, #12304e 50%, #163a5e 100%);
    position: relative;
    overflow: hidden;
}

#cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 70%);
    pointer-events: none;
}

#cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,212,170,0.10) 0%, transparent 70%);
    pointer-events: none;
}

/* CTA badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    color: #FF9B72;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 38px;
    max-width: 480px;
    line-height: 1.65;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255,255,255,0.12);
}

.btn-cta-white:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255,107,53,0.45);
}

.cta-footnote {
    color: rgba(255,255,255,0.38);
    font-size: 13px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.cta-footnote-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cta-footnote-item i {
    font-size: 11px;
    color: var(--green);
}

.cta-footnote-divider {
    color: rgba(255,255,255,0.2);
    font-size: 16px;
}

/* Floating particles */
.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,107,53,0.25);
    border-radius: 50%;
    animation: cta-float 6s ease-in-out infinite;
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50%      { transform: translateY(-25px) scale(1.4); opacity: 0.7; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
#lp-footer {
    background: #07192E;
    padding: 68px 0 32px;
    color: rgba(255,255,255,0.5);
}

.footer-brand-wrap {
    display: block;
    margin-bottom: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(1.1);
    opacity: 0.9;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.38);
    margin-bottom: 26px;
    max-width: 240px;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col-heading {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 11px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.06);
    margin: 52px 0 28px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 767px) {
    #hero {
        padding-top: 64px;
        height: auto;
        min-height: auto;
    }
    .hero-text-block { padding: 30px 0 24px; }
    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        letter-spacing: -0.5px;
    }
    .hero-subtitle { font-size: 14px; }
    .hero-actions { justify-content: center !important; }
    .hero-vid-wrap { padding: 0 10px; }
    .vid-play-btn { width: 38px; height: 38px; bottom: 14px; right: 14px; font-size: 12px; }
    .stat-divider { display: none; }
    .stat-item { padding: 10px 20px; }
    .stat-number { font-size: 28px; }
    .step-connector { display: none; }
    .pricing-card { margin-bottom: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-subtitle { margin-bottom: 36px; }
    .cta-footnote { flex-direction: column; gap: 4px; }
    .cta-footnote-divider { display: none; }
}

@media (max-width: 991px) {
    .lp-navbar .navbar-collapse {
        background: rgba(10, 37, 64, 0.97);
        backdrop-filter: blur(12px);
        padding: 20px;
        margin-top: 12px;
        border-radius: var(--radius);
        border: 1px solid rgba(255,255,255,0.08);
    }
    .lp-navbar .navbar-collapse .nav-link {
        padding: 10px 8px !important;
    }
    .lp-navbar .navbar-collapse .nav-link::after {
        display: none;
    }
    .lp-navbar .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 8px !important;
        margin-top: 12px;
    }
    .lp-navbar .navbar-collapse .d-flex a {
        text-align: center;
        display: block;
    }
    .btn-nav-login, .btn-nav-cta {
        width: 100%;
        text-align: center !important;
    }
}

/* Smooth appearance for page load */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-text-block {
    animation: fadeInUp 0.8s ease-out;
}

.hero-animation-wrap {
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* ===========================================================
   HERO HTML ANIMATION (REALISTIC)
   =========================================================== */
.hero-animation-wrap {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    min-height: 500px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.anim-scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* Table */
.anim-table-surface {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotateX(60deg);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 60%);
    border-radius: 50%;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* QR Tent */
.anim-qr-tent {
    position: absolute;
    bottom: 120px;
    left: 15%;
    width: 100px;
    height: 140px;
    transform: rotateX(15deg) rotateY(15deg) rotateZ(-10deg);
    transform-style: preserve-3d;
    z-index: 5;
}

.tent-acrylic {
    position: absolute;
    bottom: 20px;
    left: 10px;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 5px 15px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateZ(10px);
}

.tent-qr-inner {
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tent-qr-inner i {
    font-size: 42px;
    color: #0A2540;
    display: block;
}

.tent-text {
    font-size: 8px;
    font-weight: 800;
    color: #0A2540;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tent-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 25px;
    background: linear-gradient(to right, #2d2620, #5c412a, #2d2620);
    border-radius: 4px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.4);
}

.tent-base::after {
    content:'';
    position:absolute;
    top: -4px;
    left: 5px;
    width: 90px;
    height: 8px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
}

/* Phone Wrapper */
.anim-phone-wrapper {
    position: absolute;
    top: 30px;
    right: 10%;
    width: 230px;
    height: 460px;
    z-index: 10;
    animation: phoneHoverReal 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-style: preserve-3d;
}

/* Phone Hardware */
.anim-phone-device {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    position: relative;
    box-shadow: 
        inset 0 0 0 2px rgba(255,255,255,0.2),
        inset 0 0 0 6px #0f172a,
        -10px 20px 40px rgba(0,0,0,0.6),
        -20px 40px 80px rgba(0,0,0,0.4);
    overflow: hidden;
}

.anim-phone-device::after {
    /* Screen glare */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(110deg, rgba(255,255,255,0.0) 30%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.0) 55%);
    pointer-events: none;
    z-index: 100;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 22px;
    background: #000;
    border-radius: 12px;
    z-index: 50;
    box-shadow: inset 0 -1px 2px rgba(255,255,255,0.15);
}

/* Screens */
.phone-screen {
    position: absolute;
    inset: 8px; /* bezel */
    background: #0f172a;
    border-radius: 28px;
    overflow: hidden;
}

/* Camera Screen */
.camera-screen {
    animation: screenFadeScan 10s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.camera-lens-blur {
    position: absolute;
    inset: -20px;
    background: rgba(30,41,59,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    filter: blur(8px);
    opacity: 0.4;
}

.blurred-qr {
    font-size: 160px;
    color: #fff;
    transform: rotate(5deg);
    animation: qrFocusReal 10s infinite;
}

.qr-focus-box {
    position: relative;
    width: 140px;
    height: 140px;
    z-index: 5;
    margin-bottom: 40px;
}

.qr-focus-box .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent);
}
.corner.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.corner.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-radius: 0 8px 0 0; }
.corner.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
.corner.br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }

.laser-beam {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--green);
    box-shadow: 0 0 8px var(--green), 0 0 16px var(--green);
    animation: laserScanReal 2s ease-in-out infinite;
}

.camera-text {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 0.5px;
}

/* Menu Screen */
.menu-screen {
    background: #f8fafc;
    animation: screenFadeMenu 10s infinite;
    opacity: 0;
}

.menu-app-cover {
    height: 110px;
    /* Simulated header image with gradient since external images might break */
    background: linear-gradient(to bottom, rgba(10,37,64,0.4), rgba(10,37,64,0.9)), 
                linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
    border-radius: 0 0 16px 16px;
}

.menu-app-header {
    position: relative;
    padding-bottom: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    z-index: 2;
}

.menu-app-title {
    font-size: 18px;
    font-weight: 800;
    color: #0A2540;
    margin: 12px 14px 2px;
}

.menu-app-subtitle {
    font-size: 11px;
    color: #718096;
    margin: 0 14px;
}

.menu-list {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 170px);
    overflow: hidden;
    animation: menuScrollReal 10s infinite;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mc-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
}

.mc-details {
    flex: 1;
}

.mc-title {
    font-size: 13px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 2px;
}

.mc-desc {
    font-size: 10px;
    color: #94a3b8;
    margin-bottom: 6px;
    line-height: 1.3;
}

.mc-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
}

/* Success Popup */
.scan-success-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 80px;
    height: 80px;
    background: rgba(0,212,170,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(0,212,170,0.4);
    animation: successPopReal 10s infinite;
    z-index: 200;
}

/* Animations Keyframes */
@keyframes phoneHoverReal {
    0%, 15% { transform: translate(140px, 40px) scale(0.9) rotateY(-25deg) rotateX(10deg); }
    25%, 35% { transform: translate(-20px, 0px) scale(1) rotateY(-5deg) rotateX(0deg); }
    40%, 85% { transform: translate(-20px, 0px) scale(1) rotateY(-5deg) rotateX(0deg); }
    95%, 100% { transform: translate(140px, 40px) scale(0.9) rotateY(-25deg) rotateX(10deg); }
}

@keyframes laserScanReal {
    0% { top: 10px; opacity: 0; }
    10% { opacity: 1; }
    90% { top: 128px; opacity: 1; }
    100% { top: 128px; opacity: 0; }
}

@keyframes qrFocusReal {
    0%, 20% { filter: blur(8px); transform: scale(0.8) rotate(10deg); opacity: 0.5; }
    25%, 35% { filter: blur(0px); transform: scale(1) rotate(0deg); opacity: 0.9; }
    40%, 100% { filter: blur(8px); transform: scale(0.8) rotate(10deg); opacity: 0; }
}

@keyframes screenFadeScan {
    0%, 35% { opacity: 1; visibility: visible; }
    38%, 92% { opacity: 0; visibility: hidden; }
    95%, 100% { opacity: 1; visibility: visible; }
}

@keyframes screenFadeMenu {
    0%, 35% { opacity: 0; visibility: hidden; }
    38%, 92% { opacity: 1; visibility: visible; }
    95%, 100% { opacity: 0; visibility: hidden; }
}

@keyframes successPopReal {
    0%, 35% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    38% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    42%, 48% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    52%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

@keyframes menuScrollReal {
    0%, 50% { transform: translateY(0); }
    65%, 85% { transform: translateY(-130px); }
    95%, 100% { transform: translateY(0); }
}

@media (max-width: 767px) {
    .anim-phone-wrapper {
        right: 0%;
        transform-origin: center;
        transform: scale(0.8);
        animation: phoneHoverMobile 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    .anim-qr-tent {
        left: 5%;
        transform: scale(0.8) rotateX(15deg) rotateY(15deg) rotateZ(-10deg);
    }
}

@keyframes phoneHoverMobile {
    0%, 15% { transform: translate(100px, 40px) scale(0.7) rotateY(-20deg) rotateX(10deg); }
    25%, 35% { transform: translate(-10px, 0px) scale(0.85) rotateY(0deg) rotateX(0deg); }
    40%, 85% { transform: translate(-10px, 0px) scale(0.85) rotateY(0deg) rotateX(0deg); }
    95%, 100% { transform: translate(100px, 40px) scale(0.7) rotateY(-20deg) rotateX(10deg); }
}
