/* Base reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0c10;
  color: #f4f4f6;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER & NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* Logo image */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  display: block;
}

/* Nav links */
.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: #d7d9e0;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: #f4c76a;
  color: #ffffff;
}

/* HERO */
.hero {
  background: radial-gradient(circle at top, #202332 0, #0b0c10 60%);
  padding: 4.5rem 0 3.5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 560px;
}

.hero-actions {
  margin: 1.75rem 0 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #b2b5c3;
}

.hero-card {
  background: rgba(16, 18, 28, 0.9);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.hero-card li::before {
  content: "•";
  color: #f4c76a;
  margin-right: 0.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    transform 0.08s ease;
}

.btn.primary {
  background: #f4c76a;
  color: #111218;
  border-color: #f4c76a;
}

.btn.primary:hover {
  background: #ffd88d;
  border-color: #ffd88d;
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: #f4c76a;
  border-color: rgba(244, 199, 106, 0.7);
}

.btn.ghost:hover {
  background: rgba(244, 199, 106, 0.08);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #11121a;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  color: #b2b5c3;
  font-size: 0.98rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #171823;
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-alt .card {
  background: #151622;
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.price-tag {
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0.4rem 0 0.8rem;
  color: #f4c76a;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.5rem;
  font-size: 0.94rem;
}

.card-list li {
  margin-bottom: 0.35rem;
  color: #d4d6e0;
}

.card-list li::before {
  content: "•";
  color: #888ba0;
  margin-right: 0.4rem;
}

.small-note {
  font-size: 0.82rem;
  color: #a3a6b5;
  margin-top: 0.6rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: #171823;
  border-radius: 12px;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f4c76a;
  color: #111218;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

/* Two-column layouts */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

/* Team */
.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.team-list li {
  margin-bottom: 1rem;
}

.muted {
  display: block;
  font-size: 0.86rem;
  color: #a3a6b5;
}

/* Forms */
.form-card {
  background: #171823;
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #2a2c3a;
  background: #10111a;
  color: #f4f4f6;
  font: inherit;
}

input[type="file"] {
  padding: 0.3rem 0.2rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid #f4c76a;
  border-color: #f4c76a;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.checkbox-group,
.radio-group {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.checkbox-group label,
.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Social list */
.social-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
}

.social-list li {
  margin-bottom: 0.25rem;
}

.social-list a {
  color: #f4c76a;
  text-decoration: none;
  font-size: 0.95rem;
}

.social-list a:hover {
  text-decoration: underline;
}

/* Quotes */
.quote {
  font-style: italic;
  color: #e2e3ee;
}

.quote-author {
  font-size: 0.9rem;
  color: #b2b5c3;
  margin-top: 0.6rem;
}

/* Section note */
.section-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #c5c7d4;
}

/* Footer */
.site-footer {
  background: #090a0e;
  padding: 1.5rem 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #a3a6b5;
}

/* Responsive tweaks */
@media (max-width: 800px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 500px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
