* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #f5f9fc;
}

a {
  color: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
}

.menu a:hover {
  color: #0284c7;
}

.header-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.25s ease;
}

.header-btn,
.primary-btn {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 14px 35px rgba(14, 165, 233, 0.25);
}

.header-btn:hover,
.primary-btn:hover {
  background: #082f49;
  transform: translateY(-3px);
}

.secondary-btn {
  background: #fff;
  color: #0f172a;
  border: 1px solid #dbeafe;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  border-color: #7dd3fc;
  color: #0284c7;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 15%, rgba(14, 165, 233, .20), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(249, 115, 22, .18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef7fc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -100px;
  height: 250px;
  background: rgba(14, 165, 233, 0.10);
  transform: rotate(-3deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 70px 0;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero h1 strong {
  background: linear-gradient(90deg, #0284c7, #1d4ed8, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 660px;
  font-size: 20px;
  line-height: 1.7;
  color: #475569;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(14, 165, 233, .25), rgba(255,255,255,.8), rgba(249,115,22,.22));
  filter: blur(18px);
}

.group-card {
  position: relative;
  border-radius: 36px;
  padding: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 35px 80px rgba(15,23,42,.14);
}

.group-logo-main {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 18px;
}

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

.mini-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 12px 28px rgba(15,23,42,.08);
  transition: .25s ease;
}

.mini-logos a:hover {
  transform: translateY(-5px);
}

.mini-logos img {
  width: 100%;
  height: 104px;
  object-fit: contain;
}

.section {
  padding: 95px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.section-heading h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-text {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
}

.about-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
}

.about-text p + p {
  margin-top: 18px;
}

.values {
  background: #fff;
  padding: 70px 0;
}

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

.value-card {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, #fff, #f0f9ff);
  transition: .25s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(14,165,233,.18);
}

.value-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #0ea5e9;
  color: #fff;
  font-weight: 900;
}

.value-card h3 {
  margin: 20px 0 8px;
  font-size: 22px;
}

.value-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.companies-section {
  position: relative;
  background: linear-gradient(180deg, #f5f9fc, #fff, #eef7fc);
}

.centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.centered p {
  color: #64748b;
  font-size: 18px;
  line-height: 1.65;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.company-card {
  --accent: #0ea5e9;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-top: 7px solid var(--accent);
  border-radius: 28px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 22px 55px rgba(15,23,42,.10);
  transition: .25s ease;
}

.company-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(15,23,42,.16);
}

.company-card.blue { --accent: #09a6df; }
.company-card.navy { --accent: #0b2b52; }
.company-card.orange { --accent: #f26a21; }
.company-card.teal { --accent: #0877aa; }

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  border-radius: 24px;
  background: #f8fafc;
  padding: 12px;
}

.logo-box img {
  width: 100%;
  height: 122px;
  object-fit: contain;
  transition: .25s ease;
}

.company-card:hover .logo-box img {
  transform: scale(1.04);
}

.company-card span {
  display: block;
  margin-top: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.company-card h3 {
  min-height: 62px;
  margin: 10px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.company-card p {
  min-height: 120px;
  color: #64748b;
  line-height: 1.6;
}

.company-card ul {
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.company-card li {
  display: flex;
  gap: 9px;
  margin-bottom: 11px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.company-card li::before {
  content: "●";
  color: var(--accent);
}

.company-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 900;
}

.company-card a::after {
  content: "→";
}

.company-card a:hover {
  background: #0f172a;
  color: #fff;
}

.stats {
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #06172e;
  color: #fff;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(15,23,42,.22);
}

.stats-grid div {
  padding: 14px 26px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  display: block;
  font-size: 44px;
  color: #7dd3fc;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: #cbd5e1;
  font-weight: 800;
}

.contact {
  background: #fff;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 48px;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  padding: 54px;
  background: linear-gradient(135deg, #fff, #f0f9ff 62%, #fff7ed);
  box-shadow: 0 30px 80px rgba(15,23,42,.12);
}

.contact-copy h2 {
  margin: 14px 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #64748b;
}

.contact-data {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(15,23,42,.10);
}

.contact-data img {
  display: block;
  height: 96px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 24px;
}

.contact-data p {
  color: #475569;
  line-height: 1.65;
}

.contact-data strong {
  color: #0f172a;
}

.contact-data a {
  color: #0284c7;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.footer {
  background: #06172e;
  color: #cbd5e1;
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.footer img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .companies-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2) {
    border-right: 0;
  }

  .stats-grid div {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stats-grid div:nth-child(3),
  .stats-grid div:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: auto;
    padding: 12px 0;
    align-items: flex-start;
  }

  .brand img {
    height: 50px;
    max-width: 140px;
  }

  .menu {
    display: none;
  }

  .header-btn {
    min-height: 42px;
    padding: 0 16px;
  }

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

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .mini-logos,
  .companies-grid,
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .contact-box {
    padding: 28px;
    border-radius: 28px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer p {
    text-align: center;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }
}
