:root {
  --bg-deep: #0b1220;
  --bg-mid: #142033;
  --bg-panel: rgba(18, 30, 48, 0.72);
  --ink: #f3f0e8;
  --muted: #a8b3c7;
  --accent: #e8a54b;
  --accent-2: #3ecfad;
  --line: rgba(243, 240, 232, 0.12);
  --danger: #ff6b6b;
  --ok: #3ecfad;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 4px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(232, 165, 75, 0.18), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(62, 207, 173, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0e1728 45%, #101a2c 100%);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, var(--accent), var(--accent-2), var(--accent));
  box-shadow: 0 0 0 3px rgba(232, 165, 75, 0.15);
  animation: spin-slow 18s linear infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0.9rem 1.35rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #1a1206;
}

.btn-primary:hover {
  background: #f0b862;
  color: #1a1206;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-small {
  background: var(--accent);
  color: #1a1206;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.55) 45%, rgba(11, 18, 32, 0.92) 100%),
    url("/assets/img/hero.svg") center/cover no-repeat,
    linear-gradient(135deg, #1a2a44, #0b1220);
  transform: scale(1.02);
  animation: hero-pan 22s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  inset: auto 10% 18% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 165, 75, 0.35), transparent 70%);
  filter: blur(10px);
  z-index: -1;
  animation: pulse 5s ease-in-out infinite;
}

.hero-content {
  padding: 7rem 0 4.5rem;
  max-width: 720px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 10vw, 7.2rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  margin: 0 0 1rem;
  animation: rise 0.9s ease both;
}

.hero h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  max-width: 28ch;
  animation: rise 0.9s ease 0.1s both;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 0 1.75rem;
  animation: rise 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s ease 0.3s both;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.6rem;
  font-weight: 400;
}

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

.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-row.is-visible {
  opacity: 1;
  transform: none;
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.service-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.coverage {
  position: relative;
}

.coverage-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.coverage-map {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  opacity: 0.92;
}

.coverage-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.coverage-points div strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.coverage-points div span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p {
  color: var(--muted);
}

.about-facts {
  display: grid;
  gap: 0.85rem;
}

.fact {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.fact dt {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-block h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
}

.contact-block a:hover {
  color: var(--accent);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.footer-legal,
.footer-heading {
  font-weight: 700;
  margin: 0.35rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.35rem 0;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-note {
  opacity: 0.8;
}

.policy-page {
  padding: 4rem 0 5rem;
}

.policy-page article {
  max-width: 760px;
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.policy-page .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
}

/* Payment page */
.pay-shell {
  min-height: 100vh;
  padding: 3rem 0 4rem;
}

.pay-card {
  width: min(640px, calc(100% - 2rem));
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.pay-card h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  font-weight: 400;
}

.pay-card .lead {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(8, 14, 24, 0.7);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(232, 165, 75, 0.45);
  outline-offset: 1px;
}

.amount-wrap {
  position: relative;
}

.amount-wrap::before {
  content: "$";
  position: absolute;
  left: 0.85rem;
  top: 2.15rem;
  color: var(--muted);
}

.amount-wrap input {
  padding-left: 1.6rem;
}

#payment-element {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 14, 24, 0.55);
}

.pay-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.pay-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.pay-status.error {
  color: var(--danger);
}

.pay-status.ok {
  color: var(--ok);
}

.pay-secure {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1rem;
}

.hidden {
  display: none !important;
}

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

@keyframes hero-pan {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .about-grid,
  .contact-wrap,
  .footer-grid,
  .coverage-points {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 5.5rem;
  }
}
