/* ===================================================
   MONETUM — Landing Page Styles (Light Mode)
   Brand Colors:
   - Primary Green: #2EC4A0
   - Background: #F5F5F5 / #FFFFFF
   - Heading Dark: #1A1A2E
   - Body Text: #4A4A4A / #555555
   - Muted: #888888
   - Green Gradient: #2EC4A0 → #3AD9B1
   =================================================== */

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

:root {
    --primary: #2EC4A0;
    --primary-light: #3AD9B1;
    --primary-dark: #26A88A;
    --primary-bg: rgba(46, 196, 160, 0.08);
    --primary-bg-medium: rgba(46, 196, 160, 0.12);
    --bg: #F5F5F5;
    --bg-white: #FFFFFF;
    --bg-section-alt: #FAFAFA;
    --heading: #1A1A2E;
    --text: #4A4A4A;
    --text-light: #666666;
    --text-muted: #888888;
    --border: #E8E8E8;
    --border-light: #F0F0F0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --gradient-green: linear-gradient(135deg, #2EC4A0 0%, #3AD9B1 100%);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

::selection {
    background: rgba(46, 196, 160, 0.2);
    color: var(--heading);
}

/* ---- Cursor Glow (subtle for light mode) ---- */
.cursor-glow { display: none; }

/* ---- Layout ---- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-white);
    z-index: 1;
}

.section:nth-child(even) {
    background: var(--bg);
}

/* ---- Section overlap + green shadow separator ---- */
.section + .section {
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px -6px rgba(46, 196, 160, 0.12),
                0 -2px 8px -2px rgba(46, 196, 160, 0.06);
}

/* Green accent line at top of overlapping section */
.section + .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: var(--gradient-green);
}

/* First section after hero gets green bar */
.hero + .section {
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 30px -6px rgba(46, 196, 160, 0.12),
                0 -2px 8px -2px rgba(46, 196, 160, 0.06);
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--heading);
}

.logo-text .logo-tagline {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary);
    font-style: italic;
}

.nav-sector-menu {
    position: relative;
}

.sector-burger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 18px 8px 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.sector-burger:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.burger-icon span {
    display: block;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-icon span:nth-child(1) { width: 18px; }
.burger-icon span:nth-child(2) { width: 14px; }
.burger-icon span:nth-child(3) { width: 18px; }

.sector-burger:hover .burger-icon span {
    background: var(--primary);
}

.burger-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.sector-burger:hover .burger-label {
    color: var(--primary);
}

/* Dropdown */
.sector-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
    overflow: hidden;
}

.nav-sector-menu:hover .sector-dropdown,
.sector-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 14px 20px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--primary-bg);
}

.dropdown-item.active-page {
    background: var(--primary-bg);
    border-left: 3px solid var(--primary);
}

.dropdown-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    flex-shrink: 0;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
}

.dropdown-item strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--heading);
}

.dropdown-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- Scroll Progress ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-green);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: var(--bg-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-green);
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    border: 1px solid rgba(46, 196, 160, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--heading);
    max-width: 700px;
}

.hero-title .gradient-text {
    color: var(--primary);
    font-style: italic;
    -webkit-text-fill-color: var(--primary);
    background: none;
}

/* Override gradient-text globally for light mode */
.gradient-text {
    color: var(--primary);
    font-style: italic;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--primary) !important;
    background-clip: unset !important;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--gradient-green);
    color: #FFFFFF;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 196, 160, 0.3);
}

.btn-glow {
    box-shadow: 0 2px 12px rgba(46, 196, 160, 0.2);
}

.btn-ghost {
    background: var(--bg-white);
    color: var(--heading);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ---- Scroll Indicator ---- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--text-muted);
    border-radius: 11px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---- Lead Personalization ---- */
.lead-personalization {
    margin-top: 24px;
}

.lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-bg);
    border: 1px solid rgba(46, 196, 160, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--primary-dark);
}

/* ---- Section Header ---- */
.section-header {
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--heading);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.7;
}

/* ---- Green Underline Bar (decorative) ---- */
.green-bar {
    width: 70px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
    margin-top: 24px;
}

.green-bar-center {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Challenge Section ---- */
.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.challenge-card {
    text-align: left;
}

.challenge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.challenge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--heading);
    margin-bottom: 12px;
}

.challenge-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.challenge-card .green-bar {
    margin-top: 24px;
}

/* ---- Platform Section ---- */
.platform-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pillar-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(46, 196, 160, 0.1);
}

.pillar-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-green);
    color: #FFFFFF;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pillar-icon-wrap {
    margin-bottom: 20px;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
}

.pillar-features {
    list-style: none;
    text-align: left;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    color: var(--text);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-light);
}

.pillar-features li:last-child {
    border-bottom: none;
}

.pillar-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ---- Products Section ---- */
.product-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.product-block:last-child {
    margin-bottom: 0;
}

.product-reverse {
    direction: rtl;
}

.product-reverse > * {
    direction: ltr;
}

.product-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.2;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.product-usecases {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.usecase-tag {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text);
}

.product-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--primary);
    margin-top: 16px;
    font-weight: 500;
}

/* ---- Product Visuals ---- */
.product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IBAN Card */
.iban-card {
    width: 100%;
    max-width: 380px;
    background: linear-gradient(135deg, #1A2E35 0%, #1A1A2E 100%);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.iban-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

.iban-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-top: 4px;
}

.iban-label {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.iban-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(46, 196, 160, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
}

.iban-number {
    font-family: 'DM Sans', monospace;
    font-size: 1.05rem;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 28px;
    word-spacing: 6px;
}

.iban-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.iban-network {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Payment Flow */
.payment-flow {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 380px;
}

.pf-item {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
}

.pf-item i {
    font-size: 1.3rem;
    margin-bottom: 6px;
    display: block;
}

.pf-in i { color: var(--primary); }
.pf-out i { color: var(--primary-dark); }

.pf-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pf-item strong {
    font-size: 0.8rem;
    color: var(--heading);
}

.pf-center {
    flex-shrink: 0;
    text-align: center;
}

.pf-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pf-center span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Widget Mockup */
.widget-mockup {
    width: 100%;
    max-width: 340px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.widget-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
}

.widget-title {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.widget-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
}

.widget-banks {
    padding: 12px 20px;
}

.bank-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
}

.bank-option:hover,
.bank-option.active {
    background: var(--primary-bg);
    color: var(--heading);
}

.bank-option.active {
    border: 1px solid rgba(46, 196, 160, 0.3);
}

.widget-btn {
    margin: 8px 20px 20px;
    background: var(--gradient-green);
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Wallet Visual */
.wallet-visual {
    width: 100%;
    max-width: 380px;
}

.wallet-card-main {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.wc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.wc-header i { color: var(--primary); }

.wc-balance { margin-bottom: 20px; }

.wc-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.wc-amount {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
}

.wc-assets {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wc-asset {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
}

.wc-asset strong {
    margin-left: auto;
    color: var(--heading);
}

.wc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-eur { background: var(--primary); }
.dot-btc { background: #F7931A; }
.dot-eth { background: #627EEA; }
.dot-usdt { background: #26A17B; }

.wallet-connectors {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.connector-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Swap Widget */
.swap-widget {
    width: 100%;
    max-width: 340px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.swap-from, .swap-to {
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.swap-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.swap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swap-token {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--heading);
}

.token-icon {
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: 50%;
    color: var(--primary);
}

.swap-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
}

.swap-arrow {
    text-align: center;
    padding: 10px;
    color: var(--primary);
}

.swap-rate {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 10px 0;
}

.swap-btn {
    background: var(--gradient-green);
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-top: 8px;
}

/* OTC Comparison */
.otc-comparison { margin: 20px 0; }

.otc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.otc-label {
    font-size: 0.82rem;
    color: var(--text);
    min-width: 100px;
    flex-shrink: 0;
}

.otc-bar {
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    min-width: fit-content;
    transition: width 1s ease-out;
}

.otc-bar-us {
    background: var(--gradient-green);
    color: #FFFFFF;
}

.otc-bar-them {
    background: #FEE2E2;
    color: #DC2626;
}

/* OTC Visual Card */
.otc-visual {
    width: 100%;
    max-width: 340px;
}

.otc-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.otc-header {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-align: center;
}

.otc-amount-input, .otc-amount-output {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.otc-curr {
    font-weight: 600;
    color: var(--primary);
}

.otc-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading);
}

.otc-arrow-down {
    text-align: center;
    padding: 8px;
    color: var(--primary);
}

.otc-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.otc-saved {
    color: var(--primary);
    font-weight: 600;
}

/* Yield Visual */
.yield-visual {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.yield-disclaimer {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    line-height: 1.5;
    opacity: 0.8;
}

.yield-pool {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px;
    transition: var(--transition);
}

.yield-pool:hover {
    border-color: var(--primary);
}

.yp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.yp-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading);
}

.yp-apy {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.highlight-apy {
    color: var(--primary);
    font-size: 1rem;
}

.yp-bar {
    height: 5px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.yp-fill {
    height: 100%;
    background: var(--gradient-green);
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.yp-fill-btc { background: linear-gradient(90deg, #F7931A, #FDB913); }
.yp-fill-eth { background: linear-gradient(90deg, #627EEA, #8B9FFF); }

.yp-info {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- Dashboard Section ---- */
.dashboard-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dash-feature {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.dash-feature:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dash-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.dash-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.dash-feature p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---- Sectors Section ---- */
.sector-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.sector-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.sector-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sector-tab.active {
    background: var(--primary-bg-medium);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.sector-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.sector-content.active { display: block; }

.sector-hero-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
}

.sector-hero-left h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.sector-tagline {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-style: italic;
}

.sector-hero-left p:last-child {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.sector-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.sector-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.ss-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.ss-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.sector-solutions-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: var(--transition);
    position: relative;
}

.solution-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.sol-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(46, 196, 160, 0.08);
}

.sol-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: var(--gradient-green);
    color: #FFFFFF;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sol-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 14px;
}

.solution-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.solution-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ---- Why Section ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ---- Proof Section ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(46, 196, 160, 0.3);
}

.stars {
    color: #FCD34D;
    font-size: 0.82rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
}

.author-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--heading);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.88rem;
}

.trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ---- Summary Section ---- */
.summary-section {
    padding: 80px 0;
}

.summary-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.summary-content h2 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--heading);
}

.summary-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.summary-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.summary-contact-item i {
    color: var(--primary);
}

/* ---- Demo Button (Open Banking Widget) ---- */
.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
}

.btn-demo:hover {
    background: var(--primary-bg);
    transform: translateY(-1px);
}

.btn-demo i {
    font-size: 0.9rem;
}

/* ---- About Section ---- */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.about-stat:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    margin: 0 auto 12px;
}

.about-stat strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 4px;
}

.about-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Process Section ---- */
.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(46, 196, 160, 0.25);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

.process-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
    margin-top: 24px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -4px;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid var(--primary);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 56px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 28px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--heading);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 3px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .challenge-grid, .platform-pillars, .dashboard-features,
    .why-grid, .testimonials-grid, .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-reverse { direction: ltr; }
    .sector-hero-card { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .process-timeline { flex-wrap: wrap; justify-content: center; gap: 8px; }
    .process-connector { width: 30px; margin-top: 24px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section { padding: 80px 0; }
    .section + .section { margin-top: -12px; border-radius: 14px 14px 0 0; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .challenge-grid, .platform-pillars, .dashboard-features,
    .why-grid, .testimonials-grid, .solutions-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats { gap: 16px; }
    .stat-divider { display: none; }
    .hero-title { font-size: 2rem; }
    .sector-tabs { gap: 6px; }
    .sector-tab { padding: 8px 14px; font-size: 0.78rem; }
    .sector-tab span { display: none; }
    .sector-tab i { font-size: 1.1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 36px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .trust-badges { gap: 16px; }
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-connector {
        width: 2px;
        height: 24px;
        margin-top: 0;
    }
    .process-connector::after {
        right: auto;
        top: auto;
        bottom: -3px;
        left: -4px;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid var(--primary);
        border-bottom: none;
    }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .summary-contact { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 1.5rem; }
    .btn-lg { padding: 14px 28px; font-size: 0.92rem; }
    .nav-container { padding: 0 20px; }
    .about-stats-grid { grid-template-columns: 1fr; }
}