/* =============================================
   iAgro Landing Page — Styles
   Palette: #081a24 | #2dca87 | #71d74d
   Font: Montserrat
   ============================================= */

:root {
  --bg:        #081a24;
  --bg-card:   #0b2030;
  --bg-light:  #0d2234;
  --primary:   #2dca87;
  --primary-d: #1fa368;
  --secondary: #71d74d;
  --text:      #ffffff;
  --text-muted:#a0b4bf;
  --border:    rgba(45,202,135,0.18);
  --radius:    16px;
  --radius-sm: 10px;
  --trans:     0.3s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* ─── Reusable ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  background: rgba(45,202,135,0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title span { color: var(--primary); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 14px auto 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,202,135,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(45,202,135,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.navbar.scrolled {
  background: rgba(8,26,36,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.navbar-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
.navbar-brand span { color: var(--primary); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--trans);
}
.navbar-links a:hover { color: var(--text); }
.navbar-links a.active { color: var(--primary); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: var(--trans);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,26,36,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(45,202,135,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(113,215,77,0.06) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,202,135,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,202,135,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,202,135,0.1);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--primary); }
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 20px;
  transition: var(--trans);
}
.store-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(45,202,135,0.3);
  transform: translateY(-2px);
}
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge-text { line-height: 1.2; }
.store-badge-text small { display: block; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.store-badge-text strong { display: block; font-size: 15px; font-weight: 700; }

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: var(--bg-card);
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
.phone-punchhole {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.phone-header {
  padding: 0 20px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-header-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.phone-header-text { flex: 1; }
.phone-header-text h4 { font-size: 14px; font-weight: 700; }
.phone-header-text small { font-size: 10px; color: var(--primary); }
.phone-map {
  flex: 1;
  background: linear-gradient(135deg, #0a2535 0%, #0d3040 50%, #0a2535 100%);
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45,202,135,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,202,135,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin .pin {
  width: 30px; height: 30px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin .pin-inner {
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-pin.pin-green .pin { background: var(--primary); box-shadow: 0 0 12px rgba(45,202,135,0.6); }
.map-pin.pin-lime .pin { background: var(--secondary); box-shadow: 0 0 12px rgba(113,215,77,0.5); }
.map-pin.pin-blue .pin { background: #4fc3f7; }
.map-pin:nth-child(1) { top: 20%; left: 30%; }
.map-pin:nth-child(2) { top: 40%; left: 60%; }
.map-pin:nth-child(3) { top: 60%; left: 25%; }
.map-pin:nth-child(4) { top: 75%; left: 55%; }
.map-ripple {
  position: absolute;
  top: 35%; left: 55%;
  width: 80px; height: 80px;
  border: 2px solid rgba(45,202,135,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2.5s infinite;
}
.phone-bottom {
  padding: 14px;
  background: var(--bg-card);
}
.phone-card {
  background: rgba(45,202,135,0.12);
  border: 1px solid rgba(45,202,135,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-card-avatar {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.phone-card-info { flex: 1; }
.phone-card-info h5 { font-size: 11px; font-weight: 700; }
.phone-card-info small { font-size: 9px; color: var(--text-muted); }
.phone-card-rating { font-size: 10px; color: var(--primary); font-weight: 700; }
.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: var(--text-muted);
}
.phone-nav-item.active { color: var(--primary); }
.phone-nav-item svg { width: 18px; height: 18px; }

/* Glow rings */
.hero-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(45,202,135,0.12);
}
.hero-glow-ring:nth-child(1) { width: 380px; height: 380px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-glow-ring:nth-child(2) { width: 480px; height: 480px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: spin-slow 20s linear infinite; }
.hero-glow-ring:nth-child(3) { width: 580px; height: 580px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: var(--border);
}
.stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--trans);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

/* Sentinel-2 full-width highlight card */
.feature-card--highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(45,202,135,0.08) 0%, rgba(113,215,77,0.05) 100%);
  border-color: rgba(45,202,135,0.25);
}
.feature-card--highlight::before { opacity: 0.6; }
.feature-highlight-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.feature-highlight-left { flex: 1; min-width: 0; }
.feature-highlight-badge {
  display: inline-block;
  background: rgba(113,215,77,0.15);
  border: 1px solid rgba(113,215,77,0.3);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.feature-highlight-list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.feature-highlight-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.feature-highlight-list .icon-check { color: var(--primary); font-weight: 900; flex-shrink: 0; }
@media (max-width: 640px) {
  .feature-highlight-inner { flex-direction: column; gap: 24px; }
}

.feature-icon {
  width: 52px; height: 52px;
  background: rgba(45,202,135,0.12);
  border: 1px solid rgba(45,202,135,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.hiw-section { background: var(--bg-light); }
.hiw-tabs {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 99px;
  padding: 4px;
  width: fit-content;
  margin: 40px auto 56px;
}
.hiw-tab {
  padding: 10px 28px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  transition: var(--trans);
}
.hiw-tab.active {
  background: var(--primary);
  color: #fff;
}
.hiw-panel { display: none; }
.hiw-panel.active { display: block; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  z-index: 0;
}
.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.hiw-step-num {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(45,202,135,0.2);
}
.hiw-step-icon { font-size: 22px; }
.hiw-step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.hiw-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── ROLES ─── */
.roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.role-card {
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.role-card.producer {
  background: linear-gradient(135deg, rgba(45,202,135,0.08) 0%, rgba(45,202,135,0.03) 100%);
  border: 1px solid rgba(45,202,135,0.2);
}
.role-card.contractor {
  background: linear-gradient(135deg, rgba(113,215,77,0.08) 0%, rgba(45,202,135,0.04) 100%);
  border: 1px solid rgba(113,215,77,0.2);
}
.role-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.role-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.role-subtitle {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}
.role-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.role-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.role-list li .check {
  width: 20px; height: 20px;
  background: rgba(45,202,135,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 11px;
  flex-shrink: 0;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 720px;
  margin: 56px auto 0;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: var(--trans);
}
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(45,202,135,0.15);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 99px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
}
.plan-price .amount { font-size: 42px; font-weight: 900; color: var(--primary); line-height: 1; }
.plan-price .currency { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.plan-price .period { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.plan-price .free { font-size: 36px; font-weight: 900; color: var(--primary); }
.plan-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -20px;
  margin-bottom: 24px;
}
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.plan-features li .icon-check { color: var(--primary); font-weight: 900; }
.plan-features li .icon-x { color: rgba(255,255,255,0.2); }
.plan-features li.disabled { color: var(--text-muted); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(45,202,135,0.15) 0%, rgba(113,215,77,0.08) 100%);
  border: 1px solid rgba(45,202,135,0.25);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(45,202,135,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(113,215,77,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}
.footer-logo img { width: 50px; height: 50px; border-radius: 9px; }
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--trans);
}
.social-btn:hover {
  background: rgba(45,202,135,0.15);
  border-color: var(--border);
  color: var(--primary);
}
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color var(--trans); }
.footer-bottom a:hover { color: var(--primary); }

/* ─── INNER PAGES (terms, privacy, about) ─── */
.page-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero-tag { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 900; }
.page-hero .update { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 0 96px;
}
.prose h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 12px;
}
.prose p, .prose li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.prose ul { padding-left: 20px; }
.prose ul li { list-style: disc; margin-bottom: 8px; }
.prose .callout {
  background: rgba(45,202,135,0.08);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.prose .callout p { margin: 0; font-size: 14px; }

/* ─── ABOUT PAGE ─── */
.about-section { padding: 64px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-visual {
  display: flex;
  justify-content: center;
}
.about-icon-wrap {
  width: 220px; height: 220px;
  background: rgba(45,202,135,0.08);
  border: 1px solid var(--border);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-icon-wrap img {
  width: 150px;
  height: 150px;
  border-radius: 24px;
}
.about-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px dashed rgba(45,202,135,0.15);
  border-radius: 50px;
  animation: spin-slow 25s linear infinite;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
}
.value-icon { font-size: 28px; margin-bottom: 12px; }
.value-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.team-section { background: var(--bg-light); padding: 80px 0; }

/* ─── ANIMATIONS ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes ripple {
  0% { width: 40px; height: 40px; opacity: 0.8; }
  100% { width: 120px; height: 120px; opacity: 0; }
}
@keyframes spin-slow {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .navbar-links, .navbar-cta .btn-outline { display: none; }
  .navbar-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions, .hero-stores { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-bottom: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .phone-mockup { width: 220px; height: 460px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}
