:root {
  --ink: #17324d;
  --muted: #5d6f82;
  --brand: #0b6f8f;
  --brand-dark: #074c63;
  --accent: #d79c3f;
  --accent-dark: #b67e22;
  --paper: #ffffff;
  --soft: #f2f7f9;
  --soft-2: #eaf2f5;
  --line: #dbe7ec;
  --shadow: 0 24px 70px rgba(23, 50, 77, 0.14);
  --shadow-sm: 0 14px 38px rgba(23, 50, 77, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --maxw: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, Helvetica, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(11, 111, 143, 0.10), transparent 36rem),
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 40%, #f4f8fa 100%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

.container {
  width: min(var(--maxw), calc(100% - 36px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(219, 231, 236, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px rgba(11, 111, 143, 0.25);
  font-weight: 800;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--brand-dark);
  background: var(--soft);
}

.nav-links .button {
  margin-left: 6px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 36px rgba(11, 111, 143, 0.25);
}

.button-accent {
  color: #2c1d00;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 36px rgba(215, 156, 63, 0.3);
}

.button-secondary {
  color: var(--brand-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.button-ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* Generic section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}

section {
  padding: 72px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

/* Hero */
.hero {
  padding: 84px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  margin-bottom: 28px;
  max-width: 620px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.intro {
  color: var(--muted);
  max-width: 640px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  max-width: 230px;
}
.hero-badge strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.4rem;
}
.hero-badge span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 64px 0 12px;
}
.page-hero .breadcrumb {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  max-width: 820px;
}
.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 0;
}

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.stat strong {
  display: block;
  font-size: 1.9rem;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.card .icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card h3 {
  color: var(--brand-dark);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.97rem;
}

/* Split image + text */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.split-body h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.split-body p {
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 50%;
  background: var(--brand);
  font-weight: 900;
  font-size: 0.85rem;
}

/* Feature (dark) */
.feature {
  border-radius: 34px;
  background: linear-gradient(135deg, var(--brand-dark), #123a58);
  color: #fff;
  margin: 0 0 0 0;
}
.feature .eyebrow,
.feature .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}
.feature .section-heading h2 { color: #fff; }
.feature .eyebrow::before { background: var(--accent); }

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}
.quote-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
}
blockquote {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.support-list li {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}
.support-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}
.support-list span { color: rgba(255, 255, 255, 0.8); }

/* CTA band */
.cta-band {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 520px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: start;
}
.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.field .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: #fdfefe;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(11, 111, 143, 0.18);
  border-color: var(--brand);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.consent input { margin-top: 4px; }
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.info-list li strong {
  display: block;
  color: var(--brand-dark);
}
.info-list li span {
  color: var(--muted);
  font-size: 0.95rem;
}

.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-weight: 600;
}
.alert-success {
  background: #e6f6ec;
  color: #1d6b3a;
  border: 1px solid #b8e3c6;
}
.alert-error {
  background: #fbe9e7;
  color: #a4291b;
  border: 1px solid #f1c0ba;
}

/* Legal / content pages */
.prose {
  max-width: 820px;
}
.prose h2 {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 34px 0 12px;
}
.prose h3 {
  font-size: 1.15rem;
  margin: 22px 0 8px;
  color: var(--brand-dark);
}
.prose p, .prose li {
  color: var(--muted);
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.legal-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}
.legal-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}
.legal-item strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: #0c2740;
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 54px 0 36px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer a:hover { color: #fff; }
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  max-width: 320px;
}
.footer-legal {
  font-size: 0.86rem;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .feature-panel,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
  }
  .nav-links.open { display: flex; }
  .nav-links .button { margin: 6px 0 0; }
  section { padding: 52px 0; }
  .stats,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .support-list,
  .legal-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cta-band,
  .feature { border-radius: 22px; }
  .cta-band { padding: 32px; }
  .hero-badge { position: static; margin-top: 14px; max-width: none; }
}
