/* ══════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════ */
:root {
    --bg: #0a0a12;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-h: rgba(255, 255, 255, 0.045);
    --bdr: rgba(255, 255, 255, 0.06);
    --bdr-h: rgba(59, 130, 246, 0.25);
    --t1: #e2e8f0;
    --t2: #94a3b8;
    --t3: #64748b;
    --t4: #475569;
    --blue: #3b82f6;
    --blue-d: #2563eb;
    --green: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;
    --purple: #8b5cf6;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --section-pad: 100px;
    --card-r: 14px;
    --card-p: 28px;
    --btn-r: 10px;
    --container: 1140px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--t1);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px
}

.text-center {
    text-align: center
}

/* ══════════════════════════════════════
   GLOW EFFECTS — Background Orbs
   ══════════════════════════════════════ */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.07;
    z-index: 0;
}

.glow-blue {
    background: var(--blue);
    width: 500px;
    height: 500px
}

.glow-purple {
    background: var(--purple);
    width: 400px;
    height: 400px
}

.glow-green {
    background: var(--green);
    width: 350px;
    height: 350px
}

.glow-amber {
    background: var(--amber);
    width: 300px;
    height: 300px
}

.glow-pink {
    background: var(--pink);
    width: 400px;
    height: 400px
}

/* Floating glow animation */
@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    25% {
        transform: translate(30px, -20px) scale(1.05)
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95)
    }

    75% {
        transform: translate(20px, 20px) scale(1.02)
    }
}

.glow-float {
    animation: glowFloat 12s ease-in-out infinite
}

.glow-float-slow {
    animation: glowFloat 18s ease-in-out infinite
}

.glow-float-rev {
    animation: glowFloat 15s ease-in-out infinite reverse
}

/* Grid texture overlay */
.grid-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Noise texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Section glow lines */
.glow-line {
    height: 1px;
    border: none;
    margin: 0;
    background: linear-gradient(90deg, transparent, var(--blue), var(--purple), transparent);
    opacity: 0.2;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1)
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1)
}

/* Stagger children */
.stagger-children .card:nth-child(1) {
    transition-delay: 0s
}

.stagger-children .card:nth-child(2) {
    transition-delay: 0.08s
}

.stagger-children .card:nth-child(3) {
    transition-delay: 0.16s
}

.stagger-children .card:nth-child(4) {
    transition-delay: 0.24s
}

.stagger-children .card:nth-child(5) {
    transition-delay: 0.32s
}

.stagger-children .card:nth-child(6),
.stagger-children .card:nth-child(7),
.stagger-children .card:nth-child(8) {
    transition-delay: 0.36s
}

/* ══════════════════════════════════════
   UNIFIED COMPONENTS
   ══════════════════════════════════════ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px
}

.section-title span {
    color: var(--blue)
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: var(--card-r);
    padding: var(--card-p);
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.card:hover {
    border-color: var(--bdr-h);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3)
}

.card:hover::before {
    opacity: 1
}

/* Shimmer effect on card hover */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-d));
    color: #fff;
    border-radius: var(--btn-r);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35)
}

.btn-primary:hover::before {
    left: 100%
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--t1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--btn-r);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    transition: all .2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px)
}

.btn-accent {
    background: linear-gradient(135deg, var(--green), #059669);
    color: #fff;
    border-radius: var(--btn-r);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
    transition: transform .2s, box-shadow .2s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35)
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px
}

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
}

.card:hover .icon-wrap {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1
}

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════ */
.announce {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 10;
}

.announce a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 6px
}

/* Shimmer on announce */
@keyframes announceShimmer {
    0% {
        left: -100%
    }

    100% {
        left: 100%
    }
}

.announce::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: announceShimmer 4s ease-in-out infinite;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bdr);
    padding: 0 24px;
    transition: box-shadow .3s;
}

/* WordPress admin bar offset */
body.admin-bar .navbar {
    top: 32px
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px
    }
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3)
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0)
    }
}

.nav-links {
    display: flex;
    gap: 32px
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--t2);
    transition: color .2s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width .3s;
    border-radius: 1px
}

.nav-links a:hover {
    color: var(--t1)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.nav-right .signin {
    font-size: 14px;
    color: var(--t2)
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 11px;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px
}

.hero h1 span {
    color: var(--blue);
    position: relative;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .hero-sub {
    font-size: 16px;
    color: var(--t3);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px
}

.hero-btns {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.hero-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.hero-checks span {
    font-size: 13px;
    color: var(--t2);
    display: flex;
    align-items: center;
    gap: 6px
}

.hero-checks svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    stroke-width: 2.5;
    fill: none
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    max-width: fit-content
}

.hero-trust .avatars {
    display: flex
}

.hero-trust .avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff
}

.hero-trust .avatars span:first-child {
    margin-left: 0
}

.hero-trust p {
    font-size: 12px;
    color: var(--t2)
}

.hero-trust b {
    color: var(--t1)
}

/* Screenshot with glow */
.hero-screenshot {
    position: relative
}

.hero-screenshot::before {
    content: '';
    position: absolute;
    inset: -20px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 24px;
    filter: blur(20px);
    animation: screenGlow 4s ease-in-out infinite;
}

@keyframes screenGlow {

    0%,
    100% {
        opacity: 0.6
    }

    50% {
        opacity: 1
    }
}

.screen-wrap {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bdr);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--bdr);
    background: rgba(255, 255, 255, 0.02)
}

.screen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.screen-title {
    font-size: 11px;
    color: var(--t4);
    margin-left: 8px
}

.mock-sidebar {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 300px
}

.sidebar-nav {
    border-right: 1px solid var(--bdr);
    padding: 12px 0
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 12px;
    color: var(--t4);
    cursor: pointer;
    transition: .2s
}

.sidebar-item.active {
    background: rgba(59, 130, 246, 0.08);
    color: var(--blue);
    border-right: 2px solid var(--blue)
}

.sidebar-item .si-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.invoice-area {
    padding: 16px
}

.invoice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px
}

.invoice-header h3 {
    font-size: 16px;
    font-weight: 700
}

.inv-actions {
    display: flex;
    gap: 8px
}

.inv-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 14px
}

.inv-tab {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--t4);
    background: rgba(255, 255, 255, 0.03)
}

.inv-tab.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue)
}

.inv-table {
    width: 100%;
    font-size: 11px;
    border-collapse: collapse
}

.inv-table th {
    text-align: left;
    padding: 8px 10px;
    color: var(--t4);
    font-weight: 600;
    border-bottom: 1px solid var(--bdr);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.inv-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--t2)
}

.inv-table .sn {
    color: var(--t1);
    font-weight: 600
}

.sp {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase
}

.sp-paid {
    background: rgba(16, 185, 129, 0.12);
    color: var(--green)
}

.sp-unpaid {
    background: rgba(239, 68, 68, 0.12);
    color: var(--red)
}

.sp-partial {
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber)
}

.collection-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    backdrop-filter: blur(8px)
}

.collection-badge .cb-n {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue)
}

.collection-badge .cb-l {
    font-size: 10px;
    color: var(--t3)
}

.toast-notif {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    backdrop-filter: blur(8px);
    animation: toastIn 0.5s ease-out 1s both;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center
}

.hero-pills span {
    font-size: 12px;
    color: var(--t3);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    transition: border-color .2s
}

.hero-pills span:hover {
    border-color: var(--bdr-h)
}

/* ══════════════════════════════════════
   TICKER
   ══════════════════════════════════════ */
.ticker {
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent)
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: ticker 30s linear infinite;
    width: max-content
}

.ticker-item {
    font-size: 14px;
    color: var(--t3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500
}

.ticker-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ══════════════════════════════════════
   FEATURE CARDS
   ══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 16px 0 8px
}

.feature-card p {
    font-size: 13px;
    color: var(--t3);
    line-height: 1.6
}

/* ══════════════════════════════════════
   BEFORE / AFTER
   ══════════════════════════════════════ */
.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px
}

.ba-col {
    border-radius: var(--card-r);
    padding: 32px;
    position: relative;
    overflow: hidden
}

.ba-before {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1)
}

.ba-after {
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.1)
}

.ba-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px
}

.ba-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ba-header h3 {
    font-size: 17px;
    font-weight: 700
}

.ba-list {
    list-style: none
}

.ba-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
    color: var(--t2);
    line-height: 1.5
}

.ba-list li:last-child {
    border: none
}

.ba-bullet {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

/* ══════════════════════════════════════
   WALKTHROUGH
   ══════════════════════════════════════ */
.wt-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    margin-top: 48px;
    border-radius: var(--card-r);
    overflow: hidden;
    border: 1px solid var(--bdr);
    background: var(--bg-card)
}

.wt-tabs {
    border-right: 1px solid var(--bdr);
    padding: 8px 0
}

.wt-tab {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 20px;
    cursor: pointer;
    transition: .2s;
    border-left: 3px solid transparent
}

.wt-tab.active {
    background: rgba(59, 130, 246, 0.06);
    border-left-color: var(--blue)
}

.wt-tab .wt-num {
    font-size: 11px;
    color: var(--t4);
    font-weight: 600
}

.wt-tab .wt-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--t2)
}

.wt-tab.active .wt-name {
    color: var(--t1)
}

.wt-tab .wt-desc {
    font-size: 11px;
    color: var(--t4)
}

.wt-content {
    padding: 24px;
    min-height: 360px;
    transition: opacity 0.15s ease
}

.wt-content-header {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px
}

.wt-content-sub {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 20px
}

.mock-att {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--bdr);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px
}

.att-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 16px
}

.att-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 16px
}

.att-day {
    text-align: center;
    font-size: 10px;
    color: var(--t4);
    padding: 4px;
    font-weight: 600
}

.att-cell {
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: transform .2s
}

.att-cell:hover {
    transform: scale(1.1)
}

.att-p {
    background: rgba(16, 185, 129, 0.12);
    color: var(--green)
}

.att-a {
    background: rgba(239, 68, 68, 0.12);
    color: var(--red)
}

.att-l {
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber)
}

.att-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.att-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 12px;
    text-align: center
}

.att-stat .num {
    font-size: 22px;
    font-weight: 800;
    color: var(--blue)
}

.att-stat .label {
    font-size: 10px;
    color: var(--t4);
    margin-top: 2px
}

.wt-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 10px;
    font-size: 12px;
    color: var(--t2)
}

.wt-note svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

/* ══════════════════════════════════════
   MODULES
   ══════════════════════════════════════ */
.mod-filter {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap
}

.mod-pill {
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t3);
    background: transparent;
    border: 1px solid var(--bdr);
    font-family: inherit;
    transition: .2s
}

.mod-pill.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.mod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.mod-card .icon-wrap {
    margin-bottom: 12px
}

.mod-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px
}

.mod-card p {
    font-size: 11px;
    color: var(--t4);
    line-height: 1.5;
    flex: 1
}

.mod-card {
    display: flex;
    flex-direction: column
}

.plan-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 12px;
    width: fit-content
}

.pt-free {
    background: rgba(16, 185, 129, 0.12);
    color: var(--green)
}

.pt-basic {
    background: rgba(59, 130, 246, 0.12);
    color: var(--blue)
}

.pt-standard {
    background: rgba(139, 92, 246, 0.12);
    color: var(--purple)
}

.pt-pro {
    background: rgba(245, 158, 11, 0.12);
    color: var(--amber)
}

.pt-enterprise {
    background: rgba(239, 68, 68, 0.12);
    color: var(--red)
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px
}

.testi-card {
    display: flex;
    flex-direction: column
}

.testi-stars {
    color: var(--amber);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px
}

.testi-quote {
    font-size: 14px;
    color: var(--t2);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--bdr);
    padding-top: 16px
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.testi-info {
    flex: 1
}

.testi-name {
    font-size: 13px;
    font-weight: 700
}

.testi-role {
    font-size: 11px;
    color: var(--t4)
}

.trust-strip {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    font-size: 12px;
    color: var(--t2);
    font-weight: 500;
    transition: border-color .2s, transform .2s
}

.trust-pill:hover {
    border-color: var(--bdr-h);
    transform: translateY(-2px)
}

.trust-pill svg {
    width: 16px;
    height: 16px
}

/* ══════════════════════════════════════
   COMPARISON
   ══════════════════════════════════════ */
.cmp-wrap {
    margin-top: 48px;
    border-radius: var(--card-r);
    overflow: hidden;
    border: 1px solid var(--bdr)
}

.cmp-table {
    width: 100%;
    border-collapse: collapse
}

.cmp-table thead th {
    padding: 20px 18px;
    font-size: 12px;
    text-align: center;
    vertical-align: bottom;
    border-bottom: 1px solid var(--bdr)
}

.cmp-table thead th:first-child {
    text-align: left;
    width: 180px
}

.th-product {
    font-size: 16px;
    font-weight: 800;
    display: block
}

.th-price {
    font-size: 12px;
    color: var(--t4);
    font-weight: 500
}

.th-hl {
    background: rgba(59, 130, 246, 0.04);
    border-top: 3px solid var(--blue)
}

.th-rec {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px
}

.cmp-table tbody td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 13px;
    color: var(--t2)
}

.cmp-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--t1)
}

.td-hl {
    background: rgba(59, 130, 246, 0.02)
}

.cy {
    color: var(--green);
    font-weight: 600
}

.cn {
    color: var(--t4)
}

.cp {
    color: var(--amber)
}

.cmp-cta {
    text-align: center;
    padding: 24px;
    background: rgba(59, 130, 246, 0.03);
    border-top: 1px solid var(--bdr)
}

/* ══════════════════════════════════════
   PRICING
   ══════════════════════════════════════ */
.price-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 48px
}

.price-card {
    display: flex;
    flex-direction: column;
    position: relative
}

.price-card.pop {
    border-color: var(--blue);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.08)
}

.price-card.pop::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--card-r);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    z-index: -1;
    opacity: 0.15;
}

.pop-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 20px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap
}

.price-tier {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--t4);
    margin-bottom: 8px
}

.price-offer-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(16,185,129,0.12);
    color: var(--green);
    margin-bottom: 6px
}

.price-regular {
    font-size: 15px;
    color: var(--t4);
    text-decoration: line-through;
    margin-bottom: 2px
}

.price-regular .cur {
    font-size: 12px
}

.price-amt {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 4px
}

.price-amt .cur {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super
}

.price-amt .per {
    font-size: 14px;
    font-weight: 500;
    color: var(--t4)
}

.price-desc {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 20px;
    min-height: 40px
}

.price-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--t2)
}

.price-features svg {
    width: 16px;
    height: 16px;
    stroke: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
    fill: none;
    stroke-width: 2.5
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px
}

.svc-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 16px 0 8px
}

.svc-card p {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 16px;
    line-height: 1.6
}

.svc-list {
    list-style: none;
    margin-bottom: 20px
}

.svc-list li {
    font-size: 12px;
    color: var(--t2);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px
}

.svc-list li::before {
    content: "–";
    color: var(--t4)
}

.svc-price {
    border-top: 1px solid var(--bdr);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.svc-price .sl {
    font-size: 11px;
    color: var(--t4)
}

.svc-price .sa {
    font-size: 22px;
    font-weight: 800
}

.svc-regular {
    font-size: 14px;
    color: var(--t4);
    text-decoration: line-through;
    margin-bottom: -2px
}

.bundle-regular {
    text-decoration: line-through;
    color: var(--t4);
    font-weight: 400
}

.bundle {
    margin-top: 20px;
    padding: 20px 28px;
    border-radius: var(--card-r);
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.bundle p {
    font-size: 14px;
    color: var(--t2)
}

.bundle b {
    color: var(--t1)
}

/* ══════════════════════════════════════
   DEMO FORM
   ══════════════════════════════════════ */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start
}

.demo-left h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px
}

.demo-left>p {
    font-size: 14px;
    color: var(--t3);
    margin-bottom: 28px;
    line-height: 1.7
}

.demo-bens {
    list-style: none;
    margin-bottom: 32px
}

.demo-bens li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--t2)
}

.db-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.qt {
    border-top: 1px solid var(--bdr);
    padding-top: 24px
}

.qt h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px
}

.qt-steps {
    display: flex;
    gap: 0;
    position: relative
}

.qt-step {
    flex: 1;
    text-align: center;
    position: relative
}

.qt-step::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--bdr)
}

.qt-step:last-child::before {
    display: none
}

.qt-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    margin: 0 auto 8px;
    position: relative;
    z-index: 1
}

.qt-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--t2)
}

.qt-time {
    font-size: 10px;
    color: var(--t4)
}

.demo-form {
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    border-radius: var(--card-r);
    padding: 32px;
    position: relative;
    overflow: hidden
}

.demo-form::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04), transparent);
    border-radius: 50%
}

.demo-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative
}

.form-sub {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 24px;
    position: relative
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-group.full {
    grid-column: 1/-1
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--t2)
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bdr);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--t1);
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit
}

.form-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1)
}

.form-input::placeholder {
    color: var(--t4)
}

select.form-input {
    appearance: none
}

.form-note {
    display: flex;
    gap: 16px;
    margin-top: 14px;
    justify-content: center
}

.form-note span {
    font-size: 11px;
    color: var(--t4);
    display: flex;
    align-items: center;
    gap: 4px
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 48px
}

.faq-item {
    cursor: pointer
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.faq-q h4 {
    font-size: 15px;
    font-weight: 600
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--t4);
    transition: transform .3s, color .3s, background .3s;
    flex-shrink: 0
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--blue);
    background: rgba(59, 130, 246, 0.1)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.16, 1, 0.3, 1), padding .3s;
    padding: 0
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 14px 0 0
}

.faq-a p {
    font-size: 13px;
    color: var(--t3);
    line-height: 1.7
}

/* ══════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════ */
.final-cta {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1a1a2e 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 24px;
}

.final-cta .fc-glow1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent);
    border-radius: 50%;
    animation: glowFloat 10s ease-in-out infinite
}

.final-cta .fc-glow2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    animation: glowFloat 14s ease-in-out infinite reverse
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative
}

.final-cta p {
    font-size: 15px;
    color: var(--t3);
    margin-bottom: 28px;
    position: relative
}

.final-cta .cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative
}

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

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 800
}

.footer-brand .logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    color: #fff
}

.footer-brand p {
    font-size: 13px;
    color: var(--t4);
    line-height: 1.7;
    margin-bottom: 16px
}

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

.footer-socials span {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--t4);
    cursor: pointer;
    transition: all .2s
}

.footer-socials span:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px)
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--t4);
    margin-bottom: 16px
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--t3);
    padding: 5px 0;
    transition: color .2s
}

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

.footer-nl p {
    font-size: 12px;
    color: var(--t4);
    margin-bottom: 10px
}

.footer-nl .nl-row {
    display: flex;
    gap: 6px
}

.footer-nl input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--t1);
    font-size: 13px;
    min-width: 0;
    font-family: inherit
}

.footer-nl input:focus {
    outline: none;
    border-color: var(--blue)
}

.footer-nl button {
    background: var(--blue);
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14px
}

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

.footer-bottom .copy {
    font-size: 12px;
    color: var(--t4)
}

.footer-bottom .legal {
    display: flex;
    gap: 20px
}

.footer-bottom .legal a {
    font-size: 12px;
    color: var(--t4);
    transition: color .2s
}

.footer-bottom .legal a:hover {
    color: var(--t2)
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media(max-width:1024px) {
    .hero .container {
        grid-template-columns: 1fr
    }

    .hero-screenshot {
        order: -1
    }

    .features-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mod-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .price-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    :root {
        --section-pad: 64px
    }

    .section-title {
        font-size: 28px
    }

    .hero h1 {
        font-size: 34px
    }

    .features-grid,
    .ba-grid {
        grid-template-columns: 1fr
    }

    .wt-wrap {
        grid-template-columns: 1fr
    }

    .wt-tabs {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--bdr)
    }

    .wt-tab {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 16px
    }

    .wt-tab.active {
        border-bottom-color: var(--blue);
        border-left: none
    }

    .mod-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .price-grid,
    .svc-grid {
        grid-template-columns: 1fr
    }

    .demo-grid,
    .faq-grid,
    .testi-grid {
        grid-template-columns: 1fr
    }

    .cmp-wrap {
        overflow-x: auto
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        display: none
    }

    .glow-orb {
        display: none
    }
}

/* ══════════════════════════════════════
   OTP VERIFICATION
   ══════════════════════════════════════ */
.otp-row-wrap { margin-top: -8px; }
.otp-verify-row { display: flex; align-items: center; gap: 8px; font-size: 13px; min-height: 32px; flex-wrap: wrap; }
.otp-verify-link { color: var(--blue); cursor: pointer; text-decoration: underline; font-weight: 500; }
.otp-verify-link:hover { color: var(--purple); }
.otp-input { width: 120px; padding: 6px 10px; border: 1px solid var(--bdr); border-radius: 6px; background: rgba(255,255,255,0.04); color: var(--t1); font-size: 14px; letter-spacing: 4px; text-align: center; outline: none; }
.otp-input:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(59,130,246,0.15); }
.otp-submit { padding: 6px 14px; font-size: 12px; font-weight: 600; border-radius: 6px; background: var(--blue); color: #fff; border: none; cursor: pointer; transition: opacity 0.2s; }
.otp-submit:hover { opacity: 0.9; }
.otp-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.otp-timer { color: var(--t4); font-size: 12px; font-variant-numeric: tabular-nums; }
.otp-resend { color: var(--blue); cursor: pointer; font-size: 12px; text-decoration: underline; }
.otp-resend:hover { color: var(--purple); }
.otp-verified { color: var(--green); font-weight: 600; font-size: 13px; }
.otp-error { color: var(--red); font-size: 12px; }
.otp-status { font-size: 12px; color: var(--t3); }