:root {
  --primary: #0d3b66;
  --secondary: #1677a8;
  --accent: #48b2c7;
  --bg: #f4f8fb;
  --surface: #ffffff;
  --text: #16324a;
  --muted: #5f7388;
  --border: #d8e3ec;
  --success: #2f7d67;
  --shadow: 0 18px 45px rgba(13, 59, 102, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 227, 236, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 168px;
  height: 42px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  display: none;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(72, 178, 199, 0.18), transparent 28%),
    linear-gradient(180deg, #eff7fb 0%, #f4f8fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 119, 168, 0.08);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  margin: 0 0 28px;
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: var(--border);
  background: #fff;
  color: var(--primary);
}

.hero-card,
.panel,
.card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-figure {
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f9fbfd;
}

.hero-figure img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-media {
  margin: -26px -26px 18px;
  border-radius: 24px 24px 18px 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #f9fbfd;
}

.card-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.split-media {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.media-panel {
  padding: 0;
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-copy {
  padding: 26px;
}
.hero-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f9fbfd;
  border: 1px solid var(--border);
}

.metric-item strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
}

section {
  padding: 74px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 620px;
}

.grid-3,
.grid-2,
.news-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}

.grid-3,
.news-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel,
.contact-card {
  padding: 26px;
}

.card h3,
.panel h3,
.contact-card h3 {
  margin-top: 0;
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(22, 119, 168, 0.1);
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 18px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 125, 103, 0.1);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-date {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-hero {
  padding: 72px 0 36px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.highlight-strip {
  padding: 22px 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
}

.highlight-strip .container {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.highlight-strip strong {
  display: block;
  font-size: 26px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-2,
  .contact-grid,
  .grid-3,
  .news-grid,
  .stats-grid,
  .split-media {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    gap: 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .brand-logo {
    width: 150px;
  }
}
