
:root {
    --bg-main: #F7F8FA;
    --bg-box: #FFFFFF;
    --text-main: #09090B;
    --text-muted: #71717A;
    --primary: #09805a; /*#0adcb6 */
    --primary-glow: rgba(10, 220, 182, 0.2);
    --border: rgba(0, 0, 0, 0.04);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    background-color: var(--bg-main);
    scroll-behavior: smooth;
}
body {
    font-family: 'Geist', -apple-system, sans-serif;
    background: transparent;
    color: var(--text-main);
    line-height: 1.5;
}

/* Auth-style Background Gradient Blobs */
.auth-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}
.auth-dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(148, 163, 184, 0.35) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.75;
}
.auth-blob {
    position: absolute;
    border-radius: 50%;
}
.blob-1 {
    top: -10%;
    left: 12%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.28) 0%, rgba(16, 185, 129, 0.06) 50%, transparent 70%);
    filter: blur(45px);
    animation: authFloat1 18s ease-in-out infinite alternate;
}
.blob-2 {
    bottom: -15%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    filter: blur(50px);
    animation: authFloat2 22s ease-in-out infinite alternate;
}
.blob-3 {
    top: 35%;
    left: 58%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.18) 0%, rgba(139, 92, 246, 0.03) 50%, transparent 70%);
    filter: blur(45px);
    animation: authFloat3 25s ease-in-out infinite alternate;
}

@keyframes authFloat1 {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-30px, 80px) scale(0.95); }
}
@keyframes authFloat2 {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-80px, -50px) scale(1.08); }
    100% { transform: translate(40px, -30px) scale(0.92); }
}
@keyframes authFloat3 {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-50px, 60px) scale(1.15); }
    100% { transform: translate(30px, -40px) scale(0.9); }
}
#foodCanvas {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    opacity: 0.04;
    pointer-events: none;
}
.floating-nav {
    position: fixed;
    top: 24px; left: 50%; transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px 12px 24px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    width: 95%; max-width: 1050px; z-index: 100;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-nav:hover {
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) translateY(-2px);
}
.nav-logo { font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; gap: 12px; color: var(--text-main); }
.brand-logo { height: 36px; width: auto; object-fit: contain; border-radius: 8px; }

.nav-links { display: flex; gap: 4px; margin-left: auto; margin-right: 32px; align-items: center; }
.nav-links a { 
    position: relative;
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    font-weight: 500; 
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav-links a:hover { 
    color: var(--text-main); 
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-login { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 600; 
    letter-spacing: 0.01em;
    font-size: 0.95rem; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav-login:hover { color: var(--primary); transform: translateY(-1px); }

.nav-btn { 
    background: var(--text-main); 
    color: white; 
    border: none; 
    padding: 12px 24px; 
    border-radius: var(--radius-full); 
    font-weight: 600; 
    letter-spacing: 0.01em;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav-btn:hover { 
    transform: scale(1.05) translateY(-2px); 
    background: var(--primary); 
    box-shadow: 0 8px 24px var(--primary-glow); 
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-content { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn-primary, .btn-secondary {
    padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; letter-spacing: 0.01em; font-size: 1rem; cursor: pointer; transition: all 0.3s; border: none;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 8px 24px var(--primary-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px var(--primary-glow); }
.btn-secondary { background: white; color: var(--text-main); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--text-muted); }

.hero { 
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
}
.floating-food {
    position: absolute;
    width: 96px;
    height: 96px;
    color: var(--primary);
    opacity: 0.2;
    user-select: none;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    animation: heroFloat 6s ease-in-out infinite;
    cursor: grab;
}
.floating-food svg {
    width: 100%;
    height: 100%;
    display: block;
}
@keyframes heroFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: 30px; }
}
.hero-badge { 
    background: rgba(10, 220, 182, 0.08); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(10, 220, 182, 0.3); 
    box-shadow: 0 4px 16px rgba(10, 220, 182, 0.05); 
    padding: 6px 16px; 
    border-radius: var(--radius-full); 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: var(--primary); 
    margin-bottom: 20px; 
    z-index: 10; 
    position: relative; 
    display: inline-block; 
}
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
}
.hero-highlight {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    color: var(--text-main);
    padding-bottom: 0.15em;
}
.hero-underline {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.6em;
    min-height: 12px;
    max-height: 24px;
    color: var(--primary);
    pointer-events: none;
    overflow: visible;
}


.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 20px;
    z-index: 10;
    position: relative;
}
.hero-actions { display: flex; gap: 16px; margin-bottom: 48px; z-index: 10; position: relative; }
.hero-metrics { display: flex; gap: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.metric h3 { font-size: 2rem; font-weight: 800; color: var(--text-main); }
.metric p { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

.social-proof { padding: 40px 0 80px; text-align: center; }
.social-proof p { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 32px; }
.logo-strip { opacity: 0.5; filter: grayscale(100%); transition: all 0.3s ease; }
.logo-strip:hover { opacity: 0.8; filter: grayscale(0%); }
.marquee-track { display: flex; justify-content: center; flex-wrap: wrap; gap: 64px; align-items: center; }
.dup-logo { display: none; }
.custom-logo { max-height: 40px; width: auto; object-fit: contain; }

.bento-section { padding: 80px 0; }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em; }
.section-heading p { color: var(--text-muted); font-size: 1.1rem; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 24px; }
.bento-box { 
    background: var(--bg-box); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 32px; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    overflow: hidden; 
    position: relative; 
    box-shadow: var(--shadow-sm);
}
.bento-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}
.bento-box:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-hover); border-color: rgba(0,0,0,0.15); }
.box-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; }
.icon { font-size: 2.5rem; margin-bottom: auto; }
.bento-box h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 8px; }
.bento-box p { color: var(--text-muted); font-size: 0.95rem; font-weight: 400; }

.span-2x2 { grid-column: span 2; grid-row: span 2; }
.span-2x1 { grid-column: span 2; grid-row: span 1; }
.highlight-box { background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%); border-color: rgba(52, 211, 153, 0.2); }
.highlight-box h3 { font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; margin-top: auto; margin-bottom: 12px; }
.highlight-box p { font-size: 1.1rem; line-height: 1.6; font-weight: 400; }
.dark-box { background: #09090B; color: white; }
.dark-box p { color: #A1A1AA; }
.box-flex { display: flex; justify-content: space-between; align-items: flex-end; height: 100%; }
.mini-chart { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.bar { width: 24px; background: #27272A; border-radius: 4px 4px 0 0; }
.bar.active { background: var(--primary); }

.how-it-works-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; max-width: 1000px; margin-inline: auto; }
.step-box { padding: 0; display: flex; flex-direction: column; overflow: visible; background: var(--bg-box); border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
.step-box:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(52, 211, 153, 0.15); border-color: rgba(52, 211, 153, 0.3); z-index: 10; }

.step-box::after { content: ''; position: absolute; top: 90px; right: -28px; width: 24px; height: 24px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; opacity: 0.4; }
.step-box:last-child::after { display: none; }

.step-ui-preview { width: 100%; height: 180px; background: linear-gradient(180deg, #FAFAFA 0%, #F4F4F5 100%); border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

.mock-phone { width: 120px; height: 160px; background: white; border: 6px solid #E4E4E7; border-radius: 20px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; position: absolute; bottom: 0; box-shadow: 0 -4px 24px rgba(0,0,0,0.06); display: flex; flex-direction: column; padding: 12px; }
.mock-phone.success { justify-content: center; align-items: center; background: var(--primary); border-color: var(--primary); }

.mock-qr-scanner { width: 100%; height: 100%; border: 2px dashed #A1A1AA; border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.scanner-line { position: absolute; width: 100%; height: 2px; background: var(--primary); top: 50%; box-shadow: 0 0 12px var(--primary); animation: scan 2s infinite ease-in-out; }
@keyframes scan { 0% { top: 10%; } 50% { top: 90%; } 100% { top: 10%; } }
.qr-svg { width: 32px; height: 32px; color: #D4D4D8; }

.mock-menu { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.mock-menu-header { width: 60%; height: 8px; background: #E4E4E7; border-radius: 4px; margin-bottom: 12px; }
.mock-menu-item { width: 100%; height: 28px; background: #F4F4F5; border-radius: 6px; display: flex; gap: 8px; padding: 6px; align-items: center; }
.mock-menu-item::before { content: ''; width: 16px; height: 16px; background: #E4E4E7; border-radius: 4px; flex-shrink: 0; }
.mock-menu-item.half::after { content: ''; width: 40%; height: 6px; background: #E4E4E7; border-radius: 3px; }

.success-svg { width: 48px; height: 48px; }

.step-box .box-content { padding: 32px 24px; align-items: center; justify-content: flex-start; text-align: center; }
.step-number { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; margin-bottom: 16px; box-shadow: 0 4px 12px var(--primary-glow); }
.step-box h3 { margin-bottom: 8px; }

/* Grid Layouts for New Sections */
.why-spryon-grid { grid-template-columns: repeat(4, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; }

/* Testimonials Styles */
.testimonials-grid .bento-box { height: 100%; min-height: 260px; }
.flex-column-between { display: flex; flex-direction: column; justify-content: space-between; height: 100%; text-align: left; }
.testimonial-stars { display: flex; align-items: center; margin-bottom: 24px; }
.star-svg { width: 18px; height: 18px; fill: #F59E0B; margin-right: 2px; }
.testimonial-quote { font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--text-main); margin-bottom: 32px; flex-grow: 1; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.testimonial-author strong { color: var(--text-main); font-weight: 700; font-size: 1rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.author-link { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
.author-link:hover { text-decoration: underline; color: #10B981; }

.alt-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); }
.phase-label { display: inline-block; padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; background: rgba(52, 211, 153,0.1); color: var(--primary); }
.phase-label.warning { background: rgba(245, 158, 11, 0.1); color: #D97706; }
.phase-today ul { list-style: none; margin-top: 16px; color: var(--text-muted); }
.phase-today li { margin-bottom: 8px; }
.blur-box { background: rgba(255,255,255,0.4); backdrop-filter: blur(10px); }

.cta-section { padding: 100px 0; }
.cta-bento { background: var(--bg-box); color: var(--text-main); border: 1px solid var(--border); box-shadow: var(--shadow-sm); border-radius: var(--radius-lg); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.elegant-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.cta-bento > * { position: relative; z-index: 1; }
.cta-bento h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.02em; }
.cta-bento p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.15rem; max-width: 600px; margin-inline: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; }

.premium-footer { position: relative; overflow: hidden; padding: 120px 24px 40px; background: transparent; border-top: 1px solid var(--border); margin-top: 80px; color: var(--text-main); }
.footer-bg-text { position: absolute; bottom: -8vw; left: 50%; transform: translateX(-50%); font-size: 28vw; font-weight: 800; letter-spacing: -0.05em; line-height: 1; color: var(--text-main); opacity: 0.03; z-index: 0; user-select: none; pointer-events: none; white-space: nowrap; will-change: transform; transition: opacity 1s ease; }
.footer-container { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; margin-bottom: 80px; }
.footer-brand-info { max-width: 320px; }
.footer-logo { margin-bottom: 24px; font-size: 1.5rem; }
.footer-brand-info .tagline { font-size: 1.25rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.footer-brand-info .supporting-text { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 64px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-main); margin-bottom: 24px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 16px; font-size: 0.95rem; font-weight: 500; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.footer-col a:hover { color: var(--primary); transform: translateX(3px); }
.footer-bottom-strip { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.9rem; }
.footer-copyright { display: flex; gap: 24px; align-items: center; }
.company-credit { font-weight: 500; }
.social-links { display: flex; gap: 16px; align-items: center; }
.social-links a { color: var(--text-muted); transition: color 0.3s ease; display: block; }
.social-links a:hover { color: var(--primary); }

.number-mono { font-family: 'Geist Mono', monospace; }

.pricing-section { max-width: 1200px; margin: 0 auto; padding: 120px 24px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }
.pricing-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: visible; position: relative; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; z-index: 1;}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(52, 211, 153, 0.4); }
.card-content { padding: 48px 32px 40px; display: flex; flex-direction: column; height: 100%; text-align: left; position: relative; z-index: 2; }
.pricing-card h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.pricing-card .price { margin-bottom: 24px; }
.pricing-card .price > span:first-child { font-family: 'Geist Mono', monospace; font-size: 3.5rem; font-weight: 600; color: var(--text-main); letter-spacing: -0.05em; line-height: 1; }
.pricing-card .price > .price-period { font-family: 'Geist', -apple-system, sans-serif; font-size: 1.1rem; color: var(--text-muted); font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.price-subtext { font-size: 0.9rem !important; color: var(--text-muted) !important; font-weight: 400 !important; margin-top: 8px; display: inline-block; }
.pricing-desc { color: var(--text-muted); line-height: 1.5; margin-bottom: 32px; font-size: 1.05rem; font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.pricing-features li { color: var(--text-main); margin-bottom: 14px; display: flex; align-items: flex-start; font-size: 0.95rem; font-weight: 400; }
.modern-tick { color: var(--text-main); margin-right: 12px; flex-shrink: 0; font-weight: 800; font-size: 1.05rem; }
.pricing-divider { border: 0; height: 1px; background: rgba(0,0,0,0.06); margin: 0 0 24px 0; }
.pricing-footnote { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

/* Flowing Abstract Gradients Inspired by Reference Image */
.featured-card { 
    background: radial-gradient(120% 100% at 80% 90%, rgba(253, 186, 116, 0.45) 0%, transparent 60%), 
                radial-gradient(100% 120% at 10% 0%, rgba(254, 215, 170, 0.4) 0%, transparent 60%), 
                #fff7ed;
    border: 1px solid rgba(253, 186, 116, 0.3); z-index: 10; box-shadow: 0 12px 30px rgba(253, 186, 116, 0.1); 
}
.featured-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(253, 186, 116, 0.2); }

.soon-card { 
    background: radial-gradient(150% 120% at 80% 10%, rgba(216, 180, 254, 0.5) 0%, transparent 50%), 
                radial-gradient(120% 100% at 20% 90%, rgba(196, 181, 253, 0.6) 0%, transparent 60%), 
                #f5f3ff;
    border: 1px solid rgba(196, 181, 253, 0.4); box-shadow: 0 12px 30px rgba(167, 139, 250, 0.1); 
}
.soon-card:hover { transform: translateY(-8px); border-color: rgba(167, 139, 250, 0.6); box-shadow: 0 20px 40px rgba(167, 139, 250, 0.2); }

.enterprise-card { 
    background: radial-gradient(130% 110% at 90% 10%, rgba(167, 243, 208, 0.5) 0%, transparent 60%), 
                radial-gradient(120% 120% at 10% 90%, rgba(186, 230, 253, 0.6) 0%, transparent 60%), 
                #f0fdfa;
    color: var(--text-main); border: 1px solid rgba(167, 243, 208, 0.4); box-shadow: 0 12px 30px rgba(56, 189, 248, 0.08); 
}
.enterprise-card:hover { transform: translateY(-8px); border-color: rgba(56, 189, 248, 0.4); box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15); }

/* Badges */
.top-center-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 6px 20px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 700; z-index: 20; white-space: nowrap; letter-spacing: 0.02em; }
.primary-badge { background: linear-gradient(135deg, #fdba74, #fb923c); color: white; box-shadow: 0 4px 12px rgba(253, 186, 116, 0.3); border: 2px solid white; }
.warning-badge { background: linear-gradient(135deg, #c4b5fd, #a78bfa); color: white; box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3); border: 2px solid white; }

/* Extra Buttons */
.btn-outline { background: transparent; border: 2px solid var(--text-main); color: var(--text-main); padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; letter-spacing: 0.01em; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-align: center; }
.btn-outline:hover { background: var(--text-main); color: white; }
.btn-dark { background: white; color: var(--text-main); border: none; padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; letter-spacing: 0.01em; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-align: center; box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1); }
.btn-dark:hover { background: #f4f4f5; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2); }
.btn-hover-effect:active { transform: translateY(0) scale(0.98); }

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

.pricing-trust-line { text-align: center; margin-top: 48px; color: var(--text-muted); font-size: 1.1rem; font-weight: 500; }
.compare-link { color: var(--text-main); font-weight: 600; text-decoration: none; font-size: 1.05rem; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.compare-link .arrow-icon { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.compare-link:hover { color: var(--primary); border-color: var(--primary); }
.compare-link:hover .arrow-icon { transform: translateX(6px); }

.bento-animate { opacity: 1; transform: none; }
.bento-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .bento-section { padding: 40px 0; }
    .hero { padding: 80px 0 40px; }
    .section-heading { margin-bottom: 32px; }
    
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0 auto; gap: 40px; }
    .featured-card { transform: none; }
    .featured-card:hover { transform: translateY(-5px); }

    .bento-grid, .alt-grid, .how-it-works-grid, .why-spryon-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; grid-auto-rows: minmax(200px, auto); }
    .bento-box { padding: 24px; }
    
    .step-box::after { display: none; }
    .footer-top { flex-direction: column; gap: 48px; }
    .footer-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-bg-text { font-size: 32vw; bottom: -4vw; }
    
    .floating-nav { 
        padding: 12px 24px;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
        border-radius: 32px; 
        max-height: 60px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links, .nav-actions { 
        display: flex;
        flex-direction: column;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        margin: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .hamburger-menu { 
        display: flex; 
        position: absolute;
        top: 14px;
        right: 24px;
    }
    
    /* Mobile Menu Open State */
    .floating-nav.nav-active {
        max-height: 400px;
        padding-bottom: 24px;
        border-radius: 24px;
    }

    .cta-bento h2 { font-size: 2rem; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions button { width: 100%; }

    .floating-nav.nav-active .hamburger-menu span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .floating-nav.nav-active .hamburger-menu span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .floating-nav.nav-active .nav-links {
        opacity: 1;
        visibility: visible;
        margin-top: 32px;
        gap: 16px;
        transform: translateY(0);
    }

    .floating-nav.nav-active .nav-actions {
        opacity: 1;
        visibility: visible;
        margin-top: 24px;
        justify-content: flex-start;
        transform: translateY(0);
    }

    .hero-title { font-size: 3rem; }
    .hero-metrics { flex-direction: column; gap: 24px; align-items: center; border: none; padding-top: 0; }
}
@media (max-width: 600px) {
    .marquee-mobile { overflow: hidden; position: relative; width: 100%; white-space: nowrap; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
    .marquee-track { display: inline-flex; flex-wrap: nowrap; gap: 40px; animation: marquee-scroll 15s linear infinite; width: max-content; }
    .dup-logo { display: inline-block; }
    @keyframes marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 20px)); } /* 50% shift including gap */
    }

    .bento-section { padding: 32px 0; }
    .pricing-section { padding: 40px 16px; }
    .card-content { padding: 32px 20px; }
    .hero { padding: 80px 0 32px; }
    .hero-title { font-size: 2.2rem; line-height: 1.25; padding: 0 12px; }
    .hero-highlight { padding-bottom: 0.3em; }
    .hero-underline { min-height: 6px; max-height: 10px; }
    .hero-subtitle { font-size: 1rem; padding: 0 12px; }
    .section-heading h2 { font-size: 1.8rem; }
    .section-heading p { font-size: 1rem; }
    .bento-box h3 { font-size: 1.15rem; }
    .bento-box p { font-size: 0.9rem; }
    .pricing-card .price > span:first-child { font-size: 2.8rem; }
    .pricing-card h3 { font-size: 1.35rem; }
    .bento-grid, .alt-grid, .how-it-works-grid, .why-spryon-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .span-2x2, .span-2x1 { grid-column: span 1; grid-row: auto; }
    .bento-box { min-height: auto; padding: 20px; }
    .cta-section { padding: 40px 0; }
    .cta-bento { padding: 40px 20px; }
    .footer-nav-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-strip { flex-direction: column-reverse; gap: 24px; text-align: center; }
    .footer-copyright { flex-direction: column; gap: 8px; }
}

/* New Features Section Layout */
.features-section { padding: 100px 0; }
.feature-hero {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 60px;
    margin-bottom: 60px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}
.feature-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(10,220,182,0.1) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.feature-hero-content {
    flex: 1;
    z-index: 1;
}
.feature-hero-content .icon-wrap {
    width: 64px; height: 64px;
    background: rgba(10,220,182,0.1);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.feature-hero-content .icon-wrap svg { width: 32px; height: 32px; color: var(--primary); }
.feature-hero-content h3 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.feature-hero-content p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }

.demo-pill {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; font-weight: 600; color: var(--text-main); background: #f4f4f5; padding: 12px 20px; border-radius: var(--radius-full); transition: all 0.3s ease; cursor: pointer;
}
.demo-pill:hover { background: #e4e4e7; transform: translateY(-2px); }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background-color: var(--primary); box-shadow: 0 0 0 rgba(10,220,182, 0.4); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(10,220,182, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(10,220,182, 0); } 100% { box-shadow: 0 0 0 0 rgba(10,220,182, 0); } }

.feature-hero-visual {
    flex: 1;
    display: flex;
    gap: 32px;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}
.qr-code-box { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 40px; }
.qr-frame { width: 120px; height: 120px; background: white; border-radius: 16px; padding: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 1px solid var(--border); display: flex; justify-content: center; align-items: center; overflow: hidden; }
.view-menu-link { background: rgba(0,0,0,0.05); text-decoration: none; padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; color: var(--text-main); display: flex; align-items: center; gap: 6px; transition: background 0.2s ease; }
.view-menu-link:hover { background: rgba(0,0,0,0.1); }
.phone-mockup { width: 220px; height: 280px; overflow: hidden; border-radius: 24px 24px 0 0; border: 1px solid var(--border); box-shadow: 0 -8px 32px rgba(0,0,0,0.08); background-color: #fff; display: flex; justify-content: center; align-items: flex-start; border-bottom: none; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-card {
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}
.feature-card .icon-wrap {
    width: 56px; height: 56px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.feature-card .icon-wrap svg { width: 28px; height: 28px; color: var(--primary); }
.feature-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.6; }

.static-chart { margin-top: 24px; }

@media (max-width: 900px) {
    .feature-hero { flex-direction: column; padding: 40px 24px; text-align: center; gap: 40px; }
    .feature-hero-content { display: flex; flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; gap: 32px; }
    .feature-card { padding: 32px; text-align: center; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
}
