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

:root {
  --navy: #1a3a6b;
  --navy-mid: #1f4a8a;
  --accent: #f07830;
  --accent-light: #fddbb8;
  --off-white: #f5f7fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --border: #dce3ed;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
}

/* ── Utilities ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section-alt {
  background: var(--off-white);
}
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: #b07820;
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Nav ── */
nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 2rem;
  max-width: 1120px;
  margin: 0 auto;
}
.nav-logo img {
  display: block;
  height: 160px;
  width: auto;
  padding: 16px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  background: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: #d96820;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(200, 137, 42, 0.08) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
h1 em {
  font-style: italic;
  color: var(--accent-light);
}
.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
}
.hero-stat p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-placeholder {
  aspect-ratio: 4/3;
  background: var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-light);
  border: 2px dashed var(--border);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── How it Works ── */
#how-it-works {
  background: var(--navy);
}
#how-it-works .section-title,
#how-it-works .section-sub,
#how-it-works .label {
  color: rgba(255, 255, 255, 0.9);
}
#how-it-works .label {
  color: var(--accent-light);
}
#how-it-works .section-sub {
  color: rgba(255, 255, 255, 0.55);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.step {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 137, 42, 0.35);
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-light);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.author-role {
  font-size: 0.8125rem;
  color: var(--text-light);
}
.stars {
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 2.5rem;
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}
.faq-question:hover {
  color: var(--navy);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-item.open .faq-answer {
  display: block;
}

/* ── Contact ── */
#contact {
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-light);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}
.contact-detail-text span {
  font-size: 0.875rem;
  color: var(--text-light);
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

/* ── Footer ── */
footer {
  background: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo-img {
  margin-bottom: -120px;
  margin-top: -120px;
}

footer p {
  font-size: 0.875rem;
  color: var(--text-light);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.25rem 0;
  list-style: none;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-placeholder {
    max-width: 480px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hero-stat-row {
    gap: 2rem;
  }
}
