/* ═══════════════════════════════════════════════════════════════════════
   SUTCEL — LANDING PAGE STYLES (Refined)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --primary: #0A4F4F;
    --primary-dark: #063A3A;
    --primary-light: #0D6B6B;
    --accent: #E8D5B7;
    --accent-dark: #D4BFA0;
    --alert: #D4756B;
    --bg-cream: #F5F2ED;
    --bg-white: #FFFFFF;
    --bg-dark: #0D1B1B;
    --text-dark: #1A1A1A;
    --text-mid: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #F9F9F9;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
    --max-width: 1200px;
    --nav-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ═══════════════════════════════════════════════════════════════════════
   ── ANIMATIONS ──
   ═══════════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%      { opacity: 0.8; transform: scale(1.05); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── PROMO BANNER ──
   ═══════════════════════════════════════════════════════════════════════ */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    font-size: 0.85rem;
}
.promo-banner.closed { display: none; }
.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.promo-spots-left {
    background: rgba(255,255,255,0.15);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}
.promo-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    padding: 0 4px;
}
.promo-close:hover { opacity: 1; }
body.promo-closed .promo-banner { display: none; }
body.promo-closed .navbar { top: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   ── SOCIAL SHARE BUTTONS ──
   ═══════════════════════════════════════════════════════════════════════ */
.social-share {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 900;
}
.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
}
.social-share-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-md); }
.social-share-btn.twitter { background: #1DA1F2; }
.social-share-btn.facebook { background: #4267B2; }
.social-share-btn.whatsapp { background: #25D366; }
.social-share-btn.linkedin { background: #0077B5; }
.social-share-btn.copy { background: var(--primary); }

/* ═══════════════════════════════════════════════════════════════════════
   ── PRESS SECTION ──
   ═══════════════════════════════════════════════════════════════════════ */
.press { background: var(--bg-white); padding: 48px 0; }
.press-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}
.press-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.press-item i { font-size: 1.3rem; }

/* ═══════════════════════════════════════════════════════════════════════
   ── NAVBAR ──
   ═══════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 42px; /* below promo banner */
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(245, 242, 237, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 79, 79, 0.08);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(245, 242, 237, 0.95);
    box-shadow: 0 2px 20px rgba(10, 79, 79, 0.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}
.nav-logo-img {
    height: 32px;
    width: auto;
}
.logo-text { letter-spacing: -0.02em; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════════════════
   ── HERO CARD (Privacy for Sender / Dignity for Recipient) ──
   ═══════════════════════════════════════════════════════════════════════ */
.hero-card {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 80px;
    overflow: hidden;
    background: var(--bg-cream);
}
.hero-card-bg {
    position: absolute;
    inset: 0;
    background: url('assets/signup.png') center/cover no-repeat;
    opacity: 0.45;
    pointer-events: none;
}
.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(245,242,237,0.92) 0%, 
        rgba(245,242,237,0.7) 50%, 
        rgba(245,242,237,0.92) 100%);
    pointer-events: none;
}
.hero-card-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 79, 79, 0.08);
    border: 1px solid rgba(10, 79, 79, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}
.hero-card-title {
    margin-bottom: 24px;
}
.hero-card-title .title-line {
    display: block;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}
.hero-card-title .title-line.accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-card-title .title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}
.hero-card-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}
.hero-card-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-card-visual {
    display: flex;
    justify-content: center;
}
.hero-card-phone-wrapper {
    width: 280px;
    animation: float 6s ease-in-out infinite;
}
.hero-card-phone {
    background: #1A1A1A;
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-phone-header {
    background: var(--primary);
    padding: 32px 20px 20px;
    border-radius: 26px 26px 0 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.hero-card-phone-balance {
    font-size: 1.5rem;
    font-weight: 800;
}
.hero-card-phone-flag {
    font-size: 1.5rem;
}
.hero-card-phone-actions {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: white;
    margin: 0 12px;
    border-radius: var(--radius-md);
    transform: translateY(-12px);
    box-shadow: var(--shadow-sm);
}
.hero-card-phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-mid);
    font-weight: 500;
}
.hero-card-phone-btn i {
    width: 36px;
    height: 36px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
}
.hero-card-phone-btn.send i {
    background: var(--primary);
    color: white;
}
.hero-card-phone-screen {
    padding: 0 12px 12px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}
.sim-step {
    display: none;
    animation: fadeIn 0.5s ease;
}
.sim-step.active { display: block; }
.sim-step-1.active ~ .sim-step-2,
.sim-step-2.active ~ .sim-step-3 { display: none; }

/* Step 1: Merchant selection */
.sim-merchant-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sim-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: block;
    margin-bottom: 6px;
}
.sim-merchant-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-mid);
    border: 1px solid transparent;
    transition: var(--transition);
}
.sim-merchant-item.active {
    border-color: var(--primary);
    background: rgba(10,79,79,0.04);
    color: var(--primary);
    font-weight: 600;
}
.sim-merchant-item i:first-child {
    width: 28px;
    height: 28px;
    background: rgba(10,79,79,0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary);
    flex-shrink: 0;
}
.sim-check {
    margin-left: auto;
    color: var(--primary);
    font-size: 0.7rem;
}

/* Step 2: Money flying animation */
.sim-send-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}
.sim-sender, .sim-receiver {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text-mid);
    font-weight: 600;
    position: relative;
}
.sim-sender i, .sim-receiver i {
    width: 36px;
    height: 36px;
    background: rgba(10,79,79,0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
}
.sim-receiver i { background: rgba(212,117,107,0.1); color: var(--alert); }
.sim-arrow-row {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sim-arrow-row i {
    color: var(--primary);
    font-size: 0.8rem;
    animation: bounce-right 1.5s ease-in-out infinite;
}
.sim-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(10,79,79,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.sim-progress-fill {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    animation: progressFill 2s ease forwards;
}
@keyframes progressFill {
    to { width: 100%; }
}
.sim-money-fly i, .sim-money-receive i {
    font-size: 0.6rem;
    color: var(--primary);
    animation: moneyFly 1.5s ease-in-out infinite;
}
.sim-money-fly i:nth-child(2) { animation-delay: 0.3s; }
.sim-money-fly i:nth-child(3) { animation-delay: 0.6s; }
.sim-money-receive i:nth-child(2) { animation-delay: 0.4s; }
@keyframes moneyFly {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-6px); opacity: 0.5; }
}
.sim-status {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px;
    border-radius: 6px;
    margin-top: 4px;
}
.sim-status.success {
    background: rgba(16,185,129,0.1);
    color: #10B981;
}

/* Step 3: Corporate guy with suitcase */
.sim-corporate-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.sim-corporate-guy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}
.sim-corporate-guy i.fa-user-tie {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}
.sim-suitcase {
    position: absolute;
    bottom: -8px;
    right: -16px;
    animation: suitcaseBounce 2s ease-in-out infinite;
}
.sim-suitcase i {
    font-size: 1.1rem;
    color: var(--accent);
}
@keyframes suitcaseBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-5deg); }
    75% { transform: translateY(-2px) rotate(5deg); }
}
.sim-walk-track {
    width: 100%;
    height: 3px;
    background: rgba(10,79,79,0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}
.sim-walker {
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: walkAcross 3s ease-in-out infinite;
}
@keyframes walkAcross {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(100%); }
}
.sim-cash-to-recipient {
    width: 100%;
}
.sim-cash-badges {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sim-cash-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-mid);
    padding: 6px 10px;
    background: var(--bg-white);
    border-radius: 6px;
}
.sim-cash-badge i {
    color: #10B981;
    font-size: 0.65rem;
}

.hero-card-phone-tx {
    padding: 0 16px 16px;
}
.hero-card-phone-tx-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}
.hero-card-phone-tx-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 79, 79, 0.04);
    background: white;
    border-radius: 8px;
    margin-bottom: 6px;
    padding: 10px;
}
.hero-card-phone-tx-item i {
    width: 32px;
    height: 32px;
    background: rgba(10, 79, 79, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
}
.hero-card-phone-tx-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark);
}
.hero-card-phone-tx-item small {
    font-size: 0.65rem;
    color: var(--text-light);
}
.hero-card-phone-tx-amount {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--alert);
}
.hero-card-phone-tx-amount.cash {
    color: var(--alert);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── HERO ──
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #EDE8E0 50%, var(--bg-cream) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(10,79,79,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(232,213,183,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10,79,79,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,213,183,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 79, 79, 0.08);
    border: 1px solid rgba(10, 79, 79, 0.12);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}
.hero-title { margin-bottom: 28px; }
.title-line {
    display: block;
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}
.title-line.accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 4px;
    z-index: -1;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 79, 79, 0.25);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 79, 79, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-plus, .stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-mid);
    text-align: center;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(10, 79, 79, 0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 2s ease 1.5s forwards;
    opacity: 0;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-mid);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: bounce-down 1.5s ease-in-out infinite;
}
.scroll-text {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── SECTIONS (Common) ──
   ═══════════════════════════════════════════════════════════════════════ */
section { padding: 100px 0; }
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(10, 79, 79, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255,255,255,0.12);
    color: var(--bg-cream);
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-title .accent { color: var(--primary); }
.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── FEATURES ──
   ═══════════════════════════════════════════════════════════════════════ */
.features { background: var(--bg-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-cream);
    border: 1px solid rgba(10, 79, 79, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 79, 79, 0.15);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 12px;
}
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.feature-tags span {
    font-size: 0.7rem;
    padding: 3px 10px;
    background: rgba(10, 79, 79, 0.06);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 500;
}
.feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.feature-link i { font-size: 0.75rem; transition: var(--transition); }
.feature-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════
   ── HOW IT WORKS ──
   ═══════════════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--bg-cream); }
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}
.step-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(10, 79, 79, 0.06);
    position: relative;
    transition: var(--transition);
}
.step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 79, 79, 0.12);
}
.step-card.reverse {
    direction: rtl;
}
.step-card.reverse .step-body {
    direction: ltr;
}
.step-number-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(10, 79, 79, 0.2);
    z-index: 2;
}
.step-card.reverse .step-number-badge {
    left: auto;
    right: 32px;
}
.step-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}
.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.step-card:hover .step-image img {
    transform: scale(1.05);
}
.step-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.step-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}
.step-checklist {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.step-checklist li {
    font-size: 0.85rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-checklist li i {
    color: var(--primary);
    font-size: 0.8rem;
}
.step-connector-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 6px;
}
.connector-bar {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), rgba(10,79,79,0.15));
    border-radius: 2px;
}
.connector-arrow-circle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: bounce-down 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── TESTIMONIALS ──
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials { background: var(--bg-white); }
.testimonials-carousel {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 40px 36px;
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 79, 79, 0.06);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #F59E0B;
    font-size: 0.9rem;
}
.testimonial-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-cream);
    border: 1px solid rgba(10, 79, 79, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.9rem;
}
.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(10, 79, 79, 0.15);
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
}
.carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── PRICING ──
   ═══════════════════════════════════════════════════════════════════════ */
.pricing { background: var(--bg-cream); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    border: 1px solid rgba(10, 79, 79, 0.06);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.pricing-featured {
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.05);
    z-index: 2;
}
.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.pricing-header {
    margin-bottom: 20px;
}
.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}
.pricing-subtitle {
    font-size: 0.85rem;
    color: var(--text-mid);
}
.pricing-amount {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 79, 79, 0.06);
}
.pricing-amount .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}
.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--text-mid);
}
.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.pricing-features li {
    font-size: 0.85rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.pricing-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── ABOUT ──
   ═══════════════════════════════════════════════════════════════════════ */
.about { background: var(--bg-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-text strong { color: var(--text-dark); }
.about-highlight {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(10, 79, 79, 0.04);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-highlight blockquote {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.value-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.value-item span {
    font-size: 0.8rem;
    color: var(--text-mid);
}

/* About Visual Card */
.about-visual { display: flex; justify-content: center; }
.visual-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    color: white;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}
.visual-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: spin-slow 30s linear infinite;
}
.visual-stat {
    position: relative;
    z-index: 1;
    padding: 16px 0;
}
.visual-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.visual-label {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}
.visual-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 4px 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── TRUST / SECURITY ──
   ═══════════════════════════════════════════════════════════════════════ */
.trust { background: var(--bg-cream); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
}
.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.trust-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── CALCULATOR / EXCHANGE RATES ──
   ═══════════════════════════════════════════════════════════════════════ */
.calculator { background: var(--bg-white); }
.calc-grid { max-width: 820px; margin: 0 auto; }
.calc-card {
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 79, 79, 0.06);
    overflow: hidden;
}
.calc-live-rate {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 24px 32px;
    color: white;
}
.calc-rate-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
}
.calc-rate-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.rate-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.rate-flag { font-size: 1.1rem; }
.rate-pair { font-weight: 500; opacity: 0.8; }
.rate-value { font-weight: 700; font-size: 1rem; }
.rate-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}
.rate-update {
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    margin-top: 8px;
}
.calc-form { padding: 28px 32px; }
.calc-input-group { margin-bottom: 20px; }
.calc-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 6px;
}
.calc-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid rgba(10, 79, 79, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.calc-currency {
    padding: 12px 16px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(10, 79, 79, 0.04);
    border-right: 1px solid rgba(10, 79, 79, 0.08);
}
.calc-input-wrap input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}
.calc-slider-group { margin-bottom: 24px; }
.calc-slider-group label {
    font-size: 0.85rem;
    color: var(--text-mid);
    display: block;
    margin-bottom: 10px;
}
.calc-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(10, 79, 79, 0.12);
    border-radius: 3px;
    outline: none;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(10, 79, 79, 0.2);
}
.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 6px;
}
.calc-results {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(10, 79, 79, 0.06);
}
.calc-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 79, 79, 0.04);
}
.calc-result-item:last-of-type { border-bottom: none; }
.calc-result-item.highlight {
    padding: 14px 16px;
    margin: 6px -8px;
    border-radius: var(--radius-sm);
}
.calc-result-item.merchant { background: rgba(10, 79, 79, 0.04); border: none; }
.calc-result-item.cash { background: rgba(212, 117, 107, 0.06); border: none; }
.calc-result-label {
    font-size: 0.85rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 6px;
}
.calc-result-label i { font-size: 0.8rem; }
.calc-result-value { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }
.calc-result-item.merchant .calc-result-value { color: var(--primary); }
.calc-result-item.cash .calc-result-value { color: var(--alert); }
.calc-result-local {
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}
.calc-total {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    margin-top: 8px;
    border-top: 2px solid var(--primary);
    font-size: 0.9rem;
    color: var(--text-mid);
}
.calc-total strong { color: var(--text-dark); }

/* ═══════════════════════════════════════════════════════════════════════
   ── COMPARISON TABLE ──
   ═══════════════════════════════════════════════════════════════════════ */
.comparison { background: var(--bg-cream); }
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(10, 79, 79, 0.06);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    font-size: 0.9rem;
    min-width: 640px;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(10, 79, 79, 0.06);
}
.comparison-table thead th {
    background: var(--bg-cream);
    font-weight: 600;
    color: var(--text-mid);
    font-size: 0.85rem;
}
.comp-feature-header { text-align: left !important; }
.comp-sutcel {
    background: rgba(10, 79, 79, 0.04) !important;
    color: var(--primary) !important;
    font-weight: 600;
}
.comp-sutcel i.fa-crown { margin-right: 4px; }
.comp-feature { text-align: left !important; font-weight: 600; color: var(--text-dark); }
.comp-check { color: var(--primary); }
.comp-check-light { color: var(--text-light); opacity: 0.5; }
.comp-cross { color: var(--alert); opacity: 0.5; }
.comp-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-left: 4px;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── TRUST BADGES ──
   ═══════════════════════════════════════════════════════════════════════ */
.trust-badges {
    background: var(--bg-dark);
    padding: 32px 0;
}
.badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}
.badge-item i { color: var(--accent); font-size: 0.9rem; }
.badge-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}
.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.partners-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    opacity: 0.5;
}
.partner-logo, .partner-logo-larger {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.partner-logo i { font-size: 1rem; }
.partner-logo-larger {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── CASE STUDIES / STORIES ──
   ═══════════════════════════════════════════════════════════════════════ */
.stories { background: var(--bg-cream); }
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.story-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
}
.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.story-image {
    height: 180px;
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.story-card:hover .story-image img { transform: scale(1.05); }
.story-body { padding: 24px; }
.story-tag {
    display: inline-block;
    background: rgba(10, 79, 79, 0.08);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.story-tag.pharmacy { background: rgba(212, 117, 107, 0.1); color: var(--alert); }
.story-tag.community { background: rgba(232, 213, 183, 0.3); color: var(--primary-dark); }
.story-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.story-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.story-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
}
.story-stat { flex: 1; text-align: center; }
.story-stat strong { display: block; font-size: 1rem; color: var(--primary); }
.story-stat span { font-size: 0.65rem; color: var(--text-light); }
.story-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.story-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.story-author strong { font-size: 0.85rem; display: block; }
.story-author span { font-size: 0.7rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════════
   ── MERCHANT DIRECTORY PREVIEW ──
   ═══════════════════════════════════════════════════════════════════════ */
.merchant-preview { background: var(--bg-white); }
.merchant-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.merchant-cat {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
}
.merchant-cat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.merchant-cat-icon {
    width: 48px;
    height: 48px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 auto 12px;
    transition: var(--transition);
}
.merchant-cat:hover .merchant-cat-icon { background: var(--primary); color: white; }
.merchant-cat-icon.pharm { color: var(--alert); }
.merchant-cat:hover .merchant-cat-icon.pharm { background: var(--alert); color: white; }
.merchant-cat-icon.school { color: #0D6B6B; }
.merchant-cat:hover .merchant-cat-icon.school { background: #0D6B6B; color: white; }
.merchant-cat-icon.util { color: #B8860B; }
.merchant-cat:hover .merchant-cat-icon.util { background: #B8860B; color: white; }
.merchant-cat-icon.health { color: #C0392B; }
.merchant-cat:hover .merchant-cat-icon.health { background: #C0392B; color: white; }
.merchant-cat-icon.transport { color: #2C3E50; }
.merchant-cat:hover .merchant-cat-icon.transport { background: #2C3E50; color: white; }
.merchant-cat h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.merchant-cat p { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 8px; }
.merchant-count {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(10, 79, 79, 0.06);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}
.merchant-cta {
    text-align: center;
    margin-top: 32px;
    font-size: 0.95rem;
    color: var(--text-mid);
}
.merchant-join-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.merchant-join-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════
   ── BLOG / RESOURCES ──
   ═══════════════════════════════════════════════════════════════════════ */
.blog { background: var(--bg-cream); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-image {
    height: 160px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 20px 24px 24px; }
.blog-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 8px;
}
.blog-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 14px;
}
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
}
.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.blog-read-more i { font-size: 0.7rem; }
.blog-read-more:hover { gap: 8px; }
.blog-all-link {
    text-align: center;
    margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── DARK MODE TOGGLE ──
   ═══════════════════════════════════════════════════════════════════════ */
.theme-toggle {
    position: fixed;
    bottom: 148px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-mid);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    border: 1px solid rgba(10, 79, 79, 0.08);
}
.theme-toggle:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.theme-toggle i { transition: var(--transition); }
.theme-toggle .fa-moon { display: block; }
.theme-toggle .fa-sun { display: none; }
body.dark-mode .theme-toggle .fa-moon { display: none; }
body.dark-mode .theme-toggle .fa-sun { display: block; }
body.dark-mode .theme-toggle { background: var(--primary-dark); color: var(--accent); }

/* Dark mode variables */
body.dark-mode {
    --bg-cream: #121212;
    --bg-white: #1E1E1E;
    --bg-dark: #0D0D0D;
    --text-dark: #E5E5E5;
    --text-mid: #A0A0A0;
    --text-light: #777777;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
}
body.dark-mode .navbar { background: rgba(30, 30, 30, 0.85); }
body.dark-mode .nav-links { background: rgba(30, 30, 30, 0.98); }
body.dark-mode .hero { background: linear-gradient(135deg, #1A1A1A, #121212, #1A1A1A); }
body.dark-mode .footer { background: #0D0D0D; }
body.dark-mode .modal { background: #1E1E1E; }
body.dark-mode .modal-text { color: #A0A0A0; }
body.dark-mode input, body.dark-mode select, body.dark-mode textarea { background: #2A2A2A; color: #E5E5E5; }

/* ═══════════════════════════════════════════════════════════════════════
   ── COUNTRY COVERAGE ──
   ═══════════════════════════════════════════════════════════════════════ */
.coverage { background: var(--bg-white); }
.coverage-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.coverage-card {
    flex: 1;
    max-width: 320px;
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
}
.coverage-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.coverage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.coverage-card h3 i { color: var(--primary); }
.coverage-flags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.coverage-flag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-mid);
    font-weight: 500;
}
.flag-icon { font-size: 1.4rem; }
.coverage-more {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}
.coverage-arrow {
    font-size: 2rem;
    color: var(--primary);
    animation: bounce-right 2s ease-in-out infinite;
}
@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* ═══════════════════════════════════════════════════════════════════════
   ── COOKIE CONSENT BANNER ──
   ═══════════════════════════════════════════════════════════════════════ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    z-index: 1500;
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    opacity: 0.9;
    flex: 1;
    min-width: 240px;
}
.cookie-consent-text i { font-size: 1.2rem; color: var(--accent); }
.cookie-consent-text a { color: var(--accent); text-decoration: underline; }
.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* ═══════════════════════════════════════════════════════════════════════
   ── FAQ ──
   ═══════════════════════════════════════════════════════════════════════ */
.faq { background: var(--bg-white); }
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: rgba(10, 79, 79, 0.15);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    background: none;
    transition: var(--transition);
}
.faq-question:hover {
    background: rgba(10, 79, 79, 0.02);
}
.faq-question i {
    font-size: 0.8rem;
    color: var(--text-mid);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── CONTACT ──
   ═══════════════════════════════════════════════════════════════════════ */
.contact { background: var(--bg-cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.contact-item span {
    font-size: 0.85rem;
    color: var(--text-mid);
}
.contact-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid rgba(10, 79, 79, 0.06);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(10, 79, 79, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 79, 79, 0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ═══════════════════════════════════════════════════════════════════════
   ── FOUNDERS ──
   ═══════════════════════════════════════════════════════════════════════ */
.founders { background: var(--bg-cream); }
.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 800px;
    margin: 0 auto;
}
.founder-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(10, 79, 79, 0.06);
    transition: var(--transition);
    cursor: pointer;
}
.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 79, 79, 0.15);
}
.founder-image-wrapper {
    margin-bottom: 16px;
}
.founder-image {
    width: 80px;
    height: 80px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto;
    transition: var(--transition);
}
.founder-card:hover .founder-image {
    background: var(--primary);
    color: white;
}
.founder-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.founder-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}
.founder-social-compact {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.social-link-sm {
    width: 28px;
    height: 28px;
    background: rgba(10, 79, 79, 0.06);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-mid);
    transition: var(--transition);
}
.social-link-sm:hover {
    background: var(--primary);
    color: white;
}
.founder-read-more {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.founder-read-more i { font-size: 0.7rem; }
.founder-read-more:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════════════════
   ── DOWNLOAD / CTA ──
   ═══════════════════════════════════════════════════════════════════════ */
.download {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.download-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.download-content { color: white; }
.download-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.download-title .accent { color: var(--accent); }
.download-desc {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 32px;
}
.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 20px 4px rgba(255,255,255,0.15); }
}
.btn-download {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    gap: 12px;
    display: inline-flex;
    align-items: center;
    animation: pulse-glow 2.5s ease-in-out infinite;
}
.btn-download i {
    animation: bounce-down 2s ease-in-out infinite;
}
.btn-download i { font-size: 1.5rem; }
.btn-download .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.btn-download small {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
}
.btn-download strong { font-size: 1rem; font-weight: 700; }
.btn-download:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-download-soon { opacity: 0.7; cursor: default; }
.btn-download-soon:hover { background: rgba(255,255,255,0.1); transform: none; box-shadow: none; }
.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}
.download-features span {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.download-features i { color: var(--accent); }

/* Newsletter */
.download-newsletter {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.download-newsletter p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: white;
    font-size: 0.9rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form .btn {
    padding: 12px 24px;
    white-space: nowrap;
}

/* Phone Mockup */
.phone-mockup {
    width: 260px;
    height: 520px;
    background: #1A1A1A;
    border-radius: 40px;
    padding: 14px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto;
}
.phone-notch {
    width: 80px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.phone-dynamic-island {
    width: 100px;
    height: 28px;
    background: #1A1A1A;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.mockup-header {
    background: var(--primary);
    padding: 32px 20px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.mockup-balance { display: flex; flex-direction: column; }
.mockup-label {
    font-size: 0.65rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.mockup-amount { font-size: 1.5rem; font-weight: 800; }
.mockup-flag { font-size: 1.5rem; }
.mockup-actions {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    background: white;
    margin: 0 12px;
    border-radius: var(--radius-md);
    transform: translateY(-12px);
    box-shadow: var(--shadow-sm);
}
.mockup-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--text-mid);
    font-weight: 500;
}
.mockup-action-btn i {
    width: 36px;
    height: 36px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
}
.mockup-action-btn.send i { background: var(--primary); color: white; }
.mockup-recent {
    padding: 0 16px 16px;
    flex: 1;
}
.mockup-recent-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    display: block;
    margin-bottom: 10px;
}
.mockup-transaction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 79, 79, 0.04);
}
.mockup-tx-icon {
    width: 32px;
    height: 32px;
    background: rgba(10, 79, 79, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
}
.mockup-tx-icon.cash { background: rgba(212, 117, 107, 0.1); color: var(--alert); }
.mockup-transaction strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dark);
}
.mockup-transaction small {
    font-size: 0.65rem;
    color: var(--text-light);
}
.mockup-tx-amount {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--alert);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── FOOTER ──
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.footer-logo-img { height: 28px; width: auto; }
.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}
.footer-social .social-link:hover { background: var(--primary); color: white; }
.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}
.footer-bottom-content p { font-size: 0.8rem; color: var(--text-light); }
.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.footer-payments i { font-size: 1.3rem; }
.payment-text {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.7;
}
.footer-legal {
    font-size: 0.7rem;
    opacity: 0.4;
    max-width: 800px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── MODALS ──
   ═══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 100%;
    padding: 40px 36px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s ease;
}
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal.modal-sm { max-width: 420px; text-align: center; }
.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-mid);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}
.modal-close:hover { background: rgba(0,0,0,0.05); color: var(--text-dark); }
.modal-icon {
    width: 56px;
    height: 56px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.modal-avatar {
    width: 72px;
    height: 72px;
    background: rgba(10, 79, 79, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 20px;
}
.modal-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.modal.modal-sm .modal-title { text-align: center; }
.modal-role {
    display: block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.modal-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 12px;
}
.modal-highlights {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.modal-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.modal-highlight i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.modal-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.modal-social .social-link {
    width: 36px;
    height: 36px;
    background: rgba(10, 79, 79, 0.06);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: var(--transition);
}
.modal-social .social-link:hover { background: var(--primary); color: white; }
body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════════
   ── TOAST ──
   ═══════════════════════════════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--bg-dark);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-xl);
    z-index: 3000;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════
   ── BREADCRUMBS ──
   ═══════════════════════════════════════════════════════════════════════ */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--text-mid);
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs .separator {
    color: var(--text-light);
    font-size: 0.7rem;
}
.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   ── 404 PAGE STYLES ──
   ═══════════════════════════════════════════════════════════════════════ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--bg-cream);
}
.error-container {
    text-align: center;
    max-width: 520px;
}
.error-code {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}
.error-code::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--accent);
    opacity: 0.4;
    border-radius: 6px;
    z-index: -1;
}
.error-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
    animation: float 4s ease-in-out infinite;
}
.error-container h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}
.error-container p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.error-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.error-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.error-links a:hover {
    color: var(--primary);
}
.error-search {
    margin-top: 32px;
    display: flex;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.error-search input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(10, 79, 79, 0.12);
    border-right: none;
    border-radius: 12px 0 0 12px;
    font-size: 0.9rem;
    outline: none;
    background: white;
    color: var(--text-dark);
    font-family: inherit;
}
.error-search input:focus {
    border-color: var(--primary);
}
.error-search button {
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}
.error-search button:hover {
    background: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── FLOATING CHAT WIDGET (Messenger-style) ──
   ═══════════════════════════════════════════════════════════════════════ */
.chat-widget {
    position: fixed;
    bottom: 96px;
    right: 24px;
    z-index: 2000;
    font-family: var(--font-main);
}
.chat-bubble {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-bubble:hover {
    background: var(--primary-light);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}
.chat-bubble-pulse {
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.chat-bubble-icon { position: relative; z-index: 1; }

/* Chat panel */
.chat-panel {
    display: none;
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 360px;
    height: 520px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(10,79,79,0.08);
}
.chat-panel.open { display: flex; }

/* Chat header */
.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}
.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.chat-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
}
.chat-status {
    font-size: 0.7rem;
    opacity: 0.85;
    display: block;
}
.chat-close {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-close:hover { background: rgba(255,255,255,0.3); }

/* Chat messages area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-cream);
}
.chat-msg {
    display: flex;
    max-width: 85%;
}
.chat-msg-user {
    align-self: flex-end;
}
.chat-msg-admin {
    align-self: flex-start;
}
.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
    word-wrap: break-word;
}
.chat-msg-user .chat-msg-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}
.chat-msg-admin .chat-msg-bubble {
    background: var(--bg-white);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}
.chat-msg-bubble p { margin: 0; }
.chat-msg-time {
    display: block;
    font-size: 0.6rem;
    margin-top: 4px;
    opacity: 0.5;
}
.chat-msg-user .chat-msg-time { color: rgba(255,255,255,0.7); text-align: right; }
.chat-msg-admin .chat-msg-time { color: var(--text-light); }

/* Typing indicator */
.chat-typing {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: var(--bg-white);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: var(--shadow-sm);
}
.chat-typing.active { display: flex; }
.chat-typing span {
    width: 7px;
    height: 7px;
    background: var(--text-light);
    border-radius: var(--radius-full);
    animation: typing-dot 1.4s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Chat input area */
.chat-input-area {
    padding: 12px 14px;
    background: var(--bg-white);
    border-top: 1px solid rgba(10,79,79,0.06);
}
.chat-form {
    display: flex;
    gap: 8px;
    align-items: center;
}
.chat-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid rgba(10,79,79,0.12);
    border-radius: 20px;
    font-size: 0.85rem;
    outline: none;
    background: var(--bg-cream);
    color: var(--text-dark);
    font-family: inherit;
    transition: var(--transition);
}
.chat-form input:focus { border-color: var(--primary); }
.chat-send-btn {
    width: 38px;
    height: 38px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-send-btn:hover { background: var(--primary-light); transform: scale(1.05); }
.chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.chat-disclaimer {
    display: block;
    text-align: center;
    font-size: 0.6rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* Chat mobile */
@media (max-width: 480px) {
    .chat-panel {
        width: calc(100vw - 32px);
        max-width: 360px;
        height: 60vh;
        max-height: 500px;
        right: -4px;
    }
    .chat-bubble { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ── BACK TO TOP ──
   ═══════════════════════════════════════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 112px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ═══════════════════════════════════════════════════════════════════════
   ── RESPONSIVE (Comprehensive) ──
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .pricing-card:last-child { grid-column: 1 / -1; max-width: 300px; margin: 0 auto; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .merchant-categories { grid-template-columns: repeat(2, 1fr); }
    .comparison-table-wrap { overflow-x: auto; }
    .social-share { left: 8px; }
    .social-share-btn { width: 34px; height: 34px; font-size: 0.8rem; }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-card { min-height: auto; padding: calc(var(--nav-height) + 32px) 0 60px; }
    .hero-card-content { grid-template-columns: 1fr; gap: 32px; }
    .hero-card-visual { display: none; }
    .hero-card-actions { flex-direction: column; }
    .hero-card-actions .btn { width: 100%; justify-content: center; }
    section { padding: 72px 0; }
    .promo-banner { font-size: 0.75rem; padding: 8px 0; }
    .promo-spots-left { display: none; }
    .social-share { display: none; }
    .stories-grid { 
        grid-template-columns: repeat(3, 320px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 16px; 
        padding: 0 16px 16px; 
    }
    .blog-grid { 
        grid-template-columns: repeat(3, 300px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 16px; 
        padding: 0 16px 16px; 
    }
    .merchant-categories { 
        grid-template-columns: repeat(6, 240px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 14px; 
        padding: 0 16px 16px; 
    }
    .coverage-grid { 
        display: grid; 
        grid-template-columns: 1fr auto 1fr; 
        gap: 12px; 
        align-items: center;
        max-width: 100%;
    }
    .coverage-card { max-width: none; padding: 20px; }
    .coverage-arrow { 
        transform: none; 
        font-size: 1.5rem;
        animation: bounce-right 2s ease-in-out infinite;
    }
    .calc-live-rate { padding: 16px 20px; }
    .calc-rate-row { gap: 12px; }
    .rate-divider { display: none; }
    .calc-form { padding: 20px; }
    .calc-input-wrap input { font-size: 1.1rem; }
    .press-row { gap: 20px; }
    .press-item { font-size: 0.85rem; }
    .badges-row { gap: 12px; }
    .badge-divider { display: none; }
    .partners-row { gap: 12px; }
    .story-image { height: 130px; }
    .story-image img { object-fit: contain; object-position: center; background: var(--bg-cream); }
    .story-body { padding: 14px; }
    .story-stats { flex-direction: column; gap: 8px; }
    .blog-image { height: 140px; }
    .blog-body { padding: 16px; }
    .merchant-cat { padding: 20px 16px; }
    .coverage-card { padding: 24px; }
    .cookie-consent-text { font-size: 0.75rem; }
    .cookie-consent-actions { width: 100%; justify-content: center; }
    .btn-sm { width: 100%; justify-content: center; }
    .trust-badges { padding: 24px 0; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(245, 242, 237, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(10, 79, 79, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .hamburger { display: flex; }
    .hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 0 60px; }
    .contact-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 20px; 
    }
    .contact-info { padding: 0; }
    .contact-form { padding: 20px; }
    .contact-item i { width: 32px; height: 32px; font-size: 0.85rem; }
    .contact-item strong { font-size: 0.8rem; }
    .contact-item span { font-size: 0.75rem; }
    .contact-details { gap: 12px; }
    .hero-stats { 
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 16px 16px;
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .stat-item { 
        min-width: 140px;
        flex-shrink: 0;
        padding: 0 16px;
        width: auto;
    }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    .features-grid { 
        grid-template-columns: repeat(6, 280px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 16px; 
        padding: 0 16px 16px; 
    }
    .feature-card { scroll-snap-align: start; min-width: 260px; }
    .step-card { grid-template-columns: 1fr; gap: 20px; min-width: 280px; }
    .step-card.reverse { direction: ltr; }
    .step-card.reverse .step-number-badge { left: 16px !important; right: auto !important; }
    .step-image { height: 160px; }
    .step-number-badge { left: 16px !important; right: auto !important; }
    .steps-container {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding: 0 16px 16px;
        align-items: flex-start;
    }
    .step-connector-large {
        min-width: 40px;
        flex-direction: row;
        padding: 0;
        align-self: center;
    }
    .connector-bar {
        width: 32px;
        height: 2px;
        background: linear-gradient(to right, var(--primary), rgba(10,79,79,0.15));
    }
    .step-connector-large .connector-arrow-circle {
        animation: bounce-right 2s ease-in-out infinite;
    }
    .testimonials-carousel { max-width: 100%; }
    .testimonial-card { padding: 28px 20px; }
    .pricing-grid { 
        grid-template-columns: repeat(3, 240px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 14px; 
        padding: 0 16px 16px; 
    }
    .pricing-card { 
        scroll-snap-align: start; 
        min-width: 220px; 
        flex-shrink: 0; 
        padding: 24px 18px; 
    }
    .pricing-amount .amount { font-size: 2rem; }
    .pricing-features li { font-size: 0.8rem; }
    .pricing-btn { padding: 10px 20px; font-size: 0.85rem; }
    .pricing-card:last-child { grid-column: auto; max-width: none; }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .trust-grid { 
        grid-template-columns: repeat(6, 260px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 16px; 
        padding: 0 16px 16px; 
    }
    .founders-grid { 
        grid-template-columns: repeat(3, 260px); 
        max-width: 100%; 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
        gap: 16px; 
        padding: 0 16px 16px; 
    }
    .download-card { grid-template-columns: 1fr; gap: 32px; }
    .download-mockup { display: none; }
    .footer-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px; 
    }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom-content { flex-direction: column; align-items: flex-start; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .section-header { margin-bottom: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-scroll-indicator { display: none; }
    .back-to-top { bottom: 24px; right: 16px; }
    .newsletter-form { flex-direction: column; }
}

/* Mobile Small */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .hero-actions { gap: 12px; }
    .download-buttons { flex-direction: column; }
    .btn-download { width: 100%; justify-content: center; }
    .download-features { flex-direction: column; gap: 10px; }
    .modal { padding: 28px 24px; }
    .contact-form { padding: 24px 20px; }
}