/* ═══════════════════════════════════════════════════════
   KemisPay — Premium Landing Page Styles
   ═══════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --blue: #1760F4;
  --blue-deep: #1250D0;
  --blue-dark: #0D3BA8;
  --green: #00D67F;
  --green-deep: #00B86C;
  --navy: #091A38;
  --navy-deep: #060F22;
  --sky: #EBF0FF;
  --ice: #F0F4FF;
  --cloud: #F4F7FF;
  --white: #ffffff;
  --charcoal: #091A38;
  --slate: #3A4860;
  --silver: #7A8BA8;
  --mist: #D8DFF0;
  --snow: #F4F7FF;
  --success: #00D67F;
  --error: #ef4444;
  --font-display: "Unbounded", system-ui, -apple-system, sans-serif;
  --font-logotype: "Unbounded", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Geist Mono", monospace;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(9, 26, 56, 0.04);
  --shadow-md: 0 4px 12px rgba(9, 26, 56, 0.06);
  --shadow-lg: 0 8px 30px rgba(9, 26, 56, 0.08);
  --shadow-xl: 0 16px 48px rgba(23, 96, 244, 0.12);
  --shadow-glow: 0 20px 60px rgba(23, 96, 244, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 400ms var(--ease-smooth);
}
.btn:hover::before {
  transform: translateX(0);
}
.btn:hover {
  transform: translateY(-2px) scale(1.03);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 300ms var(--ease-out);
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(23, 96, 244, 0.3);
}
.btn-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 6px 20px rgba(23, 96, 244, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  background: var(--snow);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
}

/* ── Section Headers ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(23, 96, 244, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-desc {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
}
.text-left {
  text-align: left;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: all 400ms var(--ease-smooth);
}
.navbar.scrolled {
  padding: 10px 24px;
}
.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-md);
  border-radius: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 16px;
  transition: all 400ms var(--ease-smooth);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 100%;
  height: 100%;
}
.navbar.scrolled .logo-icon svg path:first-child {
  stroke: var(--navy);
}
.navbar.scrolled .logo-icon svg circle {
  fill: var(--blue);
}
.footer .logo-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.logo-icon-footer svg {
  width: 100%;
  height: 100%;
}
.logo-text {
  font-family: var(--font-logotype);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.04em;
  color: var(--white);
  transition: color 300ms var(--ease-smooth);
}
.wm-kemis {
  color: inherit;
}
.wm-pay {
  color: var(--green);
}
.navbar.scrolled .logo-text {
  color: var(--navy);
}
.navbar.scrolled .wm-pay {
  color: var(--blue);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-item-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 12px;
  border: none;
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  transition: all 200ms var(--ease-smooth);
}
.nav-item-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
  margin-left: 2px;
}
.nav-item-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.nav-item-link.nav-item-trigger::after {
  display: none;
}
.nav-item-link.nav-item-trigger {
  text-decoration: none;
}
.navbar.scrolled .nav-item-trigger {
  color: var(--slate);
}
.navbar.scrolled .nav-item-trigger:hover {
  color: var(--blue);
  background: rgba(23, 96, 244, 0.06);
}
/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mist);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms var(--ease-smooth), visibility 200ms, transform 200ms;
  z-index: 100;
  padding: 8px 0;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}
.nav-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-dropdown a {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 150ms, color 150ms;
}
.nav-dropdown a:hover {
  background: var(--sky);
  color: var(--blue);
}
.nav-dropdown-wide {
  min-width: 420px;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 24px;
  padding: 0 8px;
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
}
.nav-dropdown-heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--silver);
  padding: 8px 12px 4px;
  margin-bottom: 4px;
}
.nav-dropdown-col a {
  padding: 8px 12px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 200ms var(--ease-smooth);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.navbar.scrolled .nav-link {
  color: var(--slate);
}
.navbar.scrolled .nav-link:hover {
  color: var(--blue);
  background: rgba(23, 96, 244, 0.06);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  margin-right: 4px;
}
.navbar.scrolled .btn-nav {
  background: var(--green);
  color: var(--navy);
}
.btn-nav {
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
}
.btn-nav:hover {
  background: var(--green-deep);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 300ms var(--ease-smooth);
}
.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}
.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);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 88px 24px 40px;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-smooth);
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
  z-index: 1001;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 200ms, color 200ms;
}
.mobile-menu-close:hover {
  background: var(--sky);
  color: var(--blue);
}
.mobile-menu-close:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.mobile-accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: background 200ms;
}
.mobile-link:hover {
  background: var(--sky);
}
.mobile-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1760F4 0%,
    #1250D0 35%,
    #0D3BA8 60%,
    #091A38 100%
  );
}
.hero-clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cloud {
  position: absolute;
  opacity: 0.5;
}
.cloud-1 {
  width: 500px;
  top: 10%;
  right: -5%;
  animation: floatCloud 25s ease-in-out infinite;
}
.cloud-2 {
  width: 600px;
  top: 50%;
  left: -10%;
  animation: floatCloud 30s ease-in-out infinite reverse;
}
.cloud-3 {
  width: 400px;
  bottom: 15%;
  right: 20%;
  animation: floatCloud 20s ease-in-out infinite 5s;
}
@keyframes floatCloud {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(30px) translateY(-15px);
  }
}
.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.title-line {
  display: block;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px;
}
.avatar:first-child {
  margin-left: 0;
}
.trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-text strong {
  color: var(--white);
}

/* Hero Visual / Phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
}
.phone-frame {
  width: 280px;
  background: var(--charcoal);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    var(--shadow-glow),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--charcoal);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  background: var(--white);
  border-radius: 26px;
  padding: 40px 18px 18px;
  min-height: 520px;
}
.phone-glow {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(23, 96, 244, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

/* App UI inside phone */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.app-greeting {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}
.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 13px;
}
.app-balance {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 16px;
  margin-bottom: 16px;
}
.balance-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.balance-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: white;
}
.balance-cents {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.8;
}
.balance-currency {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.app-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.app-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-icon svg {
  width: 18px;
  height: 18px;
}
.action-icon.send {
  background: rgba(23, 96, 244, 0.1);
  color: var(--blue);
}
.action-icon.receive {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.action-icon.history {
  background: rgba(71, 85, 105, 0.1);
  color: var(--slate);
}
.app-action span {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
}
.app-transactions {
  border-top: 1px solid var(--mist);
  padding-top: 14px;
}
.tx-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 12px;
}
.tx-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tx-icon svg {
  width: 14px;
  height: 14px;
}
.tx-icon.income {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}
.tx-icon.expense {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
}
.tx-details {
  flex: 1;
}
.tx-name {
  font-weight: 500;
  font-size: 12px;
  color: var(--charcoal);
  display: block;
}
.tx-time {
  font-size: 10px;
  color: var(--silver);
}
.tx-amount {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
}
.tx-amount.positive {
  color: var(--success);
}
.tx-amount.negative {
  color: var(--error);
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.card-stat-1 {
  top: 15%;
  right: -20px;
}
.card-stat-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(23, 96, 244, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.stat-icon svg {
  width: 20px;
  height: 20px;
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-label {
  font-size: 11px;
  color: var(--silver);
  font-weight: 500;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
}
.stat-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.stat-check svg {
  width: 14px;
  height: 14px;
}
.stat-msg {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  height: clamp(80px, 10vw, 150px);
}
.hero-wave svg {
  width: 200%;
  height: 100%;
  display: block;
}
.wave-path-bg2 {
  animation: moveWave 30s linear infinite;
}
.wave-path-bg1 {
  animation: moveWave 22s linear infinite reverse;
}
.wave-path-fg {
  animation: moveWave 15s linear infinite;
}

@keyframes moveWave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: transform 400ms var(--ease-out), background 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  background: var(--sky);
}
.step-number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 13px;
  color: var(--blue);
  background: rgba(23, 96, 244, 0.08);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon-wrap {
  color: var(--blue);
  margin-bottom: 16px;
}
.step-icon-wrap svg {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.step-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--silver);
}
.step-connector svg {
  width: 60px;
  height: 8px;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--snow);
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sky), var(--ice));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 96, 244, 0.1);
}
.image-content svg {
  width: 70%;
  height: auto;
}
.image-placeholder img.image-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}
.image-badge svg {
  width: 18px;
  height: 18px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all 300ms var(--ease-out);
  border: 1px solid transparent;
}
.feature-item:hover {
  background: var(--white);
  border-color: var(--mist);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(23, 96, 244, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.feature-text p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.fees-section {
  max-width: 800px;
  margin: 0 auto;
}
.fees-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.fees-desc {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 24px;
}
.coming-soon-table .feature-name-cell {
  font-weight: 600;
  color: var(--charcoal);
}

/* More ways to get paid — 6-card grid */
.more-ways-section {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--mist);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.more-ways-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 12px;
  max-width: 720px;
}
.more-ways-desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 48px;
  max-width: 680px;
}
.more-ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.more-ways-grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .more-ways-grid {
    grid-template-columns: 1fr;
  }
  .more-ways-grid--three {
    grid-template-columns: 1fr;
  }
}
.more-ways-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.more-ways-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky);
}
.more-ways-card-figure {
  aspect-ratio: 16 / 10;
  min-height: 180px;
  background: linear-gradient(135deg, #e8f4fd 0%, #f0e6ff 50%, #ffe8e8 100%);
  position: relative;
}
.more-ways-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Optional: subtle per-card gradient variants for placeholders */
.more-ways-card-figure-1 { background: linear-gradient(135deg, #e8f4fd 0%, #fce7f3 100%); }
.more-ways-card-figure-2 { background: linear-gradient(135deg, #f0e6ff 0%, #e8f4fd 100%); }
.more-ways-card-figure-3 { background: linear-gradient(135deg, #fce7f3 0%, #f0e6ff 100%); }
.more-ways-card-figure-4 { background: linear-gradient(135deg, #fce7f3 0%, #ffedd5 100%); }
.more-ways-card-figure-5 { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #4a1a2e 100%); }
.more-ways-card-figure-6 { background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%); }
.more-ways-card-body {
  padding: 20px 24px;
}
.more-ways-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 6px 0;
}
.more-ways-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0;
}
.table-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.table-narrow {
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--mist);
}
th {
  font-weight: 600;
  color: var(--charcoal);
  background: var(--snow);
}
td {
  color: var(--slate);
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.mt-12 { margin-top: 48px; }

/* Fees Table Specifics */
.fees-table tbody tr {
  transition: all 400ms var(--ease-out);
}
.fees-table tbody tr:hover {
  background-color: var(--snow);
  box-shadow: inset 2px 0 0 var(--blue);
}
.fees-total-row td {
  font-weight: 600;
  color: var(--charcoal);
}
.fees-net-row td {
  font-weight: 700;
  color: var(--blue);
}
.fees-table tbody tr:last-child td {
  border-bottom: none;
}
.table-footer {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--slate);
  background: rgba(0,0,0,0.015);
  border-top: 1px solid var(--mist);
}

/* Compare Table Specifics */
.compare-section {
  width: 100%;
}
.table-responsive {
  overflow-x: auto;
}
.compare-table th {
  padding-top: 24px;
  padding-bottom: 24px;
  vertical-align: top;
}
.compare-table td {
  vertical-align: top;
}
.compare-table tbody tr {
  transition: all 400ms var(--ease-out);
}
.compare-table tbody tr:hover {
  background-color: var(--snow);
  transform: translateY(-1px);
}
.feature-col {
  width: 20%;
}
.kemispay-col {
  width: 22%;
  background: rgba(23, 96, 244, 0.04);
  transition: background 400ms var(--ease-out);
}
.compare-table tbody tr:hover .kemispay-col {
  background: rgba(23, 96, 244, 0.08); /* slightly deeper blue on hover */
}
.compare-table th.kemispay-col {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  border-top: 2px solid var(--blue);
}
.feature-name {
  font-weight: 600;
  color: var(--charcoal);
}
.kemispay-col strong {
  display: block;
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 4px;
}
.kemispay-col span {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.6);
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 8px;
}
.recommended-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
}
.compare-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ═══════════════════════════════════════
   DASHBOARD SHOWCASE (inline)
   ═══════════════════════════════════════ */
.dashboard-showcase-wrap {
  padding: 100px 0 80px;
  background: var(--snow);
  overflow: hidden;
}
/* Header */
.sc-header { text-align: center; margin-bottom: 56px; }
.sc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.sc-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}
.sc-title span { color: var(--blue); }
.sc-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}
/* Stage */
.sc-stage {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 0;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* Browser frame */
.sc-browser {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--mist);
}
.sc-chrome {
  background: #F0F2F5;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sc-dot { width: 10px; height: 10px; border-radius: 50%; }
.sc-bar {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  margin: 0 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.sc-url {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--silver);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Dashboard body */
.sc-dash-body { background: var(--ice); }
.sc-dash-nav {
  background: #fff;
  border-bottom: 1px solid rgba(9,26,56,0.09);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}
.sc-dash-brand { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.sc-dash-logo { width: 22px; height: 22px; }
.sc-dash-wm { font-size: 11px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.sc-dash-wm span { color: var(--blue); }
.sc-dash-links { display: flex; gap: 14px; font-size: 9px; color: var(--silver); flex: 1; }
.sc-dash-links .active { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); padding-bottom: 2px; }
.sc-dash-user {
  font-family: var(--font-mono);
  font-size: 8.5px;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sc-avatar { width: 18px; height: 18px; background: #E0E6F0; border-radius: 50%; }
.sc-dash-content { padding: 14px 16px 16px; }
.sc-page-title { font-size: 16px; font-weight: 900; letter-spacing: -.03em; color: var(--navy); margin-bottom: 3px; }
.sc-page-sub { font-family: var(--font-mono); font-size: 7px; color: var(--silver); margin-bottom: 14px; }
/* Balance cards */
.sc-balance-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.sc-balance-card { background: #fff; border-radius: 10px; padding: 10px 12px 12px; border: 1px solid rgba(9,26,56,0.09); }
.sc-bc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sc-bc-icon {
  width: 22px; height: 22px;
  background: rgba(23,96,244,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.sc-bc-icon.sc-green { background: rgba(0,214,127,0.12); }
.sc-bc-badge {
  font-family: var(--font-mono);
  font-size: 7.5px;
  color: var(--silver);
  background: var(--ice);
  padding: 2px 8px;
  border-radius: 10px;
}
.sc-bc-amount { font-size: 18px; font-weight: 900; letter-spacing: -.04em; color: var(--navy); line-height: 1; }
.sc-usd { font-size: 9px; font-weight: 600; color: var(--silver); letter-spacing: .02em; margin-left: 2px; }
.sc-bc-label { font-family: var(--font-mono); font-size: 7.5px; color: var(--silver); margin-top: 3px; }
/* PLG */
.sc-plg { background: #fff; border-radius: 10px; padding: 12px 14px; border: 1px solid rgba(9,26,56,0.09); }
.sc-plg-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sc-plg-title { font-size: 10px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.sc-plg-field { margin-bottom: 8px; }
.sc-plg-label { font-family: var(--font-mono); font-size: 7.5px; color: #6A7A94; margin-bottom: 4px; }
.sc-plg-input {
  width: 100%; height: 28px;
  border: 1px solid #E0E8F5;
  border-radius: 6px;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--navy);
  background: #FAFBFF;
  display: flex; align-items: center; gap: 4px;
  position: relative; overflow: hidden;
}
.sc-plg-input.active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(23,96,244,0.1); }
.sc-plg-dollar { color: var(--silver); font-size: 10px; flex-shrink: 0; }
.sc-plg-typed { color: var(--navy); }
.sc-cursor {
  display: inline-block; width: 1px; height: 11px;
  background: var(--blue); vertical-align: middle;
  animation: sc-blink 0.8s step-end infinite;
}
@keyframes sc-blink { 50% { opacity: 0; } }
.sc-plg-btn {
  width: 100%; height: 30px;
  background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 8.5px; font-weight: 700; color: #fff;
  cursor: pointer; margin-bottom: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sc-plg-btn.pulse { animation: sc-btnPulse 0.4s ease; }
@keyframes sc-btnPulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(23,96,244,0.4); }
  40%  { transform: scale(0.97); box-shadow: 0 0 0 6px rgba(23,96,244,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(23,96,244,0); }
}
.sc-plg-result {
  background: #F4F7FF; border-radius: 6px; padding: 8px 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sc-plg-result.show { opacity: 1; transform: translateY(0); }
.sc-plg-result-label { font-family: var(--font-mono); font-size: 7px; color: var(--silver); margin-bottom: 4px; }
.sc-plg-result-row { display: flex; align-items: center; gap: 6px; }
.sc-plg-result-url {
  font-family: var(--font-mono); font-size: 7.5px;
  color: var(--blue); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.sc-plg-copy {
  width: 22px; height: 22px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
}
/* Connector */
.sc-connector { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.sc-conn-line { width: 2px; height: 60px; background: linear-gradient(to bottom, transparent, var(--blue), transparent); opacity: 0.3; }
.sc-conn-arrow {
  width: 36px; height: 36px;
  background: rgba(23,96,244,0.1);
  border: 1px solid rgba(23,96,244,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  position: relative;
}
.sc-conn-arrow::after {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--blue); opacity: 0;
  animation: sc-pulse 2.5s ease-out infinite 1.5s;
}
@keyframes sc-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}
.sc-conn-label {
  font-family: var(--font-mono); font-size: 7.5px; color: var(--silver);
  text-align: center; line-height: 1.5; letter-spacing: .04em; text-transform: uppercase;
}
/* Payment page */
.sc-pay-body { background: var(--ice); }
.sc-pay-nav {
  background: #fff; border-bottom: 1px solid rgba(9,26,56,0.09);
  height: 44px; display: flex; align-items: center; padding: 0 16px; gap: 6px;
}
.sc-pay-logo { width: 22px; height: 22px; }
.sc-pay-wm { font-size: 11px; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.sc-pay-wm span { color: var(--blue); }
.sc-pay-content { padding: 20px 16px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sc-pay-product { text-align: center; }
.sc-pay-name { font-size: 14px; font-weight: 900; letter-spacing: -.03em; color: var(--navy); margin-bottom: 2px; }
.sc-pay-from { font-family: var(--font-mono); font-size: 8px; color: var(--silver); }
.sc-pay-amount-card {
  background: #fff; border-radius: 10px; padding: 14px 20px; text-align: center;
  border: 1px solid rgba(9,26,56,0.09); width: 100%; box-shadow: 0 2px 12px rgba(9,26,56,0.05);
}
.sc-pay-amount { font-size: 26px; font-weight: 900; letter-spacing: -.04em; color: var(--navy); }
.sc-pay-action-card {
  background: #fff; border-radius: 10px; padding: 14px 16px; text-align: center;
  border: 1px solid rgba(9,26,56,0.09); width: 100%; box-shadow: 0 2px 12px rgba(9,26,56,0.05);
}
.sc-pay-powered {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font-mono); font-size: 8px; color: var(--silver); margin-bottom: 10px;
}
.sc-pay-btn {
  width: 100%; height: 36px; background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 700; color: #fff; margin-bottom: 10px;
  position: relative; overflow: hidden;
}
.sc-pay-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: sc-shimmer 3s ease-in-out infinite 2s;
}
@keyframes sc-shimmer { 0% { left: -100%; } 100% { left: 200%; } }
.sc-pay-note { font-family: var(--font-mono); font-size: 7px; color: var(--silver); line-height: 1.6; }
.sc-pay-footer { font-family: var(--font-mono); font-size: 7.5px; color: var(--silver); margin-top: 4px; }
/* Labels */
.sc-label { text-align: center; margin-top: 10px; }
.sc-label-title { font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--silver); }
.sc-label-sub { font-family: var(--font-mono); font-size: 8.5px; color: var(--silver); margin-top: 3px; }
/* Responsive */
@media (max-width: 900px) {
  .sc-stage { grid-template-columns: 1fr; gap: 20px; }
  .sc-connector { flex-direction: row; padding: 0 24px; }
  .sc-conn-line { width: 60px; height: 2px; background: linear-gradient(to right, transparent, var(--blue), transparent); }
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1760F4 0%, #1250D0 50%, #091A38 100%);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, white 1px, transparent 1px);
  background-size:
    60px 60px,
    80px 80px,
    50px 50px;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 12px;
  line-height: 1.7;
}
.cta-micro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 0.9fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .logo-text {
  color: var(--white);
}
.footer-logo .wm-pay {
  color: var(--green);
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 100px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s ease-in-out infinite;
}
.status-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col h4,
.footer-col .footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-col .footer-subheading {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 16px;
  margin-bottom: 4px;
}
.footer-col .footer-subheading:first-of-type {
  margin-top: 0;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  transition: all 200ms var(--ease-smooth);
}
.social-link:hover {
  color: var(--white);
  background: rgba(23, 96, 244, 0.2);
  transform: translateY(-2px);
}
.social-link svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 600ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 32px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 40px;
  }
  .floating-card {
    display: none;
  }
  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-content {
    order: -1;
  }
  .card-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .card-visual {
    order: -1;
  }
  .card-face {
    width: 340px;
    height: 215px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 0;
    margin: -10px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .card-face {
    width: 300px;
    height: 190px;
    padding: 20px;
  }
  .card-number {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .phone-frame {
    width: 250px;
  }
  .phone-screen {
    min-height: 460px;
    padding: 36px 14px 14px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .card-face {
    width: 260px;
    height: 165px;
  }
}

/* Noise texture overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--snow);
}
::-webkit-scrollbar-thumb {
  background: var(--mist);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--silver);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
