/* Global Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f7f4ff;
  background-color: #050313;
  line-height: 1.6;
}

/* Color Palette */
:root {
  --purple-dark: #070319;
  --purple: #3b2173;
  --purple-soft: #281447;
  --gold: #f7c74a;
  --gold-soft: #f6e2a6;
  --text-main: #f8f5ff;
  --text-muted: #c5bddf;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(5, 3, 25, 0.8);
}

/* Top Bar */
.top-bar {
  background: radial-gradient(circle at left, #f7c74a 0, #3b2173 55%, #050313 100%);
  color: #100818;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 8vw;
}

.top-bar-phone {
  color: #100818;
  text-decoration: none;
  font-weight: 600;
}

.top-bar-phone:hover {
  text-decoration: underline;
}

/* Header & Nav */
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 3, 25, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 8vw;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--gold), #f28f2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #1a0b32;
  box-shadow: 0 0 0 3px rgba(247, 199, 74, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}

.logo-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.nav-link.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-soft);
  color: #fff;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  padding: 3.5rem 8vw 3rem;
  background:
    radial-gradient(circle at top left, rgba(247, 199, 74, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(59, 33, 115, 0.9), #050313 65%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(5, 3, 19, 0.9), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: var(--gold);
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 3, 25, 0.75);
}

/* Hero Side Card */
.hero-card {
  background: linear-gradient(145deg, #120626, #241240);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.hero-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-card-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.8rem;
}

.hero-card-contact a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.hero-card-contact a:hover {
  text-decoration: underline;
}

.hero-card-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f28f2e);
  color: #1a0b32;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text-main);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Sections */
.section {
  padding: 3rem 8vw;
  background: radial-gradient(circle at top left, rgba(59, 33, 115, 0.4), #050313 65%);
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(247, 199, 74, 0.14), #070319 60%);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.info-card {
  background: linear-gradient(145deg, #120626, #241240);
  border-radius: 18px;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  background: rgba(10, 4, 35, 0.85);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: linear-gradient(145deg, #11051f, #221139);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border-soft);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a0b32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA Strip */
.cta-strip {
  padding: 2.3rem 8vw;
  background: linear-gradient(135deg, #f7c74a, #f28f2e);
  color: #1a0b32;
}

.cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.cta-text p {
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-strip .btn-primary {
  background: #1a0b32;
  color: var(--gold);
  box-shadow: none;
}

.cta-strip .btn-outline {
  border-color: rgba(26, 11, 50, 0.7);
  color: #1a0b32;
}

/* Footer */
.footer {
  padding: 1.8rem 8vw 2rem;
  background: #050313;
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: center;
}

.footer-name {
  font-weight: 600;
}

.footer-tagline {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-contact a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-meta {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .main-header {
    padding: 0.6rem 5vw;
  }

  .main-nav {
    position: absolute;
    right: 5vw;
    top: 56px;
    background: #070319;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .main-nav.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 2.4rem 5vw 2.4rem;
  }

  .section,
  .cta-strip,
  .footer {
    padding-inline: 5vw;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
