:root {
  --ink: #0f172a;
  --muted: #526174;
  --brand: #08213a;
  --brand-2: #12355b;
  --cyan: #22d3ee;
  --page: #f6f9fc;
  --line: #d8e2ec;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
  background: rgb(8 33 58 / 95%);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand img {
  display: block;
  width: 176px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  padding: 4px 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #ecfeff;
  font-size: 14px;
}

.nav-links a,
.nav-cta,
.button {
  text-decoration: none;
}

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

.nav-cta {
  border-radius: 8px;
  background: var(--cyan);
  color: var(--brand);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgb(34 211 238 / 28%), transparent 34%), linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 20px;
}

.eyebrow,
.section-kicker {
  color: #0e7490;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  border: 1px solid rgb(103 232 249 / 40%);
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: #cffafe;
  padding: 8px 12px;
  text-transform: none;
  letter-spacing: 0;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.split-section p,
.contact-section p {
  color: #5f6f82;
  font-size: 18px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 680px;
  color: #dbeafe;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
}

.button.primary {
  background: var(--cyan);
  color: var(--brand);
}

.button.secondary {
  border: 1px solid rgb(255 255 255 / 25%);
  color: #ffffff;
}

.process-card {
  align-self: center;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 10px;
  background: rgb(255 255 255 / 10%);
  padding: 20px;
  box-shadow: 0 28px 80px rgb(0 0 0 / 24%);
}

.process-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  border: 1px solid #dbe5ee;
  border-radius: 8px;
  background: #ffffff;
  color: #405066;
  padding: 14px;
  line-height: 1.55;
}

.card-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 14px;
}

.card-title strong {
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  padding: 5px 10px;
  font-size: 12px;
}

.stats,
.section,
.split-section,
.contact-section,
.dark-band,
.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px;
}

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

.stats article,
.service-grid article,
.news-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 22px;
  box-shadow: 0 8px 22px rgb(15 23 42 / 5%);
}

.stats span,
.service-grid span,
.news-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: #0e7490;
  font-size: 14px;
  font-weight: 800;
}

.stats strong {
  display: block;
  font-size: 19px;
  line-height: 1.35;
}

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

.section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.service-grid article,
.news-grid article {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.service-grid article:hover,
.news-grid article:hover {
  transform: translateY(-2px);
  border-color: #67e8f9;
  box-shadow: 0 14px 30px rgb(15 23 42 / 9%);
}

.service-grid p,
.news-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  background: #ffffff;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

.split-section > div:first-child {
  max-width: 520px;
}

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

.need-grid p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  color: #26364a;
  font-weight: 700;
  padding: 16px;
}

.feed-badge {
  white-space: nowrap;
  border-radius: 999px;
  background: #ecfeff;
  color: #155e75;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.news-grid a {
  color: #0e7490;
  font-weight: 800;
  text-decoration: none;
}

.dark-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: none;
  background: var(--brand);
  color: #ffffff;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

.dark-band article {
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 10px;
  background: rgb(255 255 255 / 8%);
  padding: 24px;
}

.dark-band p {
  color: #dbeafe;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
}

.hint {
  border: 1px solid #a5f3fc;
  border-radius: 10px;
  background: #ecfeff;
  color: #164e63;
  padding: 16px;
  line-height: 1.7;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 8px 22px rgb(15 23 42 / 5%);
}

.profile-card img {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 22%;
}

.profile-card span {
  color: #0e7490;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.profile-card h3 {
  margin: 4px 0 4px;
  font-size: 18px;
}

.profile-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 8px 22px rgb(15 23 42 / 5%);
}

label {
  display: grid;
  gap: 8px;
  color: #223248;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d6e3;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #0e7490;
  box-shadow: 0 0 0 4px #cffafe;
}

.wide,
.whatsapp-button,
.form-note {
  grid-column: 1 / -1;
}

.whatsapp-button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: #075e54;
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .stats,
  .service-grid,
  .news-grid,
  .split-section,
  .dark-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 58px 20px;
  }

  .section-heading.row,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .brand img {
    width: 136px;
  }

  .nav-cta {
    padding: 9px 12px;
  }
}
