/* ════════════════════════════════════════════════════════
   SPENDVISION — PREMIUM LANDING PAGE CSS
   Theme: Deep space purple · Glass cards · Cinematic
   ════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Urbanist:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
    --sv-bg:         #060412;
    --sv-bg-2:       #0d0922;
    --sv-card:       #120d2a;
    --sv-card-2:     #1a1040;
    --sv-border:     rgba(255,255,255,.08);
    --sv-border-2:   rgba(160,104,255,.2);

    --sv-purple:     #A068FF;
    --sv-purple-dim: rgba(160,104,255,.12);
    --sv-purple-glow:rgba(160,104,255,.35);
    --sv-green:      #22C55E;
    --sv-green-dim:  rgba(34,197,94,.12);
    --sv-orange:     #FF7A00;
    --sv-orange-dim: rgba(255,122,0,.12);
    --sv-red:        #EF4444;
    --sv-blue:       #3B82F6;

    --sv-text:       #F0EBF8;
    --sv-text-muted: rgba(240,235,248,.5);
    --sv-text-dim:   rgba(240,235,248,.35);

    --sv-font:      'Urbanist', 'Inter', system-ui, sans-serif;
    --sv-font-mono: 'Inter', monospace;

    --sv-radius:     20px;
    --sv-radius-lg:  28px;
    --sv-radius-pill:999px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--sv-bg);
    color: var(--sv-text);
    font-family: var(--sv-font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 700; }

/* ─── Shared Layout ─────────────────────────────────────── */
.sv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sv-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* Alternating backgrounds */
.sv-feature-alt { background: var(--sv-bg-2); }
.sv-how         { background: var(--sv-bg); }
.sv-privacy     { background: var(--sv-bg); }
.sv-compare     { background: var(--sv-bg-2); }

/* Shared label chip */
.sv-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sv-purple);
    background: var(--sv-purple-dim);
    border: 1px solid var(--sv-border-2);
    border-radius: var(--sv-radius-pill);
    padding: .35rem 1rem;
    margin-bottom: 1.25rem;
}

/* Shared section headings */
.sv-section-h {
    font-family: var(--sv-font);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.sv-section-sub {
    font-size: 1.05rem;
    color: var(--sv-text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* Accent colours */
.sv-accent-green  { color: var(--sv-green); }
.sv-accent-muted  { color: var(--sv-purple); }
.sv-accent-orange { color: var(--sv-orange); }

/* ════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════ */
.sv-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(6,4,18,.75);
    border-bottom: 1px solid var(--sv-border);
}
.sv-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.sv-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
    text-decoration: none;
}
.sv-logo img { width: 30px; height: 30px; border-radius: 8px; }
.sv-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}
.sv-logo em { font-style: normal; color: #fff; }

/* Nav (Centered) */
.sv-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
}
.sv-nav-link {
    font-size: .925rem;
    font-weight: 600;
    color: var(--sv-text-muted);
    transition: color .2s;
}
.sv-nav-link:hover { color: var(--sv-text); }

/* CTA */
.sv-cta-btn {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.25rem;
    background: var(--sv-purple);
    color: #fff;
    border: none;
    border-radius: var(--sv-radius-pill);
    font-size: .875rem;
    font-weight: 700;
    font-family: var(--sv-font);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.sv-cta-btn:hover {
    transform: translateY(-1px);
    background: #b87fff;
    box-shadow: 0 6px 28px rgba(160,104,255,.4);
}

/* ════════════════════════════════════════════════════════
   ANIMATED GRADIENT PILL BUTTON (PLAY STORE STYLE)
   ════════════════════════════════════════════════════════ */
@keyframes sv-gradient-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sv-btn-gradient-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2.25rem;
    border-radius: 9999px;
    background: #090714;
    color: #ffffff;
    font-family: var(--sv-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 1;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 0 25px rgba(160, 104, 255, 0.25);
}

.sv-btn-gradient-pill-border {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    padding: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #a068ff 33%, #10b981 66%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: sv-gradient-flow 3.5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sv-btn-gradient-pill::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #3b82f6 0%, #a068ff 33%, #10b981 66%, #3b82f6 100%);
    background-size: 300% 300%;
    animation: sv-gradient-flow 3.5s linear infinite;
    filter: blur(10px);
    opacity: 0.45;
    z-index: -1;
    transition: opacity 0.3s;
}

.sv-btn-gradient-pill:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 35px rgba(160, 104, 255, 0.45);
}

.sv-btn-gradient-pill:hover::after {
    opacity: 0.8;
}

.sv-btn-gradient-pill-sm {
    padding: 0.55rem 1.35rem;
    font-size: 0.875rem;
    gap: 0.5rem;
}

/* ════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */
.sv-hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem 4rem;
    position: relative;
}

/* Glowing orbs */
.sv-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.sv-hero-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(160,104,255,.2) 0%, transparent 70%);
    top: -100px; left: -200px;
}
.sv-hero-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
    bottom: 0; right: -100px;
}

/* Hero content */
.sv-hero-content { position: relative; z-index: 1; }

.sv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--sv-text-muted);
    background: rgba(255,255,255,.04);
    border: 1px solid var(--sv-border);
    border-radius: var(--sv-radius-pill);
    padding: .4rem 1rem;
    margin-bottom: 2rem;
}
.sv-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sv-green);
    box-shadow: 0 0 6px var(--sv-green);
    flex-shrink: 0;
    animation: sv-pulse 2s ease-in-out infinite;
}
@keyframes sv-pulse {
    0%,100% { opacity:1; transform: scale(1); }
    50%      { opacity:.6; transform: scale(.8); }
}

.sv-hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.035em;
    color: #fff;
    margin-bottom: 1.5rem;
}
.sv-h1-accent {
    background: linear-gradient(135deg, var(--sv-purple) 0%, #c4a0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sv-hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--sv-text-muted);
    max-width: 520px;
    margin-bottom: 2.25rem;
}

/* Buttons */
.sv-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.sv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .85rem 1.75rem;
    background: var(--sv-purple);
    color: #fff;
    border: none;
    border-radius: var(--sv-radius-pill);
    font-family: var(--sv-font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s;
    position: relative;
    overflow: hidden;
}
.sv-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
    border-radius: inherit;
}
.sv-btn-primary:hover {
    transform: translateY(-2px);
    background: #b87fff;
    box-shadow: 0 12px 40px rgba(160,104,255,.45);
}
.sv-btn-large { padding: 1rem 2.25rem; font-size: 1.125rem; }

.sv-btn-ghost {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--sv-text-muted);
    transition: color .2s;
}
.sv-btn-ghost:hover { color: var(--sv-text); }

/* Social proof */
.sv-hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.sv-sp-avatars { display: flex; }
.sv-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--sv-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    margin-left: -8px;
}
.sv-sp-avatars .sv-avatar:first-child { margin-left: 0; }
.sv-hero-social-proof p {
    font-size: .8125rem;
    color: var(--sv-text-muted);
}
.sv-hero-social-proof strong { color: var(--sv-text); }

/* Hero visual */
.sv-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ─── Orbit System ──────────────────────────────────────── */
.sv-orbit-system {
    position: relative;
    width: 540px;
    height: 540px;
    margin: 0 auto;
    overflow: visible;
}

.sv-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(160,104,255,.35);
    box-shadow: 0 0 16px rgba(160,104,255,.12), inset 0 0 16px rgba(160,104,255,.12);
    transform-origin: center center;
}
.sv-orbit-1 { width: 220px; height: 220px; margin-top: -110px; margin-left: -110px; animation: sv-spin-cw 24s linear infinite; }
.sv-orbit-2 { width: 360px; height: 360px; margin-top: -180px; margin-left: -180px; animation: sv-spin-cw 24s linear infinite; }
.sv-orbit-3 { width: 490px; height: 490px; margin-top: -245px; margin-left: -245px; animation: sv-spin-cw 24s linear infinite; }

@keyframes sv-spin-cw {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes sv-counter-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* Center card */
.sv-orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 100px; height: 100px;
    background: var(--sv-card);
    border: 1.5px solid var(--sv-border-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px var(--sv-purple-glow), inset 0 1px 0 rgba(255,255,255,.06);
    z-index: 10;
}
.sv-center-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 0 12px rgba(160,104,255,.6));
}

/* Brand badge */
.sv-brand-badge {
    position: absolute;
    top: 50%; left: 50%;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform:
        translate(-50%,-50%)
        rotate(calc(var(--rot)))
        translate(var(--rad))
        rotate(calc(-1 * var(--rot)));
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
    border: 1.5px solid rgba(255,255,255,.12);
    transition: transform .2s;
}
.sv-brand-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    animation: sv-counter-spin 24s linear infinite;
}

/* Badge bg variants */
.sv-bg-swiggy    { background: #FF6B35; }
.sv-bg-zomato    { background: #CB202D; }
.sv-bg-blinkit   { background: #F8C904; }
.sv-bg-amazon    { background: #131921; }
.sv-bg-hdfc      { background: #004C8F; }
.sv-bg-flipkart  { background: #2874F0; }
.sv-bg-white     { background: #fff; }
.sv-bg-black     { background: #141414; }
.sv-bg-mastercard{ background: #1A1F71; }

/* Badge glow colours */
.sv-glow-orange { box-shadow: 0 0 18px rgba(255,107,53,.5), 0 4px 14px rgba(0,0,0,.4); }
.sv-glow-red    { box-shadow: 0 0 18px rgba(203,32,45,.5), 0 4px 14px rgba(0,0,0,.4); }
.sv-glow-yellow { box-shadow: 0 0 18px rgba(248,201,4,.5), 0 4px 14px rgba(0,0,0,.4); }
.sv-glow-blue   { box-shadow: 0 0 18px rgba(59,130,246,.4), 0 4px 14px rgba(0,0,0,.4); }
.sv-glow-green  { box-shadow: 0 0 18px rgba(34,197,94,.4), 0 4px 14px rgba(0,0,0,.4); }
.sv-glow-purple { box-shadow: 0 0 18px rgba(160,104,255,.4), 0 4px 14px rgba(0,0,0,.4); }

/* ════════════════════════════════════════════════════════
   TICKER STRIP
   ════════════════════════════════════════════════════════ */
.sv-ticker {
    position: relative;
    background: rgba(160,104,255,.06);
    border-top: 1px solid rgba(160,104,255,.12);
    border-bottom: 1px solid rgba(160,104,255,.12);
    padding: .875rem 0;
    overflow: hidden;
}
.sv-ticker-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 180px;
    z-index: 2;
    pointer-events: none;
}
.sv-ticker-fade-l { left: 0; background: linear-gradient(90deg,var(--sv-bg),transparent); }
.sv-ticker-fade-r { right: 0; background: linear-gradient(-90deg,var(--sv-bg),transparent); }

.sv-ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: sv-ticker 45s linear infinite;
    width: max-content;
}
@keyframes sv-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.sv-tick {
    font-size: .8rem;
    font-weight: 600;
    color: var(--sv-text-muted);
    padding: 0 1rem;
    letter-spacing: .01em;
}
.sv-tick-dot {
    color: var(--sv-purple);
    font-size: 1.1rem;
    opacity: .5;
}

/* ════════════════════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════════════════════ */
.sv-problem { background: var(--sv-bg); }
.sv-problem .sv-section-h { max-width: 700px; }

.sv-problem-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

.sv-prob-card {
    background: var(--sv-card);
    border: 1px solid var(--sv-border);
    border-radius: var(--sv-radius-lg);
    padding: 2rem;
}
.sv-prob-old { border-color: rgba(239,68,68,.15); }
.sv-prob-new {
    border-color: var(--sv-border-2);
    box-shadow: 0 0 40px rgba(160,104,255,.1);
}

.sv-prob-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--sv-radius-pill);
    padding: .25rem .75rem;
    margin-bottom: 1.25rem;
}
.sv-prob-tag-bad { background:rgba(239,68,68,.1); color:var(--sv-red); border:1px solid rgba(239,68,68,.2); }
.sv-prob-tag-good { background:var(--sv-purple-dim); color:var(--sv-purple); border:1px solid var(--sv-border-2); }

.sv-prob-rows { display: flex; flex-direction: column; gap: .875rem; }
.sv-prob-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--sv-text-muted);
}
.sv-row-amt { font-weight: 700; }
.sv-bad { color: var(--sv-red); opacity: .5; }
.sv-prob-caption { margin-top: 1.25rem; font-size: .8125rem; color: var(--sv-text-dim); font-style: italic; }

.sv-vs-badge {
    font-size: .875rem;
    font-weight: 900;
    color: var(--sv-text-dim);
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* SMS list in prob card */
.sv-sms-list { display: flex; flex-direction: column; gap: .75rem; }
.sv-sms-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    opacity: 0;
    animation: sv-slide-in .4s ease forwards;
}
@keyframes sv-slide-in { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:none; } }
.sv-sms-enter { animation: sv-slide-in .45s ease forwards; }

.sv-sms-ico {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.sv-sms-meta { flex: 1; min-width: 0; }
.sv-sms-who  { display: block; font-size: .8125rem; font-weight: 700; color: var(--sv-text); }
.sv-sms-what { display: block; font-size: .7rem; color: var(--sv-text-muted); }
.sv-sms-price { font-size: .875rem; font-weight: 700; flex-shrink: 0; }
.sv-clr-orange { color: var(--sv-orange); }
.sv-clr-purple { color: var(--sv-purple); }
.sv-clr-red    { color: var(--sv-red); }

.sv-insight-chip {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.25rem;
    padding: .75rem 1rem;
    background: rgba(34,197,94,.07);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 12px;
    font-size: .8125rem;
    color: var(--sv-green);
    font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   PREMIUM HOW IT WORKS PIPELINE
   ════════════════════════════════════════════════════════ */
.sv-how .sv-section-h { text-align: center; margin: 0 auto 1rem; }
.sv-how .sv-label { display: block; text-align: center; }

.sv-steps-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
}

.sv-step-card {
    background: linear-gradient(180deg, rgba(20, 16, 38, 0.75) 0%, rgba(10, 8, 22, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.sv-step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.sv-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(160, 104, 255, 0.35);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.75), 0 0 35px rgba(160, 104, 255, 0.18);
}

.sv-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sv-step-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.sv-step-badge-1 {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.sv-step-badge-2 {
    color: #a068ff;
    background: rgba(160, 104, 255, 0.12);
    border: 1px solid rgba(160, 104, 255, 0.25);
}

.sv-step-badge-3 {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.sv-step-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sv-step-icon-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.sv-step-icon-2 {
    background: radial-gradient(circle, rgba(160, 104, 255, 0.25) 0%, rgba(160, 104, 255, 0.05) 100%);
    border: 1px solid rgba(160, 104, 255, 0.35);
    color: #c4a0ff;
    box-shadow: 0 0 20px rgba(160, 104, 255, 0.25);
}

.sv-step-icon-3 {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
}

.sv-step-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.sv-step-desc {
    font-size: 0.925rem;
    color: var(--sv-text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* Step Mini Preview Artifacts */
.sv-step-mini-art {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    margin-top: auto;
}

.sv-mini-sms {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.sv-sms-text {
    font-size: 0.775rem;
    color: #e2e8f0;
    font-weight: 500;
    font-family: monospace;
}

.sv-sms-badge {
    font-size: 0.675rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.sv-mini-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sv-tag-chip {
    font-size: 0.725rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
}

.sv-tag-swiggy {
    background: rgba(255, 122, 0, 0.15);
    color: #ffaa55;
    border: 1px solid rgba(255, 122, 0, 0.25);
}

.sv-tag-hdfc {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.sv-tag-sub {
    background: rgba(160, 104, 255, 0.15);
    color: #d8b4fe;
    border: 1px solid rgba(160, 104, 255, 0.25);
}

.sv-mini-budget {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sv-budget-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.775rem;
    font-weight: 700;
    color: #f1f5f9;
}

.sv-budget-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.sv-budget-bar-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, #22c55e, #10b981);
    border-radius: 9999px;
}

/* ════════════════════════════════════════════════════════
   FEATURE SECTIONS
   ════════════════════════════════════════════════════════ */
.sv-feat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.sv-feat-layout-rev { direction: rtl; }
.sv-feat-layout-rev > * { direction: ltr; }

.sv-feat-h { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

.sv-feat-desc {
    font-size: 1.0rem;
    color: var(--sv-text-muted);
    line-height: 1.75;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.sv-feat-list { display: flex; flex-direction: column; gap: 1.25rem; }
.sv-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.sv-feat-ic {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.sv-feat-item strong {
    display: block;
    font-size: .9375rem;
    color: var(--sv-text);
    margin-bottom: .25rem;
}
.sv-feat-item p {
    font-size: .8125rem;
    color: var(--sv-text-muted);
    line-height: 1.6;
}

/* Phone mock */
/* Scroll Fade-In & Slide-Up Animation (Disabled per user request) */
.sv-scroll-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ─── Premium Static iPhone Mockup Frame (No Notch) ──────────── */
.sv-feat-phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sv-phone-glow {
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    filter: blur(85px);
    background: var(--sv-purple-glow);
    opacity: .45;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.sv-phone-glow-purple { background: rgba(160,104,255,.55); }
.sv-phone-glow-orange { background: rgba(255,122,0,.4); }

.sv-phone {
    position: relative;
    width: 295px;
    background: #060412;
    border-radius: 46px;
    padding: 7px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 25px 60px -15px rgba(0, 0, 0, 0.9),
        0 0 45px rgba(160, 104, 255, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: none;
    overflow: hidden;
    z-index: 2;
}

.sv-feat-layout-rev .sv-phone {
    transform: none;
}

.sv-phone:hover {
    transform: none;
}

.sv-phone img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 39px;
    object-fit: cover;
}

/* Blockquote */
.sv-blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--sv-green);
    border-left: 3px solid var(--sv-green);
    padding-left: 1.25rem;
    margin-top: 2rem;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════════════════ */
.sv-compare .sv-section-h { margin-bottom: 3.5rem; }

.sv-cmp-table {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}
.sv-cmp-col {
    border: 1px solid var(--sv-border);
    border-radius: var(--sv-radius-lg);
    padding: 2rem 2rem 2.5rem;
    background: var(--sv-card);
}
.sv-cmp-sv {
    border-color: var(--sv-border-2);
    box-shadow: 0 0 50px rgba(160,104,255,.12);
}
.sv-cmp-head {
    font-size: .875rem;
    font-weight: 700;
    color: var(--sv-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sv-border);
}
.sv-cmp-head-sv {
    color: var(--sv-purple);
    border-bottom-color: rgba(160,104,255,.2);
}
.sv-cmp-col ul { display: flex; flex-direction: column; gap: .875rem; }
.sv-cmp-col li {
    display: flex;
    align-items: center;
    gap: .875rem;
    font-size: .9rem;
    color: var(--sv-text-muted);
}
.sv-cmp-sv li { color: var(--sv-text); }
.sv-cx {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(239,68,68,.1);
    color: var(--sv-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sv-ck {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(34,197,94,.1);
    color: var(--sv-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.sv-cmp-vs {
    font-size: .75rem;
    font-weight: 900;
    color: var(--sv-text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 5rem;
}

/* ════════════════════════════════════════════════════════
   ULTRA-PREMIUM PRIVACY SECTION
   ════════════════════════════════════════════════════════ */
.sv-privacy-glow {
    position: absolute;
    width: 800px; height: 450px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(ellipse, rgba(160,104,255,.1) 0%, transparent 70%);
    pointer-events: none;
}
.sv-privacy-inner { text-align: center; }

.sv-privacy-top-badge {
    width: 64px; height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(160, 104, 255, 0.25) 0%, rgba(160, 104, 255, 0.05) 100%);
    border: 1px solid rgba(160, 104, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4a0ff;
    box-shadow: 0 0 35px rgba(160, 104, 255, 0.3);
}

.sv-privacy-quote {
    font-size: .95rem;
    font-style: italic;
    color: var(--sv-green);
    font-weight: 600;
    max-width: 520px;
    margin: 1.5rem auto 3rem;
}

.sv-privacy-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.sv-pcard {
    background: linear-gradient(180deg, rgba(20, 16, 38, 0.75) 0%, rgba(10, 8, 22, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.6rem;
    text-align: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.sv-pcard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.sv-pcard:hover {
    transform: translateY(-5px);
    border-color: rgba(160, 104, 255, 0.3);
    box-shadow: 0 16px 35px -10px rgba(0, 0, 0, 0.75), 0 0 30px rgba(160, 104, 255, 0.15);
}

.sv-pcard-ic-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.sv-pcard-ic-1 {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.sv-pcard-ic-2 {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.sv-pcard-ic-3 {
    background: rgba(192, 132, 252, 0.12);
    border: 1px solid rgba(192, 132, 252, 0.25);
    color: #c084fc;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.15);
}

.sv-pcard-ic-4 {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.15);
}

.sv-pcard h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.sv-pcard p {
    font-size: 0.85rem;
    color: var(--sv-text-muted);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════ */
.sv-cta-section {
    background: var(--sv-bg-2);
    text-align: center;
    padding: 8rem 0;
}
.sv-cta-glow {
    position: absolute;
    width: 800px; height: 500px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(ellipse, rgba(160,104,255,.12) 0%, transparent 70%);
    pointer-events: none;
}
.sv-cta-inner { position: relative; z-index: 1; }
.sv-cta-h {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}
.sv-cta-sub {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--sv-text-muted);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}
.sv-cta-note {
    margin-top: 1.25rem;
    font-size: .8125rem;
    color: var(--sv-text-dim);
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.sv-footer {
    background: var(--sv-bg);
    border-top: 1px solid var(--sv-border);
    padding: 2.5rem 0;
}
.sv-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.sv-footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}
.sv-footer-brand img { border-radius: 6px; }
.sv-footer-links {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
}
.sv-footer-links a {
    font-size: .8125rem;
    color: var(--sv-text-muted);
    transition: color .2s;
}
.sv-footer-links a:hover { color: var(--sv-text); }
.sv-footer-made { font-size: .8125rem; color: var(--sv-text-dim); }

/* ════════════════════════════════════════════════════════
   WAITLIST MODAL
   ════════════════════════════════════════════════════════ */
.sv-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,4,18,.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: sv-fade-in .2s ease;
}
@keyframes sv-fade-in { from { opacity:0; } to { opacity:1; } }

.sv-modal {
    position: relative;
    background: var(--sv-card-2);
    border: 1px solid var(--sv-border-2);
    border-radius: 28px;
    padding: 2.5rem 2.25rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(160,104,255,.15);
    animation: sv-modal-in .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes sv-modal-in { from { opacity:0; transform: scale(.92) translateY(16px); } to { opacity:1; transform: none; } }

.sv-modal-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--sv-border);
    color: var(--sv-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.sv-modal-close:hover { background: rgba(255,255,255,.1); }

.sv-modal-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--sv-green);
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.2);
    border-radius: var(--sv-radius-pill);
    padding: .3rem .875rem;
    margin-bottom: 1.25rem;
}
.sv-modal-h {
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: .75rem;
}
.sv-modal-sub {
    font-size: .9rem;
    color: var(--sv-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.sv-modal-form { display: flex; flex-direction: column; gap: 1rem; }
.sv-modal-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.sv-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--sv-text-dim);
    pointer-events: none;
}
.sv-modal-input {
    width: 100%;
    padding: .875rem 1rem .875rem 2.75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--sv-border);
    border-radius: var(--sv-radius-pill);
    font-family: var(--sv-font);
    font-size: .9375rem;
    color: var(--sv-text);
    outline: none;
    transition: border-color .2s;
}
.sv-modal-input:focus { border-color: var(--sv-purple); }
.sv-modal-input::placeholder { color: var(--sv-text-dim); }

.sv-modal-status {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
}
.sv-status-ok  { background: rgba(34,197,94,.12); color:var(--sv-green); border:1px solid rgba(34,197,94,.25); }
.sv-status-err { background: rgba(239,68,68,.12); color:var(--sv-red);   border:1px solid rgba(239,68,68,.25); }

.sv-modal-note {
    margin-top: 1rem;
    font-size: .75rem;
    color: var(--sv-text-dim);
    text-align: center;
}

/* ════════════════════════════════════════════════════════
   ULTRA-COMPATIBLE MOBILE RESPONSIVE DESIGN SYSTEM
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sv-header-inner { padding: 0 1.5rem; }
    .sv-nav { display: none; }
    
    .sv-hero {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding: 90px 1.5rem 3rem !important;
        gap: 3rem !important;
        min-height: unset !important;
    }
    
    .sv-hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sv-hero-sub {
        max-width: 100% !important;
        text-align: center !important;
        margin: 1.25rem auto 2rem !important;
        font-size: 1.05rem !important;
    }
    
    .sv-hero-actions {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 1rem !important;
    }
    
    .sv-btn-gradient-pill {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }
    
    .sv-hero-visual {
        order: 2;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: hidden !important;
        padding: 0.5rem 0 !important;
    }
    
    .sv-orbit-system {
        transform: scale(0.72) !important;
        transform-origin: center center !important;
        margin: -35px auto !important;
    }

    /* 3-Step Pipeline Mobile Stack */
    .sv-steps-pipeline {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2.5rem !important;
    }
    
    .sv-step-card {
        padding: 1.75rem 1.5rem !important;
    }

    /* Feature Layout Mobile Stack */
    .sv-feat-layout, .sv-feat-layout-rev {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        direction: ltr !important;
        text-align: center !important;
    }
    
    .sv-feat-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sv-feat-desc {
        text-align: center !important;
    }
    
    .sv-feat-phone-wrap {
        order: -1;
    }

    .sv-phone {
        width: 100% !important;
        max-width: 275px !important;
        margin: 0 auto !important;
    }

    /* Privacy Cards */
    .sv-privacy-cards {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Problem Grid & Comparison */
    .sv-problem-grid, .sv-cmp-table {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .sv-cmp-vs {
        margin: 0.5rem 0 !important;
        text-align: center !important;
    }

    .sv-footer-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .sv-section { padding: 4rem 0 !important; }
    .sv-container { padding: 0 1.25rem !important; }
    
    .sv-hero { padding: 80px 1.25rem 2.5rem !important; }
    
    .sv-hero-title {
        font-size: clamp(2rem, 8.5vw, 2.6rem) !important;
    }
    
    .sv-orbit-system {
        transform: scale(0.55) !important;
        margin: -75px auto !important;
    }

    .sv-phone {
        max-width: 250px !important;
    }
    
    .sv-pcard {
        padding: 1.5rem 1.25rem !important;
    }
    
    .sv-modal-content {
        width: 92vw !important;
        padding: 2rem 1.25rem !important;
        border-radius: 24px !important;
    }
}

/* Hide Blazor error overlay UI banner */
#blazor-error-ui,
.blazor-error-boundary {
    display: none !important;
}