/* ==========================================================
   NUKAR  –  Landing Page v2
   Design inspired by modern fintech / ayoconnect.com
   Colors: #4FAF68 (primary-green), #0d1f35 (dark-navy)
   Font: Inter (Google Fonts)
   No heavy framework — pure CSS + tiny vanilla JS
   ========================================================== */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2d3748;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .25s; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --green:       #4FAF68;
  --green-d:     #3a9858;
  --green-l:     #e8f5ee;
  --green-ll:    #f0faf4;
  --navy:        #0d1f35;
  --navy2:       #162940;
  --navy3:       #1e3a5f;
  --yellow:      #f7d933;
  --yellow-d:    #e5c71d;
  --text:        #2d3748;
  --text-m:      #4a5568;
  --text-l:      #718096;
  --border:      #e2e8f0;
  --bg-light:    #f7fafc;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(13,31,53,.10);
  --shadow-lg:   0 12px 48px rgba(13,31,53,.16);
  --shadow-green:0 8px 32px rgba(79,175,104,.35);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ---------- Typography ---------- */
.display-1 { font-size: clamp(2.6rem, 5.5vw, 4rem);  font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; }
.display-2 { font-size: clamp(2rem, 4vw, 3rem);       font-weight: 800; letter-spacing: -1px;   line-height: 1.12; }
.heading-1 { font-size: clamp(1.6rem, 3vw, 2.25rem);  font-weight: 800; letter-spacing: -.5px;  line-height: 1.2;  }
.heading-2 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 700; line-height: 1.3;    }
.body-lg   { font-size: 1.0625rem; line-height: 1.75; }
.body-sm   { font-size: 0.9375rem; line-height: 1.7;  }
.caption   { font-size: 0.8125rem; line-height: 1.5;  }

.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-l); }
.text-white  { color: #fff; }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.wrap       { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.wrap-sm    { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.wrap-xs    { max-width: 700px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ---------- Eyebrow / Badge ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--green-d); background: var(--green-l);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow-dark {
  color: rgba(255,255,255,.75); background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .6875rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: #fff; background: var(--green); padding: 4px 12px; border-radius: 100px;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #6fff8e;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-weight: 700; font-size: .9375rem; border-radius: 100px; border: 2px solid transparent;
  padding: 13px 30px; transition: all .25s var(--ease); line-height: 1; white-space: nowrap;
}
.btn-primary  { background: var(--green);  color: #fff;        border-color: var(--green);  }
.btn-primary:hover  { background: var(--green-d); border-color: var(--green-d); transform: translateY(-2px); box-shadow: var(--shadow-green); color: #fff; }
.btn-outline  { background: transparent;   color: var(--green); border-color: var(--green);  }
.btn-outline:hover  { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-dark     { background: var(--navy);   color: #fff;        border-color: var(--navy);   }
.btn-dark:hover     { background: var(--navy2); border-color: var(--navy2); transform: translateY(-2px); color: #fff; }
.btn-white    { background: #fff;          color: var(--navy); border-color: #fff;          }
.btn-white:hover    { background: var(--green-ll); color: var(--green-d); border-color: var(--green-ll); }
.btn-yellow   { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn-yellow:hover   { background: var(--yellow-d); border-color: var(--yellow-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(247,217,51,.4); color: var(--navy); }
.btn-sm  { padding: 9px 22px; font-size: .875rem; }
.btn-lg  { padding: 16px 38px; font-size: 1.0625rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; justify-content: center; border-radius: 12px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 72px; transition: all .3s var(--ease);
}
.navbar.transparent { background: transparent; }
.navbar.solid {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; height: 72px; gap: 24px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar-logo img { height: 34px; width: auto; transition: filter .3s; }
.navbar-logo .logo-text {
  font-size: 1.25rem; font-weight: 900; color: var(--navy); letter-spacing: -.5px;
}
.navbar-logo .logo-text span { color: var(--green); }
.navbar.transparent .navbar-logo .logo-text { color: #fff; }
.navbar.transparent .navbar-logo img { filter: brightness(10); }

.navbar-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.navbar-nav a {
  font-size: .9375rem; font-weight: 500; padding: 8px 15px;
  border-radius: var(--radius-sm); color: var(--text);
  transition: all .2s;
}
.navbar.transparent .navbar-nav a { color: rgba(255,255,255,.8); }
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--green); background: var(--green-l);
}
.navbar.transparent .navbar-nav a:hover, .navbar.transparent .navbar-nav a.active {
  color: #fff; background: rgba(255,255,255,.15);
}
.navbar-actions { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
.navbar-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.navbar-toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--navy); transition: all .3s;
}
.navbar.transparent .navbar-toggle span { background: #fff; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px; box-shadow: var(--shadow-lg); z-index: 9998;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 500; color: var(--text);
}
.mobile-menu a:hover { background: var(--green-l); color: var(--green); }
.mobile-menu a i { width: 18px; color: var(--green); font-size: 14px; }
.mobile-menu-cta {
  margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}

/* ---------- PAGE LOADER ---------- */
#loader {
  position: fixed; inset: 0; z-index: 99999; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease);
}
#loader.out { opacity: 0; pointer-events: none; }
.loader-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--green);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, #071523 0%, #0d1f35 45%, #12294a 100%);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-blob-1 {
  position: absolute; top: -15%; right: -8%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,175,104,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,217,51,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-content {}
.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title .highlight {
  color: var(--green);
  background: linear-gradient(135deg, #4FAF68, #7adb96);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { color: rgba(255,255,255,.65); max-width: 500px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 32px; }
.hero-stat {
  flex: 1; padding-right: 24px; padding-left: 24px;
  border-right: 1px solid rgba(255,255,255,.1); text-align: center;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; }
.hero-stat-value { font-size: 1.875rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-stat-value span { color: var(--green); }
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-phone {
  width: 280px; border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  animation: hero-float 6s ease-in-out infinite;
  background: #1a3550;
  overflow: hidden;
}
.hero-phone img { width: 100%; display: block; }
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-card {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; min-width: 180px;
}
.hero-card.c1 { top: 18%; right: -6%; animation: hero-float 5s ease-in-out infinite .8s; }
.hero-card.c2 { bottom: 22%; left: -10%; animation: hero-float 5.5s ease-in-out infinite 1.6s; }
.hero-card-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.hero-card-body strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); }
.hero-card-body span   { font-size: .75rem; color: var(--text-l); display: block; }
.hero-card-body .pill-up { color: #16a34a; font-size: .6875rem; font-weight: 700; }

/* ---------- PARTNERS ---------- */
.partners-bar { padding: 40px 0; border-top: 1px solid var(--border); background: var(--bg-light); }
.partners-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-l); white-space: nowrap;
}
.partners-inner {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center;
}
.partners-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.partners-logos img {
  height: 26px; width: auto; opacity: .45; filter: grayscale(100%);
  transition: all .3s; cursor: pointer;
}
.partners-logos img:hover { opacity: .9; filter: grayscale(0%); }
.partner-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }

/* ---------- SERVICES ---------- */
.services-section { padding: 100px 0; background: #fff; }
.section-head { margin-bottom: 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.service-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: all .3s var(--ease); position: relative; overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-d));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 24px;
  transition: transform .3s;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.ic-green  { background: #e8f5ee; }
.ic-blue   { background: #eff6ff; }
.ic-orange { background: #fff7ed; }
.ic-purple { background: #f5f3ff; }
.service-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc  { font-size: .875rem; color: var(--text-l); line-height: 1.7; margin-bottom: 18px; }
.service-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .6875rem; font-weight: 600; letter-spacing: .3px;
  padding: 3px 10px; border-radius: 100px;
}
.tag-green  { background: var(--green-l); color: var(--green-d); }
.tag-blue   { background: #eff6ff; color: #1d4ed8; }
.tag-orange { background: #fff7ed; color: #c2410c; }
.tag-purple { background: #f5f3ff; color: #6d28d9; }

/* ---------- WHY NUKAR (alternate rows) ---------- */
.why-section { padding: 100px 0; background: var(--bg-light); }
.why-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-bottom: 96px;
}
.why-row:last-child { margin-bottom: 0; }
.why-row.reverse { direction: rtl; }
.why-row.reverse > * { direction: ltr; }
.why-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.why-visual-placeholder {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-xl); background: var(--green-l);
  font-size: 5rem;
}
/* Security / Speed sections: SVG fills full area, no centering needed */
.why-visual-sec,
.why-visual-spd {
  display: block; padding: 0; overflow: hidden;
}
.why-visual img { width: 100%; display: block; }
.why-visual-badge {
  position: absolute; bottom: 24px; right: 24px; background: #fff;
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; min-width: 160px;
}
.why-visual-badge.left { right: auto; left: 24px; }
.wvb-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wvb-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--navy); }
.wvb-text span   { font-size: .75rem; color: var(--text-l); }
.why-content {}
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-feature {
  display: flex; gap: 16px; padding: 20px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: all .25s; align-items: flex-start;
}
.why-feature:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateX(6px); }
.why-feature-ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.125rem; flex-shrink: 0;
}
.why-feature-body h5 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-feature-body p  { font-size: .875rem; color: var(--text-l); line-height: 1.65; }

/* ---------- HOW IT WORKS ---------- */
.how-section { padding: 100px 0; background: #fff; }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative; margin-top: 60px;
}
.steps-row::before {
  content: ''; position: absolute; top: 44px; left: 18%; right: 18%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px);
  opacity: .35;
}
.step-card {
  text-align: center; padding: 40px 28px;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  transition: all .3s; position: relative;
}
.step-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 6px 20px rgba(13,31,53,.3); position: relative; z-index: 1;
  transition: background .3s;
}
.step-card:hover .step-num { background: var(--green); box-shadow: var(--shadow-green); }
.step-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc  { font-size: .875rem; color: var(--text-l); line-height: 1.7; }

/* ---------- STATS BAND ---------- */
.stats-band {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--navy3) 100%);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23fff' fill-opacity='.02' cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1;
}
.stat-item { text-align: center; padding: 16px 24px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.1); }
.stat-num { font-size: clamp(2rem, 4vw, 2.875rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num span  { color: var(--green); }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.55); font-weight: 500; }
.stat-today-badge {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(52,211,153,.18);
  border: 1px solid rgba(52,211,153,.3);
  color: var(--green);
  font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.stat-today-badge svg { flex-shrink: 0; }

/* ---------- APP DOWNLOAD ---------- */
.app-section { padding: 100px 0; background: var(--bg-light); }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-visual { display: flex; justify-content: center; position: relative; }
.app-phone-wrap {
  position: relative; display: flex; gap: 16px; align-items: flex-end;
}
.app-phone {
  width: 180px; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); flex-shrink: 0;
  background: var(--navy);
}
.app-phone.main { width: 210px; align-self: auto; }
.app-phone img { width: 100%; display: block; }
.app-phone-placeholder {
  border-radius: 28px; background: var(--green-l);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.app-phone-placeholder i { font-size: 3rem; color: var(--green); opacity: .5; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff;
  padding: 13px 24px; border-radius: var(--radius); text-decoration: none;
  transition: all .25s; border: 1.5px solid transparent;
}
.store-btn:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow); color: #fff; }
.store-btn svg  { width: 22px; height: 22px; flex-shrink: 0; }
.store-btn small { display: block; font-size: .6875rem; opacity: .65; font-weight: 400; }
.store-btn strong { display: block; font-size: .9375rem; font-weight: 700; }

/* ---------- MITRA CTA ---------- */
.cta-section { padding: 80px 0; background: #fff; }
.cta-box {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, #285a8a 100%);
  padding: 80px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,175,104,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box-inner { display: flex; align-items: center; gap: 64px; position: relative; z-index: 1; }
.cta-content { flex: 1; }
.cta-title { color: #fff; margin-bottom: 14px; }
.cta-desc  { color: rgba(255,255,255,.65); max-width: 420px; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 64px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 32px; width: auto; }
.footer-logo-text { font-size: 1.125rem; font-weight: 800; color: #fff; }
.footer-tagline { font-size: .875rem; line-height: 1.75; max-width: 270px; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: 8px; margin-top: 24px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .875rem; transition: all .25s;
}
.soc-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.footer-col-title { font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-row i { color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: .875rem; }
.footer-contact-row span, .footer-contact-row a {
  font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.6;
}
.footer-contact-row a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--green); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(160deg, #071523 0%, #0d1f35 60%, #12294a 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 60% 60%, rgba(79,175,104,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title { color: #fff; margin: 12px 0 14px; }
.page-hero-desc  { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}
.breadcrumb a    { font-size: .875rem; color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .sep { font-size: .625rem; color: rgba(255,255,255,.25); }
.breadcrumb .cur { font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- CONTENT PAGES (legal) ---------- */
.legal-body { padding: 72px 0 96px; }
.legal-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 60px 72px;
}
.legal-card h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.legal-meta { font-size: .875rem; color: var(--text-l); padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.legal-meta span { display: flex; align-items: center; gap: 6px; }
.legal-meta i { color: var(--green); }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.legal-content p  { font-size: .9375rem; color: var(--text-m); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { font-size: .9375rem; color: var(--text-m); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-content strong { color: var(--navy); }
.legal-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- ABOUT SECTIONS ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px; background: #fff;
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow);
  text-align: center; min-width: 148px;
}
.about-img-badge .num { font-size: 2rem; font-weight: 900; color: var(--green); line-height: 1; }
.about-img-badge .lbl { font-size: .8125rem; color: var(--text-l); margin-top: 2px; }
.about-text p { font-size: 1rem; color: var(--text-m); line-height: 1.8; margin-top: 16px; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.vm-card {
  padding: 24px; border: 1.5px solid var(--border); border-radius: var(--radius);
  background: #fff; transition: all .25s;
}
.vm-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.vm-card h4 { font-size: .9375rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.vm-card h4 .ico { width: 26px; height: 26px; border-radius: 7px; background: var(--green-l); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.vm-card p { font-size: .875rem; color: var(--text-l); line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  padding: 36px 28px; text-align: center;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  transition: all .3s;
}
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-5px); }
.value-icon { font-size: 2.25rem; margin-bottom: 18px; }
.value-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-desc  { font-size: .875rem; color: var(--text-l); line-height: 1.7; }

/* -------- SCROLL ANIMATIONS -------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="left"].visible { transform: none; }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].visible { transform: none; }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal="scale"].visible { transform: none; }
[data-delay="100"] { transition-delay: .10s; }
[data-delay="200"] { transition-delay: .20s; }
[data-delay="300"] { transition-delay: .30s; }
[data-delay="400"] { transition-delay: .40s; }
[data-delay="500"] { transition-delay: .50s; }

/* -------- UTILITIES -------- */
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.gap-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* -------- MOBILE-FRIENDLY TOUCH & PERF -------- */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms on touch devices for better perf */
  .service-card:hover,
  .step-card:hover,
  .why-feature:hover,
  .value-card:hover,
  .vm-card:hover { transform: none; }

  /* Larger touch targets */
  .btn { min-height: 48px; }
  .btn-sm { min-height: 44px; }
  .navbar-toggle { padding: 12px; }
  .mobile-menu a { min-height: 48px; }
  .soc-btn { width: 42px; height: 42px; }
  .store-btn { min-height: 52px; }
}

/* Prevent horizontal overflow on mobile */
html, body { overflow-x: hidden; }
.hero, .partners-bar, .services-section, .why-section,
.how-section, .stats-band, .app-section, .cta-section,
.footer, .page-hero, .legal-body { overflow-x: hidden; }

/* -------- RESPONSIVE -------- */

/* ---- Tablet landscape & small desktop (≤1100px) ---- */
@media (max-width: 1100px) {
  .hero-grid   { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-desc   { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .hero-phone  { width: 220px; }
  .hero-card   { display: none; }
  .hero-stats  { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-row     { grid-template-columns: 1fr; gap: 40px; }
  .why-row.reverse { direction: ltr; }
  .why-visual  { max-width: 400px; margin: 0 auto; }
  .app-grid    { grid-template-columns: 1fr; text-align: center; }
  .app-visual  { order: 2; margin-top: 40px; }
  .app-phone-wrap { justify-content: center; }
  .app-phone   { width: 140px !important; }
  .app-phone.main { width: 170px !important; }
  .store-btns  { justify-content: center; }
  .cta-box-inner { flex-direction: column; gap: 36px; text-align: center; }
  .cta-desc    { margin-left: auto; margin-right: auto; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .stats-grid  { grid-template-columns: repeat(4, 1fr); }
  .stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.1); }
}

/* ---- Tablet portrait & large phones (≤768px) ---- */
@media (max-width: 768px) {
  .wrap, .wrap-sm, .wrap-xs { padding: 0 16px; }
  .section     { padding: 64px 0; }
  .section-sm  { padding: 48px 0; }
  .navbar-nav, .navbar-actions { display: none; }
  .navbar-toggle { display: flex; }

  /* Hero */
  .hero        { min-height: auto; padding: 100px 0 60px; }
  .hero-phone  { width: 180px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats  { flex-direction: row; flex-wrap: nowrap; gap: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
  .hero-stat   { flex: 1; min-width: 0; padding: 0 8px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-value { font-size: 1.25rem; }
  .hero-stat-label { font-size: .65rem; }

  /* Partners */
  .partners-bar { padding: 28px 0; }
  .partners-inner { flex-direction: column; gap: 16px; }
  .partner-divider { display: none; }
  .partners-logos { gap: 24px; justify-content: center; }
  .partners-logos img { height: 20px; }

  /* Services */
  .services-section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card  { padding: 24px 20px; }
  .service-icon  { width: 52px; height: 52px; font-size: 1.25rem; margin-bottom: 16px; }
  .section-head  { margin-bottom: 36px; }

  /* Why */
  .why-section { padding: 64px 0; }
  .why-visual  { max-width: 300px; }
  .why-visual-badge { display: none; }
  .why-features { gap: 12px; margin-top: 24px; }
  .why-feature  { padding: 16px; }
  .why-feature-ico { width: 38px; height: 38px; border-radius: 10px; }
  .why-row      { margin-bottom: 56px; }

  /* Steps */
  .how-section { padding: 64px 0; }
  .steps-row   { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .steps-row::before { display: none; }
  .step-card   { padding: 28px 20px; }
  .step-num    { width: 46px; height: 46px; font-size: 1.1rem; margin-bottom: 16px; }

  /* Stats */
  .stats-band  { padding: 48px 0; }
  .stats-grid  { grid-template-columns: repeat(4, 1fr); }
  .stat-item   { padding: 8px 6px; }
  .stat-num    { font-size: 1.25rem; }
  .stat-label  { font-size: .7rem; }
  .stat-today-badge { font-size: .55rem; padding: 2px 6px; }

  /* App Download */
  .app-section { padding: 64px 0; }
  .app-grid    { gap: 36px; }
  .app-phone   { width: 120px !important; border-radius: 20px; }
  .app-phone.main { width: 150px !important; border-radius: 22px; }
  .store-btns  { flex-direction: column; align-items: center; width: 100%; }
  .store-btn   { width: 100%; max-width: 280px; justify-content: center; padding: 14px 20px; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-box     { padding: 40px 24px; border-radius: var(--radius-lg); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer      { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .footer-brand { text-align: center; }
  .footer-tagline { max-width: 100%; margin: 0 auto; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer-bottom-links { justify-content: center; }

  /* About / Legal */
  .values-grid { grid-template-columns: 1fr; }
  .vm-grid     { grid-template-columns: 1fr; }
  .legal-card  { padding: 28px 20px; }

  /* Page Hero */
  .page-hero   { padding: 100px 0 52px; }
}

/* ---- Small phones (≤480px) ---- */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .wrap, .wrap-sm, .wrap-xs { padding: 0 14px; }

  .hero        { padding: 90px 0 48px; }
  .hero-phone  { width: 160px; }
  .hero-visual { margin-top: 28px; }
  .hero-stat-value { font-size: 1rem; }
  .hero-stat-label { font-size: .6rem; }
  .hero-stat   { padding: 0 4px; }

  .partners-logos { gap: 16px; }
  .partners-logos img { height: 18px; }

  .stats-grid  { grid-template-columns: repeat(4, 1fr); }
  .stat-num    { font-size: 1rem; }
  .stat-label  { font-size: .6rem; }
  .stat-today-badge { display: none; }

  .app-phone-wrap { gap: 10px; }
  .app-phone   { width: 100px !important; border-radius: 16px; }
  .app-phone.main { width: 130px !important; border-radius: 18px; }

  .why-visual  { max-width: 260px; }

  .cta-box     { padding: 32px 18px; }

  .mobile-menu { padding: 12px 14px 20px; }
  .mobile-menu a { padding: 14px 12px; font-size: 1rem; }
  .mobile-menu-cta .btn { padding: 14px; font-size: 1rem; }

  .footer-contact-row span,
  .footer-contact-row a { font-size: .8125rem; }
}

/* ---- Ultra-small (≤360px) ---- */
@media (max-width: 360px) {
  html { font-size: 14px; }
  .hero-phone { width: 140px; }
  .app-phone  { width: 85px !important; }
  .app-phone.main { width: 110px !important; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}
