/* =============================================
   INOVAFÁCIL — Landing Page Styles
   ============================================= */

/* --- Variables --- */
:root {
  --bg: #03030b;
  --bg2: #0b0b67;
  --card:      rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --border-h:  rgba(79,142,247,0.45);

  --blue:   #4F8EF7;
  --purple: #8B5CF6;
  --teal:   #06D6A0;

  --grad:      linear-gradient(135deg, var(--blue), var(--purple));
  --grad-text: linear-gradient(135deg, #fff 0%, #94a3b8 100%);

  --t1: #f1f5f9;
  --t2: #94a3b8;
  --t3: #475569;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-glow: 0 0 60px rgba(79,142,247,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(79,142,247,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,142,247,0.5);
  filter: brightness(1.1);
}
.btn-ghost {
  background: transparent;
  color: var(--t2);
  padding: 12px 24px;
  font-size: 0.95rem;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--t1);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #0d0d1a;
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 14px 28px;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 30px; font-size: 1.05rem; border-radius: var(--r-md); }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-sm {
  background: transparent;
  color: var(--t2);
  padding: 8px 18px;
  font-size: 0.875rem;
  border: 1px solid var(--border);
}
.btn-outline-sm:hover { border-color: var(--blue); color: var(--t1); }
.btn-primary-sm {
  background: var(--grad);
  color: #fff;
  padding: 8px 18px;
  font-size: 0.875rem;
  box-shadow: 0 2px 12px rgba(79,142,247,0.4);
}
.btn-primary-sm:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
}
.brand strong { font-weight: 800; }
.brand-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(79,142,247,0.4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--t2);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--t1); background: rgba(79,142,247,0.1); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all 0.3s var(--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 */
.mobile-menu {
  display: none;
  background: rgba(7,7,15,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 24px;
}
.mobile-menu ul { margin-bottom: 20px; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu ul a {
  display: block;
  padding: 14px 0;
  color: var(--t2);
  font-size: 1rem;
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--t1); }
.mobile-menu.open { display: block; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 20s infinite ease-in-out;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,142,247,0.18), transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.16), transparent 70%);
  top: 30%; right: -200px;
  animation-delay: -7s;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,214,160,0.1), transparent 70%);
  bottom: -100px; left: 35%;
  animation-delay: -14s;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(25px,-35px) scale(1.06); }
  66%       { transform: translate(-20px,20px) scale(0.94); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: #7eb3ff;
  margin-bottom: 28px;
  font-weight: 500;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(6,214,160,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(6,214,160,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(6,214,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(6,214,160,0); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--t2);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--t3);
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   STATS
   ============================================= */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; flex: 1; min-width: 140px; }
.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; color: var(--t3); max-width: 160px; margin: 0 auto; }
.stat-sep { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.section-head p {
  color: var(--t2);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  border-radius: 100px;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products-section { background: var(--bg2); }

/* Featured Product Card */
.product-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-featured:hover {
  border-color: rgba(79,142,247,0.2);
  box-shadow: var(--shadow-glow);
}
.product-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,142,247,0.5), transparent);
}

/* Browser frame */
.product-visual { position: relative; }
.browser-frame {
  background: #0d0d1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.browser-bar {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.browser-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.browser-url {
  flex: 1;
  margin-left: 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.browser-screen { position: relative; overflow: hidden; }
.browser-screen a { display: block; }
.browser-screen img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}
.browser-screen:hover img { transform: scale(1.03); }
.screen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.browser-screen:hover .screen-overlay { opacity: 1; }
.screen-cta {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--r-md);
  box-shadow: 0 4px 20px rgba(79,142,247,0.4);
}
.product-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(79,142,247,0.12), transparent 70%);
  bottom: -80px; right: -80px;
  filter: blur(40px);
  pointer-events: none;
}

/* Product Info */
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(6,214,160,0.6);
  animation: pulse 2s infinite;
}
.product-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.product-name {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}
.product-name strong { font-weight: 900; }
.product-desc {
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-size: 0.97rem;
}
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 32px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--t2);
}
.product-features li svg { flex-shrink: 0; }
.product-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Coming Soon Cards */
.coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.coming-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur), transform var(--dur);
}
.coming-card:hover { border-color: rgba(139,92,246,0.3); transform: translateY(-4px); }
.coming-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.coming-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  margin-bottom: 16px;
}
.coming-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.coming-card p { font-size: 0.88rem; color: var(--t3); line-height: 1.65; margin-bottom: 20px; }
.progress-wrap {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar {
  height: 100%;
  background: var(--grad);
  border-radius: 100px;
  transition: width 1.2s var(--ease);
}
.progress-label { font-size: 0.78rem; color: var(--t3); }

/* =============================================
   FEATURES
   ============================================= */
.features-section { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
}
.feat-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.feat-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.feat-card p { font-size: 0.88rem; color: var(--t3); line-height: 1.65; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section { background: var(--bg2); }
.steps-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}
.step:hover { border-color: var(--border-h); transform: translateY(-4px); }
.step-num {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step p { font-size: 0.88rem; color: var(--t3); line-height: 1.65; }
.step-arrow {
  color: var(--t3);
  flex-shrink: 0;
  opacity: 0.5;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section { background: var(--bg); }
.cta-card {
  background: var(--grad);
  border-radius: var(--r-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(79,142,247,0.25);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  top: -100px; left: -100px;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: rgba(139,92,246,0.3);
  bottom: -80px; right: -60px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--t3); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--t1); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--t3); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--t1); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--t3);
}
.footer-bottom a { color: var(--blue); }
.footer-bottom a:hover { text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .product-featured { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .hero-trust { gap: 14px; }

  .stats-grid { justify-content: center; }
  .stat-sep { display: none; }

  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .product-featured { padding: 28px; }
  .product-features { grid-template-columns: 1fr; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; justify-content: center; }

  .coming-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .steps-row { flex-direction: column; gap: 16px; max-width: 360px; margin: 0 auto; }
  .step-arrow { transform: rotate(90deg); }

  .cta-card { padding: 48px 28px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-badge { font-size: 0.78rem; }
  .hero-sub { font-size: 0.95rem; }
}
