/* =====================================================
   TEQFINO - Main Stylesheet
   Color palette derived from StockMap app-listing banners
   ===================================================== */

/* ── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ────────────────────────────────── */
:root {
  /* Navy backgrounds */
  --navy-950: #040A17;
  --navy-900: #070D1E;
  --navy-800: #0f1f3d;
  --navy-700: #0d3a52;
  --navy-600: #0a5c6e;

  /* Brand accents (from StockMap banner) */
  --teal:   #00d4a0;
  --blue:   #0095c8;
  --purple: #6c5ce7;
  --amber:  #f59e0b;
  --red:    #ef4444;

  /* Text */
  --text-100: #ffffff;
  --text-200: rgba(255,255,255,0.85);
  --text-300: rgba(255,255,255,0.65);
  --text-400: rgba(255,255,255,0.40);

  /* Surfaces */
  --border:     rgba(255,255,255,0.08);
  --border-md:  rgba(255,255,255,0.14);
  --card-bg:    rgba(255,255,255,0.04);
  --card-hover: rgba(255,255,255,0.07);

  /* Gradients */
  --gradient-brand:      linear-gradient(90deg,  #00d4a0, #0095c8, #6c5ce7);
  --gradient-hero:       linear-gradient(135deg, #0f1f3d 0%, #0d3a52 45%, #0a5c6e 100%);
  --gradient-teal:       linear-gradient(90deg,  #00d4a0, #0095c8);
  --gradient-blue-purple:linear-gradient(90deg,  #0095c8, #6c5ce7);
  --gradient-amber:      linear-gradient(90deg,  #f59e0b, #ef4444);
  --gradient-cta:        linear-gradient(135deg, #0d3a52 0%, #0a1628 100%);

  /* Layout */
  --container-max: 1200px;
  --container-px:  clamp(16px, 4vw, 40px);
  --section-py:    clamp(64px, 8vw, 120px);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  --shadow-glow-teal:   0 0 60px rgba(0,212,160,0.18);
  --shadow-glow-purple: 0 0 60px rgba(108,92,231,0.18);
  --shadow-glow-amber:  0 0 60px rgba(245,158,11,0.18);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-950);
  color: var(--text-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Layout Utilities ─────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-py) 0; }
.section-sm { padding: calc(var(--section-py) * 0.6) 0; }

.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-amber  { color: var(--amber); }

/* ── Gradient Text ────────────────────────────────── */
.grad-teal {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-amber {
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-purple {
  background: var(--gradient-blue-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-teal);
  color: #051a14;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: var(--shadow-glow-teal); }

.btn-amber {
  background: var(--gradient-amber);
  color: #1a0a00;
}
.btn-amber:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: var(--shadow-glow-amber); }

.btn-purple {
  background: var(--gradient-blue-purple);
  color: #fff;
}
.btn-purple:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: var(--shadow-glow-purple); }

.btn-outline {
  background: transparent;
  color: var(--text-200);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-outline-teal {
  color: var(--teal);
  border-color: rgba(0,212,160,0.35);
}
.btn-outline-teal:hover { background: rgba(0,212,160,0.08); border-color: var(--teal); }

.btn-outline-amber {
  color: var(--amber);
  border-color: rgba(245,158,11,0.35);
}
.btn-outline-amber:hover { background: rgba(245,158,11,0.08); border-color: var(--amber); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── Badge / Tag ──────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-teal {
  background: rgba(0,212,160,0.12);
  border: 1px solid rgba(0,212,160,0.3);
  color: var(--teal);
}
.badge-amber {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
}
.badge-purple {
  background: rgba(108,92,231,0.12);
  border: 1px solid rgba(108,92,231,0.3);
  color: #a99cff;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-dot-teal  { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.badge-dot-amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }

/* ── Section Labels ───────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-300);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}
.section-header { margin-bottom: clamp(40px, 6vw, 72px); }

/* ── Card ─────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--border-md);
  transform: translateY(-4px);
}

/* ── Accent Bar (top brand stripe) ───────────────── */
.accent-bar-global {
  height: 4px;
  background: var(--gradient-brand);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(7, 13, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: var(--gradient-teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { color: #051a14; }
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-100);
}
.logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-300);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-100);
  background: var(--card-bg);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-200);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--container-px) 20px;
  background: rgba(7,13,30,0.97);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-300);
  padding: 11px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--text-100); background: var(--card-bg); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}
.hero-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,160,0.12), transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -80px;
  background: radial-gradient(circle, rgba(108,92,231,0.12), transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 30%; right: 25%;
  background: radial-gradient(circle, rgba(0,149,200,0.10), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--section-py) 0;
}
.hero-content.center { text-align: center; }
.hero-content.center .hero-actions { justify-content: center; }
.hero-content.center .section-subtitle { margin: 0 auto 40px; }

.hero-title {
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-300);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-200);
}

/* Two-column hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ── Browser Mockup ───────────────────────────────── */
.browser-mock {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.browser-bar {
  background: #f6f6f7;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e3e3e3;
}
.b-dot { width: 11px; height: 11px; border-radius: 50%; }
.b-red { background: #ff5f57; }
.b-yel { background: #febc2e; }
.b-grn { background: #28c840; }
.b-url {
  flex: 1; margin-left: 8px;
  background: #e8e8ea;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  color: #777;
  font-family: monospace;
}
.browser-body { padding: 20px 22px; }

/* ── Timer Preview ────────────────────────────────── */
.timer-mock {
  background: var(--navy-800);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), var(--shadow-glow-amber);
  border: 1px solid rgba(245,158,11,0.2);
}
.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.timer-num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.timer-sep {
  font-size: 40px;
  font-weight: 800;
  color: rgba(245,158,11,0.4);
  margin-bottom: 18px;
  line-height: 1;
}

/* ══════════════════════════════════════════════════
   FEATURES GRID
   ══════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--border-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-teal  { background: rgba(0,212,160,0.12); }
.feature-icon-blue  { background: rgba(0,149,200,0.12); }
.feature-icon-purple{ background: rgba(108,92,231,0.12); }
.feature-icon-amber { background: rgba(245,158,11,0.12); }
.feature-icon-red   { background: rgba(239,68,68,0.12); }
.feature-icon-green { background: rgba(34,197,94,0.12); }
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-300);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100%/6); right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-md), var(--border-md), transparent);
  z-index: 0;
}
.step-item {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 800;
  position: relative;
}
.step-num-teal  { background: rgba(0,212,160,0.12); border: 1.5px solid rgba(0,212,160,0.3); color: var(--teal); }
.step-num-amber { background: rgba(245,158,11,0.12); border: 1.5px solid rgba(245,158,11,0.3); color: var(--amber); }
.step-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-item p { font-size: 14.5px; color: var(--text-300); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  gap: 20px;
}
.pricing-grid-5 { grid-template-columns: repeat(5, 1fr); }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }

.pricing-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.pricing-card.popular {
  background: rgba(0,212,160,0.06);
  border-color: rgba(0,212,160,0.3);
  box-shadow: var(--shadow-glow-teal);
  transform: scale(1.02);
}
.pricing-card.popular-amber {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-glow-amber);
  transform: scale(1.02);
}
.pricing-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.pricing-badge-teal  { background: rgba(0,212,160,0.15); color: var(--teal); }
.pricing-badge-amber { background: rgba(245,158,11,0.15); color: var(--amber); }

.pricing-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 10px 0 4px;
  line-height: 1;
}
.pricing-period {
  font-size: 13px;
  color: var(--text-400);
  margin-bottom: 8px;
}
.pricing-trial {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 22px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-300);
  line-height: 1.4;
}
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; }
.pricing-cta { margin-top: auto; width: 100%; justify-content: center; }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-400);
}

/* ══════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-md); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-100);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--text-200); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--teal); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14.5px;
  color: var(--text-300);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--amber);
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 700; }
.author-store { font-size: 13px; color: var(--text-400); }

/* ══════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════ */
.stats-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 12px 0;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 4px;
  color: var(--teal);
}
.stat-label { font-size: 14px; color: var(--text-400); font-weight: 500; }

/* ══════════════════════════════════════════════════
   PRODUCT CARDS (Homepage)
   ══════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  padding: 40px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.product-card-teal::before  { background: var(--gradient-teal); }
.product-card-amber::before { background: var(--gradient-amber); }
.product-card:hover {
  background: var(--card-hover);
  border-color: var(--border-md);
  transform: translateY(-6px);
}
.product-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 28px;
}
.product-icon-teal  { background: rgba(0,212,160,0.12); border: 1px solid rgba(0,212,160,0.2); }
.product-icon-amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.product-card h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.65;
  margin-bottom: 28px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-200);
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ══════════════════════════════════════════════════
   WHY TEQFINO
   ══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
}
.why-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.why-card p { font-size: 14.5px; color: var(--text-300); line-height: 1.65; }

/* ══════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--section-py) 0;
  background: var(--gradient-cta);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,160,0.15), transparent 70%);
}
.cta-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(108,92,231,0.15), transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-300);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-400);
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14.5px;
  color: var(--text-400);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-400);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14.5px;
  color: var(--text-300);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-100); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13.5px;
  color: var(--text-400);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-400);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--text-100);
  border-color: var(--border-md);
  background: var(--card-bg);
}

/* ══════════════════════════════════════════════════
   LOCATION ROWS (StockMap demo widget)
   ══════════════════════════════════════════════════ */
.loc-demo-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid #eee;
  background: #f9f9fb;
  margin-bottom: 8px;
}
.loc-name-wrap .loc-name { font-size: 14px; font-weight: 700; color: #111; }
.loc-name-wrap .loc-addr { font-size: 12px; color: #999; margin-top: 2px; }
.loc-status {
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 50px;
  white-space: nowrap;
}
.s-high { background: #e3f9f0; color: #00875a; }
.s-low  { background: #fff4e0; color: #c05700; }
.s-out  { background: #fde8e8; color: #d72c0d; }
.loc-qty-text { font-size: 12px; color: #bbb; }

/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pricing-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-visual { display: none; }
  .hero-content:not(.center) { text-align: center; }
  .hero-content:not(.center) .hero-actions { justify-content: center; }
  .hero-content:not(.center) .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-content:not(.center) .hero-pills { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: 1fr; }
  .pricing-grid-5, .pricing-grid-3 { grid-template-columns: 1fr; }
  .pricing-card.popular, .pricing-card.popular-amber { transform: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-pills { flex-direction: column; align-items: flex-start; }
  .hero-content.center .hero-pills { align-items: center; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
