/* =============================================
   FINUPI — Premium UPI Payment Gateway
   style.css — Mobile-first, production-grade
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --blue-600: #0057FF;
  --blue-700: #0046D0;
  --blue-50: #EEF4FF;
  --green-500: #00C896;
  --green-600: #00A87A;
  --dark-900: #0A0F1E;
  --dark-800: #111827;
  --dark-700: #1F2937;
  --dark-600: #374151;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;

  --gradient-primary: linear-gradient(135deg, #0057FF 0%, #00C896 100%);
  --gradient-hero: linear-gradient(135deg, #EEF4FF 0%, #E8FDF6 50%, #F5F0FF 100%);
  --gradient-dark: linear-gradient(135deg, #0A0F1E 0%, #111827 100%);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 30px rgba(0,87,255,0.25);
  --shadow-green: 0 8px 30px rgba(0,200,150,0.20);

  --font-main: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --nav-height: 72px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--dark-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad {
  padding: 96px 0;
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag--light {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,87,255,0.35);
}

.btn--outline {
  border: 1.5px solid var(--gray-200);
  color: var(--dark-800);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--dark-700);
  background: transparent;
}

.btn--ghost:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

.btn--white {
  background: var(--white);
  color: var(--dark-900);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-900);
  letter-spacing: -0.04em;
}

.logo-text span {
  color: var(--blue-600);
}

.navbar__nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}

.hamburger:hover { background: var(--gray-100); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark-700);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,87,255,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,200,150,0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -150px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,200,150,0.2);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,200,150,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(0,200,150,0.1); }
}

.hero__headline {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark-900);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__pills li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 12px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.hero__pills li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Phone Mockup */
.hero__phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 340px;
  z-index: 3;
}

.phone-mockup {
  background: var(--dark-900);
  border-radius: 40px 40px 0 0;
  padding: 28px 20px 0;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.06);
}

.phone-screen {
  background: var(--dark-800);
  border-radius: 24px 24px 0 0;
  padding: 20px;
  min-height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
}

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

.phone-brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.phone-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-500);
}

.phone-amount {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.phone-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.txn-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.txn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.txn-icon--green { background: rgba(0,200,150,0.15); color: var(--green-500); }
.txn-icon--blue { background: rgba(0,87,255,0.15); color: #6B9FFF; }

.txn-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.txn-details strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.txn-details span {
  font-size: 11px;
  color: var(--gray-400);
}

.txn-amount { font-size: 13px; font-weight: 700; }
.txn-amount.green { color: var(--green-500); }

.phone-pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
}

.phone-pulse span {
  width: 6px;
  height: 6px;
  background: var(--blue-600);
  border-radius: 50%;
  animation: pulse-dots 1.2s infinite;
}

.phone-pulse span:nth-child(2) { animation-delay: 0.2s; }
.phone-pulse span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse-dots {
  0%,80%,100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.phone-pulse-label {
  font-size: 11px;
  color: var(--gray-400);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  padding: 52px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.trust-bar__track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.trust-bar__track::-webkit-scrollbar { display: none; }

.trust-bar__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  white-space: nowrap;
  min-width: 0;
}

.trust-card:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-card__logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.trust-card__logo svg {
  width: 100%;
  height: 100%;
}

.trust-card__info {
  display: flex;
  flex-direction: column;
}

.trust-card__info strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-800);
}

.trust-card__info span {
  font-size: 11px;
  color: var(--gray-400);
}

.trust-bar__footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-shield {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-700);
}

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--gray-50);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-card__icon--uptime { background: #EEF4FF; color: var(--blue-600); }
.stat-card__icon--confirm { background: #E8FDF6; color: var(--green-600); }
.stat-card__icon--api { background: #FEF9EE; color: #F59E0B; }
.stat-card__icon--support { background: #FEF0F0; color: #EF4444; }

.stat-card__number {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark-900);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-card__number small {
  font-size: 22px;
  font-weight: 700;
}

.stat-card__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-600);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card__desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* =============================================
   FEATURES
   ============================================= */
.features {
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card--accent {
  background: linear-gradient(135deg, var(--blue-50) 0%, #E8FDF6 100%);
  border-color: transparent;
}

.feature-card--accent .feature-card__icon {
  background: var(--white);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--gray-50);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
}

.step:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step__icon {
  width: 64px;
  height: 64px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin: 0 auto 16px;
}

.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

.step__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--green-500);
}

/* =============================================
   SOLUTIONS
   ============================================= */
.solutions {
  background: var(--white);
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.solution-card {
  padding: 32px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all var(--transition);
}

.solution-card:hover {
  border-color: var(--blue-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-card--featured {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

.solution-card--featured h3 { color: var(--white); }
.solution-card--featured p { color: rgba(255,255,255,0.75); }
.solution-card--featured .solution-link { color: rgba(255,255,255,0.9); }

.solution-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.solution-link:hover { gap: 8px; }

/* =============================================
   DEVELOPERS
   ============================================= */
.developers {
  background: var(--dark-900);
}

.developers .section-tag { color: var(--green-500); background: rgba(0,200,150,0.1); }
.developers .section-title { color: var(--white); }
.developers .section-sub { color: rgba(255,255,255,0.5); }

.developers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.dev-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dev-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* Code Window */
.code-window {
  background: #0D1117;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(0,87,255,0.1);
}

.code-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #161B22;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot.red { background: #FF5F56; }
.code-dot.yellow { background: #FFBD2E; }
.code-dot.green { background: #27C93F; }

.code-window__title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

.code-block {
  padding: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.code-block code {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  display: block;
}

.code-keyword { color: #FF79C6; }
.code-string { color: #F1FA8C; }
.code-func { color: #50FA7B; }
.code-number { color: #BD93F9; }
.code-comment { color: #6272A4; }

.code-response {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background: rgba(0,200,150,0.06);
  border-top: 1px solid rgba(0,200,150,0.15);
}

.response-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-500);
  font-weight: 600;
}

.response-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  background: var(--gray-50);
}

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

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: var(--dark-900);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,87,255,0.3);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured p { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-card__txn { color: var(--green-500); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured .pricing-card__features li.dim { color: rgba(255,255,255,0.3); }
.pricing-card--featured .price-currency,
.pricing-card--featured .price-amount,
.pricing-card--featured .price-period { color: var(--white); }

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-900);
  margin-bottom: 8px;
}

.pricing-card__header p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-900);
  align-self: flex-start;
  padding-top: 8px;
}

.price-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-amount--custom {
  font-size: 36px;
}

.price-period {
  font-size: 15px;
  color: var(--gray-400);
  align-self: flex-end;
  padding-bottom: 8px;
}

.pricing-card__txn {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  margin-bottom: 24px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--dark-700);
  font-weight: 500;
}

.pricing-card__features li.dim {
  color: var(--gray-400);
  text-decoration: line-through;
  text-decoration-color: var(--gray-200);
}

/* =============================================
   SECURITY
   ============================================= */
.security {
  background: var(--white);
}

.security__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.security__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.security-item__icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-900);
  display: block;
  margin-bottom: 4px;
}

.security-item p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Security Visual */
.security__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-shield {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(0,87,255,0.2);
  animation: rotate-ring 20s linear infinite;
}

.shield-ring--1 {
  width: 100%;
  height: 100%;
  border-color: rgba(0,87,255,0.15);
}

.shield-ring--2 {
  width: 76%;
  height: 76%;
  border-color: rgba(0,200,150,0.2);
  animation-duration: 15s;
  animation-direction: reverse;
}

.shield-ring--3 {
  width: 54%;
  height: 54%;
  border-color: rgba(0,87,255,0.25);
  animation-duration: 10s;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.shield-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.shield-core span {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shield-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.shield-badges span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid rgba(0,87,255,0.2);
  padding: 4px 10px;
  border-radius: 4px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-600);
}

.testimonial-card--featured {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

.testimonial-card--featured p { color: rgba(255,255,255,0.9); }
.testimonial-card--featured .testimonial-stars { color: #FFD700; }
.testimonial-card--featured strong { color: var(--white); }
.testimonial-card--featured span { color: rgba(255,255,255,0.7); }

.testimonial-stars {
  font-size: 18px;
  color: #F59E0B;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--dark-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-900);
  display: block;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: var(--blue-600);
  box-shadow: 0 4px 20px rgba(0,87,255,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-900);
  background: transparent;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.faq-question:hover { background: var(--gray-50); }

.faq-item.open .faq-question {
  color: var(--blue-600);
  background: var(--blue-50);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.75;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--gray-50);
}

.cta-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-card__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.12);
  top: -150px;
  right: -100px;
}

.cta-card__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(0,0,0,0.08);
  bottom: -100px;
  left: -80px;
}

.cta-card__content {
  position: relative;
  z-index: 2;
}

.cta-card h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-card h2 .gradient-text {
  background: linear-gradient(135deg, #A8D8FF, #7FFFD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.cta-card__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-card__metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-metric strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.cta-metric span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-900);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.footer__brand .navbar__logo {
  margin-bottom: 16px;
}

.footer__brand .logo-text {
  color: var(--white);
}

.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer__compliance {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__compliance span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.2s; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .hero__phone { width: 280px; }
  .hero__inner { max-width: 560px; }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .step__connector {
    display: none;
  }

  .developers__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: scale(1);
    order: -1;
  }

  .security__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .security__visual {
    order: -1;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section-pad { padding: 64px 0; }

  /* Navbar Mobile */
  .navbar__nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 15px;
  }

  .navbar__cta { display: none; }
  .hamburger { display: flex; }

  /* Hero Mobile */
  .hero {
    padding-top: calc(var(--nav-height) + 48px);
    text-align: center;
  }

  .hero__inner {
    max-width: 100%;
    padding-bottom: 360px;
  }

  .hero__badge { margin: 0 auto 24px; }
  .hero__sub { margin: 0 auto 24px; }

  .hero__pills {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__phone {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    left: auto;
    right: auto;
  }

  /* Trust Bar Mobile */
  .trust-bar__cards {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  /* Stats */
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Solutions */
  .solutions__grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: scale(1); }

  /* Security */
  .security__visual { display: none; }

  /* CTA */
  .cta-card {
    padding: 52px 28px;
  }

  .cta-card__metrics {
    gap: 24px;
  }

  /* Footer */
  .footer__links { grid-template-columns: 1fr 1fr; }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .hero__pills li { font-size: 12px; padding: 5px 10px; }
  .trust-card { padding: 10px 14px; }
  .footer__links { grid-template-columns: 1fr 1fr; gap: 24px; }
}
