:root {
  --green-deep: #0c2a1c;
  --green: #16402b;
  --green-soft: #1f5439;
  --gold: #d9a24e;
  --gold-light: #e9c078;
  --cream: #f4ede0;
  --text-muted: #b7c3ba;
  --bg: #050a07;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, #0f2c1e 0%, transparent 60%),
    linear-gradient(180deg, #061109 0%, #030704 100%);
  color: var(--cream);
  height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.bg-glow--one {
  width: 480px;
  height: 480px;
  background: #1f5439;
  top: -140px;
  left: -120px;
}

.bg-glow--two {
  width: 420px;
  height: 420px;
  background: var(--gold);
  bottom: -160px;
  right: -120px;
  opacity: 0.18;
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 100vh;
  padding: clamp(12px, 3vh, 28px) 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card {
  width: 100%;
  background: linear-gradient(160deg, rgba(22, 64, 43, 0.55) 0%, rgba(6, 17, 9, 0.65) 100%);
  border: 1px solid rgba(217, 162, 78, 0.22);
  border-radius: 24px;
  padding: clamp(24px, 4vh, 40px) clamp(24px, 4vw, 40px);
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(10px, 2vh, 20px);
}

.logo {
  width: clamp(260px, 42vw, 380px);
  max-width: 88%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(217, 162, 78, 0.12);
  border: 1px solid rgba(217, 162, 78, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 2vh, 20px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(217, 162, 78, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 162, 78, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(217, 162, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 162, 78, 0); }
}

.title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #fff;
}

.subtitle {
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 470px;
  margin: 0 auto;
}

.subtitle strong {
  color: var(--gold-light);
  font-weight: 600;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: clamp(16px, 3vh, 30px) 0 clamp(16px, 3vh, 28px);
  color: var(--gold);
}

.tagline .line {
  height: 1px;
  flex: 1;
  max-width: 60px;
  background: linear-gradient(90deg, transparent, rgba(217, 162, 78, 0.7));
}

.tagline .line:last-child {
  background: linear-gradient(90deg, rgba(217, 162, 78, 0.7), transparent);
}

.tagline-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.85rem, 2.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  white-space: nowrap;
}

.contact {
  display: grid;
  gap: clamp(8px, 1.5vh, 14px);
  margin: 0 auto clamp(18px, 3vh, 30px);
  max-width: 440px;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(10px, 1.6vh, 14px) 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 162, 78, 0.5);
  background: rgba(217, 162, 78, 0.08);
}

.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(217, 162, 78, 0.15);
  color: var(--gold);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
  word-break: break-word;
}

.cta {
  display: inline-block;
  padding: clamp(12px, 1.8vh, 15px) 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a2e1f;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(217, 162, 78, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(217, 162, 78, 0.45);
}

.footer {
  margin-top: clamp(14px, 2.5vh, 24px);
  font-size: 0.78rem;
  color: rgba(183, 195, 186, 0.6);
  text-align: center;
}

@media (max-width: 520px) {
  .card {
    padding: 36px 22px 34px;
    border-radius: 22px;
  }
  .planes .line {
    width: 44px;
  }
  .contact-value {
    font-size: 0.9rem;
  }
}
