/* ============================================
   IGNIVOX — Mobile-Optimized FintechX Design
   Fully Responsive for Mobile Applications & Touch
   Headings: Bricolage Grotesque
   Body: Inter
   Code/Badges: JetBrains Mono
   ============================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #0F172A;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
}

code, .step-number, .stat-num, .compliance-item code, .section-kicker, .feature-tag, .console-status, .pill-text {
  font-family: 'JetBrains Mono', monospace;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a, button, input, select, textarea {
  touch-action: manipulation;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- COLOR TOKENS ---- */
:root {
  --blue-primary: #3B82F6;
  --blue-hover: #406AE4;
  --green-dark: #1B5E20;
  --green-mid: #059669;
  --green-bright: #10B981;
  --green-accent: #047857;
  --green-light: #A7F3D0;
  --green-bg: #ECFDF5;
  --mint: #D1FAE5;
  --hero-bg: #E6F4EA;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #ffffff;
  --black: #111827;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-kicker.light {
  color: var(--green-bright);
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--slate-900);
}

.green-text { color: var(--green-mid); }
.black-text { color: var(--black); }
.text-center { text-align: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.25s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover {
  color: var(--green-mid);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-height: 42px;
  background: var(--slate-900);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.nav-btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--hero-bg) 0%, #D1EED4 50%, #B8DDB8 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--green-bg);
  border: 1px solid var(--green-light);
  border-radius: 100px;
  align-self: flex-start;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
}

.pill-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-accent);
}

.hero-title {
  font-size: clamp(2.25rem, 5.2vw, 3.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--slate-900);
}

.hero-accent {
  color: var(--green-mid);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.7;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  min-height: 48px;
  background: var(--green-mid);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.35);
}

.hero-btn-primary:hover {
  background: var(--green-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.45);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  min-height: 48px;
  background: var(--white);
  color: var(--slate-800);
  border: 1.5px solid var(--slate-200);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

.hero-btn-secondary:hover {
  border-color: var(--slate-800);
  background: var(--slate-50);
}

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

.hero-badge {
  font-size: 0.78rem;
  color: var(--slate-700);
  font-weight: 600;
  padding: 6px 16px;
  background: rgba(255,255,255,0.75);
  border-radius: 100px;
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badge i {
  color: var(--green-mid);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  width: 90%;
  max-width: 460px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

.hero-payment-card {
  position: absolute;
  top: 20px;
  right: 0;
  width: 220px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.payment-card-inner {
  background: white;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-header-logo {
  height: 22px;
  width: auto;
  display: block;
}

.console-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-mid);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}

.payment-card-label {
  font-size: 0.72rem;
  color: var(--slate-500);
  font-weight: 500;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: background 0.2s;
}

.payment-method i {
  color: var(--slate-500);
  width: 14px;
}

.payment-method.active {
  background: var(--green-bg);
  color: var(--green-accent);
}

.payment-method.active i {
  color: var(--green-mid);
}

.method-check {
  margin-left: auto;
  color: var(--green-mid) !important;
  font-size: 0.85rem;
}

.payment-btn {
  background: var(--slate-900);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
}

.payment-btn:hover {
  background: var(--green-mid);
}

.payment-secured {
  font-size: 0.65rem;
  color: var(--slate-500);
  text-align: center;
}

/* ============================================
   ABOUT / WHO WE ARE
   ============================================ */
.about-section {
  padding: 100px 0;
  background: white;
}

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

.about-img-col {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.about-img-card {
  position: absolute;
  bottom: 24px;
  right: -24px;
  width: 190px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-img-card p {
  font-size: 0.68rem;
  color: var(--slate-500);
}

.about-card-methods {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-method {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-pay-btn {
  background: var(--slate-900);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-tag-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-mid);
}

.about-desc {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate-800);
}

.point-item i {
  color: var(--green-mid);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  min-height: 46px;
  background: var(--slate-900);
  color: white;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s;
  align-self: flex-start;
  margin-top: 8px;
}

.about-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ============================================
   PRODUCT SUITE / MARQUEE TICKER
   ============================================ */
.products-section {
  padding: 80px 0;
  background: var(--slate-50);
  overflow: hidden;
}

.products-section .section-title {
  margin-bottom: 40px;
}

.logos-ticker {
  width: 100%;
  overflow: hidden;
}

.logos-track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: ticker 22s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
}

.partner-logo-box {
  padding: 14px 32px;
  border: 1.5px solid var(--slate-200);
  border-radius: 100px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  height: 60px;
  min-width: 150px;
}

.partner-logo-box:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.partner-logo-img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  padding: 100px 0;
  background: white;
}

.features-section .section-title {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.feature-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-card.featured {
  background: var(--green-bg);
  border-color: var(--green-light);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-mid);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: auto;
  padding-top: 12px;
}

/* ============================================
   HOW WE WORK
   ============================================ */
.how-section {
  padding: 100px 0;
  background: var(--slate-50);
}

.how-section .section-title {
  margin-bottom: 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-mid);
  background: var(--green-bg);
  padding: 8px 16px;
  border-radius: 8px;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--slate-600);
  line-height: 1.7;
}

.how-tech-panel {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tech-panel-header {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-900);
  padding: 16px 20px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tech-panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stack-row i {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  font-size: 1rem;
}

.stack-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-900);
}

.stack-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 100px 0;
  background: white;
}

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

.team-img-col {
  position: relative;
}

.team-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.team-nav {
  position: absolute;
  bottom: -20px;
  right: 24px;
  display: flex;
  gap: 12px;
}

.team-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--slate-700);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.team-nav-btn:hover {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}

.team-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.75;
}

.team-stats {
  display: flex;
  gap: 32px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.team-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 1.85rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ============================================
   SECURITY & COMPLIANCE
   ============================================ */
.security-section {
  padding: 100px 0;
  background: var(--slate-50);
}

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

.security-desc {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin-top: 12px;
  margin-bottom: 24px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--slate-700);
}

.trust-list i {
  color: var(--green-mid);
}

.trust-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.trust-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.trust-badges {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge i {
  color: var(--green-mid);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: #091712;
  color: white;
}

.contact-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-bright);
}

.contact-btn {
  width: 100%;
  padding: 14px 28px;
  min-height: 48px;
  background: var(--green-bright);
  color: var(--slate-900);
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
}

.contact-btn:hover {
  background: white;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.contact-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: white;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
}

.map-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: grayscale(1) opacity(0.8);
}

.contact-compliance {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.compliance-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.compliance-item code {
  color: white;
  background: rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #050d0a;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.7);
}

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

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--green-bright);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--green-mid);
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--green-bright);
}

/* ============================================
   RESPONSIVE BREAKPOINTS (MOBILE & TABLET)
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.1rem, 6vw, 3.25rem);
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-right {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-visual-wrapper {
    justify-content: center;
  }

  .about-grid, .team-grid, .security-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 0;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-logo-img {
    height: 32px;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-100);
  }

  .nav-link::after {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-container {
    padding: 32px 16px;
  }

  .hero-payment-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 280px;
    margin-top: -40px;
    animation: none;
  }

  .about-section, .features-section, .how-section, .team-section, .security-section, .contact-section {
    padding: 60px 0;
  }

  .section-container {
    padding: 0 16px;
  }

  .about-img-card {
    right: 12px;
    bottom: 12px;
    width: 160px;
    padding: 12px;
  }

  .partner-logo-box {
    padding: 10px 24px;
    height: 50px;
    min-width: 130px;
  }

  .partner-logo-img {
    height: 26px;
  }

  .how-step {
    padding: 20px 16px;
    gap: 14px;
  }

  .step-number {
    font-size: 1rem;
    padding: 6px 12px;
  }

  .team-stats {
    gap: 20px;
    justify-content: space-between;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .contact-grid {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .contact-subtitle {
    margin-bottom: 32px;
  }

  .trust-badges {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 6px;
  }

  .badge {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .about-img-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .team-stats {
    flex-direction: column;
    gap: 16px;
  }
}