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

:root {
  --bg: #0D0D0E;
  --gold: #C9AB70;
  --silver: #D8DADE;
  --off-white: #F7F8FA;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--silver);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, #1c1c1e 0%, #0D0D0E 55%, #050506 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 560px;
  padding: 2.3rem 1.5rem 2.5rem;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.subtitle {
  margin: -50px 0 0;
  color: var(--off-white);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
}

.subsubtitle {
  margin: 0;
  color: #9a9ca2;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.cta {
  margin-top: 2rem;
}

.call-text {
  margin: 0.9rem 0 0;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-email {
  background: #0d6efd;
  color: #ffffff;
}

.btn-email svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.divider {
  border: none;
  border-top: 1px solid var(--gold);
  width: 220px;
  max-width: 60%;
  margin: 2rem auto;
  opacity: 0.7;
}

.services,
.selling-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: center;
}

.services li,
.selling-points li {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.35;
}


footer {
  margin-top: 2.75rem;
}

footer p {
  margin: 0;
  color: #6f6f72;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
