:root {
  --bg: #f8fafc;
  --bg-alt: #eef4f8;
  --text: #1f2937;
  --muted: #667085;
  --line: #d7e0ea;
  --card: #ffffff;
  --primary: #0f4c81;
  --primary-dark: #0b3b64;
  --accent: #dbeafe;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fb 100%);
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215, 224, 234, 0.7);
}

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

.brand {
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.hero {
  padding: 64px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  object-fit: cover;
  min-height: 420px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.section-head.narrow {
  max-width: 860px;
}

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

.card,
.feature,
.contact-card,
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.feature {
  padding: 24px;
}

.card h3,
.feature h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

.card p,
.feature p {
  margin: 0;
  color: var(--muted);
}

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

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.contact-copy p {
  margin: 0 0 18px;
  color: var(--muted);
}

.contact-card {
  padding: 18px 20px;
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.08);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: 0.18s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.wide {
  width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-inner a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards.three,
  .opportunity-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}