:root {
  --navy: #061f36;
  --deep: #082b48;
  --blue: #0075ff;
  --blue-2: #00c6ff;
  --cyan: #2fe7ff;
  --ink: #10243a;
  --muted: #5f7186;
  --line: #d9e8f4;
  --panel: #ffffff;
  --soft: #f4fbff;
  --green: #7bdc30;
  --orange: #ff5e29;
  --shadow: 0 16px 42px rgba(7, 48, 84, 0.14);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fdff 0%, #ffffff 42%, #f7fcff 100%);
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
}

.sprite {
  display: none;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button,
button {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #0a74ff 0%, #03a9ff 100%);
  box-shadow: 0 12px 24px rgba(0, 111, 255, 0.25);
}

.button.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: #006edc;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 62, 120, 0.18);
}

.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 18, 33, 0.98) 0%, rgba(2, 28, 48, 0.82) 30%, rgba(0, 45, 70, 0.35) 64%, rgba(0, 36, 60, 0.12) 100%),
    linear-gradient(180deg, rgba(4, 26, 46, 0.18), rgba(2, 22, 36, 0.52)),
    url("assets/hero-ocean.jpg") center / cover no-repeat;
  overflow: visible;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 33, 53, 0), rgba(0, 23, 37, 0.35));
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 70px;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(47, 231, 255, 0.6);
  border-radius: 50%;
  background: rgba(47, 231, 255, 0.09);
  box-shadow: 0 0 24px rgba(47, 231, 255, 0.28);
}

.brand-mark svg {
  width: 21px;
  height: 21px;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.brand strong span {
  color: var(--blue-2);
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.nav-wrap a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-wrap a:hover,
.footer a:hover {
  color: var(--cyan);
}

.nav-actions {
  display: flex;
  gap: 14px;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 490px;
  display: flex;
  align-items: center;
  padding: 30px 0 104px;
}

.hero-copy {
  max-width: 590px;
}

.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: 62px;
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-tags a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.hero-tags svg {
  width: 22px;
  height: 22px;
  color: #c8f7ff;
}

.search-section {
  position: relative;
  z-index: 5;
  margin-top: -66px;
}

.search-card {
  display: grid;
  grid-template-columns: 1.04fr 1.04fr 1.04fr 1.06fr 184px;
  gap: 18px;
  align-items: end;
  padding: 22px 24px 14px;
  border: 1px solid rgba(174, 199, 219, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.field {
  min-width: 0;
}

.field span:first-child {
  display: block;
  margin-bottom: 7px;
  color: #7c8ea4;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.select-trigger,
.range-value {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  gap: 10px;
  padding: 0 36px 0 14px;
  color: #143351;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.select-trigger {
  text-align: left;
}

.select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #7991a7;
  border-bottom: 2px solid #7991a7;
  transform: translateY(-70%) rotate(45deg);
}

.select-trigger svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--deep);
}

.dropdown-field {
  position: relative;
}

.dropdown-field.is-open {
  z-index: 20;
}

.dropdown-field.is-open .select-trigger {
  border-color: #74b8ff;
  box-shadow: 0 0 0 3px rgba(0, 117, 255, 0.12);
}

.dropdown-field.is-open .select-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 248px;
  overflow: auto;
  padding: 6px;
  border: 1px solid #cddfed;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(7, 42, 76, 0.16);
}

.select-menu[hidden] {
  display: none;
}

.select-menu button {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  color: #15334c;
  border-radius: 5px;
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.select-menu button:hover,
.select-menu button[aria-selected="true"] {
  color: #006edc;
  background: #edf8ff;
}

.range-value {
  padding-right: 14px;
}

.range-value::after {
  display: none;
}

.budget-slider {
  position: relative;
  height: 18px;
  margin: -1px 2px 0;
  --range-start: 0%;
  --range-end: 100%;
}

.range-track {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 4px;
  border-radius: 999px;
  background: #d8edff;
}

.range-track i {
  position: absolute;
  display: block;
  left: var(--range-start);
  right: calc(100% - var(--range-end));
  top: 8px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}

.budget-slider input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.budget-slider input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.budget-slider input::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 3px 8px rgba(0, 117, 255, 0.34);
  pointer-events: auto;
}

.budget-slider input::-moz-range-track {
  height: 4px;
  background: transparent;
}

.budget-slider input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 3px 8px rgba(0, 117, 255, 0.34);
  pointer-events: auto;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  color: #fff;
  border-radius: 6px;
  background: linear-gradient(135deg, #0872ff, #0ba9ff);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(0, 117, 255, 0.24);
}

.search-button svg {
  width: 18px;
  height: 18px;
}

.trust-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 0;
  color: #43566d;
  font-size: 13px;
  font-weight: 600;
}

.trust-note svg {
  width: 18px;
  height: 18px;
  color: #1b698c;
}

.industry-strip {
  padding: 42px 0 34px;
  background:
    linear-gradient(90deg, rgba(231, 251, 255, 0.65), rgba(255, 255, 255, 0.94), rgba(231, 251, 255, 0.65));
  border-bottom: 1px solid #e5f3fb;
}

.industry-strip h2 {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #0b2b4e;
  font-size: 28px;
  line-height: 1.12;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.industry-grid article {
  min-width: 0;
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid #e1edf5;
}

.industry-grid article:last-child {
  border-right: 0;
}

.industry-grid svg {
  width: 54px;
  height: 54px;
  color: #006fff;
}

.industry-grid h3 {
  margin: 10px 0 6px;
  font-size: 14px;
  color: #123451;
}

.industry-grid p {
  margin: 0;
  color: #476179;
  font-size: 13px;
  font-weight: 600;
}

.section {
  padding: 36px 0 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-heading h2,
.center-title,
.how h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.1;
  color: #0d2d4a;
}

.section-heading a,
.listing-card a,
.blog-card a {
  color: #0074dc;
  font-size: 14px;
  font-weight: 900;
}

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

.listing-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dceaf4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(9, 49, 83, 0.08);
}

.listing-card.is-hidden {
  display: none;
}

.no-results {
  margin: 24px 0 0;
  padding: 26px;
  color: #35627f;
  border: 1px solid #d8eaf4;
  border-radius: var(--radius);
  background: #f4fbff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.no-results[hidden] {
  display: none;
}

.listing-card img {
  width: 100%;
  aspect-ratio: 1.57;
  object-fit: cover;
}

.listing-body {
  padding: 14px 14px 16px;
}

.listing-body h3 {
  margin: 0 0 4px;
  min-height: 38px;
  color: #0f2c45;
  font-size: 16px;
  line-height: 1.2;
}

.listing-body p {
  margin: 0 0 10px;
  color: #63758a;
  font-size: 12px;
  font-weight: 650;
}

.listing-type {
  display: inline-block;
  margin-bottom: 10px;
  color: #0079e7;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.listing-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: #557083;
  font-size: 12px;
  font-weight: 700;
}

.listing-body li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.listing-body li svg {
  width: 14px;
  height: 14px;
  color: #183a56;
}

.price {
  display: block;
  margin-bottom: 12px;
  color: #061f36;
  font-size: 18px;
}

.how {
  padding-top: 38px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.steps article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px 26px;
  text-align: left;
  border: 1px solid #dceaf4;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(10, 53, 89, 0.06);
}

.steps article > svg {
  width: 58px;
  height: 58px;
  color: #0a70df;
}

.steps h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.steps p {
  margin: 0;
  color: #536b82;
  font-size: 13px;
  font-weight: 650;
}

.step-number {
  position: absolute;
  top: 13px;
  left: 58px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #0777f8;
  font-size: 14px;
  font-weight: 900;
}

.step-arrow {
  color: #0179ec;
  font-size: 31px;
  font-weight: 900;
}

.map-section {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 44px;
  align-items: center;
  padding: 72px 0 0;
}

.map-copy span {
  color: #0077f2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-copy h2 {
  margin: 12px 0 14px;
  max-width: 250px;
  font-size: 31px;
  line-height: 1.05;
}

.map-copy p {
  margin: 0 0 22px;
  color: #60758a;
  font-size: 16px;
  font-weight: 600;
}

.map-frame {
  overflow: hidden;
  border: 1px solid #cce7ef;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(12, 86, 112, 0.12);
}

.map-frame img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

.center-title {
  margin-bottom: 20px;
  text-align: center;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.type-grid a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #082a43;
  box-shadow: 0 12px 24px rgba(7, 40, 70, 0.08);
}

.type-grid a:hover img {
  transform: scale(1.04);
}

.type-grid img {
  width: 100%;
  aspect-ratio: 1.53;
  object-fit: cover;
  transition: transform 180ms ease;
}

.cta {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 174px;
  margin-top: 28px;
  padding: 28px 32px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 94, 197, 1) 0%, rgba(0, 112, 231, 0.98) 54%, rgba(0, 107, 222, 0.9) 70%, rgba(0, 77, 160, 0.44) 100%),
    url("assets/cta-diver.jpg") right center / auto 100% no-repeat,
    #0071e7;
  box-shadow: 0 18px 38px rgba(0, 77, 153, 0.22);
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.cta p {
  max-width: 510px;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}

.cta-points {
  display: flex;
  gap: 36px;
  align-items: center;
  padding-right: 24px;
}

.cta-points span {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 96px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.cta-points svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

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

.blog-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 10px;
  border: 1px solid #e0edf6;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(7, 45, 76, 0.06);
}

.blog-card img {
  width: 130px;
  height: 118px;
  object-fit: cover;
  border-radius: 6px;
}

.blog-card span {
  display: block;
  margin-bottom: 5px;
  color: #0074e8;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.2;
}

.blog-card p {
  margin: 0 0 9px;
  color: #63778b;
  font-size: 13px;
  font-weight: 600;
}

.footer {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #04243f 0%, #02172b 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr) 1.2fr;
  gap: 44px;
  padding: 34px 0 32px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  margin: 0 0 18px;
  max-width: 230px;
  font-size: 13px;
  font-weight: 600;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer nav {
  display: grid;
  align-content: start;
}

.footer nav a {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 16px;
  margin: 14px 0 18px;
  color: #fff;
  font-weight: 900;
}

.newsletter {
  display: grid;
  align-content: start;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter h3,
.newsletter p {
  grid-column: 1 / -1;
}

.newsletter input {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
}

.newsletter button {
  min-height: 36px;
  padding: 0 16px;
  color: #fff;
  border-radius: 5px;
  background: #087aff;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .topbar {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: grid;
    justify-self: end;
  }

  .nav-wrap {
    position: absolute;
    top: 66px;
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border-radius: var(--radius);
    background: rgba(3, 28, 48, 0.97);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
  }

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

  .nav-wrap a {
    padding: 10px 8px;
  }

  .nav-actions {
    justify-self: end;
  }

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

  .search-button {
    min-height: 48px;
  }

  .industry-grid,
  .listing-grid,
  .type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .map-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .map-copy h2,
  .map-copy p {
    max-width: 640px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .hero {
    min-height: 630px;
    background-position: center right;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 64px;
  }

  .nav-actions {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 7px;
  }

  .hero-inner {
    align-items: flex-start;
    min-height: 560px;
    padding-top: 74px;
    padding-bottom: 134px;
  }

  .hero h1 {
    max-width: 370px;
    font-size: 45px;
  }

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

  .hero-tags {
    gap: 14px;
  }

  .hero-tags a {
    width: calc(50% - 8px);
    font-size: 13px;
  }

  .search-section {
    margin-top: -100px;
  }

  .search-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .industry-strip h2,
  .section-heading h2,
  .center-title,
  .how h2 {
    font-size: 24px;
  }

  .industry-grid,
  .listing-grid,
  .type-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #e1edf5;
  }

  .industry-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-body h3 {
    min-height: auto;
  }

  .steps article {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .step-number {
    left: 50px;
  }

  .map-section {
    padding-top: 50px;
  }

  .type-grid img {
    aspect-ratio: 1.9;
  }

  .cta {
    grid-template-columns: 1fr;
    min-height: 320px;
    padding: 24px 22px;
    background:
      linear-gradient(180deg, rgba(0, 91, 190, 0.98) 0%, rgba(0, 106, 221, 0.9) 55%, rgba(0, 64, 139, 0.42) 100%),
      url("assets/cta-diver.jpg") right bottom / 84% auto no-repeat,
      #0071e7;
  }

  .cta-points {
    justify-content: flex-start;
    gap: 16px;
    padding-right: 0;
  }

  .cta-points span {
    min-width: 80px;
    font-size: 12px;
  }

  .blog-card {
    grid-template-columns: 118px 1fr;
  }

  .blog-card img {
    width: 118px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 39px;
  }

  .nav-actions {
    grid-template-columns: 1fr;
  }

  .hero-tags a {
    width: 100%;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    width: 100%;
    height: 150px;
  }
}
