:root {
  --primary: #0B2340;
  --accent: #FF9F1C;
  --text: #1F2933;
  --muted: #6B7280;
  --bg: #F5F7FA;
  --border: #E5E7EB;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header & navigation */
header {
  background: var(--primary);
  color: #ffffff;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 600;
  letter-spacing: 0.03em;
}

nav a {
  color: #E5E7EB;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
}

nav a:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  border: none;
  color: #111827;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--primary);
}

/* Hero card */
.hero-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.hero-card ul {
  list-style: none;
  padding-left: 0;
  color: var(--muted);
}

.hero-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.1rem;
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section p {
  max-width: 800px;
  color: var(--muted);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  background: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-left: 1rem;
  }
}
/* Generic page layout */
.page {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem 3rem;
}

.page h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.intro {
  max-width: 800px;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.step-title {
  font-weight: 600;
  color: var(--primary);
}

.step p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* CTA */
.cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
/* Optional: narrower page variant (used for contact page) */
.page-narrow {
  max-width: 900px;
}

/* Contact form */
.contact-form {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.form-row {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--primary);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(11, 35, 64, 0.1);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
/* Centered single-page layout (thank you page) */
.center-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

/* Thank you card */
.thankyou-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.thankyou-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.thankyou-card p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.thankyou-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.thankyou-card a:hover {
  text-decoration: underline;
}
