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

:root {
  --bg: #fff6ef;
  --bg-2: #fffaf6;
  --text: #1f1b16;
  --muted: #6f6054;
  --accent: #ff6b57;
  --accent-2: #ffb347;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(30, 20, 10, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Onest', system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 500px at 10% 0%, #ffe3d2 0%, transparent 60%),
    radial-gradient(900px 400px at 90% 10%, #ffe9c6 0%, transparent 60%),
    var(--bg);
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(300px 300px at 20% 20%, rgba(255, 163, 102, 0.25), transparent 70%),
    radial-gradient(380px 380px at 80% 30%, rgba(255, 114, 87, 0.22), transparent 70%),
    radial-gradient(400px 400px at 50% 90%, rgba(255, 205, 160, 0.3), transparent 70%);
  opacity: 0.7;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 246, 239, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Comfortaa', cursive;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
}

.logo-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff8656);
  color: white;
  box-shadow: 0 12px 30px rgba(255, 107, 87, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero {
  padding: 80px 0 50px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(32px, 4vw, 48px);
  margin: 16px 0;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  position: relative;
  isolation: isolate;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 107, 87, 0.18), rgba(255, 179, 71, 0.22));
  border: 1px solid rgba(255, 112, 87, 0.35);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(255, 107, 87, 0.15);
  overflow: hidden;
}

.badge::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0% 33%, rgba(42, 98, 208, 0.6) 33% 66%, rgba(227, 59, 59, 0.6) 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0.55;
  filter: saturate(0.85);
  animation: flagDrift 6s ease-in-out infinite;
}

.badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 45%, transparent 60%);
  opacity: 0.35;
  transform: translateX(-120%);
  animation: badgeSheen 5.5s ease-in-out infinite;
}

.badge-text {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.geo-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  position: relative;
  overflow: hidden;
  animation: floatCard 8s ease-in-out infinite;
}

.geo-text h3 {
  margin: 8px 0 6px;
  font-size: 22px;
}

.geo-label {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.map-wrap {
  position: relative;
  background: linear-gradient(135deg, #fff1e6, #fffdf9);
  border-radius: 18px;
  padding: 16px;
  overflow: hidden;
  min-height: 220px;
}

.map-embed {
  height: 280px;
  padding: 0;
}

.map-embed .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  filter: saturate(1.05) contrast(1.02);
}

.map-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: radial-gradient(400px 200px at 20% 20%, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0.6;
  mix-blend-mode: screen;
}

.geo-pulse {
  fill: #ff2b2b;
  stroke: #ff2b2b;
  filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.45));
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes badgeSheen {
  0% {
    transform: translateX(-120%);
  }
  45% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes flagDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: 'Comfortaa', cursive;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.seo {
  padding-top: 30px;
}

.seo-text {
  color: var(--muted);
  max-width: 860px;
  font-size: 16px;
  line-height: 1.6;
}

.chips-marquee {
  position: relative;
  overflow: hidden;
}

.chips-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.chips span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(255, 107, 87, 0.4);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
}

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

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.price-card h3 {
  margin: 0;
  font-size: 22px;
}

.price {
  font-size: 32px;
  margin: 0;
}

.price span {
  font-size: 14px;
  color: var(--muted);
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

.price-card.featured {
  border: 2px solid rgba(255, 107, 87, 0.4);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #fff1e9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.pay-row {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 16px;
}

.pay-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.crypto {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.app-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.steps-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.step-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 87, 0.2);
  font-weight: 600;
}

.faq details {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.cta {
  padding: 60px 0 80px;
}

.cta-inner {
  background: linear-gradient(135deg, #ff7a5c, #ffb347);
  color: white;
  border-radius: 26px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-support {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.footer-support a {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 860px) {
  .nav {
    display: flex;
    gap: 12px;
    font-size: 13px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-inner {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-inner .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chips-track {
    animation: none;
  }

  .badge::before,
  .badge::after,
  .geo-card {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
