:root {
  --blue-950: #001b45;
  --blue-900: #06285d;
  --blue-800: #07377f;
  --blue-700: #0756e8;
  --blue-600: #0e63ff;
  --blue-100: #eaf2ff;
  --blue-50: #f5f9ff;
  --green: #0db53d;
  --ink: #071735;
  --muted: #5f6d84;
  --line: #d9e4f5;
  --bg: #ffffff;
  --soft: #f7faff;
  --shadow: 0 18px 45px rgba(8, 38, 91, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--blue-700);
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), #0a3fac);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.site-nav a {
  position: relative;
  padding: 28px 12px 24px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--blue-700);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-700);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary {
  background: var(--blue-700);
  color: #fff;
}

.btn--wa {
  background: var(--green);
  color: #fff;
}

.btn--outline {
  border-color: #98b7ed;
  color: var(--blue-700);
  background: #fff;
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.header-cta {
  min-height: 42px;
  padding-inline: 16px;
  white-space: nowrap;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(7, 86, 232, 0.12), transparent 28%),
    linear-gradient(90deg, #fff 0%, #fff 45%, #edf4ff 100%);
}

.hero--dark {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 25, 63, 0.98), rgba(3, 33, 78, 0.86)),
    #08234f;
}

.page-home .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 18, 47, 0.98), rgba(0, 28, 70, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.page-home .brand strong,
.page-home .brand small,
.page-home .site-nav a {
  color: #fff;
}

.page-home .site-nav a.is-active,
.page-home .site-nav a:hover {
  color: #6fa4ff;
}

.page-home .site-nav a.is-active::after {
  background: #0e63ff;
}

.page-home .hero--dark {
  background:
    radial-gradient(circle at 20% 4%, rgba(31, 89, 191, 0.22), transparent 30%),
    linear-gradient(90deg, #001b45 0%, #031c45 46%, #082d66 100%);
}

.page-home .hero__grid {
  min-height: 560px;
  padding-top: 78px;
  grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 1.18fr);
  gap: 42px;
}

.page-home .hero__copy {
  padding-block: 52px 46px;
}

.page-home .hero__copy h1 {
  max-width: 680px;
  font-size: clamp(42px, 3.55vw, 52px);
  line-height: 1.08;
}

.text-gradient {
  color: #6fa4ff;
}

.page-home .hero__copy p {
  max-width: 600px;
}

.page-home .hero__visual {
  min-height: 470px;
}

.page-home .hero__visual img {
  object-fit: cover;
  object-position: center top;
  border-radius: 0 0 0 20px;
}

.page-home .trust-row {
  max-width: 560px;
  gap: 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  min-height: 500px;
  align-items: center;
}

.hero__copy {
  padding-block: 54px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero--dark .eyebrow {
  background: rgba(14, 99, 255, 0.18);
  color: #bcd5ff;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.hero__copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.hero--dark .hero__copy p,
.hero--dark .trust-pill small {
  color: #d8e4f6;
}

.trust-row,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  margin: 30px 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 118px;
}

.trust-pill svg {
  color: var(--blue-700);
}

.hero--dark .trust-pill svg {
  color: #62a0ff;
}

.trust-pill strong,
.trust-pill small {
  display: block;
  line-height: 1.2;
}

.trust-pill small {
  color: var(--muted);
  font-size: 12px;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 420px;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 24px;
  filter: saturate(1.03);
}

.hero--dark .hero__visual img {
  opacity: 0.92;
}

.rating-card {
  position: absolute;
  right: 20px;
  bottom: 28px;
  width: min(280px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 27, 69, 0.95), rgba(11, 60, 135, 0.9));
  box-shadow: var(--shadow);
}

.rating-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.rating-card span,
.rating-card small {
  display: block;
}

.rating-card small {
  margin-top: 12px;
  color: #fff;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue-700);
  font-weight: 800;
}

.section {
  padding-block: 70px;
}

.section--tight {
  padding-block: 38px;
}

.section--soft {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.section-head {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 30px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.cards--services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 38, 91, 0.06);
}

.service-card p,
.feature-card p,
.problem-grid p,
.area-card p,
.testimonial p,
.article-card p,
.panel p,
.panel li,
.prose p {
  color: var(--muted);
}

.service-card img {
  position: absolute;
  right: -28px;
  bottom: -20px;
  width: 48%;
  height: 64%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
  max-width: 72%;
}

.service-card a,
.problem-grid a,
.article-card a {
  color: var(--blue-700);
  font-weight: 900;
}

.card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--blue-700);
  color: #fff;
}

.feature-grid,
.process-grid,
.problem-grid,
.testimonial-grid,
.review-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.process-card,
.testimonial,
.panel,
.problem-grid article,
.area-card,
.team-grid article,
.article-card,
.brand-strip span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card {
  padding: 30px 22px;
  text-align: center;
}

.feature-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-card {
  position: relative;
  padding: 28px 22px;
}

.process-card > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--blue-700);
  color: #fff;
  font-weight: 900;
}

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

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

.testimonial {
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8, 38, 91, 0.06);
}

.testimonial small {
  display: block;
  color: var(--muted);
}

.stars {
  margin-bottom: 12px;
  color: #ffae00;
  letter-spacing: 1px;
}

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

.article-grid--home {
  grid-template-columns: repeat(4, 1fr);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card div {
  padding: 20px;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  background: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}

.article-hub {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 38%);
}

.article-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}

.article-command > div:first-child,
.article-command__stats,
.article-tools,
.article-feature article,
.article-feature aside,
.article-aside > div,
.article-insight,
.faq-mini,
.related-articles {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 38, 91, 0.06);
}

.article-command > div:first-child {
  padding: 28px;
}

.article-command h2 {
  max-width: 760px;
}

.article-command p {
  max-width: 760px;
  color: var(--muted);
}

.article-command__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 6px 18px;
  padding: 28px;
}

.article-command__stats strong {
  color: var(--blue-700);
  font-size: 38px;
  line-height: 1;
}

.article-command__stats span {
  color: var(--muted);
  font-weight: 800;
}

.article-tools {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
}

.article-search span {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-filters button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.article-filters button.is-active,
.article-filters button:hover {
  border-color: var(--blue-700);
  color: #fff;
  background: var(--blue-700);
}

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  margin-bottom: 26px;
}

.article-feature article {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
}

.article-feature img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.article-feature article > div,
.article-feature aside {
  padding: 28px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.article-meta-row span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: #f8fbff;
  font-size: 13px;
  font-weight: 900;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 22px;
}

.topic-cloud span {
  border-radius: 999px;
  padding: 7px 10px;
  color: #29415f;
  background: #edf4ff;
  font-size: 12px;
  font-weight: 900;
}

.article-grid--seo {
  align-items: stretch;
}

.article-card--seo {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 100%;
  box-shadow: 0 12px 30px rgba(8, 38, 91, 0.06);
}

.article-card--seo div {
  display: grid;
  align-content: start;
}

.article-card--seo a {
  margin-top: auto;
}

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

.empty-state {
  margin-top: 22px;
  padding: 18px;
  border: 1px dashed #9fb7d8;
  border-radius: 8px;
  color: var(--muted);
  background: #f8fbff;
  text-align: center;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-block: 30px;
  padding: 28px 36px;
  border-radius: 12px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 27, 69, 0.96), rgba(7, 86, 232, 0.92)),
    var(--blue-900);
  box-shadow: var(--shadow);
}

.cta-band > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
}

.cta-band .card-icon {
  grid-row: span 2;
  margin: 0;
  color: var(--blue-700);
  background: #fff;
}

.cta-band h2,
.cta-band p {
  margin-bottom: 0;
}

.cta-band p {
  color: #dce9ff;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}

.brand-strip span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px;
  color: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
}

.problem-grid {
  grid-template-columns: repeat(6, 1fr);
}

.problem-grid article {
  padding: 24px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.panel {
  padding: 28px;
  box-shadow: 0 12px 30px rgba(8, 38, 91, 0.05);
}

.panel--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.panel--dark p {
  color: #e4edff;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  font-size: 14px;
}

th {
  background: var(--blue-700);
  color: #fff;
  text-align: left;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.panel small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.panel--visual {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 16px;
  overflow: hidden;
}

.panel--visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 72% 16%;
  border-radius: 8px;
}

.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking h2,
.booking p,
.span-2 {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq__item + .faq__item {
  margin-top: 10px;
}

.faq button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq__answer {
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq__answer p {
  margin: 0;
  padding: 0 16px 16px;
}

.timeline {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

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

.timeline__items span {
  display: grid;
  gap: 8px;
}

.timeline__items strong {
  color: var(--blue-700);
  font-size: 22px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.stats-band div {
  padding: 26px;
  text-align: center;
}

.stats-band strong {
  display: block;
  color: var(--blue-700);
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
}

.wide-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: 36% 55%;
  border-radius: 8px;
}

.service-map {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue-100);
}

.map-hint {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.list-panel p {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.team-grid article {
  overflow: hidden;
}

.team-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.team-grid h3,
.team-grid p,
.team-grid small {
  margin-inline: 18px;
}

.team-grid h3 {
  margin-top: 16px;
}

.team-grid small {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
}

.area-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  padding: 22px;
}

.area-card img {
  float: right;
  width: 46%;
  height: 140px;
  object-fit: cover;
  object-position: 62% 18%;
  border-radius: 8px;
}

.area-card ul {
  clear: both;
  padding-left: 20px;
  color: var(--muted);
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.category-tabs a {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.category-tabs a.is-active {
  color: #fff;
  background: var(--blue-700);
}

.content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
}

.sidebar .panel p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.phone-big {
  margin: 20px 0 0;
  font-size: 26px;
  font-weight: 900;
}

.article-detail {
  padding-top: 42px;
}

.prose {
  max-width: 820px;
}

.prose h1 {
  color: var(--ink);
}

.prose .lead {
  font-size: 20px;
}

.prose img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: 28% 24%;
  margin: 28px 0;
  border-radius: 10px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 30px;
  align-items: stretch;
  padding-top: 18px;
}

.article-hero > div {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7fbff);
}

.article-hero img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.article-hero .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.article-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 850px);
  gap: 34px;
  align-items: start;
  padding-top: 34px;
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}

.article-toc,
.article-cta,
.article-insight,
.faq-mini {
  padding: 22px;
}

.article-toc h2,
.article-cta h2 {
  font-size: 18px;
}

.article-toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 900;
}

.article-toc a:hover {
  color: var(--blue-700);
}

.article-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), #0b4cb8) !important;
}

.article-cta p {
  color: #dce9ff;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-body section {
  scroll-margin-top: 110px;
}

.article-body h2 {
  margin-top: 0;
}

.article-body p,
.article-body li,
.faq-mini p {
  color: var(--muted);
}

.article-insight {
  border-left: 5px solid #0ca463;
  background: linear-gradient(90deg, #f2fbf6, #fff);
}

.article-insight strong {
  display: block;
  margin-bottom: 10px;
  color: #075b38;
  font-size: 18px;
}

.article-insight ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-insight li,
.check-list li {
  position: relative;
  padding-left: 30px;
}

.article-insight li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #0ca463;
  box-shadow: inset 0 0 0 5px #fff;
}

.faq-mini h3 {
  font-size: 17px;
}

.related-articles {
  margin-top: 46px;
  padding: 28px;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(7, 86, 232, 0.2), transparent 26%),
    linear-gradient(135deg, #001634, #052b66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr 0.8fr 1.3fr;
  gap: 34px;
  padding-block: 46px;
}

.brand--footer strong,
.brand--footer small {
  color: #fff;
}

.site-footer h2 {
  font-size: 17px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: #dce9ff;
  font-size: 14px;
}

.site-footer a + a {
  margin-top: 9px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.newsletter {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.newsletter input {
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.newsletter button {
  border: 0;
  padding-inline: 14px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 900;
}

.copyright {
  margin: 0;
  padding: 0 24px 26px;
  color: #c9daf4;
  text-align: center;
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 32px, 960px);
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero__grid,
  .split-grid,
  .timeline,
  .content-sidebar,
  .article-command,
  .article-tools,
  .article-feature,
  .article-hero,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .cards--services,
  .article-grid--home,
  .area-card-grid,
  .article-grid--seo {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .stats-band,
  .team-grid,
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .brand-strip,
  .category-tabs {
    grid-template-columns: repeat(5, 1fr);
  }

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

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }

  .nav-wrap {
    min-height: 68px;
  }

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

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .hero__grid {
    min-height: auto;
    gap: 0;
  }

  .hero__copy {
    padding-block: 42px 26px;
  }

  h1 {
    font-size: 40px;
  }

  .hero__copy p {
    font-size: 17px;
  }

  .hero__visual {
    min-height: 300px;
    margin-inline: -16px;
  }

  .hero__visual img {
    border-radius: 0;
  }

  .rating-card {
    left: 16px;
    right: auto;
    bottom: 16px;
  }

  .section {
    padding-block: 48px;
  }

  .section-title-row,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .cards--services,
  .feature-grid,
  .process-grid,
  .testimonial-grid,
  .article-grid,
  .article-grid--home,
  .article-grid--seo,
  .problem-grid,
  .booking,
  .stats-band,
  .team-grid,
  .area-card-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .article-feature article,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .article-feature img,
  .article-hero img,
  .article-hero > div {
    min-height: 260px;
  }

  .article-hero > div,
  .article-feature article > div,
  .article-feature aside,
  .related-articles {
    padding: 22px;
  }

  .brand-strip,
  .category-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel--visual {
    grid-template-columns: 1fr;
  }

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

  .cta-band > div:first-child {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container,
  .section-head {
    width: min(100% - 24px, 420px);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  .action-row,
  .trust-row {
    display: grid;
  }

  .brand-strip,
  .category-tabs {
    grid-template-columns: 1fr;
  }

  .article-command__stats {
    grid-template-columns: 1fr;
  }

  .article-tools,
  .article-command > div:first-child,
  .article-hero > div,
  .article-toc,
  .article-cta,
  .article-insight,
  .faq-mini,
  .related-articles {
    padding: 18px;
  }

  .article-meta-row {
    display: grid;
  }

  .service-card h3,
  .service-card p,
  .service-card a {
    max-width: 100%;
  }

  .service-card img {
    position: static;
    width: 100%;
    height: 150px;
    margin-top: 16px;
  }

  .panel {
    padding: 20px;
  }

  th,
  td {
    padding: 9px 8px;
    font-size: 12px;
  }
}
