/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pure black fintech base */
    --background: #050505;
    --foreground: #fbfbfb;
    --card: #0d0d0d;
    --card-foreground: #fbfbfb;
    --popover: #0d0d0d;
    --popover-foreground: #fbfbfb;
    --primary: #39ff14;
    --primary-foreground: #050505;
    --secondary: #1a1a1a;
    --secondary-foreground: #fbfbfb;
    --muted: #1a1a1a;
    --muted-foreground: #8a8a8a;
    --accent: #39ff14;
    --accent-foreground: #050505;
    --destructive: #b33c1a;
    --destructive-foreground: #fbfbfb;
    --border: rgba(255, 255, 255, 0.06);
    --input: rgba(255, 255, 255, 0.10);
    --ring: #39ff14;
    --radius: 0.875rem;

    /* Brand */
    --neon: #39ff14;
    --neon-glow: 0 0 24px rgba(57, 255, 20, 0.55), 0 0 48px rgba(57, 255, 20, 0.25);
    --gradient-neon: linear-gradient(135deg, #39ff14 0%, #00d96a 100%);
    --gradient-radial-neon: radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.18), transparent 60%);
    --glass-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --shadow-card: 0 20px 60px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;

    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: var(--neon);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4dff2e;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-neon {
    color: var(--neon);
}
.text-glow {
    text-shadow: 0 0 18px rgba(57, 255, 20, 0.55);
}
.glow-neon {
    box-shadow: var(--neon-glow);
}
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: var(--glass-border);
}
.gradient-neon {
    background: var(--gradient-neon);
}
.bg-grid {
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-sm {
    height: 2.25rem;
    padding: 0 0.875rem;
    font-size: 0.8125rem;
}
.btn-lg {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.9375rem;
}
.btn-primary {
    background: var(--neon);
    color: #050505;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 6px 20px -8px rgba(57, 255, 20, 0.55);
}
.btn-primary:hover {
    background: #4dff2e;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 10px 28px -8px rgba(57, 255, 20, 0.75);
    transform: translateY(-1px);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #f4f4f4;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.btn-secondary:hover {
    background: rgba(57, 255, 20, 0.06);
    border-color: rgba(57, 255, 20, 0.4);
    color: var(--neon);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-ticker {
    animation: ticker-scroll 40s linear infinite;
}

@keyframes chart-draw {
    0% { stroke-dashoffset: 2000; opacity: 0; }
    20% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}
.chart-line {
    stroke-dasharray: 2000;
    animation: chart-draw 4s ease-out forwards;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.4), 0 0 40px rgba(57, 255, 20, 0.15); }
    50% { box-shadow: 0 0 40px rgba(57, 255, 20, 0.7), 0 0 80px rgba(57, 255, 20, 0.3); }
}
.animate-pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-float-up {
    animation: float-up 0.8s ease-out both;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(5, 5, 5, 0.70);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.92);
    border-bottom-color: rgba(57, 255, 20, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand .logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.nav-links a.active {
    color: var(--neon);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}
.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border);
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav a {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.mobile-nav a.active {
    color: var(--neon);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg .grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.6;
}
.hero-bg .glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(57, 255, 20, 0.15), transparent 65%);
}

/* stock chart SVG */
.stock-chart {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}
.stock-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}
.stock-chart .line {
    fill: none;
    stroke: var(--neon);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.5));
    stroke-dasharray: 2000;
    animation: chart-draw 3.5s ease-out forwards;
}
.stock-chart .area {
    fill: url(#chart-grad);
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 20px;
    animation: float-up 0.8s ease-out 0.05s both;
}
.hero-logo img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: float-up 0.8s ease-out both;
}
.hero-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    backdrop-filter: blur(4px);
    transition: border-color 0.2s, color 0.2s;
}
.hero-pills .pill:hover {
    border-color: rgba(57, 255, 20, 0.3);
    color: #fff;
}
.hero-pills .pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 12px var(--neon);
    animation: pulse-dot 1.8s ease-in-out infinite;
}
.hero-pills .pill.green {
    border-color: rgba(57, 255, 20, 0.3);
    color: var(--neon);
}

.hero-content h1 {
    font-size: clamp(2.6rem, 8vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    animation: float-up 0.8s ease-out 0.1s both;
}
.hero-content h1 .highlight {
    color: var(--neon);
    text-shadow: 0 0 40px rgba(57, 255, 20, 0.3);
}

.hero-content .sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--muted-foreground);
    max-width: 560px;
    margin: 0 auto 28px;
    animation: float-up 0.8s ease-out 0.2s both;
}
.hero-content .sub b {
    color: #fff;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    animation: float-up 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 48px;
    animation: float-up 0.8s ease-out 0.4s both;
}
.hero-stats .stat {
    min-width: 110px;
    padding: 14px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s;
}
.hero-stats .stat:hover {
    border-color: rgba(57, 255, 20, 0.25);
    transform: translateY(-3px);
}
.hero-stats .stat .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon);
    letter-spacing: -0.02em;
}
.hero-stats .stat .label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a5a5a;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
    position: relative;
}
.section-dark {
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-sub {
    color: var(--muted-foreground);
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

.text-center {
    text-align: center;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    padding: 28px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, background 0.25s, box-shadow 0.25s;
    backdrop-filter: blur(4px);
}
.feature-card:hover {
    border-color: rgba(57, 255, 20, 0.25);
    transform: translateY(-4px);
    background: rgba(57, 255, 20, 0.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.feature-card p {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.pricing-card {
    padding: 28px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
    backdrop-filter: blur(4px);
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(57, 255, 20, 0.25);
    transform: translateY(-4px);
}
.pricing-card.popular {
    border-color: rgba(57, 255, 20, 0.25);
    background: rgba(57, 255, 20, 0.04);
}
.pricing-card.popular::before {
    content: '★ Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon);
    color: #050505;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 14px;
    border-radius: 999px;
    text-transform: uppercase;
}
.pricing-card .amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon);
    letter-spacing: -0.02em;
}
.pricing-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 4px 0 12px;
}
.pricing-card .desc {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.pricing-card .perks {
    margin-top: 16px;
    text-align: left;
}
.pricing-card .perks li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    padding: 4px 0;
}
.pricing-card .perks li .check {
    color: var(--neon);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   PAYMENTS
   ============================================================ */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
    max-width: 780px;
    margin: 0 auto 20px;
}
.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: border-color 0.25s, color 0.25s, transform 0.25s;
    backdrop-filter: blur(4px);
}
.payment-item:hover {
    border-color: rgba(57, 255, 20, 0.25);
    color: #fff;
    transform: translateY(-2px);
}
.payment-item .pm-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.payment-note {
    color: #5a5a5a;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-block {
    padding: 80px 0;
    text-align: center;
}
.cta-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s;
}
.cta-card:hover {
    border-color: rgba(57, 255, 20, 0.25);
}
.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 8px;
}
.cta-card p {
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 40px 0 28px;
    border-top: 1px solid var(--border);
    text-align: center;
    margin-top: 0;
}
.footer p {
    font-size: 0.8rem;
    color: #5a5a5a;
}
.footer .brand-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 4px;
}
.footer .brand-small .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon);
}

/* ============================================================
   PAGE TRANSITIONS (SPA-like)
   ============================================================ */
.page-section {
    display: none;
    animation: float-up 0.5s ease-out both;
}
.page-section.active {
    display: block;
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion {
    width: 100%;
}
.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 4px;
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.2s;
    text-align: left;
    font-family: var(--font);
}
.accordion-trigger:hover {
    color: var(--neon);
}
.accordion-trigger .arrow {
    transition: transform 0.25s ease;
    font-size: 0.8rem;
    color: var(--muted-foreground);
}
.accordion-trigger.open .arrow {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 4px;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    line-height: 1.7;
}
.accordion-content.open {
    max-height: 400px;
    padding: 0 4px 20px;
}
.accordion-content a {
    color: var(--neon);
    text-decoration: underline;
}
.accordion-content a:hover {
    text-decoration: none;
}

/* ============================================================
   CONTACT CHANNELS
   ============================================================ */
.contact-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact-card {
    padding: 28px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.25s, transform 0.25s;
    text-align: left;
    backdrop-filter: blur(4px);
    display: block;
    color: inherit;
}
.contact-card:hover {
    border-color: rgba(57, 255, 20, 0.25);
    transform: translateY(-4px);
}
.contact-card .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(57, 255, 20, 0.08);
    color: var(--neon);
    border: 1px solid rgba(57, 255, 20, 0.15);
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}
.contact-card .handle {
    color: var(--neon);
    font-size: 0.9rem;
    margin-top: 2px;
}
.contact-card .desc {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 8px;
}
.contact-card .cta-label {
    display: inline-block;
    margin-top: 16px;
    padding: 6px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
    color: var(--muted-foreground);
}
.contact-card:hover .cta-label {
    border-color: rgba(57, 255, 20, 0.25);
    color: var(--neon);
}

.refund-box {
    max-width: 560px;
    margin: 40px auto 0;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(4px);
}
.refund-box h3 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}
.refund-box p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-actions .btn {
        font-size: 0.8rem;
        padding: 8px 14px;
        height: 2.1rem;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    .hero-logo img {
        height: 44px;
    }
    .hero-stats .stat {
        min-width: 80px;
        padding: 10px 14px;
    }
    .hero-stats .stat .number {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .payments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-showcase {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    .cta-card {
        padding: 32px 20px;
    }

    .stock-chart {
        top: 40px;
        height: 180px;
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-pills .pill {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-logo img {
        height: 36px;
    }
    .nav-inner {
        height: 60px;
        padding: 0 16px;
    }
    .brand .logo-img {
        height: 32px;
    }
}
