:root {
  --bg: #eefaff;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #cfe8f3;
  --blue: #49b6ee;
  --blue-dark: #1685c2;
  --mint: #66d1bf;
  --coral: #ff8f70;
  --navy: #111827;
  --shadow: 0 22px 55px rgba(22, 133, 194, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: linear-gradient(180deg, #f4fcff 0%, var(--bg) 54%, #f7fdff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: white;
  font-size: 0.84rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  box-shadow: 0 10px 22px rgba(73, 182, 238, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #526171;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--blue-dark);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-action {
  padding: 0 20px;
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(73, 182, 238, 0.24);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  padding: 72px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.06rem;
}

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

.button {
  padding: 0 24px;
}

.button-dark {
  color: white;
  background: var(--navy);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.16);
}

.button-light {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.button-light.strong {
  background: white;
}

.button-white {
  color: var(--blue-dark);
  background: white;
}

.hero-media,
.round-photo,
.feature-article img,
.quote-card img {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media {
  aspect-ratio: 1 / 1;
  border-radius: 48% 52% 45% 55% / 57% 43% 57% 43%;
  background: var(--surface);
}

.hero-media::before,
.round-photo::before,
.feature-article::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -20px auto auto -24px;
  width: 150px;
  height: 150px;
  opacity: 0.48;
  background-image: radial-gradient(var(--blue) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
}

.hero-media img,
.round-photo img,
.feature-article img,
.quote-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 62px;
  bottom: 38px;
  display: grid;
  gap: 2px;
  width: 142px;
  padding: 18px;
  color: white;
  border-radius: 8px;
  background: rgba(22, 133, 194, 0.92);
  box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
}

.media-badge strong {
  font-size: 1.55rem;
}

.media-badge span {
  font-size: 0.82rem;
  font-weight: 700;
}

.services,
.articles,
.testimonial {
  padding: 92px 0;
}

.section-heading {
  max-width: 620px;
}

.centered {
  margin: 0 auto 38px;
  text-align: center;
}

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

.service-card,
.mini-article,
.feature-article,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.service-card {
  min-height: 230px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 182, 238, 0.58);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.service-card.featured p,
.service-card.featured a {
  color: rgba(255, 255, 255, 0.9);
}

.service-icon {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 8px;
  background: rgba(73, 182, 238, 0.13);
}

.featured .service-icon {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.service-card p {
  min-height: 78px;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.service-card a {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.split-section {
  padding: 86px 0;
}

.soft-band {
  background: rgba(255, 255, 255, 0.42);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
}

.split-grid.reversed {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
}

.round-photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.round-photo.angled {
  border-radius: 42% 58% 52% 48% / 50% 44% 56% 50%;
}

.split-copy p {
  max-width: 560px;
}

.split-copy .button {
  margin-top: 10px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 58px;
  align-items: start;
}

.feature-article {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 22px;
}

.feature-article img {
  aspect-ratio: 1.42 / 1;
  margin-bottom: 22px;
  border-radius: 6px;
}

.feature-article h3,
.feature-article p,
.article-meta {
  padding: 0 8px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.article-list {
  display: grid;
  gap: 14px;
}

.mini-article {
  display: grid;
  gap: 8px;
  padding: 20px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.mini-article:hover {
  transform: translateX(4px);
  border-color: var(--blue);
}

.mini-article span {
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.15fr);
  gap: 46px;
  align-items: center;
}

.quote-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px 28px 18px 18px;
  background: white;
  box-shadow: var(--shadow);
}

.quote-card img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.stars {
  margin-bottom: 12px;
  color: #ffb545;
  font-size: 1.1rem;
  letter-spacing: 0;
}

blockquote {
  margin: 0 0 20px;
  color: #344054;
  font-size: 1.04rem;
  line-height: 1.7;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  padding: 52px 0 86px;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 40px 48px;
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(73, 182, 238, 0.96), rgba(102, 209, 191, 0.88)),
    var(--blue);
  box-shadow: var(--shadow);
}

.cta-panel .eyebrow,
.cta-panel p,
.cta-panel h2 {
  color: white;
}

.cta-panel h2 {
  max-width: 620px;
  margin: 0;
}

.footer {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 36px;
}

.footer p {
  max-width: 320px;
  margin: 16px 0 0;
}

.footer strong,
.footer a,
.footer span {
  display: block;
}

.footer strong {
  margin-bottom: 14px;
}

.footer a,
.footer span {
  margin-bottom: 9px;
  color: var(--muted);
}

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

  .hero {
    padding-top: 34px;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reversed,
  .article-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid,
  .split-grid.reversed {
    gap: 42px;
  }

  .hero-media,
  .round-photo {
    max-width: 540px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .site-header,
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 16px 0;
  }

  .brand span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.9rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .service-grid,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .services,
  .articles,
  .testimonial,
  .split-section {
    padding: 66px 0;
  }

  .service-card p {
    min-height: 0;
  }

  .quote-card {
    padding: 16px;
  }

  .quote-card img {
    width: 100%;
    max-height: 300px;
  }

  .cta-panel {
    display: grid;
    padding: 30px 22px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .footer-grid {
    gap: 24px;
  }
}
