:root {
  --primary: #1b89c9;
  --primary-dark: #136a9d;
  --white: #ffffff;
  --text: #153145;
  --bg: #f4fbff;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(21, 49, 69, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

h1,
h2,
h3,
.brand-text {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
}

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

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27, 137, 201, 0.1);
}

.nav-wrap {
  width: min(1200px, 94%);
  margin-inline: auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
}

.brand-text {
  font-size: 1.6rem;
}

.brand-light {
  color: #62b6e5;
  font-weight: 400;
}

.brand-strong {
  color: var(--primary);
  font-weight: 700;
}

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

.nav a {
  text-decoration: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: linear-gradient(90deg, rgba(27, 137, 201, 0.12), rgba(27, 137, 201, 0.22));
  color: var(--primary-dark);
  outline: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(125deg, #0f6ea5 0%, var(--primary) 45%, #57b8ee 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 120px 170px;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  max-width: 780px;
}

.lead {
  margin-top: 16px;
  max-width: 640px;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.cta {
  margin-top: 28px;
  display: inline-block;
  text-decoration: none;
  color: var(--primary-dark);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.hero-bg-shape,
.hero-circle {
  position: absolute;
  pointer-events: none;
}

.hero-bg-shape {
  width: 46vw;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  border-radius: 50%;
}

.hero-bg-shape-1 {
  top: -18%;
  right: -10%;
}

.hero-bg-shape-2 {
  bottom: -28%;
  left: -14%;
}

.hero-circle {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-circle-1 {
  width: 130px;
  height: 130px;
  right: 16%;
  top: 22%;
}

.hero-circle-2 {
  width: 72px;
  height: 72px;
  right: 12%;
  bottom: 28%;
  animation-delay: 1.5s;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: var(--bg);
  border-radius: 100% 100% 0 0 / 85% 85% 0 0;
}

.section {
  padding: 88px 0;
}

.section-blue {
  background: linear-gradient(130deg, rgba(27, 137, 201, 0.94), rgba(15, 110, 165, 0.95));
  color: var(--white);
}

.grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reverse .content {
  order: 1;
}

.reverse .media {
  order: 2;
}

.content h2,
.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.card-glass,
.logo-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-glass {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.card-glass img,
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-card {
  background: var(--white);
  border: 1px solid rgba(27, 137, 201, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.clients-wrap {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.client-pill {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.contact {
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 26px solid rgba(27, 137, 201, 0.08);
  right: 5%;
  top: 10%;
  pointer-events: none;
}

.logo-card {
  background: var(--white);
  padding: 18px;
  display: grid;
  place-items: center;
}

.logo-card img {
  object-fit: contain;
  max-height: 220px;
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 1024px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 3%;
    right: 3%;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 137, 201, 0.12);
    display: grid;
    gap: 0;
    padding: 10px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .reverse .content,
  .reverse .media {
    order: initial;
  }

  .hero-content {
    padding-block: 100px 130px;
  }
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .wave {
    height: 78px;
  }
}
