@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap");

:root {
  --navy-950: #071824;
  --navy-900: #0b2233;
  --navy-800: #123249;
  --charcoal: #162027;
  --slate-700: #33495b;
  --steel: #4f7187;
  --steel-2: #6f8fa3;
  --teal: #12a6a1;
  --teal-dark: #0f766e;
  --orange: #e86f2e;
  --orange-dark: #c9551d;
  --concrete: #eef2f5;
  --concrete-2: #f7f9fb;
  --mist: #dce5eb;
  --white: #ffffff;
  --muted: #617282;
  --line: rgba(18, 50, 73, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 26px 70px rgba(7, 24, 36, 0.18);
  --shadow-soft: 0 18px 42px rgba(7, 24, 36, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --display: "Outfit", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--body);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 2%, rgba(18, 166, 161, 0.1), transparent 26rem),
    radial-gradient(circle at 92% 0%, rgba(232, 111, 46, 0.09), transparent 24rem),
    linear-gradient(180deg, #f8fafc 0%, #eef3f6 46%, #f7f9fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(18, 50, 73, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 50, 73, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 28px 28px, rgba(18, 50, 73, 0.08) 1px, transparent 1.5px);
  background-size: 56px 56px, 56px 56px, 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.5rem;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  transition: top 180ms var(--ease-out);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(7, 24, 36, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 166, 161, 0.95), rgba(79, 113, 135, 0.95)),
    var(--navy-800);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  letter-spacing: -0.08em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px 12px 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  opacity: 0.45;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 160ms var(--ease-out),
    transform 160ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 0.42rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn,
.call-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.84rem 1.18rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background-color 160ms var(--ease-out),
    border-color 160ms var(--ease-out);
}

.btn:active,
.call-link:active,
.service-card:active,
.category-card:active {
  transform: scale(0.98);
}

.btn-primary,
.call-link {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px rgba(232, 111, 46, 0.24);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 26px rgba(7, 24, 36, 0.22);
}

.btn-outline {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 58px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 24, 36, 0.98) 0%, rgba(11, 34, 51, 0.96) 44%, rgba(18, 50, 73, 0.9) 100%),
    var(--navy-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(120deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 50% 100%),
    radial-gradient(circle at 72% 24%, rgba(18, 166, 161, 0.34), transparent 18rem),
    radial-gradient(circle at 78% 78%, rgba(232, 111, 46, 0.22), transparent 17rem);
  background-size: 220px 220px, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.98));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.88fr);
  gap: clamp(2rem, 5vw, 5.2rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin: 0 0 1rem;
  color: #9ed7dc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 1;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 890px;
  font-size: clamp(2.75rem, 6.8vw, 5.95rem);
}

h2 {
  font-size: clamp(2.05rem, 4.2vw, 4rem);
}

h3 {
  font-size: clamp(1.28rem, 2.1vw, 1.78rem);
}

.hero-copy > p:not(.eyebrow):not(.trust-line) {
  max-width: 710px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.7rem;
}

.trust-line {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.hero-media {
  position: relative;
}

.image-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.image-shell::after,
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 24, 36, 0.26)),
    radial-gradient(circle at 72% 18%, rgba(18, 166, 161, 0.16), transparent 18rem);
}

.image-shell img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06);
}

.hero-card {
  position: absolute;
  left: -30px;
  bottom: 28px;
  width: min(335px, 88%);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(7, 24, 36, 0.86);
  box-shadow:
    0 18px 42px rgba(7, 24, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  color: #9ed7dc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.15fr 0.9fr;
  gap: 1rem;
  margin-top: 44px;
}

.trust-item {
  position: relative;
  min-height: 124px;
  padding: 1.14rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.trust-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(18, 166, 161, 0.9), rgba(232, 111, 46, 0.85)),
    var(--teal);
}

.trust-item b {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(72px, 8.4vw, 112px) 0;
}

.section-tight {
  padding-top: 54px;
}

.section.alt {
  background:
    radial-gradient(circle at 10% 0%, rgba(79, 113, 135, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(238, 242, 245, 0.62));
}

.section.dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(18, 166, 161, 0.18), transparent 25rem),
    radial-gradient(circle at 88% 72%, rgba(232, 111, 46, 0.16), transparent 22rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 74px 74px;
}

.section.dark > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.5fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.03rem;
}

.dark .section-head p,
.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.76);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--teal), var(--orange));
}

.dark .kicker,
.final-cta .kicker {
  color: #a8dce0;
}

.grid {
  display: grid;
  gap: 1rem;
}

.services-directory,
.related-links {
  display: grid;
  gap: 1rem;
}

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

.grid-3,
.grid-4,
.grid-5,
.services-directory,
.related-links {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-3 > *,
.services-directory > *,
.related-links > * {
  grid-column: span 4;
}

.grid-4 > * {
  grid-column: span 3;
}

.grid-5 > * {
  grid-column: span 4;
}

.grid-5 > *:nth-child(1),
.grid-5 > *:nth-child(2) {
  grid-column: span 6;
}

.service-card,
.info-card,
.step-card,
.faq-card,
.proof-card,
.category-card,
.snapshot-card,
.comparison-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.service-card,
.category-card {
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1),
.service-card:nth-child(6) {
  grid-column: span 5;
}

.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:nth-child(1) img,
.service-card:nth-child(6) img {
  height: 230px;
}

.service-card img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.service-card-body,
.category-card,
.info-card,
.step-card,
.faq-card,
.proof-card,
.snapshot-card,
.comparison-card {
  padding: 1.28rem;
}

.service-card h3,
.category-card h3,
.info-card h3,
.proof-card h3,
.comparison-card h3,
.step-card h3 {
  margin-bottom: 0.72rem;
}

.service-card p,
.category-card p,
.info-card p,
.proof-card p,
.comparison-card p,
.step-card p {
  color: var(--muted);
}

.service-card .link-arrow,
.category-card .link-arrow {
  margin-top: auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.link-arrow::after {
  content: "->";
  color: var(--orange);
  transition: transform 160ms var(--ease-out);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.98fr);
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.check-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0;
  padding: 0.84rem 0.9rem 0.84rem 2.55rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.92rem;
  top: 1.12rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 4px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(18, 166, 161, 0.13);
}

.dark .check-list li {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.dark .check-list a,
.dark .category-band a {
  color: #a8dce0;
  font-weight: 900;
}

.feature-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.category-stack {
  display: grid;
  gap: 1rem;
}

.category-band {
  padding: 1.28rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.category-band h3 {
  margin-bottom: 0.75rem;
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}

.problem-grid li {
  grid-column: span 3;
  min-height: 116px;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.problem-grid li:nth-child(1),
.problem-grid li:nth-child(8) {
  grid-column: span 4;
}

.problem-grid li:nth-child(3),
.problem-grid li:nth-child(6) {
  grid-column: span 2;
}

.steps {
  counter-reset: step;
}

.step-card {
  counter-increment: step;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--steel));
  font-weight: 900;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.area-tags li {
  margin: 0;
  padding: 0.58rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 900;
}

.dark .area-tags li {
  border-color: var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
}

.proof-card {
  display: grid;
  gap: 0.8rem;
}

.quote-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: var(--navy-900);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

details.faq-card {
  padding: 0;
}

details.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

details.faq-card summary::-webkit-details-marker {
  display: none;
}

details.faq-card summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  transition:
    transform 160ms var(--ease-out),
    background-color 160ms var(--ease-out);
}

details.faq-card[open] summary::after {
  content: "-";
  background: var(--teal-dark);
}

details.faq-card p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(18, 166, 161, 0.28), transparent 22rem),
    radial-gradient(circle at 12% 86%, rgba(232, 111, 46, 0.2), transparent 18rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.category-card {
  display: flex;
  min-height: 248px;
  flex-direction: column;
}

.services-directory > .category-card:nth-child(1),
.services-directory > .category-card:nth-child(4),
.services-directory > .category-card:nth-child(7) {
  grid-column: span 5;
}

.services-directory > .category-card:nth-child(2),
.services-directory > .category-card:nth-child(5),
.services-directory > .category-card:nth-child(8) {
  grid-column: span 4;
}

.services-directory > .category-card:nth-child(3),
.services-directory > .category-card:nth-child(6),
.services-directory > .category-card:nth-child(9),
.services-directory > .category-card:nth-child(10) {
  grid-column: span 3;
}

.tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.12rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(18, 166, 161, 0.1);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.snapshot-card {
  border-color: rgba(18, 166, 161, 0.28);
  background:
    linear-gradient(135deg, rgba(18, 166, 161, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.comparison-card.featured {
  border-color: rgba(18, 166, 161, 0.36);
  background:
    radial-gradient(circle at 95% 8%, rgba(18, 166, 161, 0.16), transparent 14rem),
    var(--white);
}

.related-links > .category-card:nth-child(1) {
  grid-column: span 5;
}

.related-links > .category-card:nth-child(2) {
  grid-column: span 4;
}

.related-links > .category-card:nth-child(3) {
  grid-column: span 3;
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 166, 161, 0.12), transparent 18rem),
    #071824;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.78fr 0.86fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-top: 0.55rem;
}

.footer-grid p {
  margin-top: 1rem;
}

.footer-grid a {
  transition: color 160ms var(--ease-out);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.mini-note {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .call-link:hover {
    transform: translateY(-2px);
  }

  .service-card:hover,
  .category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 166, 161, 0.28);
    box-shadow: 0 22px 52px rgba(7, 24, 36, 0.14);
  }

  a:hover .link-arrow::after,
  .link-arrow:hover::after {
    transform: translateX(4px);
  }

  .site-nav a:hover {
    transform: translateY(-1px);
  }

  .footer-grid a:hover {
    color: #a8dce0;
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .header-actions .call-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav-toggle:checked ~ .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #0b2233;
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .site-nav a {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-grid,
  .section-head,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .services-directory > .category-card,
  .services-directory > .category-card:nth-child(1),
  .services-directory > .category-card:nth-child(2),
  .services-directory > .category-card:nth-child(3),
  .services-directory > .category-card:nth-child(4),
  .services-directory > .category-card:nth-child(5),
  .services-directory > .category-card:nth-child(6),
  .services-directory > .category-card:nth-child(7),
  .services-directory > .category-card:nth-child(8),
  .services-directory > .category-card:nth-child(9),
  .services-directory > .category-card:nth-child(10),
  .related-links > .category-card,
  .related-links > .category-card:nth-child(1),
  .related-links > .category-card:nth-child(2),
  .related-links > .category-card:nth-child(3),
  .grid-3 > *,
  .grid-4 > *,
  .grid-5 > *,
  .problem-grid li,
  .problem-grid li:nth-child(1),
  .problem-grid li:nth-child(3),
  .problem-grid li:nth-child(6),
  .problem-grid li:nth-child(8) {
    grid-column: span 6;
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding: 58px 0 42px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .btn,
  .call-link {
    width: 100%;
  }

  .image-shell img,
  .split-image img {
    min-height: 300px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin-top: 1rem;
  }

  .trust-strip,
  .comparison,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .services-directory > .category-card,
  .services-directory > .category-card:nth-child(1),
  .services-directory > .category-card:nth-child(2),
  .services-directory > .category-card:nth-child(3),
  .services-directory > .category-card:nth-child(4),
  .services-directory > .category-card:nth-child(5),
  .services-directory > .category-card:nth-child(6),
  .services-directory > .category-card:nth-child(7),
  .services-directory > .category-card:nth-child(8),
  .services-directory > .category-card:nth-child(9),
  .services-directory > .category-card:nth-child(10),
  .related-links > .category-card,
  .related-links > .category-card:nth-child(1),
  .related-links > .category-card:nth-child(2),
  .related-links > .category-card:nth-child(3),
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > *,
  .grid-5 > *,
  .problem-grid li,
  .problem-grid li:nth-child(1),
  .problem-grid li:nth-child(3),
  .problem-grid li:nth-child(6),
  .problem-grid li:nth-child(8) {
    grid-column: 1 / -1;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.05rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
