/* =====================================================
 * TAPMERCHANT — LANDING PAGE STYLES
 * File: css/landing.css
 * ===================================================== */

/* -----------------------------------------------------
 * ANNOUNCEMENT BAR
 * ----------------------------------------------------- */
.tm-announce {
    background: linear-gradient(90deg, #0B6E4F 0%, #14B87F 100%);
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 0.8125rem;
    text-align: center;
    font-weight: 500;
}
.tm-announce .tm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.tm-announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FBBF24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25);
    animation: tm-pulse 1.6s ease-in-out infinite;
}
@keyframes tm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.3); }
}

/* -----------------------------------------------------
 * NAVIGATION
 * ----------------------------------------------------- */
.tm-nav {
    position: sticky;
    top: 0;
    z-index: var(--tm-z-sticky);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all var(--tm-transition);
}
[data-theme="dark"] .tm-nav {
    background: rgba(12, 10, 9, 0.85);
}
.tm-nav.is-scrolled {
    border-bottom-color: var(--tm-border);
    box-shadow: var(--tm-shadow-sm);
}
.tm-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}
.tm-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--tm-text);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}
.tm-logo:hover { color: var(--tm-text); }
.tm-logo-mark {
    color: var(--tm-brand-primary);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tm-logo-mark svg { width: 100%; height: 100%; }
.tm-logo-text { font-weight: 800; }
.tm-logo-text span {
    background: var(--tm-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.tm-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.tm-nav-links a {
    color: var(--tm-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--tm-transition-fast);
    position: relative;
}
.tm-nav-links a:hover {
    color: var(--tm-brand-primary);
}
.tm-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tm-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--tm-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}
.tm-nav-toggle span {
    display: block;
    height: 2px;
    background: var(--tm-text);
    border-radius: 2px;
    transition: all var(--tm-transition-fast);
}
.tm-nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tm-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.tm-nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -----------------------------------------------------
 * HERO
 * ----------------------------------------------------- */
.tm-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}
.tm-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.tm-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.tm-hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #14B87F 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: tm-blob 20s ease-in-out infinite;
}
.tm-hero-blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #F59E0B 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    opacity: 0.25;
    animation: tm-blob 24s ease-in-out infinite reverse;
}
@keyframes tm-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(30px, -30px) scale(1.1); }
    66%      { transform: translate(-30px, 20px) scale(0.95); }
}
.tm-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, var(--tm-border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--tm-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.tm-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.tm-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--tm-brand-primary-light);
    color: var(--tm-brand-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--tm-radius-full);
    margin-bottom: 24px;
}
.tm-hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tm-brand-primary);
    animation: tm-pulse 1.6s ease-in-out infinite;
}
.tm-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--tm-text);
    margin-bottom: 24px;
}
.tm-hero-title-accent {
    background: var(--tm-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-weight: 800;
}
.tm-hero-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--tm-text-muted);
    max-width: 560px;
    margin-bottom: 32px;
}
.tm-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.tm-hero-note {
    font-size: 0.8125rem;
    color: var(--tm-text-subtle);
    margin-bottom: 40px;
}
.tm-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--tm-border);
}
.tm-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tm-trust-icon {
    width: 40px;
    height: 40px;
    background: var(--tm-brand-primary-light);
    color: var(--tm-brand-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tm-trust-icon svg { width: 20px; height: 20px; }
.tm-trust-label { font-weight: 700; font-size: 0.875rem; color: var(--tm-text); }
.tm-trust-sub   { font-size: 0.75rem; color: var(--tm-text-subtle); }

/* Hero visual — phone mockup */
.tm-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}
.tm-hero-phone {
    position: relative;
    width: 300px;
    height: 610px;
    background: linear-gradient(160deg, #1C1917 0%, #292524 100%);
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #44403C,
        0 30px 60px -20px rgba(0,0,0,0.5),
        0 20px 40px -20px rgba(11,110,79,0.35);
    transform: rotate(-3deg);
    transition: transform 500ms ease;
}
.tm-hero-phone:hover { transform: rotate(-1deg) translateY(-6px); }
.tm-hero-phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 28px;
    background: #0C0A09;
    border-radius: 16px;
    z-index: 2;
}
.tm-hero-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--tm-brand-gradient-hero);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Floating cards on hero */
.tm-hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 14px;
    box-shadow: var(--tm-shadow-lg);
    animation: tm-float 4s ease-in-out infinite;
    z-index: 3;
}
.tm-hero-card-1 {
    top: 60px;
    left: -20px;
    animation-delay: 0s;
}
.tm-hero-card-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: 1.5s;
}
@keyframes tm-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.tm-hero-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tm-hero-card-icon svg { width: 18px; height: 18px; }
.tm-hero-card-icon-green { background: var(--tm-success-bg); color: var(--tm-success); }
.tm-hero-card-icon-blue  { background: var(--tm-info-bg); color: var(--tm-info); }
.tm-hero-card-title { font-weight: 700; font-size: 0.875rem; color: var(--tm-text); }
.tm-hero-card-sub   { font-size: 0.75rem; color: var(--tm-text-subtle); }

/* Hero fallback (inside phone screen) */
.tm-slot-hero-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 24px 20px 8px;
}
.tm-slot-hero-logo {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 800;
}
.tm-slot-hero-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-top: 60px;
    letter-spacing: -0.03em;
}
.tm-slot-hero-status {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-top: 12px;
    font-size: 0.9375rem;
}
.tm-slot-hero-nfc {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 40px auto 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-slot-hero-nfc svg { width: 50px; height: 50px; z-index: 2; }
.tm-nfc-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: tm-ripple 2s ease-out infinite;
}
.tm-nfc-ripple-2 { animation-delay: 1s; }
@keyframes tm-ripple {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Fallback: image slot generic */
.tm-image-slot {
    position: relative;
    overflow: hidden;
    background: var(--tm-bg-muted);
}
.tm-slot-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-slot-fallback-inner {
    width: 100%;
    height: 100%;
}

/* -----------------------------------------------------
 * STATS STRIP
 * ----------------------------------------------------- */
.tm-stats-strip {
    padding: 40px 0;
    background: var(--tm-bg-muted);
    border-top: 1px solid var(--tm-border);
    border-bottom: 1px solid var(--tm-border);
}
.tm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.tm-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tm-brand-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.tm-stat-label {
    font-size: 0.875rem;
    color: var(--tm-text-muted);
    font-weight: 500;
}

/* -----------------------------------------------------
 * SECTION LAYOUT
 * ----------------------------------------------------- */
.tm-section {
    padding: 100px 0;
    position: relative;
}
.tm-section-alt {
    background: var(--tm-bg-muted);
}
.tm-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.tm-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--tm-brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.tm-section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--tm-text);
    margin-bottom: 16px;
}
.tm-section-sub {
    font-size: 1.125rem;
    color: var(--tm-text-muted);
    line-height: 1.6;
}

/* -----------------------------------------------------
 * FEATURES GRID
 * ----------------------------------------------------- */
.tm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tm-feature-card {
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    padding: 32px;
    transition: all var(--tm-transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.tm-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tm-shadow-lg);
    border-color: var(--tm-brand-primary);
}
.tm-feature-card-lg {
    grid-column: span 2;
}
.tm-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tm-feature-icon svg { width: 26px; height: 26px; }
.tm-feature-icon-green  { background: var(--tm-success-bg); color: var(--tm-success); }
.tm-feature-icon-amber  { background: var(--tm-warning-bg); color: var(--tm-warning); }
.tm-feature-icon-blue   { background: var(--tm-info-bg); color: var(--tm-info); }
.tm-feature-icon-purple { background: rgba(139, 92, 246, 0.12); color: #8B5CF6; }
.tm-feature-icon-pink   { background: rgba(236, 72, 153, 0.12); color: #EC4899; }
.tm-feature-icon-teal   { background: rgba(20, 184, 166, 0.12); color: #14B8A6; }

.tm-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tm-text);
}
.tm-feature-text {
    color: var(--tm-text-muted);
    line-height: 1.6;
}
.tm-feature-image {
    margin-top: auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    border: 1px solid var(--tm-border);
}

/* Fallback: NFC visual */
.tm-slot-fallback-nfc {
    background: var(--tm-brand-gradient);
    padding: 24px;
}
.tm-nfc-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-nfc-phone {
    width: 70px;
    height: 110px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tm-nfc-card {
    width: 90px;
    height: 60px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    border-radius: 8px;
    position: absolute;
    right: 25%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: rotate(-15deg);
}
.tm-nfc-wave {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: tm-ripple 2s ease-out infinite;
}

/* Fallback: Receipt visual */
.tm-slot-fallback-receipt {
    background: linear-gradient(180deg, #F3F4F6 0%, #E5E7EB 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-receipt-visual {
    width: 60%;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
}
.tm-receipt-header {
    font-weight: 700;
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.tm-receipt-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.tm-receipt-line {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    margin-bottom: 6px;
}
.tm-receipt-check {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--tm-success);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
}

/* -----------------------------------------------------
 * HOW IT WORKS — STEPS
 * ----------------------------------------------------- */
.tm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.tm-step {
    position: relative;
    padding: 32px;
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    text-align: center;
    transition: all var(--tm-transition);
}
.tm-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--tm-shadow-lg);
}
.tm-step-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--tm-brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}
.tm-step-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
    border-radius: 14px;
    border: 1px solid var(--tm-border);
}
.tm-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--tm-text);
}
.tm-step-text {
    color: var(--tm-text-muted);
    line-height: 1.6;
}

.tm-slot-fallback-step {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369A1;
}
[data-theme="dark"] .tm-slot-fallback-step {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: #7DD3FC;
}
.tm-step-visual {
    text-align: center;
    padding: 20px;
}
.tm-step-amount {
    font-size: 2rem;
    font-weight: 800;
    color: currentColor;
    margin-bottom: 12px;
}
.tm-step-keypad {
    display: grid;
    grid-template-columns: repeat(3, 32px);
    gap: 6px;
    justify-content: center;
}
.tm-step-keypad span {
    background: rgba(3, 105, 161, 0.1);
    border-radius: 6px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}
[data-theme="dark"] .tm-step-keypad span {
    background: rgba(125, 211, 252, 0.15);
}
.tm-step-visual-tap {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tm-tap-phone {
    width: 60px;
    height: 100px;
    background: currentColor;
    opacity: 0.9;
    border-radius: 8px;
}
.tm-tap-card {
    position: absolute;
    right: 25%;
    width: 70px;
    height: 46px;
    background: #FBBF24;
    border-radius: 6px;
    transform: rotate(-12deg);
    box-shadow: 0 6px 14px rgba(251, 191, 36, 0.4);
}
.tm-tap-wave {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid currentColor;
    border-radius: 50%;
    opacity: 0.5;
    animation: tm-ripple 2s ease-out infinite;
}
.tm-step-visual-done .tm-step-check {
    width: 60px;
    height: 60px;
    background: var(--tm-success);
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    animation: tm-pop 500ms ease-out;
}
@keyframes tm-pop {
    0%   { transform: scale(0); }
    70%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.tm-step-done {
    font-weight: 700;
    color: var(--tm-success);
    margin-bottom: 4px;
}
.tm-step-receipt-hint {
    font-size: 0.8125rem;
    opacity: 0.75;
}

/* -----------------------------------------------------
 * CATEGORIES
 * ----------------------------------------------------- */
.tm-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.tm-category {
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all var(--tm-transition);
    cursor: default;
}
.tm-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--tm-shadow-lg);
    border-color: var(--tm-brand-primary);
}
.tm-category-image {
    aspect-ratio: 1;
    margin-bottom: 16px;
    border-radius: 12px;
    max-width: 80px;
    margin-left: auto;
    margin-right: auto;
    background: var(--tm-brand-primary-light);
    border: none;
}
.tm-slot-fallback-cat {
    color: var(--tm-brand-primary);
    padding: 20px;
}
.tm-slot-fallback-cat svg { width: 36px; height: 36px; }
.tm-category-name {
    font-weight: 700;
    color: var(--tm-text);
    font-size: 0.9375rem;
}

/* -----------------------------------------------------
 * SHOWCASE (analytics)
 * ----------------------------------------------------- */
.tm-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.tm-showcase .tm-eyebrow { margin-bottom: 16px; }
.tm-showcase .tm-section-title { text-align: left; }
.tm-showcase .tm-section-sub  { margin-bottom: 24px; }
.tm-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.tm-showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tm-text);
    font-weight: 500;
}
.tm-showcase-list svg {
    width: 20px;
    height: 20px;
    color: var(--tm-brand-primary);
    flex-shrink: 0;
}
.tm-showcase-image {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    box-shadow: var(--tm-shadow-lg);
    border: 1px solid var(--tm-border);
}
.tm-slot-fallback-analytics {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    padding: 32px;
}
[data-theme="dark"] .tm-slot-fallback-analytics {
    background: linear-gradient(135deg, #064E3B 0%, #022C22 100%);
}
.tm-analytics-visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tm-analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.tm-analytics-label {
    font-size: 0.75rem;
    color: var(--tm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
}
.tm-analytics-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tm-text);
    letter-spacing: -0.03em;
}
.tm-analytics-badge {
    background: var(--tm-success);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8125rem;
}
.tm-analytics-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
    height: 140px;
    margin-bottom: 20px;
}
.tm-analytics-chart div {
    flex: 1;
    background: var(--tm-brand-gradient);
    border-radius: 6px 6px 0 0;
    transition: height 400ms ease;
}
.tm-analytics-mix {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--tm-text-muted);
    font-weight: 600;
}
.tm-analytics-mix div {
    display: flex;
    align-items: center;
    gap: 6px;
}
.tm-analytics-mix span {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

/* -----------------------------------------------------
 * TESTIMONIALS
 * ----------------------------------------------------- */
.tm-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tm-testimonial {
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    transition: all var(--tm-transition);
}
.tm-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--tm-shadow-lg);
}
.tm-quote-mark {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: var(--tm-brand-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
}
.tm-testimonial-text {
    color: var(--tm-text);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
.tm-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tm-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    aspect-ratio: 1;
    background: var(--tm-brand-primary-light);
    border: none;
    flex-shrink: 0;
}
.tm-slot-fallback-avatar {
    background: var(--tm-brand-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.tm-testimonial-name { font-weight: 700; color: var(--tm-text); }
.tm-testimonial-role { font-size: 0.8125rem; color: var(--tm-text-subtle); }

/* -----------------------------------------------------
 * PRICING
 * ----------------------------------------------------- */
.tm-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}
.tm-price-card {
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--tm-transition);
}
.tm-price-card:hover { transform: translateY(-4px); box-shadow: var(--tm-shadow-lg); }
.tm-price-card-featured {
    border: 2px solid var(--tm-brand-primary);
    box-shadow: var(--tm-shadow-lg);
    background: linear-gradient(180deg, var(--tm-brand-primary-light) 0%, var(--tm-surface) 40%);
}
.tm-price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tm-brand-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.tm-price-name {
    font-weight: 700;
    color: var(--tm-brand-primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.tm-price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tm-text);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}
.tm-price-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tm-text-muted);
    letter-spacing: 0;
}
.tm-price-sub {
    color: var(--tm-text-muted);
    margin-bottom: 24px;
    min-height: 42px;
}
.tm-price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.tm-price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tm-text);
    font-size: 0.9375rem;
}
.tm-price-list li::before {
    content: '✓';
    color: var(--tm-brand-primary);
    font-weight: 800;
    flex-shrink: 0;
}

/* -----------------------------------------------------
 * CTA SECTION
 * ----------------------------------------------------- */
.tm-cta-section {
    padding: 80px 0 100px;
}
.tm-cta-box {
    position: relative;
    background: var(--tm-brand-gradient-hero);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(11, 110, 79, 0.4);
}
.tm-cta-bg {
    position: absolute !important;
    inset: 0;
    opacity: 0.15;
    z-index: 0;
    background: transparent;
}
.tm-slot-fallback-cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 40%);
}
.tm-cta-content { position: relative; z-index: 1; }
.tm-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
.tm-cta-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    max-width: 560px;
    margin: 0 auto 32px;
}
.tm-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -----------------------------------------------------
 * FOOTER
 * ----------------------------------------------------- */
.tm-footer {
    background: var(--tm-surface);
    border-top: 1px solid var(--tm-border);
    padding: 60px 0 30px;
}
.tm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tm-border);
}
.tm-footer-brand .tm-logo { margin-bottom: 16px; }
.tm-footer-tag {
    color: var(--tm-text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}
.tm-footer-note {
    color: var(--tm-text-subtle);
    font-size: 0.875rem;
}
.tm-footer-heading {
    font-weight: 700;
    color: var(--tm-text);
    margin-bottom: 16px;
    font-size: 0.9375rem;
}
.tm-footer a {
    display: block;
    color: var(--tm-text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    transition: color var(--tm-transition-fast);
}
.tm-footer a:hover { color: var(--tm-brand-primary); }
.tm-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    color: var(--tm-text-subtle);
    font-size: 0.8125rem;
    flex-wrap: wrap;
    gap: 12px;
}
.tm-footer-legal { color: var(--tm-text-subtle); }

/* -----------------------------------------------------
 * RESPONSIVE
 * ----------------------------------------------------- */
@media (max-width: 1024px) {
    .tm-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .tm-hero-visual { min-height: 500px; }
    .tm-features-grid { grid-template-columns: repeat(2, 1fr); }
    .tm-feature-card-lg { grid-column: span 2; }
    .tm-testimonials { grid-template-columns: 1fr; }
    .tm-pricing { grid-template-columns: 1fr; max-width: 500px; }
    .tm-footer-grid { grid-template-columns: 1fr 1fr; }
    .tm-showcase { grid-template-columns: 1fr; gap: 40px; }
    .tm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tm-categories { grid-template-columns: repeat(3, 1fr); }
    .tm-steps { grid-template-columns: 1fr; }
    .tm-hide-mobile { display: none; }
}

@media (max-width: 768px) {
    .tm-nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--tm-surface);
        border-bottom: 1px solid var(--tm-border);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        display: none;
        justify-content: flex-start;
        align-items: stretch;
    }
    .tm-nav-links.is-open { display: flex; }
    .tm-nav-links a {
        padding: 12px 16px;
        border-radius: 10px;
        background: var(--tm-bg-muted);
        text-align: center;
    }
    .tm-nav-toggle { display: flex; }
    .tm-hero { padding: 60px 0 80px; }
    .tm-section { padding: 60px 0; }
    .tm-cta-section { padding: 40px 0 80px; }
    .tm-cta-box { padding: 60px 24px; border-radius: 24px; }
    .tm-features-grid { grid-template-columns: 1fr; }
    .tm-feature-card-lg { grid-column: span 1; }
    .tm-categories { grid-template-columns: repeat(2, 1fr); }
    .tm-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .tm-hero-phone { transform: rotate(0); width: 260px; height: 530px; }
    .tm-hero-card-1 { left: -10px; top: 20px; }
    .tm-hero-card-2 { right: -10px; bottom: 30px; }
    .tm-hero-trust { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
    .tm-stats-grid { grid-template-columns: 1fr; }
    .tm-hero-visual { min-height: 420px; }
    .tm-hero-phone { width: 220px; height: 450px; }
    .tm-slot-hero-amount { font-size: 2rem; margin-top: 40px; }
    .tm-slot-hero-nfc { width: 90px; height: 90px; margin-top: 24px; }
    .tm-slot-hero-nfc svg { width: 40px; height: 40px; }
}

/* =====================================================
 * END OF landing.css
 * ===================================================== */