*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f1c2a;
  background: #f6f8fb;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero,
.section,
.site-header,
.site-footer {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e4e9f0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 68px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: #233142;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #107dac;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #107dac;
  color: #fff;
  border-color: #107dac;
}

.btn--primary:hover {
  background: #0c6389;
  border-color: #0c6389;
}

.btn--ghost {
  border-color: #107dac;
  color: #107dac;
}

.btn--ghost:hover {
  background: #e6f5fc;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 4px;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0f1c2a;
  display: block;
}

.hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f0f7fb 0%, #ffffff 60%);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.pretitle {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3f8abf;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.5rem 0 1rem;
}

.lede {
  font-size: 1.15rem;
  color: #2c3a47;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__trust li {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #e6f4ff;
  font-size: 0.95rem;
}

.hero-card {
  border-radius: 1.25rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(15, 28, 42, 0.1);
  border: 1px solid #dae8f2;
}

.hero-card__label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: #6f8597;
}

.hero-card__note {
  font-weight: 600;
  color: #1f4f6e;
}

.section {
  padding: 4rem 0;
  background: #f6f8fb;
}

.section:nth-of-type(even) {
  background: #ffffff;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.section__intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid,
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.7rem;
}

.grid article,
.pillars article {
  background: #fff;
  border: 1px solid #dde6ee;
  border-radius: 1.15rem;
  padding: 1.7rem;
  box-shadow: 0 12px 34px rgba(17, 39, 57, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grid ul {
  padding-left: 1.1rem;
  color: #405162;
  flex: 1;
}

.service-card__actions {
  margin-top: 0.5rem;
}

.section--approach {
  background: #ffffff;
  color: inherit;
}

.approach {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.approach li {
  background: #f5fbff;
  border: 1px solid #d3e6f6;
  border-radius: 1.1rem;
  padding: 1.5rem;
  position: relative;
  min-height: 210px;
}

.approach li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  right: 1.5rem;
  top: 0.8rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(16, 125, 172, 0.15);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.pricing__list li {
  margin-bottom: 0.5rem;
}

.pricing-card {
  background: #f5fbff;
  border-radius: 1.2rem;
  border: 1px solid #cfe4f5;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px #cfe4f5;
}

.pricing-card__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #5881a4;
}

.pricing-card ul {
  padding-left: 1.1rem;
}

.note {
  font-size: 0.95rem;
  color: #506073;
}

.section--founder {
  background: #ffffff;
}

.founder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.founder__media {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(10, 36, 52, 0.25);
}

.founder__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder__caption {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f2535;
  text-align: left;
}

.quote {
  background: #0b2030;
  color: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(11, 32, 48, 0.35);
}

.section--cta {
  background: #091a29;
  color: #fff;
  text-align: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.8rem 0;
}

.site-footer {
  background: #050e17;
  color: #cfd9e3;
  padding: 1.8rem 0;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: #4da0ce;
  text-decoration: none;
}

@media (max-width: 840px) {
  .site-nav {
    position: absolute;
    top: 70px;
    right: 1rem;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border: 1px solid #d8e3ed;
    border-radius: 1rem;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header__inner .btn {
    display: none;
  }
}
