@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

.geo-page {
  font-family: 'Inter', 'Outfit', sans-serif;
  color: #1e293b;
  background: #f7f5fa;
}

/* ── Hero ──────────────────────────────────── */
.geo-hero {
  position: relative;
  text-align: center;
  padding: 0;
  min-height: 720px;
  background: url('../../../assets/img/geo/geo-background.png') top center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-hero::before {
  content: '';
  position: absolute;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(15, 5, 55, 0.88) 0%,
    rgba(40, 18, 100, 0.82) 40%,
    rgba(67, 34, 170, 0.6) 70%,
    rgba(247, 245, 250, 1) 100%
  ) !important;
  z-index: 1;
}

/* Animated glow orbs */
.geo-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
  animation: geoOrbFloat 8s ease-in-out infinite;
}

.geo-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.geo-hero-orb-2 {
  width: 350px;
  height: 350px;
  background: #d946ef;
  bottom: -80px;
  right: -80px;
  animation-delay: 3s;
}

.geo-hero-orb-3 {
  width: 250px;
  height: 250px;
  background: #3b82f6;
  top: 40%;
  left: 60%;
  animation-delay: 5s;
}

@keyframes geoOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Floating particles */
.geo-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.geo-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #c4b5fd;
  border-radius: 50%;
  opacity: 0;
  animation: geoParticleUp 6s linear infinite;
}

@keyframes geoParticleUp {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.7; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-600px) scale(1.2); }
}

.geo-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 850px;
  margin: 0 auto;
  padding: 100px 20px 90px;
}

.geo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.geo-hero-badge i { color: #a78bfa; }

.geo-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e2d5ff 40%, #d8b4fe 60%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.geo-hero h1 em {
  font-style: normal;
  position: relative;
  background: linear-gradient(135deg, #f0abfc, #c084fc, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.geo-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d946ef, #818cf8);
  border-radius: 2px;
  opacity: 0.6;
}

.geo-hero-sub {
  font-size: 18px;
  color: rgba(226, 232, 240, 0.85);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 22px;
  font-weight: 400;
}

.geo-hero-sub strong {
  color: #e9d5ff;
  font-weight: 600;
}

/* Search-bar style CTA */
.geo-hero-search {
  max-width: 580px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.geo-hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 16px 24px;
  font-size: 16px;
  outline: none;
  color: #333;
  font-family: inherit;
}

.geo-hero-search input::placeholder { color: #94a3b8; }

.geo-hero-search a,
.geo-hero-search button {
  background: linear-gradient(135deg, #6639ff, #d946ef);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.geo-hero-search a:hover,
.geo-hero-search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 57, 255, 0.4);
  color: #fff;
  text-decoration: none;
}

.geo-hero-note {
  font-size: 13px;
  color: rgba(196, 181, 253, 0.7);
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.geo-hero-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.geo-hero-note i { font-size: 11px; }

/* Platform logo strip */
.geo-hero-platforms {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.geo-hero-plat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.geo-hero-plat:hover { color: #fff; }

.geo-hero-plat img {
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.geo-hero-plat:hover img { opacity: 1; }

/* Reusable CTA button */
.geo-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6639ff, #d946ef);
  color: #fff;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(102, 57, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 22px;
}

.geo-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 57, 255, 0.45);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 700px) {
  .geo-hero h1 { font-size: 36px; }
  .geo-hero-sub { font-size: 16px; }
  .geo-hero-search { flex-direction: column; border-radius: 16px; }
  .geo-hero-search input { text-align: center; }
  .geo-hero-search a { width: 100%; justify-content: center; border-radius: 12px; }
  .geo-hero-platforms { gap: 16px; }
}

/* ── Section styling ──────────────────────── */
.geo-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
}

.geo-section-alt { background: #fff; }

.geo-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 12px;
  line-height: 1.2;
}

.geo-section-title span { color: #6c3aed; }

.geo-section-subtitle {
  font-size: 17px;
  color: #64748b;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 0 40px;
}

.geo-section.centered { text-align: center; }
.geo-section.centered .geo-section-subtitle { margin: 0 auto 40px; }

/* ── Cards grid ───────────────────────────── */
.geo-cards { display: grid; gap: 24px; }
.geo-cards-2 { grid-template-columns: repeat(2, 1fr); }
.geo-cards-3 { grid-template-columns: repeat(3, 1fr); }
.geo-cards-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .geo-cards-3,
  .geo-cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .geo-cards-2,
  .geo-cards-3,
  .geo-cards-4 { grid-template-columns: 1fr; }
}

.geo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.geo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.geo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.geo-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.geo-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── Stat cards ───────────────────────────── */
.geo-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.geo-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6c3aed, #d946ef);
}

.geo-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #6c3aed;
  margin: 0 0 8px;
}

.geo-stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

/* ── Feature list ─────────────────────────── */
.geo-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.geo-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
  line-height: 1.6;
}

.geo-feature-list li:last-child { border-bottom: none; }

.geo-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #ede9fe;
  color: #6c3aed;
}

/* ── Check list ───────────────────────────── */
.geo-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.geo-check-list.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 600px) {
  .geo-check-list.cols-2 { grid-template-columns: 1fr; }
}

.geo-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  background: #f0fdf4;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid #d1fae5;
}

.geo-check-list li i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── Quote blocks ─────────────────────────── */
.geo-quote-block {
  background: linear-gradient(135deg, #faf5ff, #ede9fe);
  border-left: 4px solid #6c3aed;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 30px 0;
  font-size: 16px;
  color: #4c1d95;
  line-height: 1.7;
  font-weight: 500;
}

/* ── Platform badges ──────────────────────── */
.geo-platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 30px 0;
}

.geo-platform-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.geo-platform-badge img { height: 20px; }

/* ── FAQ Accordion ────────────────────────── */
.geo-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}

.geo-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s;
}

.geo-faq-q:hover { background: #faf5ff; }

.geo-faq-q i {
  color: #6c3aed;
  transition: transform 0.3s;
  font-size: 14px;
}

.geo-faq-q.active i { transform: rotate(180deg); }

.geo-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
}

.geo-faq-a.open {
  max-height: 2000px;
  padding: 0 24px 24px;
}

.geo-faq-a ul {
  padding-left: 20px;
  margin: 10px 0;
}

.geo-faq-a li { margin-bottom: 6px; }

/* ── Numbered steps ───────────────────────── */
.geo-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.geo-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6c3aed, #d946ef);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
}

.geo-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
}

.geo-step p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA Banner ───────────────────────────── */
.geo-cta-banner {
  background: linear-gradient(135deg, #4c1d95, #7c3aed);
  border-radius: 24px;
  padding: 50px 40px;
  color: #fff;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 70px;
}

.geo-cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
}

.geo-cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.geo-cta-banner .geo-hero-cta {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.geo-cta-banner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.geo-cta-banner li {
  font-size: 15px;
  opacity: 0.9;
}

.geo-cta-banner li::before {
  content: '✓ ';
  color: #a5f3fc;
  font-weight: 700;
}

/* ── Signals grid ─────────────────────────── */
.geo-signal-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.geo-signal-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.geo-signal-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.geo-signal-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Who Should ───────────────────────────── */
.geo-who-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.geo-who-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.geo-who-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.geo-who-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Advantage list ───────────────────────── */
.geo-advantage-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.geo-advantage-item .geo-card-icon {
  margin: 0;
  flex-shrink: 0;
}

.geo-advantage-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.geo-advantage-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── Animations ───────────────────────────── */
.geo-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.geo-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}