/* ============================================================
   NearU Premium Layer — premium.css
   Glassmorphism, textures, wave dividers, scroll progress,
   enhanced micro-interactions, and visual depth
   ============================================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--grad-brand);
    z-index: 9999;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* --- Noise Texture Overlay --- */
.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- Hero Premium Enhancements --- */
.hero-section {
    position: relative;
    background: var(--grad-brand-d);
    background-blend-mode: normal;
}
/* .hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
    z-index: 2;
} */

.hero-headline {
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subheadline {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-ambient-glow {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 163, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: ambient-pulse 6s ease-in-out infinite;
}

@keyframes ambient-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

/* --- Glassmorphism Dashboard Card --- */
.dashboard-card {
    background: rgba(26, 26, 46, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-dashboard), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-floating-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* --- Mouse Follow Glow (set via JS) --- */
.hero-mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 0, 88, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}
.hero-section:hover .hero-mouse-glow {
    opacity: 1;
}

/* --- Section Wave Dividers --- */
.wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
}
.wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wave-divider--white svg path { fill: var(--white); }
.wave-divider--cream svg path { fill: var(--warm-cream); }
.wave-divider--offwhite svg path { fill: var(--off-white); }
.wave-divider--dark svg path { fill: var(--charcoal); }
.wave-divider--brand svg path { fill: #CE0058; }

/* --- Enhanced Card Hover States --- */
.feature-card:hover {
    box-shadow: 0 12px 48px rgba(206, 0, 88, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.problem-card:hover {
    box-shadow: 0 12px 48px rgba(206, 0, 88, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.merchant-type-card:hover {
    box-shadow: 0 12px 40px rgba(206, 0, 88, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: 0 12px 48px rgba(206, 0, 88, 0.08), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    box-shadow: 0 12px 48px rgba(206, 0, 88, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* --- Trust Bar --- */
.trust-bar {
    padding: var(--sp-8) 0 var(--sp-6);
    background: var(--white);
    position: relative;
    z-index: 3;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    flex-wrap: wrap;
}
.trust-bar-label {
    font-family: var(--font-heading);
    font-weight: var(--fw-semi);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}
.trust-logos {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    flex-wrap: wrap;
    justify-content: center;
}
.trust-logo-slot {
    width: 120px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--light-grey);
    border: 1px solid var(--mid-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity var(--transition-base);
    overflow: hidden;
}
.trust-logo-slot:hover {
    opacity: 1;
}
.trust-logo-slot img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
}
.trust-logo-slot .placeholder-text {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Live Notification Ticker --- */
.hero-ticker {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 8px 20px 8px 12px;
    white-space: nowrap;
    animation: ticker-fade 4s ease-in-out infinite;
}
.hero-ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nearu-green);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-ticker-text {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes ticker-fade {
    0%, 10% { opacity: 0; transform: translateX(-50%) translateY(8px); }
    20%, 80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    90%, 100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}

/* --- Before/After Comparison (Infographic Split-Screen) --- */
.comparison-section {
    padding: var(--sp-4) 0;
    background: var(--white);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}
.comparison-card {
    border-radius: var(--radius-xl);
    padding: var(--sp-5) var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.comparison-card:hover {
    transform: translateY(-4px);
}
.comparison-card--before {
    background: linear-gradient(180deg, #FFF5F5 0%, var(--light-grey) 100%);
    border: 2px solid rgba(206, 0, 88, 0.1);
    box-shadow: var(--shadow-sm);
}
.comparison-card--before:hover {
    box-shadow: 0 12px 40px rgba(206, 0, 88, 0.08);
}
.comparison-card--after {
    background: linear-gradient(180deg, #F0FFF9 0%, #FAFFFE 100%);
    border: 2px solid rgba(0, 159, 154, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
}
.comparison-card--after::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--grad-brand);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-red);
}
.comparison-card--after:hover {
    box-shadow: 0 16px 48px rgba(0, 159, 154, 0.12);
}
.comparison-badge {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-self: flex-start;
}
.comparison-card--before .comparison-badge {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-muted);
}
.comparison-card--after .comparison-badge {
    background: var(--grad-brand);
    color: var(--white);
}
.comparison-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--sp-1);
}
.comparison-card--before h3 {
    color: var(--text-muted);
}
.comparison-card--after h3 {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
    padding: 6px 0;
}
.comparison-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.comparison-card--before .comparison-icon {
    background: rgba(206, 0, 88, 0.1);
    color: var(--nearu-red);
}
.comparison-card--after .comparison-icon {
    background: rgba(0, 159, 154, 0.15);
    color: var(--nearu-green);
}
.comparison-arrow {
    display: none;
}

/* --- Community Manifesto Block --- */
.manifesto-section {
    padding: var(--sp-12) 0;
    background: var(--warm-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.manifesto-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 0, 88, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.manifesto-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}
.manifesto-quote {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: var(--sp-4);
}
.manifesto-body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: var(--sp-5);
}
.manifesto-counter {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 12px 28px;
    box-shadow: var(--shadow-md);
}
.manifesto-counter-number {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.manifesto-counter-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Confetti Animation --- */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}
.confetti-piece {
    position: absolute;
    top: -10px;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    animation: confetti-fall linear forwards;
}
@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* --- Showcase Section Noise --- */
.showcase-section {
    position: relative;
}
.showcase-section .noise-overlay {
    opacity: 0.03;
}

/* --- CTA Section Warm Glow --- */
.cta-section::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 163, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* --- Enhanced Pricing Card Glow --- */
.pricing-card.featured:hover {
    box-shadow: 0 24px 64px rgba(206, 0, 88, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* --- Hero Text Cycling --- */
.hero-cycle-word {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.hero-cycle-word span {
    display: inline-block;
    animation: cycle-words 12s ease-in-out infinite;
}
@keyframes cycle-words {
    0%, 20% { opacity: 1; transform: translateY(0); }
    25%, 45% { opacity: 0; transform: translateY(-100%); }
    50%, 70% { opacity: 1; transform: translateY(0); }
    75%, 95% { opacity: 0; transform: translateY(100%); }
}

/* --- Typewriter cursor --- */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
    animation: blink-cursor 0.8s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Responsive Additions --- */
@media (max-width: 1023px) {
    .hero-ticker { display: none; }
    .comparison-grid { grid-template-columns: 1fr; }
    .comparison-arrow { transform: rotate(90deg); }
    .trust-logos { gap: var(--sp-3); }
    .trust-logo-slot { width: 100px; height: 36px; }
}

@media (max-width: 640px) {
    .trust-bar-inner { flex-direction: column; gap: var(--sp-3); }
    .trust-logos { gap: var(--sp-2); }
    .trust-logo-slot { width: 88px; height: 32px; }
    .manifesto-quote { font-size: 1.25rem; }
}

/* --- Mobile Mini Dashboard (restored for tablet/mobile) --- */
.hero-dashboard-mobile {
    display: none;
    margin-top: var(--sp-4);
    max-width: 320px;
}
.hero-dashboard-mobile .dashboard-card-mini {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--sp-3);
}
.dashboard-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-brand);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.mini-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
}
.mini-stat-value {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1rem;
    color: var(--white);
    display: block;
}
.mini-stat-value.grad {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mini-stat-label {
    font-family: var(--font-body);
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1023px) {
    .hero-dashboard-mobile { display: block; }
}

/* --- Scroll Snap Testimonials (Mobile) --- */
@media (max-width: 1023px) {
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: var(--sp-3);
        padding-bottom: var(--sp-3);
        -webkit-overflow-scrolling: touch;
    }
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }
}

/* --- WhatsApp CTA (Mobile) --- */
.whatsapp-fab {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 89;
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: var(--white);
}
@media (max-width: 1023px) {
    .whatsapp-fab { display: flex; }
}

/* --- Page Template Styles --- */
.page-hero {
    padding: 160px 0 80px;
    background: var(--grad-brand-d);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: 'NU';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 300px;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    line-height: 1;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--sp-3);
}
.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0 auto;
}
.page-hero .breadcrumb {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--sp-4);
}
.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}
.page-hero .breadcrumb a:hover { color: var(--white); }

/* --- Page Content Sections --- */
.page-content-section {
    padding: var(--sp-12) 0;
}
.page-content-section:nth-child(even) {
    background: var(--off-white);
}

/* --- About Page --- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
    padding: var(--sp-12) 0;
}
.about-story-text h2 { margin-bottom: var(--sp-3); }
.about-story-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--sp-2); }
.about-story-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.08), rgba(255, 163, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}
.value-card {
    text-align: center;
    padding: var(--sp-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.08), rgba(255, 163, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-3);
}
.value-icon svg { color: var(--nearu-red); }
.value-card h3 { font-size: 1.0625rem; margin-bottom: var(--sp-1); }
.value-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
}
.team-card {
    text-align: center;
    padding: var(--sp-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-brand-d);
    margin: 0 auto var(--sp-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1.5rem;
    color: var(--white);
}
.team-card h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.team-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; }

.metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    padding: var(--sp-8) 0;
}
.metric-card {
    text-align: center;
    padding: var(--sp-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.metric-number {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}
.metric-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --- Features Page --- */
.feature-deep-dive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
    padding: var(--sp-10) 0;
}
.feature-deep-dive:nth-child(even) {
    direction: rtl;
}
.feature-deep-dive:nth-child(even) > * {
    direction: ltr;
}
.feature-deep-dive-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--sp-2);
}
.feature-deep-dive-text p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: var(--sp-3);
}
.feature-deep-dive-visual {
    background: var(--charcoal-2);
    border-radius: var(--radius-xl);
    padding: var(--sp-4);
    position: relative;
    overflow: hidden;
}
.feature-deep-dive-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: var(--sp-8) 0;
}
.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.comparison-table thead th {
    background: var(--charcoal-2);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.comparison-table tbody tr {
    background: var(--white);
    border-bottom: 1px solid var(--mid-grey);
}
.comparison-table tbody tr:nth-child(even) {
    background: var(--off-white);
}
.comparison-table .check-yes {
    color: var(--nearu-green);
    font-weight: 700;
}
.comparison-table .check-no {
    color: var(--text-muted);
    opacity: 0.5;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    padding: var(--sp-12) 0;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--sp-5);
    box-shadow: var(--shadow-md);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.08), rgba(255, 163, 0, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { color: var(--nearu-red); }
.contact-info-text h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-base);
    margin-top: var(--sp-4);
}
.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ============================================================
   WHY NEARU SECTION
   ============================================================ */
.why-nearu-section {
    padding: var(--sp-4) 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.why-nearu-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 0, 88, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.why-nearu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
    margin-top: var(--sp-8);
}
.why-nearu-row--reverse {
    direction: rtl;
}
.why-nearu-row--reverse > * {
    direction: ltr;
}

.why-nearu-visual {
    position: relative;
}
.why-nearu-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: visible;
}

.why-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: float-alt 5s ease-in-out infinite;
}
.why-float-1 {
    bottom: -20px;
    right: -16px;
}
.why-float-2 {
    top: -20px;
    left: -16px;
}
.why-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nearu-orange), #FFD700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.why-float-text {
    display: flex;
    flex-direction: column;
}
.why-float-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.8125rem;
    color: var(--text-dark);
    line-height: 1.2;
}
.why-float-sub {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.why-nearu-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--sp-2);
    color: var(--text-dark);
}
.why-nearu-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: var(--sp-4);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.why-point svg {
    color: var(--nearu-green);
    flex-shrink: 0;
    margin-top: 3px;
}
.why-point span {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================================
   DIGITAL ADDRESS SECTION
   ============================================================ */
.digital-address-section {
    padding: var(--sp-4) 0;
    background: var(--warm-cream);
    position: relative;
    overflow: hidden;
}
.digital-address-section::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 163, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.digital-address-hero {
    max-width: 900px;
    margin: var(--sp-6) auto;
}

.da-transform-visual {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--sp-4);
    align-items: center;
}

.da-physical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
}
.da-storefront-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}
.da-label-tag {
    font-family: var(--font-heading);
    font-weight: var(--fw-semi);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.da-label-tag--digital {
    background: var(--grad-brand);
    color: var(--white);
}

.da-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    color: var(--nearu-red);
    animation: pulse-connector 2.5s ease-in-out infinite;
}
@keyframes pulse-connector {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-md); }
    50% { transform: scale(1.08); box-shadow: 0 8px 32px rgba(206, 0, 88, 0.15); }
}
.da-connector svg {
    width: 28px;
    height: 28px;
}

.da-digital {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    position: relative;
}

.da-phone-mockup {
    width: 100%;
    max-width: 260px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 2px solid var(--mid-grey);
}
.da-phone-header {
    background: var(--charcoal-2);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.da-url-bar {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
}
.da-phone-body {
    padding: var(--sp-3);
}
.da-phone-store-name {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.da-phone-tagline {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: var(--sp-2);
}
.da-phone-menu-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--sp-2);
}
.da-menu-item {
    height: 10px;
    background: var(--light-grey);
    border-radius: 5px;
}
.da-menu-item:nth-child(2) { width: 80%; }
.da-menu-item:nth-child(3) { width: 60%; }
.da-phone-loyalty-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 163, 0, 0.1), rgba(206, 0, 88, 0.06));
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--text-body);
    font-weight: 500;
}
.da-phone-loyalty-badge span {
    color: var(--nearu-orange);
    font-size: 0.875rem;
}

.da-qr-float {
    position: absolute;
    top: 20px;
    right: -36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}
.da-qr-float svg {
    color: var(--text-dark);
}
.da-qr-float span {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.da-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}
.da-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(206, 0, 88, 0.06);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.da-feature-card:hover {
    box-shadow: 0 12px 40px rgba(206, 0, 88, 0.08);
    transform: translateY(-6px) scale(1.01);
}
.da-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.08), rgba(255, 163, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-2);
}
.da-feature-icon svg {
    color: var(--nearu-red);
}
.da-feature-card h4 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.da-feature-card p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

#digital-address {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 163, 0, 0.16), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(0, 159, 154, 0.12), transparent 30%),
        linear-gradient(135deg, #fffaf3 0%, #fff 54%, #fff5ea 100%);
}

#digital-address::before {
    content: '';
    position: absolute;
    inset: 44px max(24px, calc((100vw - 1220px) / 2)) 52px;
    border: 1px solid rgba(206, 0, 88, 0.08);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 34px 110px rgba(70, 28, 16, 0.08);
    pointer-events: none;
    z-index: -1;
}

#digital-address .da-story-shell {
    display: grid;
    grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: center;
    min-height: 690px;
}

#digital-address .da-story-copy {
    max-width: 510px;
}

#digital-address .nu-section-head {
    margin-bottom: 28px;
}

#digital-address .nu-section-head h2 {
    letter-spacing: 0;
}

#digital-address .nu-section-head p {
    max-width: 34rem;
}

#digital-address .da-story-tabs {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

#digital-address .da-story-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 3px;
    width: 100%;
    padding: 18px 20px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(35, 23, 32, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 34px rgba(35, 23, 32, 0.05);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

#digital-address .da-story-tab::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    transform: scaleX(var(--da-progress, 0));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
    opacity: 0.9;
}

#digital-address .da-story-tab:hover,
#digital-address .da-story-tab:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(206, 0, 88, 0.18);
    box-shadow: 0 18px 42px rgba(206, 0, 88, 0.08);
}

#digital-address .da-story-tab:focus-visible {
    outline: 3px solid rgba(0, 116, 197, 0.26);
    outline-offset: 3px;
}

#digital-address .da-story-tab.active {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(206, 0, 88, 0.24);
    box-shadow: 0 22px 56px rgba(206, 0, 88, 0.12), 0 8px 24px rgba(255, 163, 0, 0.10);
}

#digital-address .da-story-tab span {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: var(--nearu-red);
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.10), rgba(255, 163, 0, 0.14));
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
}

#digital-address .da-story-tab strong {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.2;
}

#digital-address .da-story-tab small {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

#digital-address .da-story-stage-wrap {
    position: relative;
}

#digital-address .da-story-stage-wrap::before,
#digital-address .da-story-stage-wrap::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

#digital-address .da-story-stage-wrap::before {
    right: 4%;
    top: 2%;
    width: 180px;
    height: 180px;
    background: rgba(255, 163, 0, 0.22);
}

#digital-address .da-story-stage-wrap::after {
    left: 5%;
    bottom: 5%;
    width: 210px;
    height: 210px;
    background: rgba(0, 159, 154, 0.14);
}

#digital-address .da-story-stage {
    position: relative;
    min-height: 590px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 240, 0.62)),
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.8), transparent 58%);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 34px 90px rgba(35, 23, 32, 0.14);
}

#digital-address .da-story-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 440ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

#digital-address .da-story-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#digital-address .da-collage-card {
    position: absolute;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(35, 23, 32, 0.16);
    transform: translate3d(0, 0, 0);
}

#digital-address .da-collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.025);
}

#digital-address .da-collage-card--hero {
    left: 8%;
    top: 8%;
    width: 58%;
    height: 62%;
}

#digital-address .da-collage-card--phone {
    right: 7%;
    top: 17%;
    width: 36%;
    height: 42%;
    transform: rotate(4deg);
}

#digital-address .da-collage-card--team {
    right: 15%;
    bottom: 8%;
    width: 45%;
    height: 34%;
    transform: rotate(-3deg);
}

#digital-address .da-story-panel.active .da-collage-card--hero {
    animation: daFloatHero 7s ease-in-out infinite;
}

#digital-address .da-story-panel.active .da-collage-card--phone {
    animation: daFloatPhone 7.5s ease-in-out infinite;
}

#digital-address .da-story-panel.active .da-collage-card--team {
    animation: daFloatTeam 8s ease-in-out infinite;
}

#digital-address .da-story-chip {
    position: absolute;
    z-index: 3;
    min-width: 154px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(35, 23, 32, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#digital-address .da-story-chip--top {
    left: 6%;
    bottom: 18%;
}

#digital-address .da-story-chip--bottom {
    right: 6%;
    top: 65%;
}

#digital-address .da-story-chip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
}

#digital-address .da-story-chip strong {
    display: block;
    margin-top: 5px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.1;
}

@keyframes daFloatHero {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes daFloatPhone {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
    50% { transform: translate3d(-8px, 10px, 0) rotate(2deg); }
}

@keyframes daFloatTeam {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-3deg); }
    50% { transform: translate3d(8px, -8px, 0) rotate(-1deg); }
}

@media (max-width: 1023px) {
    #digital-address::before {
        inset: 28px 18px 34px;
        border-radius: 26px;
    }

    #digital-address .da-story-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 34px;
    }

    #digital-address .da-story-copy {
        max-width: 720px;
		padding:20px;
    }

    #digital-address .da-story-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #digital-address .da-story-tab {
        grid-template-columns: 1fr;
        min-height: 156px;
    }

    #digital-address .da-story-tab span {
        grid-row: auto;
    }

    #digital-address .da-story-stage {
        min-height: 540px;
    }
}

@media (max-width: 640px) {
    #digital-address .da-story-tabs {
        grid-template-columns: 1fr;
    }

    #digital-address .da-story-tab {
        grid-template-columns: auto 1fr;
        min-height: 0;
        padding: 16px;
    }

    #digital-address .da-story-tab span {
        grid-row: 1 / span 2;
    }

    #digital-address .da-story-stage {
        min-height: 610px;
        border-radius: 24px;
    }

    #digital-address .da-collage-card {
        border-width: 6px;
        border-radius: 22px;
    }

    #digital-address .da-collage-card--hero {
        left: 6%;
        top: 5%;
        width: 72%;
        height: 41%;
    }

    #digital-address .da-collage-card--phone {
        right: 5%;
        top: 38%;
        width: 58%;
        height: 30%;
    }

    #digital-address .da-collage-card--team {
        left: 8%;
        right: auto;
        bottom: 5%;
        width: 67%;
        height: 28%;
    }

    #digital-address .da-story-chip {
        min-width: 132px;
        padding: 11px 12px;
    }

    #digital-address .da-story-chip--top {
        left: 6%;
        bottom: 43%;
    }

    #digital-address .da-story-chip--bottom {
        right: 5%;
        top: 70%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #digital-address .da-story-tab,
    #digital-address .da-story-tab::before,
    #digital-address .da-story-panel,
    #digital-address .da-collage-card {
        transition: none;
        animation: none !important;
    }
}

/* ============================================================
   HOW IT WORKS — CONNECTED TIMELINE
   ============================================================ */
#accelerator-roadmap .nu-roadmap-step {
    --roadmap-connector-height: 18px;
    --roadmap-connector-gap: 5px;
    gap: calc(var(--roadmap-connector-height) + var(--roadmap-connector-gap) + 5px);
}

#accelerator-roadmap .nu-roadmap-step span {
    position: relative;
    z-index: 2;
}

#accelerator-roadmap .nu-roadmap-step span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: calc(100% + var(--roadmap-connector-gap));
    width: 1px;
    height: var(--roadmap-connector-height);
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 163, 0, 0.8), rgba(206, 0, 88, 0.44), rgba(206, 0, 88, 0));
    box-shadow: 0 0 12px rgba(206, 0, 88, 0.16);
    pointer-events: none;
}

#accelerator-roadmap .nu-roadmap-step strong {
    position: relative;
}

#accelerator-roadmap .nu-roadmap-step strong::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -9px;
    width: 5px;
    height: 5px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(206, 0, 88, 0.34);
    box-shadow: 0 0 10px rgba(255, 163, 0, 0.22);
    pointer-events: none;
}

@media (max-width: 720px) {
    #accelerator-roadmap .nu-roadmap-step {
        --roadmap-connector-height: 15px;
        --roadmap-connector-gap: 4px;
    }
}

.steps-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-top: var(--sp-6);
    padding-left: 60px;
}

.steps-line {
    position: absolute;
    left: 31px;
    top: 32px;
    bottom: 32px;
    width: 2px;
    background: linear-gradient(180deg, var(--nearu-red), var(--nearu-orange));
    opacity: 0.3;
    border-radius: 1px;
}

.steps-timeline .step-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--sp-4);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--sp-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mid-grey);
    position: relative;
    text-align: left;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.steps-timeline .step-card:hover {
    box-shadow: 0 12px 48px rgba(206, 0, 88, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.steps-timeline .step-number {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    font-size: 1.125rem;
    color: var(--white);
    box-shadow: var(--shadow-red);
    z-index: 2;
    margin: 0;
}

.steps-timeline .step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.steps-timeline .step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.step-visual {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
}
.step-mini-ui {
    width: 100%;
    height: 100%;
    background: var(--charcoal-2);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.step-mini-ui::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-brand);
}
.step-ui-bar {
    height: 6px;
    width: 60%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}
.step-ui-row {
    display: flex;
    gap: 6px;
}
.step-ui-row span {
    height: 6px;
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}
.step-ui-btn {
    height: 10px;
    width: 50%;
    background: var(--grad-brand);
    border-radius: 5px;
    opacity: 0.7;
}
.step-ui-qr {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto 8px;
    position: relative;
}
.step-ui-qr::before,
.step-ui-qr::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}
.step-ui-qr::before { top: 4px; left: 4px; }
.step-ui-qr::after { bottom: 4px; right: 4px; }
.step-ui-share {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.step-ui-share span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.step-ui-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100%;
    padding-top: 8px;
}
.step-chart-bar {
    flex: 1;
    background: var(--grad-brand);
    border-radius: 3px 3px 0 0;
    opacity: 0.6;
    min-height: 8px;
}

#how-it-works {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 163, 0, 0.18), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(0, 159, 154, 0.18), transparent 30%),
        radial-gradient(circle at 50% 92%, rgba(206, 0, 88, 0.18), transparent 34%),
        linear-gradient(135deg, #140c16 0%, #231720 48%, #30141b 100%);
}

#how-it-works::before {
    content: '';
    position: absolute;
    inset: 34px max(18px, calc((100vw - 1220px) / 2)) 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 34px 100px rgba(0, 0, 0, 0.22);
    pointer-events: none;
    z-index: -1;
}

#how-it-works::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 50% 48%, #000, transparent 72%);
    pointer-events: none;
    z-index: -1;
}

#how-it-works .how-orbit-head {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

#how-it-works .section-label {
    margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.7);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

#how-it-works .section-headline-center,
#how-it-works .section-sub-center {
    color: #fff;
}

#how-it-works .section-sub-center {
    color: rgba(255, 255, 255, 0.72);
}

#how-it-works .how-orbit-experience {
    display: grid;
    grid-template-columns: minmax(480px, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(32px, 6vw, 82px);
    align-items: center;
    margin-top: clamp(44px, 6vw, 76px);
}

#how-it-works .how-orbit-stage {
    position: relative;
    min-height: 560px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

#how-it-works .how-orbit-rings,
#how-it-works .how-orbit-rings span,
#how-it-works .how-orbit-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#how-it-works .how-orbit-rings {
    width: min(78%, 470px);
    aspect-ratio: 1;
    animation: howOrbitSpin 28s linear infinite;
}

#how-it-works .how-orbit-rings span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

#how-it-works .how-orbit-rings span:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 163, 0, 0.28);
}

#how-it-works .how-orbit-rings span:nth-child(2) {
    width: 76%;
    height: 76%;
    border-style: dashed;
    border-color: rgba(235, 93, 121, 0.24);
}

#how-it-works .how-orbit-rings span:nth-child(3) {
    width: 48%;
    height: 48%;
    border-color: rgba(0, 159, 154, 0.28);
    box-shadow: 0 0 80px rgba(255, 163, 0, 0.12);
}

#how-it-works .how-orbit-node {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 116px;
    min-height: 116px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

#how-it-works .how-orbit-node:nth-of-type(1) {
    left: 13%;
    top: 17%;
}

#how-it-works .how-orbit-node:nth-of-type(2) {
    right: 10%;
    top: 29%;
}

#how-it-works .how-orbit-node:nth-of-type(3) {
    left: 31%;
    bottom: 10%;
}

#how-it-works .how-orbit-node span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
    box-shadow: 0 10px 28px rgba(206, 0, 88, 0.32);
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
}

#how-it-works .how-orbit-node strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    line-height: 1.1;
}

#how-it-works .how-orbit-node:hover,
#how-it-works .how-orbit-node:focus-visible,
#how-it-works .how-orbit-node.active {
    transform: translateY(-6px) scale(1.05);
    border-color: rgba(255, 163, 0, 0.52);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(206, 0, 88, 0.22), 0 0 48px rgba(255, 163, 0, 0.18);
}

#how-it-works .how-orbit-node:focus-visible {
    outline: 3px solid rgba(255, 163, 0, 0.34);
    outline-offset: 4px;
}

#how-it-works .how-orbit-hub {
    z-index: 2;
    display: grid;
    place-items: center;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    animation: howOrbitFloat 7s ease-in-out infinite;
}

#how-it-works .how-phone-shell {
    width: 106px;
    height: 178px;
    padding: 10px;
    border-radius: 24px;
    background: #141018;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

#how-it-works .how-phone-top {
    width: 38px;
    height: 4px;
    margin: 0 auto 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

#how-it-works .how-phone-screen {
    display: grid;
    gap: 9px;
    height: calc(100% - 14px);
    padding: 13px 11px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fff6ea);
}

#how-it-works .how-phone-brand {
    color: var(--nearu-red);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

#how-it-works .how-phone-screen i,
#how-it-works .how-phone-screen b {
    display: block;
    border-radius: 999px;
    background: rgba(35, 23, 32, 0.12);
}

#how-it-works .how-phone-screen i {
    height: 10px;
}

#how-it-works .how-phone-screen i:nth-of-type(2) {
    width: 70%;
}

#how-it-works .how-phone-screen b {
    align-self: end;
    height: 26px;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
}

#how-it-works .how-orbit-float {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

#how-it-works .how-orbit-float--qr {
    right: 23%;
    bottom: 18%;
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.78) 10px, transparent 10px 18px, rgba(255,255,255,0.78) 18px 28px, transparent 28px) 14px 14px / 36px 36px,
        linear-gradient(rgba(255,255,255,0.78) 10px, transparent 10px 18px, rgba(255,255,255,0.78) 18px 28px, transparent 28px) 14px 14px / 36px 36px,
        rgba(255, 255, 255, 0.12);
    animation: howOrbitFloat 6.5s ease-in-out infinite reverse;
}

#how-it-works .how-orbit-float--chart {
    left: 12%;
    bottom: 25%;
    display: flex;
    align-items: end;
    gap: 7px;
    width: 118px;
    height: 86px;
    padding: 15px;
    border-radius: 24px;
    animation: howOrbitFloat 7.5s ease-in-out infinite;
}

#how-it-works .how-orbit-float--chart span {
    flex: 1;
    min-height: 18px;
    border-radius: 999px 999px 6px 6px;
    background: linear-gradient(180deg, var(--nearu-orange), var(--nearu-red));
}

#how-it-works .how-orbit-float--chart span:nth-child(1) { height: 34%; }
#how-it-works .how-orbit-float--chart span:nth-child(2) { height: 54%; }
#how-it-works .how-orbit-float--chart span:nth-child(3) { height: 76%; }
#how-it-works .how-orbit-float--chart span:nth-child(4) { height: 100%; }

#how-it-works .how-orbit-panels {
    position: relative;
    min-height: 350px;
}

#how-it-works .how-orbit-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 360ms ease, transform 440ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

#how-it-works .how-orbit-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#how-it-works .how-panel-kicker {
    color: var(--nearu-orange);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#how-it-works .how-orbit-panel h3 {
    margin: 13px 0 12px;
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

#how-it-works .how-orbit-panel p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.98rem;
    line-height: 1.78;
}

#how-it-works .how-panel-proof {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    width: max-content;
    max-width: 100%;
    margin-top: 24px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
}

#how-it-works .how-panel-proof span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#how-it-works .how-panel-proof strong {
    color: #fff;
    font-family: var(--font-heading);
}

@keyframes howOrbitSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes howOrbitFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -12px; }
}

@media (max-width: 1023px) {
    #how-it-works .how-orbit-experience {
        grid-template-columns: 1fr;
    }

    #how-it-works .how-orbit-stage {
        min-height: 500px;
    }

    #how-it-works .how-orbit-panels {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    #how-it-works::before {
        inset: 18px 12px;
        border-radius: 24px;
    }

    #how-it-works .how-orbit-stage {
        min-height: 440px;
        border-radius: 28px;
    }

    #how-it-works .how-orbit-node {
        width: 92px;
        min-height: 92px;
        padding: 11px;
    }

    #how-it-works .how-orbit-node:nth-of-type(1) {
        left: 7%;
        top: 13%;
    }

    #how-it-works .how-orbit-node:nth-of-type(2) {
        right: 5%;
        top: 28%;
    }

    #how-it-works .how-orbit-node:nth-of-type(3) {
        left: 23%;
        bottom: 8%;
    }

    #how-it-works .how-orbit-node span {
        width: 32px;
        height: 32px;
    }

    #how-it-works .how-orbit-hub {
        width: 170px;
        height: 170px;
    }

    #how-it-works .how-phone-shell {
        width: 88px;
        height: 148px;
    }

    #how-it-works .how-orbit-float--chart {
        left: 6%;
        bottom: 29%;
        width: 92px;
        height: 68px;
        padding: 12px;
    }

    #how-it-works .how-orbit-float--qr {
        right: 7%;
        bottom: 13%;
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    #how-it-works .how-orbit-panels {
        min-height: 390px;
    }

    #how-it-works .how-panel-proof {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #how-it-works .how-orbit-rings,
    #how-it-works .how-orbit-hub,
    #how-it-works .how-orbit-float {
        animation: none;
    }

    #how-it-works .how-orbit-node,
    #how-it-works .how-orbit-panel {
        transition: none;
    }
}

#how-it-works .how-orbit-experience {
    grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: stretch;
    max-width: 1180px;
    margin-inline: auto;
}

#how-it-works .how-product-copy {
    display: flex;
    align-items: center;
}

#how-it-works .how-orbit-tabs {
    display: grid;
    gap: 13px;
    width: 100%;
}

#how-it-works .how-orbit-node {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 3px;
    place-items: initial;
    width: 100%;
    min-height: 0;
    padding: 18px 18px 18px 20px;
    text-align: left;
    border-radius: 20px;
    overflow: hidden;
}

#how-it-works .how-orbit-node::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    transform: scaleX(var(--how-progress, 0));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--nearu-orange), var(--nearu-red));
    opacity: 0.92;
}

#how-it-works .how-orbit-node span {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
    font-size: 0.82rem;
}

#how-it-works .how-orbit-node strong {
    align-self: end;
    font-size: 1.04rem;
}

#how-it-works .how-orbit-node small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    line-height: 1.45;
}

#how-it-works .how-orbit-node:hover,
#how-it-works .how-orbit-node:focus-visible,
#how-it-works .how-orbit-node.active {
    transform: translateY(-3px);
}

#how-it-works .how-product-showcase {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 38px;
    background:
        radial-gradient(circle at 28% 16%, rgba(255, 163, 0, 0.18), transparent 32%),
        radial-gradient(circle at 78% 74%, rgba(206, 0, 88, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
}

#how-it-works .how-product-showcase::before {
    content: '';
    position: absolute;
    inset: 9%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
    filter: blur(10px);
    pointer-events: none;
}

#how-it-works .how-product-panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 14px;
    padding: clamp(22px, 3.4vw, 38px);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 460ms ease, transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

#how-it-works .how-product-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#how-it-works .how-panel-copy {
    position: relative;
    z-index: 4;
    width: min(520px, 100%);
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 12, 20, 0.48);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#how-it-works .how-panel-copy h3 {
    margin: 8px 0 6px;
    color: #fff;
    font-size: clamp(1.28rem, 2.2vw, 1.85rem);
}

#how-it-works .how-panel-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.65;
}

#how-it-works .how-screen-stack {
    position: relative;
    min-height: 540px;
    perspective: 1400px;
}

#how-it-works .how-screen-card {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    transform-style: preserve-3d;
}

#how-it-works .how-screen-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#how-it-works .how-screen-card--main {
    z-index: 3;
    left: 50%;
    top: 3%;
    width: min(42%, 315px);
    height: 94%;
    transform: translateX(-50%) rotateY(-5deg) rotateZ(1deg);
    animation: howScreenFloatMain 7s ease-in-out infinite;
}

#how-it-works .how-screen-card--wide {
    width: min(82%, 590px);
    height: 62%;
    top: 21%;
}

#how-it-works .how-screen-card--side {
    z-index: 2;
    top: 24%;
    width: min(34%, 255px);
    height: 68%;
    opacity: 0.92;
    filter: saturate(0.95);
}

#how-it-works .how-screen-card--left {
    left: 5%;
    transform: rotateY(12deg) rotateZ(-5deg) scale(0.9);
    animation: howScreenFloatLeft 7.4s ease-in-out infinite;
}

#how-it-works .how-screen-card--right {
    right: 5%;
    transform: rotateY(-12deg) rotateZ(5deg) scale(0.9);
    animation: howScreenFloatRight 7.8s ease-in-out infinite;
}

#how-it-works .how-product-panel.active .how-screen-card {
    animation-play-state: running;
}

#how-it-works .how-product-panel:not(.active) .how-screen-card {
    animation-play-state: paused;
}

@keyframes howScreenFloatMain {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -12px; }
}

@keyframes howScreenFloatLeft {
    0%, 100% { translate: 0 0; }
    50% { translate: -8px 10px; }
}

@keyframes howScreenFloatRight {
    0%, 100% { translate: 0 0; }
    50% { translate: 8px -8px; }
}

@media (max-width: 1023px) {
    #how-it-works .how-orbit-experience {
        grid-template-columns: 1fr;
    }

    #how-it-works .how-orbit-tabs {
		/*         grid-template-columns: repeat(4, minmax(210px, 1fr));
				overflow-x: auto;
				padding-bottom: 8px;
				scroll-snap-type: x proximity; */
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;

		overflow-x: hidden;
		padding-bottom: 0;
    }

    #how-it-works .how-orbit-node {
      /*   scroll-snap-align: start; */
		width: 100%;
		min-width: 100%;
    }

    #how-it-works .how-product-showcase {
        min-height: 640px;
    }
}

@media (max-width: 640px) {
    #how-it-works {
        padding: 58px 0;
    }

    #how-it-works .how-product-showcase {
        min-height: 760px;
        border-radius: 28px;
    }

    #how-it-works .how-product-panel {
        padding: 18px;
    }

    #how-it-works .how-panel-copy {
        padding: 16px;
    }

    #how-it-works .how-screen-stack {
        min-height: 570px;
    }

    #how-it-works .how-screen-card {
        border-radius: 26px;
    }

    #how-it-works .how-screen-card--main,
    #how-it-works .how-screen-card--wide {
        left: 50%;
        top: 4%;
        width: min(76%, 300px);
        height: 76%;
        transform: translateX(-50%) rotateZ(1deg);
    }

    #how-it-works .how-screen-card--side {
        top: auto;
        bottom: 2%;
        width: 70%;
        height: 100%;
        opacity: 0.9;
    }

    #how-it-works .how-screen-card--left {
        left: 1%;
    }

    #how-it-works .how-screen-card--right {
        right: 1%;
    }
}

@media (prefers-reduced-motion: reduce) {
    #how-it-works .how-orbit-node::before,
    #how-it-works .how-product-panel,
    #how-it-works .how-screen-card {
        transition: none;
        animation: none !important;
    }
}

/* ============================================================
   PRICING SECTION IMPROVEMENTS
   ============================================================ */
.pricing-toggle-wrap {
    margin-bottom: var(--sp-5);
}
.pricing-card.featured {
    transform: scale(1.04);
}
.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1023px) {
    .why-nearu-row {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }
    .why-nearu-row--reverse {
        direction: ltr;
    }
    .why-floating-card {
        display: none;
    }
    .da-transform-visual {
        grid-template-columns: 1fr;
        gap: var(--sp-3);
    }
    .da-connector {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }
    .da-connector svg {
        transform: rotate(90deg);
        width: 22px;
        height: 22px;
    }
    .da-features-grid {
        grid-template-columns: 1fr;
    }
    .da-qr-float {
        display: none;
    }
    .steps-timeline {
        padding-left: 48px;
    }
    .steps-timeline .step-number {
        left: -48px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .steps-line {
        left: 23px;
    }
    .step-visual {
        display: none;
    }
    .steps-timeline .step-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .steps-timeline {
        padding-left: 40px;
    }
    .steps-timeline .step-number {
        left: -40px;
        width: 34px;
        height: 34px;
        font-size: 0.875rem;
    }
    .steps-line {
        left: 19px;
    }
    .da-phone-mockup {
        max-width: 220px;
    }
}

/* --- Responsive for Pages --- */
@media (max-width: 1023px) {
    .about-story { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .feature-deep-dive { grid-template-columns: 1fr; }
    .feature-deep-dive:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .team-grid { grid-template-columns: 1fr; }
    .metrics-row { grid-template-columns: 1fr 1fr; }
}
/* ==========================================
   WHY NEARU VIDEO REPLACEMENT
   Premium Responsive Video Container
========================================== */

.why-nearu-video-wrap {
    position: relative;
    overflow: hidden;
    border-radius: inherit;
    isolation: isolate;
}

.why-nearu-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    /* Premium cinematic feel */
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

/* Subtle premium hover motion */
.why-nearu-video-wrap:hover .why-nearu-video {
    transform: scale(1.05);
}

/* Maintain overlays above video */
.why-floating-card {
    position: absolute;
    z-index: 3;
}

/* Optional cinematic overlay */
.why-nearu-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.18),
            rgba(0,0,0,0.02)
        );
    pointer-events: none;
    z-index: 1;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .why-nearu-video {
        object-position: center;
    }
}

/* ============================================================
   WHY NEARU PREMIUM STORY OVERRIDE
   Scoped storytelling experience for #why-nearu only
   ============================================================ */
.why-nearu-section {
    --why-ink: #24151f;
    --why-muted: rgba(36, 21, 31, 0.66);
    --why-line: rgba(36, 21, 31, 0.1);
    --why-glass: rgba(255, 255, 255, 0.72);
    --why-shadow: 0 24px 80px rgba(36, 21, 31, 0.12);
    padding: 40px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 163, 0, 0.2), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(0, 116, 197, 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #fff7ef 48%, #fbfbff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.why-nearu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.35;
    pointer-events: none;
}

.why-nearu-section::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 46%;
    width: min(86vw, 980px);
    height: min(86vw, 980px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 0, 88, 0.09), transparent 66%);
    transform: translate(-50%, -50%);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.why-nearu-section .container {
    position: relative;
    z-index: 1;
}

.why-nearu-section .why-story-intro {
    max-width: 820px;
    margin: 0 auto 40px;
    text-align: center;
}

.why-nearu-section .why-story-intro .section-label {
    display: block;
    text-align: center;
}

.why-nearu-section .why-story-intro .section-headline-center {
    color: var(--why-ink);
    margin-bottom: var(--sp-2);
}

.why-nearu-section .why-story-intro .section-sub-center {
    max-width: 670px;
    color: var(--why-muted);
}

.why-nearu-section .why-story {
    /* min-height: 220vh; */
    position: relative;
}

.why-nearu-section .why-story-shell {
    position: sticky;
    top: 96px;
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(360px, 1.16fr) minmax(190px, 0.72fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
    min-height: min(760px, calc(100vh - 132px));
    perspective: 1200px;
}

.why-nearu-section .why-story-copy {
    display: grid;
    gap: 14px;
}

.why-nearu-section .why-story-step {
    position: relative;
    padding: clamp(18px, 2.4vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54));
    box-shadow: 0 16px 50px rgba(36, 21, 31, 0.08);
    opacity: 0.58;
    transform: translateX(-8px) scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.why-nearu-section .why-story-step::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--nearu-red), var(--nearu-orange));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-nearu-section .why-story-step.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--why-shadow);
}

.why-nearu-section .why-story-step.active::before {
    opacity: 1;
}

.why-nearu-section .why-step-kicker {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nearu-red);
}

.why-nearu-section .why-story-step h3 {
    margin: 0 0 10px;
    color: var(--why-ink);
    font-size: clamp(1.15rem, 2vw, 1.62rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.why-nearu-section .why-story-step p {
    margin: 0;
    color: var(--why-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.why-nearu-section .why-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.why-nearu-section .why-step-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(206, 0, 88, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 0.73rem;
    font-weight: var(--fw-semi);
    white-space: nowrap;
}

.why-nearu-section .why-story-stage {
    position: relative;
    min-height: clamp(430px, 54vw, 620px);
    transform-style: preserve-3d;
    transition: transform 0.25s ease;
}

.why-nearu-section .why-story-stage::before {
    content: '';
    position: absolute;
    inset: 10% 5%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18)),
        radial-gradient(circle at 50% 0%, rgba(255, 163, 0, 0.26), transparent 42%);
    box-shadow: 0 34px 110px rgba(36, 21, 31, 0.14);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.why-nearu-section .why-visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(38px);
    opacity: 0.68;
    pointer-events: none;
}

.why-nearu-section .why-visual-glow--red {
    top: 9%;
    left: 6%;
    width: 210px;
    height: 210px;
    background: rgba(206, 0, 88, 0.24);
}

.why-nearu-section .why-visual-glow--blue {
    right: 4%;
    bottom: 13%;
    width: 250px;
    height: 250px;
    background: rgba(0, 116, 197, 0.18);
}

.why-nearu-section .why-layer {
    position: absolute;
    will-change: transform, translate;
}

.why-nearu-section .why-layer--video {
    left: 7%;
    top: 16%;
    width: 69%;
    z-index: 2;
}

.why-nearu-section .why-nearu-video-wrap {
    position: relative;
    aspect-ratio: 16 / 16;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 28px 78px rgba(36, 21, 31, 0.16);
    overflow: hidden;
    isolation: isolate;
}

.why-nearu-section .why-nearu-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(1.03);
    transition: transform 0.8s ease;
}

.why-nearu-section .why-nearu-video-wrap:hover .why-nearu-video {
    transform: scale(1.07);
}

.why-nearu-section .why-nearu-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(36, 21, 31, 0.22), transparent 48%),
        radial-gradient(circle at 75% 8%, rgba(255, 255, 255, 0.36), transparent 24%);
    pointer-events: none;
    z-index: 1;
}

.why-nearu-section .why-layer--phone {
    right: 3%;
    bottom: 7%;
    width: 200px;
    z-index: 4;
    filter: drop-shadow(0 24px 38px rgba(36, 21, 31, 0.2));
}

.why-nearu-section .why-layer--phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.why-nearu-section .why-proof-card {
    display: flex;
    align-items: center;
    min-width: 174px;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: var(--why-glass);
    box-shadow: 0 20px 54px rgba(36, 21, 31, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: whyFloat 6s ease-in-out infinite;
    z-index: 5;
}

.why-nearu-section .why-proof-card--loyalty {
    top: 7%;
    right: 5%;
}

.why-nearu-section .why-proof-card--orders {
    left: 0;
    bottom: 18%;
    animation-delay: -1.8s;
}

.why-nearu-section .why-proof-card--margin {
    right: 10%;
    bottom: 1%;
    animation-delay: -3s;
}

.why-nearu-section .why-proof-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
    color: var(--white);
    flex: 0 0 auto;
}

.why-nearu-section .why-proof-card--orders .why-proof-icon {
    background: linear-gradient(135deg, var(--nearu-green), #00c9b1);
}

.why-nearu-section .why-proof-card--margin .why-proof-icon {
    background: linear-gradient(135deg, var(--nearu-blue), #7b56a0);
}

.why-nearu-section .why-proof-card strong,
.why-nearu-section .why-proof-card small {
    display: block;
}

.why-nearu-section .why-proof-card strong {
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    line-height: 1.2;
}

.why-nearu-section .why-proof-card small {
    margin-top: 2px;
    color: var(--why-muted);
    font-size: 0.7rem;
    line-height: 1.25;
}

.why-nearu-section .why-story-metrics {
    display: grid;
    gap: 14px;
}

.why-nearu-section .why-metric-card {
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 44px rgba(36, 21, 31, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-nearu-section .why-metric-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.86);
}

.why-nearu-section .why-metric-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--why-muted);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: var(--fw-semi);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why-nearu-section .why-metric-card strong {
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.2;
}

.why-nearu-section .why-story-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px;
}

.why-nearu-section .why-story-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(36, 21, 31, 0.18);
    transition: width 0.3s ease, background 0.3s ease;
}

.why-nearu-section .why-story-dots span.active {
    width: 28px;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
}

@keyframes whyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1023px) {
    .why-nearu-section {
        padding: 76px 0;
    }

    .why-nearu-section .why-story {
        min-height: 0;
    }

    .why-nearu-section .why-story-shell {
        position: relative;
        top: auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
        gap: var(--sp-4);
    }

    .why-nearu-section .why-story-stage {
        order: 1;
        width: 100%;
        min-height: clamp(360px, 72vw, 540px);
        transform: none !important;
    }

    .why-nearu-section .why-story-copy {
        order: 2;
        display: flex;
        width: 100%;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 2px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .why-nearu-section .why-story-copy::-webkit-scrollbar {
        display: none;
    }

    .why-nearu-section .why-story-step {
        flex: 0 0 min(86vw, 420px);
        scroll-snap-align: start;
        opacity: 1;
        transform: none;
    }

    .why-nearu-section .why-story-step::before {
        opacity: 1;
    }

    .why-nearu-section .why-story-metrics {
        order: 3;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .why-nearu-section {
        padding: 68px 0;
    }

    .why-nearu-section .why-story-intro {
        margin-bottom: var(--sp-4);
    }

    .why-nearu-section .why-story-stage {
        min-height: 410px;
    }

    .why-nearu-section .why-layer--video {
        left: 0;
        top: 42px;
        width: 84%;
    }

    .why-nearu-section .why-layer--phone {
        right: 0;
        bottom: 54px;
        width: 34%;
        min-width: 112px;
    }

    .why-nearu-section .why-proof-card {
        min-width: 146px;
        padding: 10px 11px;
    }

    .why-nearu-section .why-proof-card--loyalty {
        top: 12px;
        right: 0;
    }

    .why-nearu-section .why-proof-card--orders {
        left: 0;
        bottom: 72px;
    }

    .why-nearu-section .why-proof-card--margin {
        right: 18px;
        bottom: 8px;
    }

    .why-nearu-section .why-story-step {
        flex-basis: min(88vw, 360px);
        padding: 18px;
    }

    .why-nearu-section .why-story-metrics {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-nearu-section .why-story-stage,
    .why-nearu-section .why-story-step,
    .why-nearu-section .why-proof-card,
    .why-nearu-section .why-nearu-video,
    .why-nearu-section .why-metric-card,
    .why-nearu-section .why-story-dots span {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* ============================================================
   WHY NEARU IMMERSIVE REDESIGN
   Fully scoped to #why-nearu.
   ============================================================ */
#why-nearu.why-nearu-section {
    --why-ink: #21151d;
    --why-muted: rgba(33, 21, 29, 0.68);
    --why-soft-line: rgba(33, 21, 29, 0.1);
    --why-glass-strong: rgba(255, 255, 255, 0.82);
    --why-glass-soft: rgba(255, 255, 255, 0.54);
    --why-panel-shadow: 0 30px 90px rgba(43, 24, 22, 0.14);
    scroll-margin-top: 92px;
    padding: clamp(86px, 9vw, 132px) 0;
    overflow: hidden;
}

#why-nearu.why-nearu-section::before {
    opacity: 0.28;
    background:
        linear-gradient(rgba(255, 255, 255, 0.38) 1px, transparent 1px),
        linear-gradient(90deg, rgba(206, 0, 88, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
}

#why-nearu.why-nearu-section::after {
    left: 72%;
    top: 38%;
    width: min(78vw, 940px);
    height: min(78vw, 940px);
    background:
        radial-gradient(circle, rgba(255, 163, 0, 0.15), transparent 58%),
        radial-gradient(circle at 35% 35%, rgba(206, 0, 88, 0.1), transparent 44%);
    filter: blur(10px);
}

#why-nearu .why-story-intro {
    max-width: 930px;
    margin: 0 auto clamp(44px, 6vw, 78px);
}

#why-nearu .why-story-intro .section-label {
    display: block;
    margin-bottom: 14px;
}

#why-nearu .why-story-intro .section-headline-center {
    max-width: 820px;
    margin: 0 auto 18px;
    color: var(--why-ink);
    letter-spacing: 0;
}

#why-nearu .why-story-intro .section-sub-center {
    max-width: 700px;
    margin-bottom: 0;
    color: var(--why-muted);
}

#why-nearu .why-story {
    position: relative;
    min-height: 230vh;
}

#why-nearu .why-story-shell {
    position: sticky;
    top: 88px;
    display: grid;
    grid-template-columns: minmax(270px, 0.84fr) minmax(520px, 1.36fr);
    grid-template-areas:
        "copy stage"
        "metrics stage";
    gap: clamp(22px, 3.4vw, 54px);
    align-items: center;
    min-height: min(790px, calc(100vh - 116px));
    perspective: 1600px;
}

#why-nearu .why-story-copy {
    grid-area: copy;
    position: relative;
    display: grid;
    gap: 14px;
}

#why-nearu .why-story-copy::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: linear-gradient(180deg, rgba(206, 0, 88, 0.26), rgba(255, 163, 0, 0.18), transparent);
    pointer-events: none;
}

#why-nearu .why-story-step {
    position: relative;
    min-height: 170px;
    padding: 22px 22px 22px 68px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34)),
        radial-gradient(circle at 92% 16%, rgba(255, 163, 0, 0.12), transparent 34%);
    box-shadow: 0 18px 52px rgba(43, 24, 22, 0.08);
    opacity: 0.64;
    transform: translateX(-8px) scale(0.985);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 320ms ease, transform 320ms ease, background 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

#why-nearu .why-story-step::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 24px;
    width: 14px;
    height: 14px;
    border: 4px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    background: rgba(206, 0, 88, 0.28);
    box-shadow: 0 0 0 7px rgba(206, 0, 88, 0.08);
    transition: background 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

#why-nearu .why-story-step::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(90deg, rgba(206, 0, 88, 0.1), rgba(255, 163, 0, 0.08));
    transition: opacity 320ms ease;
    pointer-events: none;
}

#why-nearu .why-story-step.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    border-color: rgba(255, 255, 255, 0.95);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 239, 0.66)),
        radial-gradient(circle at 94% 12%, rgba(255, 163, 0, 0.16), transparent 34%);
    box-shadow: var(--why-panel-shadow);
}

#why-nearu .why-story-step.active::before {
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
    box-shadow: 0 0 0 8px rgba(255, 163, 0, 0.14), 0 0 32px rgba(206, 0, 88, 0.28);
    transform: scale(1.08);
}

#why-nearu .why-story-step.active::after {
    opacity: 1;
}

#why-nearu .why-step-kicker,
#why-nearu .why-story-step h3,
#why-nearu .why-story-step p,
#why-nearu .why-step-tags {
    position: relative;
    z-index: 1;
}

#why-nearu .why-step-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--nearu-red);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

#why-nearu .why-story-step h3 {
    margin: 0 0 10px;
    color: var(--why-ink);
    font-size: clamp(1.24rem, 1.7vw, 1.78rem);
    line-height: 1.08;
    letter-spacing: 0;
}

#why-nearu .why-story-step p {
    max-width: 34rem;
    margin: 0;
    color: var(--why-muted);
    font-size: 0.96rem;
    line-height: 1.68;
}

#why-nearu .why-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

#why-nearu .why-step-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid rgba(206, 0, 88, 0.12);
    border-radius: 999px;
    color: var(--why-ink);
    background: rgba(255, 255, 255, 0.72);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

#why-nearu .why-story-stage {
    grid-area: stage;
    position: relative;
    min-height: clamp(560px, 58vw, 760px);
    transform-style: preserve-3d;
    transition: transform 260ms ease;
}

#why-nearu .why-story-stage::before {
    content: '';
    position: absolute;
    inset: 7% 4% 8%;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 163, 0, 0.24), transparent 30%),
        radial-gradient(circle at 78% 72%, rgba(206, 0, 88, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 246, 237, 0.24));
    box-shadow: 0 42px 130px rgba(43, 24, 22, 0.16);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

#why-nearu .why-story-stage::after {
    content: '';
    position: absolute;
    inset: 16% 12%;
    border: 1px solid rgba(33, 21, 29, 0.08);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
    animation: whyStagePulse 7s ease-in-out infinite;
}

#why-nearu .why-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(33, 21, 29, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

#why-nearu .why-orbit-ring--outer {
    width: min(86%, 610px);
    aspect-ratio: 1;
    animation: whyOrbit 28s linear infinite;
}

#why-nearu .why-orbit-ring--inner {
    width: min(58%, 410px);
    aspect-ratio: 1;
    border-style: dashed;
    border-color: rgba(206, 0, 88, 0.13);
    animation: whyOrbit 22s linear infinite reverse;
}

#why-nearu .why-visual-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.7;
    pointer-events: none;
}

#why-nearu .why-visual-glow--red {
    left: 10%;
    top: 9%;
    width: 240px;
    height: 240px;
    background: rgba(206, 0, 88, 0.2);
}

#why-nearu .why-visual-glow--blue {
    right: 4%;
    bottom: 9%;
    width: 260px;
    height: 260px;
    background: rgba(255, 163, 0, 0.18);
}

#why-nearu .why-layer {
    position: absolute;
    will-change: transform, translate;
}

#why-nearu .why-layer--video {
    left: 10%;
    top: 12%;
    z-index: 3;
    width: min(62%, 470px);
}

#why-nearu .why-nearu-video-wrap {
    position: relative;
    aspect-ratio: 16 / 12;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 32px 84px rgba(33, 21, 29, 0.18);
    isolation: isolate;
}

#why-nearu .why-nearu-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.04);
    transition: transform 800ms ease;
}

#why-nearu .why-nearu-video-wrap:hover .why-nearu-video {
    transform: scale(1.08);
}

#why-nearu .why-nearu-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(33, 21, 29, 0.28), transparent 52%),
        radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.42), transparent 28%);
    pointer-events: none;
}

#why-nearu .why-layer--phone {
    right: 9%;
    bottom: 10%;
    z-index: 6;
    width: clamp(160px, 18vw, 230px);
    filter: drop-shadow(0 30px 48px rgba(33, 21, 29, 0.24));
}

#why-nearu .why-layer--phone img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

#why-nearu .why-signal-card,
#why-nearu .why-proof-card {
    z-index: 8;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 68px rgba(33, 21, 29, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#why-nearu .why-signal-card {
    min-width: 184px;
    padding: 15px 16px;
    animation: whyFloat 6.8s ease-in-out infinite;
}

#why-nearu .why-signal-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--why-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

#why-nearu .why-signal-card strong {
    display: block;
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.15;
}

#why-nearu .why-signal-card i {
    display: block;
    height: 5px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(33, 21, 29, 0.08);
}

#why-nearu .why-signal-card i::before {
    content: '';
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
}

#why-nearu .why-signal-card--owned {
    right: 3%;
    top: 14%;
}

#why-nearu .why-signal-card--margin {
    left: 1%;
    bottom: 20%;
    animation-delay: -2s;
}

#why-nearu .why-signal-card--margin i::before {
    width: 100%;
    background: linear-gradient(90deg, var(--nearu-green), #00c9b1);
}

#why-nearu .why-signal-card--loyalty {
    right: 23%;
    bottom: 1%;
    animation-delay: -3.7s;
}

#why-nearu .why-signal-card--loyalty i::before {
    width: 87%;
}

#why-nearu .why-proof-card {
    right: 5%;
    top: 42%;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 13px 15px;
    animation: whyFloat 6.2s ease-in-out infinite -1s;
}

#why-nearu .why-proof-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
}

#why-nearu .why-proof-card strong,
#why-nearu .why-proof-card small {
    display: block;
}

#why-nearu .why-proof-card strong {
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    line-height: 1.15;
}

#why-nearu .why-proof-card small {
    margin-top: 3px;
    color: var(--why-muted);
    font-size: 0.72rem;
}

#why-nearu .why-story-metrics {
    grid-area: metrics;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

#why-nearu .why-metric-card {
    min-height: 104px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 16px 44px rgba(43, 24, 22, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

#why-nearu .why-metric-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 54px rgba(43, 24, 22, 0.1);
}

#why-nearu .why-metric-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--why-muted);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#why-nearu .why-metric-card strong {
    display: block;
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: clamp(0.96rem, 1.3vw, 1.18rem);
    line-height: 1.16;
}

#why-nearu .why-story-dots {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 2px 0;
}

#why-nearu .why-story-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(33, 21, 29, 0.18);
    transition: width 280ms ease, background 280ms ease;
}

#why-nearu .why-story-dots span.active {
    width: 32px;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
}

@keyframes whyStagePulse {
    0%, 100% {
        transform: scale(0.98);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes whyOrbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1180px) {
    #why-nearu .why-story-shell {
        grid-template-columns: minmax(250px, 0.9fr) minmax(430px, 1.1fr);
        gap: 28px;
    }

    #why-nearu .why-story-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1023px) {
    #why-nearu.why-nearu-section {
        padding: 76px 0;
    }

    #why-nearu .why-story {
        min-height: 0;
    }

    #why-nearu .why-story-shell {
        position: relative;
        top: auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
        gap: 28px;
    }

    #why-nearu .why-story-stage {
        order: 1;
        width: 100%;
        min-height: clamp(520px, 76vw, 680px);
        transform: none !important;
    }

    #why-nearu .why-story-copy {
        order: 2;
        display: flex;
        width: 100%;
        gap: 14px;
        overflow-x: auto;
        padding: 2px 2px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    #why-nearu .why-story-copy::before {
        display: none;
    }

    #why-nearu .why-story-copy::-webkit-scrollbar {
        display: none;
    }

    #why-nearu .why-story-step {
        flex: 0 0 min(84vw, 430px);
        min-height: 210px;
        padding: 24px;
        scroll-snap-align: start;
        opacity: 1;
        transform: none;
    }

    #why-nearu .why-story-step::before {
        left: 22px;
        top: auto;
        bottom: 22px;
    }

    #why-nearu .why-story-metrics {
        order: 3;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    #why-nearu.why-nearu-section {
        padding: 66px 0;
    }

    #why-nearu .why-story-intro {
        margin-bottom: 34px;
    }

    #why-nearu .why-story-stage {
        min-height: 510px;
    }

    #why-nearu .why-layer--video {
        left: 4%;
        top: 52px;
        width: 78%;
    }

    #why-nearu .why-layer--phone {
        right: 3%;
        bottom: 78px;
        width: 138px;
    }

    #why-nearu .why-signal-card {
        min-width: 142px;
        padding: 12px;
    }

    #why-nearu .why-signal-card strong {
        font-size: 0.84rem;
    }

    #why-nearu .why-signal-card--owned {
        right: 0;
        top: 8px;
    }

    #why-nearu .why-signal-card--margin {
        left: 0;
        bottom: 74px;
    }

    #why-nearu .why-signal-card--loyalty {
        right: 22px;
        bottom: 0;
    }

    #why-nearu .why-proof-card {
        top: 250px;
        right: 0;
        min-width: 156px;
        padding: 11px 12px;
    }

    #why-nearu .why-story-step {
        flex-basis: min(88vw, 360px);
        min-height: 250px;
    }

    #why-nearu .why-story-metrics {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    #why-nearu .why-story-stage::after,
    #why-nearu .why-orbit-ring,
    #why-nearu .why-signal-card,
    #why-nearu .why-proof-card {
        animation: none;
    }
}

/* ============================================================
   WHY NEARU HORIZONTAL PRODUCT STORY
   Final scoped redesign for the compact premium experience.
   ============================================================ */
#why-nearu.why-nearu-section {
    --why-ink: #21151d;
    --why-muted: rgba(33, 21, 29, 0.68);
    --why-card: rgba(255, 255, 255, 0.78);
    --why-card-strong: rgba(255, 255, 255, 0.94);
    --why-line: rgba(33, 21, 29, 0.1);
    --why-depth: 0 26px 78px rgba(43, 24, 22, 0.12);
    scroll-margin-top: 92px;
    padding: clamp(42px, 5vw, 68px) 0;
}

#why-nearu .why-story {
    min-height: 0;
}

#why-nearu .why-story-shell {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    grid-template-areas:
        "intro stage"
        "copy copy"
        "metrics metrics";
    gap: clamp(16px, 2.3vw, 28px);
    align-items: start;
    min-height: 0;
    perspective: 1200px;
}

#why-nearu .why-story-intro {
    grid-area: intro;
    max-width: 560px;
    margin: 0;
    text-align: left;
}

#why-nearu .why-story-intro .section-label,
#why-nearu .why-story-intro .section-headline-center,
#why-nearu .why-story-intro .section-sub-center {
    text-align: left;
}

#why-nearu .why-story-intro .section-label {
    display: block;
    margin-bottom: 12px;
}

#why-nearu .why-story-intro .section-headline-center {
    margin: 0 0 16px;
    color: var(--why-ink);
    font-size: clamp(2.1rem, 4vw, 4.15rem);
    line-height: 1;
    letter-spacing: 0;
}

#why-nearu .why-story-intro .section-sub-center {
    max-width: 520px;
    margin: 0;
    color: var(--why-muted);
}

#why-nearu .why-story-stage {
    grid-area: stage;
    min-height: clamp(360px, 32vw, 460px);
    border-radius: 8px;
    transform-style: preserve-3d;
    transition: transform 260ms ease;
}

#why-nearu .why-story-stage::before {
    inset: 0;
    border-radius: 8px;
    background:
        radial-gradient(circle at 24% 12%, rgba(255, 163, 0, 0.23), transparent 30%),
        radial-gradient(circle at 78% 78%, rgba(206, 0, 88, 0.14), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 237, 0.36));
    box-shadow: 0 34px 100px rgba(43, 24, 22, 0.14);
}

#why-nearu .why-story-stage::after {
    inset: 15% 15%;
    animation-duration: 8s;
}

#why-nearu .why-layer--video {
    left: 8%;
    top: 10%;
    width: 68%;
    z-index: 3;
}

#why-nearu .why-nearu-video-wrap {
    aspect-ratio: 16 / 10.5;
    border-radius: 8px;
}

#why-nearu .why-layer--phone {
    right: 7%;
    bottom: 12%;
    width: clamp(150px, 15vw, 210px);
    z-index: 6;
}

#why-nearu .why-visual-panels {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
}

#why-nearu .why-visual-panel {
    position: absolute;
    min-width: 184px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 58px rgba(33, 21, 29, 0.14);
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: opacity 280ms ease, transform 280ms ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#why-nearu .why-visual-panel span {
    display: block;
    margin-bottom: 6px;
    color: var(--why-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#why-nearu .why-visual-panel strong {
    display: block;
    color: var(--why-ink);
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.15;
}

#why-nearu .why-visual-panel i {
    display: block;
    height: 5px;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(33, 21, 29, 0.08);
}

#why-nearu .why-visual-panel i::before {
    content: '';
    display: block;
    width: 82%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
}

#why-nearu .why-visual-panel--ownership {
    right: 3%;
    top: 16%;
}

#why-nearu .why-visual-panel--margin {
    left: 4%;
    bottom: 18%;
}

#why-nearu .why-visual-panel--margin i::before {
    width: 100%;
    background: linear-gradient(90deg, var(--nearu-green), #00c9b1);
}

#why-nearu .why-visual-panel--loyalty {
    right: 22%;
    bottom: 3%;
}

#why-nearu .why-visual-panel--loyalty i::before {
    width: 87%;
}

#why-nearu [data-active-step="0"] .why-visual-panel--ownership,
#why-nearu [data-active-step="1"] .why-visual-panel--margin,
#why-nearu [data-active-step="2"] .why-visual-panel--loyalty {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#why-nearu .why-flow-badges {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 5%;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

#why-nearu .why-flow-badges span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: var(--why-ink);
    background: rgba(255, 255, 255, 0.68);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#why-nearu .why-flow-badges i {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(206, 0, 88, 0.4), rgba(255, 163, 0, 0.18));
}

#why-nearu .why-story-copy {
    grid-area: copy;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding: 0;
}

#why-nearu .why-story-copy::before {
    display: none;
}

#why-nearu .why-story-step {
    min-height: 205px;
    padding: 18px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.82;
    transform: none;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38)),
        radial-gradient(circle at 92% 0%, rgba(255, 163, 0, 0.1), transparent 34%);
}

#why-nearu .why-story-step::before {
    left: 18px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-width: 3px;
}

#why-nearu .why-story-step::after {
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.1), rgba(255, 163, 0, 0.08));
}

#why-nearu .why-story-step:hover,
#why-nearu .why-story-step:focus-visible,
#why-nearu .why-story-step.active {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--why-depth);
    outline: none;
}

#why-nearu .why-step-kicker {
    margin: 8px 0 14px;
    padding-left: 22px;
}

#why-nearu .why-story-step h3 {
    min-height: 2.5em;
    font-size: clamp(1.08rem, 1.45vw, 1.34rem);
}

#why-nearu .why-story-step p {
    font-size: 0.9rem;
    line-height: 1.58;
}

#why-nearu .why-step-tags {
    margin-top: 16px;
}

#why-nearu .why-step-tags span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.68rem;
}

#why-nearu .why-story-metrics {
    grid-area: metrics;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: stretch;
}

#why-nearu .why-metric-card {
    min-height: 78px;
    padding: 16px 18px;
}

#why-nearu .why-story-dots {
    grid-column: auto;
    align-self: center;
    padding: 0 0 0 4px;
}

@media (max-width: 1180px) {
    #why-nearu .why-story-shell {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "stage"
            "copy"
            "metrics";
    }

    #why-nearu .why-story-intro,
    #why-nearu .why-story-intro .section-label,
    #why-nearu .why-story-intro .section-headline-center,
    #why-nearu .why-story-intro .section-sub-center {
        max-width: 760px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #why-nearu .why-story-stage {
        min-height: clamp(460px, 58vw, 640px);
    }
}

@media (max-width: 760px) {
    #why-nearu.why-nearu-section {
        padding: 46px 0;
    }

    #why-nearu .why-story-shell {
        gap: 20px;
    }

    #why-nearu .why-story-intro .section-headline-center {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    #why-nearu .why-story-stage {
        min-height: 410px;
    }

    #why-nearu .why-layer--video {
        left: 4%;
        top: 50px;
        width: 78%;
    }

    #why-nearu .why-layer--phone {
        right: 4%;
        bottom: 64px;
        width: 132px;
    }

    #why-nearu .why-visual-panel {
        min-width: 142px;
        padding: 11px 12px;
    }

    #why-nearu .why-visual-panel strong {
        font-size: 0.84rem;
    }

    #why-nearu .why-visual-panel--ownership {
        right: 0;
        top: 12px;
    }

    #why-nearu .why-visual-panel--margin {
        left: 0;
        bottom: 78px;
    }

    #why-nearu .why-visual-panel--loyalty {
        right: 16px;
        bottom: 0;
    }

    #why-nearu .why-flow-badges {
        display: none;
    }

    #why-nearu .why-story-copy {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 2px 2px 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    #why-nearu .why-story-copy::-webkit-scrollbar {
        display: none;
    }

    #why-nearu .why-story-step {
        flex: 0 0 min(84vw, 340px);
        min-height: 250px;
        scroll-snap-align: start;
    }

    #why-nearu .why-story-metrics {
        grid-template-columns: 1fr;
    }

    #why-nearu .why-story-dots {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    #why-nearu .why-story-step,
    #why-nearu .why-visual-panel {
        transition: none;
    }
}

/* ============================================================
   COMPARISON SHIFT STORY OVERRIDE
   Scoped only to Marketplace Reliance -> Customer Ownership
   ============================================================ */
.comparison-section {
    --shift-ink: #211820;
    --shift-muted: rgba(33, 24, 32, 0.66);
    --shift-glass: rgba(255, 255, 255, 0.72);
    --shift-line: rgba(33, 24, 32, 0.1);
    --shift-danger: #ce0058;
    --shift-success: #eb5d79;
	--shift-card: #eb5d79;
    position: relative;
    padding: 40px;
    background:
        radial-gradient(circle at 18% 18%, rgba(206, 0, 88, 0.12), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(0, 159, 154, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fff9f4 48%, #f8fffd 100%);
    overflow: hidden;
    isolation: isolate;
}

.comparison-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.58) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
    opacity: 0.42;
    pointer-events: none;
}

.comparison-section .container {
    position: relative;
    z-index: 1;
}

.comparison-section .comparison-intro {
    max-width: 820px;
    margin: 0 auto clamp(38px, 6vw, 72px);
    text-align: center;
}

.comparison-section .comparison-intro .section-label {
    display: block;
    text-align: center;
}

.comparison-section .comparison-intro .section-headline-center {
    margin-bottom: var(--sp-2);
    color: var(--shift-ink);
}

.comparison-section .comparison-intro .section-sub-center {
    max-width: 650px;
    color: var(--shift-muted);
}

.comparison-section .comparison-shift {
    position: relative;
    max-width: 1080px;
    min-height: 590px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
        radial-gradient(circle at 50% 50%, rgba(255, 163, 0, 0.14), transparent 48%);
    box-shadow: 0 28px 90px rgba(33, 24, 32, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.comparison-section .comparison-shift:hover .comparison-phase,
.comparison-section .comparison-shift:hover .comparison-orbit-dot,
.comparison-section .comparison-shift:hover .comparison-ring,
.comparison-section .comparison-shift:hover .comparison-core,
.comparison-section .comparison-shift:hover .comparison-story-card,
.comparison-section .comparison-shift:hover .comparison-story-arrow {
    animation-play-state: paused;
}

.comparison-section .comparison-orbit {
    position: absolute;
    inset: 28px;
    pointer-events: none;
}

.comparison-section .comparison-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(33, 24, 32, 0.09);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.comparison-section .comparison-ring--outer {
    width: min(74vw, 620px);
    height: min(74vw, 620px);
    animation: comparisonRotate 18s linear infinite;
}

.comparison-section .comparison-ring--inner {
    width: min(48vw, 390px);
    height: min(48vw, 390px);
    border-style: dashed;
    animation: comparisonRotateReverse 24s linear infinite;
}

.comparison-section .comparison-orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
    box-shadow: 0 0 28px rgba(206, 0, 88, 0.38);
    animation: comparisonOrbit 8s ease-in-out infinite;
}

.comparison-section .comparison-orbit-dot--one {
    left: 20%;
    top: 20%;
}

.comparison-section .comparison-orbit-dot--two {
    right: 18%;
    top: 26%;
    background: linear-gradient(135deg, var(--nearu-green), #00c9b1);
    box-shadow: 0 0 28px rgba(0, 159, 154, 0.36);
    animation-delay: -2.6s;
}

.comparison-section .comparison-orbit-dot--three {
    left: 30%;
    bottom: 17%;
    background: linear-gradient(135deg, var(--nearu-blue), #7b56a0);
    box-shadow: 0 0 28px rgba(0, 116, 197, 0.3);
    animation-delay: -5.2s;
}

.comparison-section .comparison-stage {
    position: relative;
    min-height: 460px;
    padding: clamp(24px, 4vw, 48px);
    display: grid;
    place-items: center;
}

.comparison-section .comparison-phase {
    position: absolute;
    width: min(520px, calc(100% - 48px));
    min-height: 310px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    background: var(--shift-card);
    box-shadow: 0 24px 72px rgba(33, 24, 32, 0.14);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform-origin: 50% 50%;
    will-change: transform, opacity, filter;
}

.comparison-section .comparison-phase--before {
    animation: comparisonBeforePhase 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.comparison-section .comparison-phase--after {
    animation: comparisonAfterPhase 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.comparison-section .comparison-phase::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 8px 0 0 8px;
}

.comparison-section .comparison-phase--before::before {
    background: linear-gradient(180deg, var(--shift-success), #00c9b1);
}

.comparison-section .comparison-phase--after::before {
   
	background: linear-gradient(180deg, var(--shift-danger), var(--nearu-orange));
}

.comparison-section .comparison-phase-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border: 1px solid var(--shift-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--shift-muted);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-section .comparison-phase h3 {
    margin: 0 0 12px;
    color: var(--shift-ink);
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.comparison-section .comparison-phase--after h3 {
    background: var(--shift-ink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-section .comparison-phase p {
    max-width: 430px;
    margin: 0;
    color: var(--shift-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.comparison-section .comparison-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 26px;
}

.comparison-section .comparison-proof-grid span {
    min-height: 72px;
    padding: 13px 12px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--shift-muted);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    line-height: 1.35;
}

.comparison-section .comparison-proof-grid b {
    display: block;
    margin-bottom: 4px;
    color: var(--shift-ink);
    font-size: 1.05rem;
}

.comparison-section .comparison-core {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 164px;
    height: 164px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.52)),
        linear-gradient(135deg, rgba(206, 0, 88, 0.1), rgba(0, 159, 154, 0.12));
    color: var(--shift-ink);
    text-align: center;
    box-shadow: 0 18px 60px rgba(33, 24, 32, 0.12);
    animation: comparisonCorePulse 8s ease-in-out infinite;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.comparison-section .comparison-core-badge {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.66rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-section .comparison-core strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    line-height: 1.28;
}

.comparison-section .comparison-storyline {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    max-width: 720px;
    margin: -36px auto 42px;
    padding: 0 24px;
}

.comparison-section .comparison-story-card {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: #f1c26f;
    box-shadow: 0 14px 44px rgba(33, 24, 32, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.comparison-section .comparison-story-card--before {
    animation: comparisonBeforeStory 8s ease-in-out infinite;
}

.comparison-section .comparison-story-card--after {
    animation: comparisonAfterStory 8s ease-in-out infinite;
}

.comparison-section .comparison-story-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--shift-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-section .comparison-story-card strong {
    color: var(--shift-ink);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    line-height: 1.25;
}

.comparison-section .comparison-story-arrow {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--nearu-red);
    box-shadow: 0 14px 34px rgba(206, 0, 88, 0.16);
    animation: comparisonArrowPulse 8s ease-in-out infinite;
}

@keyframes comparisonBeforePhase {
    0%, 42% {
        opacity: 1;
        transform: translateX(-22%) rotate(-3deg) scale(1);
        filter: blur(0);
        z-index: 3;
    }
    50%, 92% {
        opacity: 0.28;
        transform: translateX(-45%) rotate(-9deg) scale(0.86);
        filter: blur(1px);
        z-index: 1;
    }
    100% {
        opacity: 1;
        transform: translateX(-22%) rotate(-3deg) scale(1);
        filter: blur(0);
        z-index: 3;
    }
}

@keyframes comparisonAfterPhase {
    0%, 42% {
        opacity: 0.28;
        transform: translateX(45%) rotate(9deg) scale(0.86);
        filter: blur(1px);
        z-index: 1;
    }
    50%, 92% {
        opacity: 1;
        transform: translateX(22%) rotate(3deg) scale(1);
        filter: blur(0);
        z-index: 3;
    }
    100% {
        opacity: 0.28;
        transform: translateX(45%) rotate(9deg) scale(0.86);
        filter: blur(1px);
        z-index: 1;
    }
}

@keyframes comparisonBeforeStory {
    0%, 42%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50%, 92% {
        opacity: 0.54;
        transform: translateY(5px);
    }
}

@keyframes comparisonAfterStory {
    0%, 42%, 100% {
        opacity: 0.54;
        transform: translateY(5px);
    }
    50%, 92% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes comparisonCorePulse {
    0%, 42%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50%, 92% {
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes comparisonArrowPulse {
    0%, 42%, 100% {
        color: var(--nearu-red);
        transform: translateX(0);
    }
    50%, 92% {
        color: var(--nearu-green);
        transform: translateX(4px);
    }
}

@keyframes comparisonRotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes comparisonRotateReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes comparisonOrbit {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(26px, -18px, 0) scale(1.2);
    }
}

@media (max-width: 1023px) {
    .comparison-section .comparison-shift {
        min-height: 0;
    }

    .comparison-section .comparison-stage {
        min-height: 520px;
        padding: 24px;
    }

    .comparison-section .comparison-phase {
        width: min(520px, calc(100% - 36px));
    }

    .comparison-section .comparison-proof-grid {
        grid-template-columns: 1fr;
    }

    .comparison-section .comparison-proof-grid span {
        min-height: 0;
    }

    .comparison-section .comparison-storyline {
        margin-top: -16px;
    }
}

@media (max-width: 640px) {
    .comparison-section {
        padding: 68px 0;
    }

    .comparison-section .comparison-stage {
        min-height: 580px;
        padding: 18px;
    }

    .comparison-section .comparison-phase {
        width: calc(100% - 28px);
        min-height: 360px;
        padding: 22px;
    }

    .comparison-section .comparison-phase--before {
        animation-name: comparisonBeforePhaseMobile;
    }

    .comparison-section .comparison-phase--after {
        animation-name: comparisonAfterPhaseMobile;
    }

    .comparison-section .comparison-core {
        width: 132px;
        height: 132px;
    }

    .comparison-section .comparison-storyline {
        grid-template-columns: 1fr;
        margin: -6px auto 28px;
        padding: 0 18px;
    }

    .comparison-section .comparison-story-arrow {
        margin: 0 auto;
        transform: rotate(90deg);
    }

    .comparison-section .comparison-story-arrow svg {
        transform: rotate(90deg);
    }
}

@keyframes comparisonBeforePhaseMobile {
    0%, 42% {
        opacity: 1;
        transform: translateY(-18px) scale(1);
        filter: blur(0);
        z-index: 3;
    }
    50%, 92% {
        opacity: 0.24;
        transform: translateY(-52px) scale(0.88);
        filter: blur(1px);
        z-index: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(-18px) scale(1);
        filter: blur(0);
        z-index: 3;
    }
}

@keyframes comparisonAfterPhaseMobile {
    0%, 42% {
        opacity: 0.24;
        transform: translateY(52px) scale(0.88);
        filter: blur(1px);
        z-index: 1;
    }
    50%, 92% {
        opacity: 1;
        transform: translateY(18px) scale(1);
        filter: blur(0);
        z-index: 3;
    }
    100% {
        opacity: 0.24;
        transform: translateY(52px) scale(0.88);
        filter: blur(1px);
        z-index: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .comparison-section .comparison-phase,
    .comparison-section .comparison-orbit-dot,
    .comparison-section .comparison-ring,
    .comparison-section .comparison-core,
    .comparison-section .comparison-story-card,
    .comparison-section .comparison-story-arrow {
        animation: none;
    }

    .comparison-section .comparison-stage {
        display: grid;
        gap: 18px;
        min-height: 0;
    }

    .comparison-section .comparison-phase {
        position: relative;
        inset: auto;
        opacity: 1;
        transform: none;
        filter: none;
    }

    .comparison-section .comparison-core {
        display: none;
    }
}

/* ============================================================
   SCOPED REDESIGN: PLATFORM, FEATURES, COMMUNITY
   ============================================================ */
#platform.platform-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 163, 0, 0.22), transparent 32%),
        radial-gradient(circle at 90% 24%, rgba(0, 159, 154, 0.16), transparent 30%),
        linear-gradient(135deg, #fffaf3 0%, #fff 42%, #f7fbff 100%);
}

#platform .platform-story-bg,
#features .features-ambient,
#for-merchants .community-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

#platform .platform-story-bg::before,
#features .features-ambient::before,
#for-merchants .community-ambient::before {
    content: '';
    position: absolute;
    inset: 34px max(18px, calc((100vw - 1220px) / 2));
    border: 1px solid rgba(35, 23, 32, 0.07);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.16));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

#platform .platform-story-bg::after,
#features .features-ambient::after,
#for-merchants .community-ambient::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(206, 0, 88, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 159, 154, 0.05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at 50% 42%, #000, transparent 74%);
}

#platform .platform-story-head,
#features .features-story-head,
#for-merchants .community-story-head {
    width: min(780px, 100%);
    margin: 0 auto clamp(42px, 6vw, 72px);
    text-align: center;
}

#platform .platform-story-head .section-label,
#features .features-story-head .section-label,
#for-merchants .community-story-head .section-label {
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

#platform .platform-story-head p,
#features .features-story-head .section-sub-center,
#for-merchants .community-story-head .section-sub-center {
    color: var(--text-muted);
}

#platform .platform-story-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

#platform .platform-story-rail {
    display: grid;
    gap: 14px;
}

#platform .platform-story-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    row-gap: 4px;
    width: 100%;
    padding: 18px 20px;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(35, 23, 32, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(35, 23, 32, 0.06);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

#platform .platform-story-step::before {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    transform: scaleX(var(--platform-progress, 0));
    transform-origin: left center;
    background: linear-gradient(90deg, var(--nearu-red), var(--nearu-orange), var(--nearu-green));
}

#platform .platform-story-step:hover,
#platform .platform-story-step:focus-visible,
#platform .platform-story-step.active {
    transform: translateY(-3px);
    border-color: rgba(206, 0, 88, 0.22);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 58px rgba(206, 0, 88, 0.12);
}

#platform .platform-story-step:focus-visible,
#for-merchants .merchant-type-card--story:focus-visible {
    outline: 3px solid rgba(0, 116, 197, 0.24);
    outline-offset: 4px;
}

#platform .platform-story-step span {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--nearu-red), var(--nearu-orange));
    box-shadow: 0 14px 32px rgba(206, 0, 88, 0.22);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: var(--fw-bold);
}

#platform .platform-story-step strong {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.03rem;
    line-height: 1.15;
}

#platform .platform-story-step small {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

#platform .platform-product-stage {
    position: relative;
    min-height: 650px;
    border-radius: 38px;
    perspective: 1400px;
}

#platform .platform-orbit,
#platform .platform-orbit span {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

#platform .platform-orbit {
    width: min(86%, 620px);
    aspect-ratio: 1;
    opacity: 0.72;
    animation: platformSpin 32s linear infinite;
}

#platform .platform-orbit span {
    border: 1px solid rgba(206, 0, 88, 0.16);
}

#platform .platform-orbit span:nth-child(1) { width: 100%; height: 100%; }
#platform .platform-orbit span:nth-child(2) { width: 72%; height: 72%; border-style: dashed; border-color: rgba(255, 163, 0, 0.24); }
#platform .platform-orbit span:nth-child(3) { width: 44%; height: 44%; border-color: rgba(0, 159, 154, 0.24); }

#platform .platform-dashboard--story {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: min(78%, 600px);
    padding: clamp(22px, 3vw, 34px);
    transform: translate(-50%, -50%) rotateX(5deg) rotateY(-7deg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background:
        radial-gradient(circle at 22% 8%, rgba(255, 163, 0, 0.18), transparent 30%),
        linear-gradient(145deg, #17111d, #251826);
    box-shadow: 0 42px 120px rgba(35, 23, 32, 0.32);
    transition: transform 360ms ease;
}

#platform .platform-product-stage:hover .platform-dashboard--story {
    transform: translate(-50%, -52%) rotateX(7deg) rotateY(-4deg);
}

#platform .platform-chart-path {
    stroke-dasharray: 470;
    stroke-dashoffset: 470;
    animation: platformChartDraw 2.6s ease forwards, platformChartPulse 4.5s ease-in-out infinite 2.8s;
}

#platform .platform-float-card {
    position: absolute;
    z-index: 4;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 64px rgba(35, 23, 32, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: platformFloat 6.8s ease-in-out infinite;
}

#platform .platform-float-card span,
#platform .platform-float-card em {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#platform .platform-float-card strong {
    display: block;
    margin-top: 5px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 1.15;
}

#platform .platform-float-card--store {
    left: 0;
    top: 52px;
    width: 220px;
    padding: 12px;
}

#platform .platform-float-card--store img {
    display: block;
    width: 100%;
    height: 116px;
    margin-bottom: 12px;
    border-radius: 16px;
    object-fit: cover;
}

#platform .platform-float-card--segment {
    right: 0;
    top: 118px;
    min-width: 184px;
    padding: 18px;
    animation-delay: -1.4s;
}

#platform .platform-float-card--pulse {
    right: 8%;
    bottom: 56px;
    min-width: 178px;
    padding: 18px;
    animation-delay: -2.3s;
}

#features.features-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 8vw, 116px) 0;
    background:
        radial-gradient(circle at 22% 10%, rgba(0, 116, 197, 0.12), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(255, 163, 0, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
}

#features .features-grid--premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 24px);
    margin-top: 0;
}

#features .feature-card--premium {
    isolation: isolate;
    min-height: 330px;
    padding: 24px;
    border: 1px solid rgba(35, 23, 32, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
        radial-gradient(circle at 20% 18%, rgba(206, 0, 88, 0.09), transparent 36%);
    box-shadow: 0 20px 58px rgba(35, 23, 32, 0.08);
    transform-style: preserve-3d;
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

#features .feature-card--premium::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.16), rgba(255, 163, 0, 0.12), rgba(0, 159, 154, 0.12));
    transition: opacity 260ms ease;
}

#features .feature-card--premium:hover,
#features .feature-card--premium:focus-within,
#features .feature-card--premium.is-tilting {
    transform: translateY(-9px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
    border-color: rgba(206, 0, 88, 0.22);
    box-shadow: 0 30px 78px rgba(206, 0, 88, 0.14), 0 10px 28px rgba(35, 23, 32, 0.08);
}

#features .feature-card--premium:hover::before,
#features .feature-card--premium.is-tilting::before {
    opacity: 1;
}

#features .feature-card--premium::after {
    display: none;
}

#features .feature-card--premium .feature-icon-wrap {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #231720, var(--nearu-red) 56%, var(--nearu-orange));
    box-shadow: 0 18px 38px rgba(206, 0, 88, 0.22);
}

#features .feature-mini-visual {
    position: absolute;
    right: 22px;
    top: 24px;
    display: flex;
    align-items: end;
    gap: 6px;
    width: 86px;
    height: 54px;
    padding: 10px;
    border: 1px solid rgba(35, 23, 32, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.62);
}

#features .feature-mini-visual span {
    flex: 1;
    min-height: 12px;
    border-radius: 999px 999px 5px 5px;
    background: linear-gradient(180deg, var(--nearu-orange), var(--nearu-red));
    animation: featureBars 2.8s ease-in-out infinite;
}

#features .feature-mini-visual span:nth-child(1) { height: 42%; }
#features .feature-mini-visual span:nth-child(2) { height: 72%; animation-delay: -0.8s; }
#features .feature-mini-visual span:nth-child(3) { height: 100%; animation-delay: -1.4s; }

#features .feature-mini-visual--people span {
    align-self: center;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0074c5, #009f9a);
}

#features .feature-mini-visual--loyalty span {
    height: 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffa300, #ce0058);
}

#features .feature-mini-visual--message {
    display: grid;
    align-items: center;
}

#features .feature-mini-visual--message span {
    width: 100%;
    height: 9px;
    border-radius: 999px;
    background: rgba(0, 116, 197, 0.35);
}

#features .feature-mini-visual--growth span,
#features .feature-mini-visual--analytics span {
    background: linear-gradient(180deg, #009f9a, #0074c5);
}

#features .feature-card--premium h3 {
    margin-top: 0;
    font-size: 1.18rem;
}

#features .feature-card--premium p {
    padding-right: 4px;
}

#features .feature-card-signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    padding: 9px 12px;
    border: 1px solid rgba(206, 0, 88, 0.12);
    border-radius: 999px;
    color: var(--nearu-red);
    background: rgba(255, 255, 255, 0.62);
    font-family: var(--font-heading);
    font-size: 0.78rem;
}

#features .feature-card-signal::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nearu-green);
    box-shadow: 0 0 0 6px rgba(0, 159, 154, 0.12);
}

#for-merchants.built-for-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 8vw, 120px) 0;
    background:
        radial-gradient(circle at 8% 22%, rgba(206, 0, 88, 0.14), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(0, 159, 154, 0.16), transparent 30%),
        linear-gradient(135deg, #fff8ee 0%, #ffffff 54%, #f5fbfb 100%);
}

#for-merchants.built-for-section::before {
    display: none;
}

#for-merchants .community-story-shell {
    display: grid;
    grid-template-columns: minmax(460px, 0.92fr) minmax(480px, 1.08fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

#for-merchants .community-map-stage {
    position: relative;
    min-height: 620px;
}

#for-merchants .community-map-card {
    position: absolute;
    inset: 34px 34px 58px 0;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.78);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 34px 100px rgba(35, 23, 32, 0.18);
}

#for-merchants .community-map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 520ms ease;
}

#for-merchants .community-map-stage:hover .community-map-card img {
    transform: scale(1.07);
}

#for-merchants .community-map-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 24px;
    background: rgba(18, 12, 20, 0.66);
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#for-merchants .community-map-overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--nearu-orange);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

#for-merchants .community-map-overlay strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.38rem, 2.3vw, 2rem);
    line-height: 1.1;
}

#for-merchants .community-map-overlay p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.65;
}

#for-merchants .community-stat-chip {
    position: absolute;
    z-index: 4;
    min-width: 158px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 20px 56px rgba(35, 23, 32, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: communityFloat 7s ease-in-out infinite;
}

#for-merchants .community-stat-chip--one {
    right: 0;
    top: 96px;
}

#for-merchants .community-stat-chip--two {
    left: 28px;
    bottom: 0;
    animation-delay: -1.7s;
}

#for-merchants .community-stat-chip span {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#for-merchants .community-stat-chip strong {
    display: block;
    margin-top: 6px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.38rem;
}

#for-merchants .community-route {
    position: absolute;
    right: 18px;
    bottom: 120px;
    display: grid;
    gap: 14px;
}

#for-merchants .community-route span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--nearu-orange);
    box-shadow: 0 0 0 8px rgba(255, 163, 0, 0.16);
    animation: communityPulse 2.8s ease-in-out infinite;
}

#for-merchants .community-route span:nth-child(2) { background: var(--nearu-red); animation-delay: -0.7s; }
#for-merchants .community-route span:nth-child(3) { background: var(--nearu-green); animation-delay: -1.4s; }
#for-merchants .community-route span:nth-child(4) { background: #0074c5; animation-delay: -2.1s; }

#for-merchants .merchant-types-row--story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 0;
}

#for-merchants .merchant-type-card--story {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
    row-gap: 4px;
    width: 100%;
    min-height: 128px;
    padding: 18px;
    text-align: left;
    border: 1px solid rgba(35, 23, 32, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 42px rgba(35, 23, 32, 0.07);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

#for-merchants .merchant-type-card--story:hover,
#for-merchants .merchant-type-card--story.active {
    transform: translateY(-6px);
    border-color: rgba(206, 0, 88, 0.22);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 58px rgba(206, 0, 88, 0.12), 0 10px 26px rgba(35, 23, 32, 0.07);
}

#for-merchants .merchant-type-card--story .mt-icon-wrap {
    grid-row: 1 / span 2;
    width: 50px;
    height: 50px;
    margin: 0;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(206, 0, 88, 0.12), rgba(255, 163, 0, 0.16));
}

#for-merchants .merchant-type-card--story h4 {
    align-self: end;
    margin: 0;
    font-size: 0.98rem;
}

#for-merchants .merchant-type-card--story p {
    font-size: 0.82rem;
}

@keyframes platformSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes platformFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -14px; }
}

@keyframes platformChartDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes platformChartPulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 163, 0, 0)); }
    50% { filter: drop-shadow(0 0 10px rgba(255, 163, 0, 0.42)); }
}

@keyframes featureBars {
    0%, 100% { transform: scaleY(0.82); opacity: 0.72; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes communityFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -13px; }
}

@keyframes communityPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.72; }
    50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1023px) {
    #platform .platform-story-grid,
    #for-merchants .community-story-shell {
        grid-template-columns: 1fr;
    }

    #platform .platform-story-rail {
        grid-template-columns: repeat(3, minmax(240px, 1fr));
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x proximity;
    }

    #platform .platform-story-step {
        scroll-snap-align: start;
    }

    #platform .platform-product-stage {
        min-height: 610px;
    }

    #features .features-grid--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #for-merchants .community-map-stage {
        min-height: 560px;
    }
}

@media (max-width: 640px) {
    #platform.platform-section,
    #features.features-section,
    #for-merchants.built-for-section {
        padding: 58px 0;
    }

    #platform .platform-story-bg::before,
    #features .features-ambient::before,
    #for-merchants .community-ambient::before {
        inset: 18px 12px;
        border-radius: 24px;
    }

    #platform .platform-story-rail {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    #platform .platform-product-stage {
        min-height: 660px;
    }

    #platform .platform-dashboard--story {
        width: 94%;
        top: 48%;
        transform: translate(-50%, -50%);
    }

    #platform .platform-product-stage:hover .platform-dashboard--story {
        transform: translate(-50%, -50%);
    }

    #platform .platform-float-card--store {
        left: 2%;
        top: 0;
        width: 168px;
    }

    #platform .platform-float-card--store img {
        height: 86px;
    }

    #platform .platform-float-card--segment {
        right: 0;
        top: 128px;
        min-width: 148px;
    }

    #platform .platform-float-card--pulse {
        right: 3%;
        bottom: 0;
    }

    #features .features-grid--premium,
    #for-merchants .merchant-types-row--story {
        grid-template-columns: 1fr;
    }

    #features .feature-card--premium {
        min-height: 0;
    }

    #for-merchants .community-map-stage {
        min-height: 610px;
    }

    #for-merchants .community-map-card {
        inset: 24px 0 72px;
        border-width: 7px;
        border-radius: 26px;
    }

    #for-merchants .community-map-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    #for-merchants .community-stat-chip--one {
        right: 8px;
        top: 0;
    }

    #for-merchants .community-stat-chip--two {
        left: 8px;
        bottom: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #platform .platform-orbit,
    #platform .platform-float-card,
    #platform .platform-chart-path,
    #features .feature-mini-visual span,
    #for-merchants .community-stat-chip,
    #for-merchants .community-route span {
        animation: none !important;
    }

    #platform .platform-story-step,
    #platform .platform-dashboard--story,
    #features .feature-card--premium,
    #for-merchants .merchant-type-card--story,
    #for-merchants .community-map-card img {
        transition: none;
    }
}

/* ============================================================
   SECTION BACKGROUND FLOW OVERRIDES
   Keeps the existing hero/banner intact and smooths only the
   section-to-section color progression after it.
   ============================================================ */
:root {
    --flow-warm-clay: #ead6c4;
    --flow-warm-clay-soft: #f2e2d4;
    --flow-muted-gray: #f1eee9;
    --flow-muted-gray-deep: #e2d9cf;
    --flow-warm-white: #fffaf4;
    --flow-peach: #fff0e4;
    --flow-peach-soft: #fff6ed;
    --flow-neutral-bridge: #d2c1b3;
    --flow-neutral-deep: #bba797;
    --flow-neutral-deeper: #b8a28f;
    --flow-warm-umber: #704330;
    --flow-dark-plum: #160d15;
    --flow-dark-plum-soft: #302019;
}

.problem-section {
    background:
        radial-gradient(circle at 16% 0%, rgba(255, 163, 0, 0.15), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(206, 0, 88, 0.08), transparent 30%),
        linear-gradient(180deg, var(--flow-warm-clay) 0%, var(--flow-warm-clay-soft) 48%, var(--flow-muted-gray) 100%);
}

.problem-story::before {
    background:
        radial-gradient(circle at 16% 14%, rgba(206, 0, 88, 0.08), transparent 34%),
        radial-gradient(circle at 86% 80%, rgba(255, 163, 0, 0.13), transparent 38%),
        linear-gradient(135deg, rgba(255, 246, 237, 0.84), rgba(242, 226, 212, 0));
}

.why-nearu-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 163, 0, 0.12), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(206, 0, 88, 0.07), transparent 29%),
        linear-gradient(180deg, var(--flow-muted-gray) 0%, #f6f0ea 50%, var(--flow-warm-white) 100%);
}

.comparison-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(206, 0, 88, 0.07), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(255, 163, 0, 0.1), transparent 31%),
        linear-gradient(180deg, var(--flow-warm-white) 0%, #fff7ef 52%, var(--flow-peach-soft) 100%);
}

#digital-address {
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 163, 0, 0.13), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(206, 0, 88, 0.07), transparent 30%),
        linear-gradient(135deg, var(--flow-peach-soft) 0%, var(--flow-peach) 52%, #ffe9d8 100%);
}

#accelerator-roadmap.nu-section,
#accelerator-roadmap {
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 163, 0, 0.1), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(206, 0, 88, 0.07), transparent 30%),
        linear-gradient(180deg, #f1e5dc 0%, var(--flow-muted-gray-deep) 52%, var(--flow-neutral-bridge) 100%);
}

#how-it-works {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 163, 0, 0.32), transparent 32%),        
		radial-gradient(circle at 82% 28%, rgba(206, 0, 88, 0.3), transparent 34%),        
		linear-gradient(135deg, #9f6234 0%, #45151f 46%, #241018 100%)
}

#how-it-works::before {
    background: linear-gradient(135deg, rgba(255, 244, 232, 0.08), rgba(255, 255, 255, 0.02));
}

#platform.platform-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 163, 0, 0.13), transparent 32%),
        radial-gradient(circle at 90% 24%, rgba(206, 0, 88, 0.07), transparent 30%),
        linear-gradient(180deg, #c0ad9d 0%, #d5c8bd 46%, var(--flow-muted-gray-deep) 100%);
}

#features.features-section {
    background:
        radial-gradient(circle at 22% 10%, rgba(255, 163, 0, 0.11), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(206, 0, 88, 0.07), transparent 30%),
        linear-gradient(180deg, var(--flow-muted-gray-deep) 0%, var(--flow-muted-gray) 46%, var(--flow-peach-soft) 100%);
}

#for-merchants.built-for-section {
    background:
        radial-gradient(circle at 8% 22%, rgba(206, 0, 88, 0.08), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 163, 0, 0.11), transparent 30%),
        linear-gradient(180deg, var(--flow-peach-soft) 0%, #e4d5ca 48%, var(--flow-neutral-deep) 100%);
}

.showcase-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 163, 0, 0.2), transparent 34%),
        radial-gradient(circle at 18% 28%, rgba(206, 0, 88, 0.15), transparent 32%),
        linear-gradient(180deg, var(--flow-warm-umber) 0%, var(--flow-dark-plum-soft) 46%, #6d4a36 100%);
}

.pricing-section {
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 163, 0, 0.12), transparent 30%),
        radial-gradient(circle at 86% 24%, rgba(206, 0, 88, 0.07), transparent 30%),
        linear-gradient(180deg, var(--flow-neutral-deeper) 0%, #d8c8bb 32%, var(--flow-peach-soft) 70%, #cfb7a5 100%);
}

.cta-section {
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 163, 0, 0.32), transparent 32%),
        radial-gradient(circle at 82% 28%, rgba(206, 0, 88, 0.3), transparent 34%),
        linear-gradient(135deg, #9f6234 0%, #45151f 46%, #241018 100%);
}
.hero-text-wrap{
    opacity: 1 !important;
}