/* ========== Base Styles ========== */

:root {
  --bg-dark: #031634;
  --bg-darker: #020c1c;
  --bg-light: #f4f7fb;
  --bg-lighter: #ffffff;
  --primary: #ff6b3d;
  --primary-dark: #e0582f;
  --text-main: #0c1222;
  --text-muted: #5d6474;
  --accent: #f2b632;
  --border-soft: #e0e6f0;
  --card-shadow: 0 14px 30px rgba(8, 15, 52, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* Utility */

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.section-accent {
  background-color: #ffece5;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ========== Header & Nav ========== */

.site-header {
  background-color: var(--bg-darker);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-brand span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: #dbe4ff;
  text-decoration: none;
  font-size: 0.93rem;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
}

/* Mobile Nav */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 64px;
    background-color: var(--bg-darker);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
}

/* ========== Buttons ========== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
    background-color 0.1s ease, color 0.1s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 107, 61, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.btn-outline-dark:hover {
  background-color: #f0f3fb;
}

.btn-full {
  width: 100%;
}

/* ========== Hero ========== */

.hero {
  background: radial-gradient(circle at top left, #274690, #031634 55%);
  color: #ffffff;
  padding: 5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw + 1.2rem, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  color: #d2ddff;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.82rem;
  color: #a9b5e9;
}

.hero-card {
  background-color: rgba(3, 11, 36, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero-card-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.88rem;
  color: #c3c9e6;
}

.hero-card-list li {
  margin-bottom: 0.4rem;
}

.hero-card-list li::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  display: inline-block;
  width: 1rem;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }
}

/* ========== Sections & Cards ========== */

.section-title {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  max-width: 36rem;
  margin: 0.5rem auto 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.8rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background-color: var(--bg-lighter);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-soft);
}

.card-small {
  padding: 1.2rem 1.4rem;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  background-color: rgba(255, 107, 61, 0.08);
  color: var(--primary);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* List with checkmarks */

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.list-check li {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.list-check span.icon {
  color: #1abf7f;
  margin-top: 0.15rem;
}

/* Steps */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.3rem;
}

.step {
  display: flex;
  gap: 1rem;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background-color: #e9efff;
  color: #1b3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step-body-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.8rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-soft);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(255, 107, 61, 0.22);
}

.pricing-badge {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background-color: #ffe0d3;
  color: #7b290f;
  font-weight: 600;
}

.pricing-name {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.pricing-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* FAQ */

.faq-item {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  margin-bottom: 0.8rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Forms */

.form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-soft);
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 700px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #3b4254;
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c5cee2;
  padding: 0.7rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 107, 61, 0.3);
  border-color: var(--primary);
}

/* ========== Footer ========== */

.site-footer {
  background-color: var(--bg-darker);
  color: #a8b0cc;
  padding: 2.5rem 0 1.8rem;
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) repeat(2, minmax(0, 1.4fr));
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #e0e4ff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  color: #a8b0cc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
