﻿
:root {
  --green:        #00573F;
  --green-light:  #D9E8E2;
  --green-bright: #3DBE7A;
  --forest:       #003D2D;
  --ivory:        #F7F8F3;
  --warm-bg:      #F5F5F7;
  --mist:         #E5E5EA;
  --stone:        #6B6B6B;
  --white:        #FFFFFF;
  --body-text:    #1D1D1F;
  --hero-dark:    #0B1620;
  --border:       #E5E5EA;
  --font:         'Poppins', sans-serif;
  --r-sm: 8px; --r-md: 12px; --r-lg: 14px; --r-xl: 18px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-snap-type: y proximity;
}
body { font-family: var(--font); background: var(--white); color: var(--body-text); overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* ── TICKER ── */
.ticker-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 34px; background: #0a1a12;
  border-bottom: 1px solid rgba(0,87,63,0.35);
  display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px;
  padding: 0 16px; height: 100%;
  border-right: 1px solid rgba(0,87,63,0.4);
  font-size: 9px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap;
}
.ticker-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #00c853; box-shadow: 0 0 6px #00c853; animation: tickBlink 1.8s infinite; }
@keyframes tickBlink { 0%,100%{opacity:1} 50%{opacity:.35} }
.ticker-scroll {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}
.ticker-track { display: flex; animation: tickerScroll 55s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.tick-item { display: inline-flex; align-items: center; gap: 7px; padding: 0 22px; height: 34px; border-right: 1px solid rgba(255,255,255,0.05); white-space: nowrap; }
.tick-name  { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.55); }
.tick-price { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.88); }
.tick-up    { font-size: 9px; font-weight: 600; color: #00c853; }
.tick-dn    { font-size: 9px; font-weight: 600; color: #ff5252; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── NAV ── */
nav {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 100;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 26px; max-width: 170px; display: block; }

.nav-links {
  display: flex; align-items: center; gap: 22px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a { font-size: 13px; font-weight: 500; color: #000000; text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-links li.active > a {
  color: var(--green); font-weight: 600;
  border-bottom: 2px solid var(--green); padding-bottom: 2px;
}

/* Dropdown */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item-dropdown > a::after { content: ''; display: inline-block; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.nav-item-dropdown:hover > a::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255,255,255,0.98); border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px; box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  padding: 8px; min-width: 160px; list-style: none;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(12px); z-index: 999;
}
.nav-item-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown li a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 13px; font-weight: 400; color: var(--stone); transition: background .15s, color .15s; white-space: nowrap; }
.nav-dropdown li a:hover { background: var(--green-light); color: var(--green); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn-nav-ghost { font-size: 14px; font-weight: 500; color: #000000; background: transparent; border: 1px solid #D2D2D7; padding: 7px 16px; border-radius: 999px; cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-nav-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-nav-primary { font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--white); background: var(--green); border: none; padding: 8px 16px; border-radius: 999px; cursor: pointer; text-decoration: none; transition: background .2s, box-shadow .2s; }
.btn-nav-primary:hover { background: var(--green-mid); box-shadow: 0 4px 16px rgba(0,87,63,.3); }

/* ── PAGE ── */
.page-wrapper { padding-top: 0; }

/* ══════════════════════════════
   HERO — dark navy, centered
══════════════════════════════ */
.glob-hero {
  background: var(--hero-dark);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 152px 64px 72px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  scroll-snap-align: start;
}
.glob-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.80;
  z-index: 0;
  pointer-events: none;
}

/* subtle radial glow */
.glob-hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,87,63,0.18) 0%, transparent 70%);
  pointer-events: none;
}
/* dot grid */
.glob-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.glob-hero-inner { position: relative; z-index: 1; max-width: 800px; }

.glob-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(61,190,122,0.4); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 32px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  background: rgba(61,190,122,0.06);
}
.glob-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 8px var(--green-bright); animation: glow 2s infinite; }
@keyframes glow { 0%,100%{opacity:1} 50%{opacity:.4} }

.glob-hero-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.65), 0 1px 6px rgba(0,0,0,0.4);
  font-size: clamp(38px, 5vw, 65px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; color: #FFFFFF;
  margin-bottom: 22px;
}

.glob-hero-sub {
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,0.5); line-height: 1.8;
  max-width: 560px; margin: 0 auto 56px;
}

/* Stats */
.glob-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 56px;
}
.glob-stat { text-align: center; }
.glob-stat-num {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  color: #FFFFFF; line-height: 1;
  letter-spacing: -1px;
}
.glob-stat-lbl {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-top: 6px; white-space: nowrap;
}
.glob-stat-div {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.1);
  align-self: center;
}

/* ══════════════════════════════
   MAIN CONTENT AREA
   Two-column: left content + sticky form
══════════════════════════════ */
.glob-body {
  scroll-snap-align: start;
  background: var(--warm-bg);
  padding: 0 64px 72px;
}

.glob-body-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  padding-top: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

/* ── LEFT COLUMN ── */
.glob-left {}

/* What's coming */
.glob-section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1.2px; color: var(--body-text);
  margin-bottom: 8px;
}
.glob-section-sub {
  font-size: 16px; font-weight: 400;
  color: var(--stone); line-height: 1.8;
  margin-bottom: 28px; max-width: 520px;
}

/* H3 standard */
h3, .h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; line-height: 1.15; letter-spacing: -0.6px; color: var(--body-text); }

/* Feature cards 2×2 */
.glob-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 52px;
}
.glob-feat-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl);
  padding: 24px 22px 26px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.glob-feat-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: rgba(0,87,63,0.18);
}
.glob-feat-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.glob-feat-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.glob-feat-title { font-size: 14px; font-weight: 700; color: var(--body-text); margin-bottom: 7px; }
.glob-feat-desc { font-size: 13px; font-weight: 400; color: var(--stone); line-height: 1.65; }

/* Countries grid */
.glob-countries-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800; letter-spacing: -0.6px;
  color: var(--body-text); margin-bottom: 20px;
}
.glob-country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.glob-country-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  text-decoration: none;
}
.glob-country-card:hover {
  border-color: rgba(0,87,63,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transform: translateY(-1px);
}
.glob-country-code {
  font-size: 11px; font-weight: 700;
  color: var(--stone); letter-spacing: 0.5px;
  flex-shrink: 0; min-width: 24px;
}
.glob-country-flag {
  width: 40px; height: 27px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -ms-interpolation-mode: bicubic;
}
.glob-country-info { flex: 1; min-width: 0; }
.glob-country-name { font-size: 13px; font-weight: 600; color: var(--body-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.glob-country-count { font-size: 11px; color: var(--stone); font-weight: 400; margin-top: 1px; }
.glob-country-arrow { color: var(--stone); font-size: 14px; flex-shrink: 0; transition: transform .18s, color .18s; }
.glob-country-card:hover .glob-country-arrow { transform: translateX(3px); color: var(--green); }

/* ── RIGHT COLUMN — Sticky Form ── */
.glob-form-wrap {
  position: sticky;
  top: 110px;
}
.glob-form-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.glob-form-title {
  font-size: 18px; font-weight: 700;
  color: var(--body-text); text-align: center;
  margin-bottom: 5px;
}
.glob-form-sub {
  font-size: 13px; color: var(--stone);
  text-align: center; margin-bottom: 24px;
}
.form-field { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--body-text); margin-bottom: 6px;
}
.form-label .req { color: #C0392B; margin-left: 1px; }
.form-input {
  width: 100%; font-family: var(--font); font-size: 13px;
  font-weight: 400; color: var(--body-text);
  background: #EEF1F6; border: 1.5px solid transparent;
  border-radius: var(--r-md); padding: 11px 14px;
  outline: none; transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus { border-color: var(--green); background: var(--white); }
.form-input::placeholder { color: rgba(107,107,107,0.5); }

/* Phone row */
.phone-row { display: flex; gap: 8px; }
.phone-country {
  display: flex; align-items: center; gap: 5px;
  background: #EEF1F6; border: 1.5px solid transparent;
  border-radius: var(--r-md); padding: 11px 10px;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  color: var(--body-text); cursor: pointer; white-space: nowrap;
  flex-shrink: 0; outline: none; transition: border-color .2s;
}
.phone-country:focus { border-color: var(--green); }
.phone-country svg { width: 12px; height: 12px; stroke: var(--stone); }
.phone-input { flex: 1; }

/* Select styling */
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Divider */
.form-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 20px 0; }

/* Submit */
.btn-submit {
  width: 100%; font-family: var(--font); font-size: 14px; font-weight: 700;
  color: var(--white); background: var(--body-text);
  border: none; padding: 14px; border-radius: var(--r-md);
  cursor: pointer; letter-spacing: 0.2px;
  transition: background .2s, box-shadow .2s;
  margin-top: 6px;
}
.btn-submit:hover { background: var(--green); box-shadow: 0 6px 20px rgba(0,87,63,0.35); }

/* ── FOOTER ── */
footer { background: #141414; padding: 64px 72px 36px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); max-width: 1440px; margin: 0 auto; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-brand-badges { display: flex; gap: 8px; margin-top: 20px; }
.fbadge { font-size: 10px; font-weight: 500; color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.10); padding: 4px 10px; border-radius: 999px; }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,.50); text-decoration: none; transition: color .15s; }
.footer-col li a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; max-width: 1440px; margin: 0 auto; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.20); }
.footer-legal-links { display: flex; gap: 22px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,.20); text-decoration: none; transition: color .15s; }
.footer-legal-links a:hover { color: rgba(255,255,255,.50); }
.footer-logo-wrap { display: flex; align-items: center; margin-bottom: 14px; text-decoration: none; }
.footer-logo-wrap img { height: 26px; display: block; filter: brightness(0) invert(1); }

/* ── TABLET NAV ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  nav:not(.nav-scrolled) .nav-mobile-toggle { color: rgba(255,255,255,0.9); }
  nav.nav-scrolled .nav-mobile-toggle { color: #1D1D1F; }
  .nav-mobile-toggle { color: #1D1D1F; }
}

/* Responsive */
@media (max-width: 1100px) {
  .glob-body { scroll-snap-align: start; padding: 0 40px 60px; }
  .glob-body-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Push form below content — it will sit just above the footer */
  .glob-left { order: 1; }
  .glob-form-wrap { position: static; order: 2; }
  .glob-feature-grid { grid-template-columns: 1fr 1fr; }
  .glob-country-grid { grid-template-columns: 1fr 1fr; }
  .glob-stats { gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .glob-hero { padding: 110px 24px 56px; }
  .glob-stats { gap: 28px; }
  .glob-body {
  scroll-snap-align: start; padding: 0 24px 48px; }
  .glob-feature-grid { grid-template-columns: 1fr; }
  .glob-country-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}




nav.nav-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
nav:not(.nav-scrolled) .nav-links a { color: rgba(255,255,255,0.90); text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
nav:not(.nav-scrolled) .nav-links a:hover { color: #fff; }
nav:not(.nav-scrolled) .btn-nav-ghost { color: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
nav:not(.nav-scrolled) .btn-nav-ghost:hover { border-color: rgba(255,255,255,0.70); color: #fff; }
/* ══ MOBILE NAV ══ */
@media (max-width: 768px) {
  nav { height: 52px; padding: 0 16px; }
  .nav-links { display: none; }
  .btn-nav-ghost { display: none; }
  .btn-nav-primary, .btn-reg-free { font-size: 12px; padding: 10px 14px; min-height: 44px; white-space: nowrap; }
  .nav-cta { gap: 8px; }
  /* Form inputs — increase touch target */
  .form-input { padding: 13px 14px; min-height: 44px; }
  .phone-country { padding: 13px 10px; min-height: 44px; }
}

/* Stats wrap before overflow at 360-479px — hide dividers when wrapped */
@media (max-width: 520px) {
  .glob-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .glob-stat-div { display: none; }
}

@media (max-width: 480px) {
  .glob-hero { padding: 110px 20px 56px; min-height: 100svh; }
  .glob-hero-title { font-size: clamp(28px, 7vw, 40px); }
  .glob-hero-sub { font-size: 14px; }
  .glob-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .glob-stat-div { display: none; }
  .glob-body { scroll-snap-align: start; padding: 0 20px 40px; }
  .glob-feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .glob-country-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .glob-section { padding: 40px 20px; }
  .glob-footer { padding: 36px 20px 24px; }
  .glob-footer-top { grid-template-columns: 1fr; gap: 24px; }
  /* Fix actual footer element — was dead .glob-footer-top class */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-wrap: wrap; gap: 8px; justify-content: center; }
}

/* Country grid — too tight at 320px in 2-col */
@media (max-width: 360px) {
  .glob-country-grid { grid-template-columns: 1fr; }
}
