:root {
  --navy: #1C2E40;
  --orange: #FC822B;
  --aqua: #33C0EB;
  --bg: #f3f7fa;
  --text: #1a2430;
  --muted: #5c6975;
  --card: #ffffff;
  --border: #dbe7ee;
  --shadow: 0 10px 30px rgba(28, 46, 64, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.hero .note {
  margin-top: 10px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: var(--navy);
}

a:hover {
  opacity: 0.92;
}

.wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.topbar {
  background: var(--navy);
  color: #fff;
  padding: 14px 0;
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-main {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.logo-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.45px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover {
  opacity: 0.85;
}

.hero-grid > div:first-child {
  padding-right: 18px;
}

/* Hero */
.hero {
  background:
    linear-gradient(rgba(28, 46, 64, 0.56), rgba(28, 46, 64, 0.56)),
    url("hero.webp") center center / cover no-repeat;
  border-bottom: 1px solid var(--border);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: 610px;
  padding: 56px 0;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  color: #fff;
  max-width: 620px;
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 0 0 20px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
}

/* Generic headings */
h2,
h3 {
  color: var(--navy);
}

.page-hero {
  padding: 38px 0 26px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
}

.page-hero h1 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-card,
.content-block,
.feature {
  padding: 22px;
}

.form-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.form-card {
  max-width: 460px;
  justify-self: end;
}

.form-card .section-copy {
  margin-bottom: 18px;
}

/* Forms */
form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cddbe4;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(51, 192, 235, 0.22);
  border-color: var(--aqua);
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 46px 0;
}

.section-title {
  margin: 0 0 10px;
  font-size: 1.95rem;
  line-height: 1.15;
}

.section-copy {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 760px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature h3,
.content-block h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.feature p:last-child,
.content-block p:last-child {
  margin-bottom: 0;
}

/* Optional linked list blocks */
.list-links {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.list-links a {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.list-links a strong {
  display: block;
  margin-bottom: 4px;
}

/* CTA */
.cta {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 12px;
}

.cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
  max-width: 760px;
}

/* Footer */
footer {
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

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

  .hero-grid {
    min-height: auto;
    padding: 40px 0;
  }

  .topbar .wrap {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    gap: 12px;
  }

  .form-card {
    order: 2;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1100px, calc(100% - 22px));
  }

  .topbar {
    padding: 12px 0;
  }

  .logo-main {
    font-size: 0.98rem;
  }

  .logo-sub {
    font-size: 0.66rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .form-card,
  .content-block,
  .feature,
  .cta {
    padding: 18px;
  }
}