:root {
  --ct-navy: #09131c;
  --ct-ink: #221f1f;
  --ct-blue: #3783c2;
  --ct-red: #e6244e;
  --ct-yellow: #f6be31;
  --ct-green: #249b56;
  --ct-white: #ffffff;
  --ct-mist: #eff4f8;
  --ct-panel: rgba(15, 27, 39, 0.84);
  --ct-border: rgba(255, 255, 255, 0.12);
  --ct-soft-border: rgba(9, 19, 28, 0.08);
  --ct-shadow: 0 20px 65px rgba(2, 8, 16, 0.2);
  --ct-radius: 28px;
  --ct-radius-sm: 18px;
  --ct-shell: min(1200px, calc(100vw - 48px));
  --ct-transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  color: var(--ct-mist);
  background:
    radial-gradient(circle at top left, rgba(55, 131, 194, 0.28), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(230, 36, 78, 0.14), transparent 20%),
    linear-gradient(180deg, #08111a 0%, #09131c 18%, #0c1723 100%);
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ct-yellow);
  outline-offset: 4px;
}

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

.screen-reader-text,
.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ct-ink);
  background: var(--ct-white);
}

.site-shell {
  width: min(var(--ct-shell), 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--ct-transition), border-color var(--ct-transition), backdrop-filter var(--ct-transition);
}

.site-header.is-scrolled {
  background: rgba(5, 12, 19, 0.78);
  border-bottom: 1px solid var(--ct-border);
  backdrop-filter: blur(18px);
}

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

.site-branding {
  flex: 0 1 auto;
  min-width: 0;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-logo-img {
  width: clamp(180px, 22vw, 290px);
  height: auto;
}

.primary-nav .menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.primary-nav a:hover {
  color: var(--ct-yellow);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 52px;
  padding: 12px;
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--ct-white);
  transform: translateX(-50%);
  transition:
    transform var(--ct-transition),
    top var(--ct-transition),
    box-shadow var(--ct-transition),
    opacity var(--ct-transition);
}

.nav-toggle::before {
  top: 18px;
  box-shadow: 0 8px 0 var(--ct-white);
}

.nav-toggle::after {
  top: 34px;
}

.nav-toggle[aria-expanded="true"]::before {
  top: 50%;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle > span:not(.screen-reader-text) {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 92px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero__content h1 {
  max-width: 11ch;
  margin: 0 0 20px;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 62ch;
  margin: 0;
  color: rgba(239, 244, 248, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ct-yellow);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__actions,
.contact-strip__aside {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--ct-transition),
    border-color var(--ct-transition),
    background var(--ct-transition),
    color var(--ct-transition),
    box-shadow var(--ct-transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--ct-white);
  background: linear-gradient(135deg, var(--ct-red), #f14f6c);
  box-shadow: 0 16px 36px rgba(230, 36, 78, 0.2);
}

.button--ghost {
  color: var(--ct-mist);
  border: 1px solid var(--ct-border);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  color: var(--ct-yellow);
  border-color: rgba(246, 190, 49, 0.45);
}

.button--block {
  width: 100%;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.metric-card,
.service-card,
.claim-card,
.highlight-card,
.process-card,
.support-card,
.entry-card,
.hosting-panel__box {
  border-radius: var(--ct-radius-sm);
  border: 1px solid var(--ct-border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--ct-shadow);
}

.metric-card,
.service-card,
.claim-card,
.highlight-card,
.process-card,
.support-card,
.hosting-panel__box,
.contact-form-embed,
.contact-list li {
  transition:
    transform var(--ct-transition),
    border-color var(--ct-transition),
    background var(--ct-transition),
    box-shadow var(--ct-transition),
    filter var(--ct-transition);
}

.metric-card:hover,
.service-card:hover,
.claim-card:hover,
.highlight-card:hover,
.process-card:hover,
.support-card:hover,
.hosting-panel__box:hover,
.contact-form-embed:hover,
.contact-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 190, 49, 0.26);
  box-shadow: 0 28px 72px rgba(2, 8, 16, 0.26);
  filter: saturate(1.04);
}

.metric-card {
  padding: 20px;
}

.metric-card strong {
  display: block;
  color: var(--ct-white);
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: rgba(239, 244, 248, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero__panel {
  position: relative;
  min-height: 520px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero__orb--blue {
  inset: 18% auto auto 10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, #66a8db, #1f5683 72%);
}

.hero__orb--red {
  top: 6%;
  right: 2%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 30% 30%, #ff7e99, #aa1239 72%);
}

.hero__orb--yellow {
  bottom: 6%;
  left: 6%;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle at 30% 30%, #ffe47f, #d99d12 72%);
}

.hero__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 520px);
  max-width: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(8, 17, 26, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.hero__card-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hero__card-brand img {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.hero__card-brand p {
  margin: 0;
  color: rgba(239, 244, 248, 0.9);
  line-height: 1.6;
}

.hero__chips,
.service-card__list,
.site-footer__links,
.contact-list,
.hosting-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__chips li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(239, 244, 248, 0.94);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section--light {
  color: var(--ct-ink);
  background: linear-gradient(180deg, rgba(239, 244, 248, 0.98), #ffffff);
}

.section--accent {
  background:
    radial-gradient(circle at top right, rgba(246, 190, 49, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(6, 18, 28, 0.96), rgba(12, 22, 33, 1));
}

.section--hosting {
  padding-top: 40px;
}

.section-heading--support {
  margin-bottom: 30px;
}

.section__grid--about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading h1,
.entry-card__title,
.site-footer__title,
.service-card h3,
.claim-card h3,
.highlight-card h3,
.process-card h3,
.support-card h3 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  letter-spacing: -0.03em;
}

.section-heading h2,
.section-heading h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading p:last-child {
  margin-top: 14px;
  color: rgba(34, 31, 31, 0.84);
}

.section--accent .section-heading p:last-child,
.section:not(.section--light) .section-heading p:last-child {
  color: rgba(239, 244, 248, 0.84);
}

.prose,
.service-card p,
.claim-card p,
.highlight-card p,
.process-card p,
.support-card p,
.hosting-panel p {
  font-size: 1rem;
  line-height: 1.7;
}

.service-grid,
.claim-band__grid,
.highlight-grid,
.process-grid,
.support-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.service-card,
.claim-card,
.highlight-card,
.process-card,
.support-card {
  padding: 26px;
}

.service-card,
.claim-card,
.support-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.claim-card::before,
.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ct-blue), var(--ct-red), var(--ct-yellow), var(--ct-green));
}

.claim-card::after,
.support-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 40%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 131, 194, 0.22), transparent 68%);
  opacity: 0;
  transition: opacity var(--ct-transition);
  pointer-events: none;
}

.claim-card:hover::after,
.support-card:hover::after {
  opacity: 1;
}

.service-card__kicker,
.process-card__step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card__kicker {
  color: var(--ct-blue);
}

.claim-band {
  padding: 0 0 34px;
}

.claim-band--dark {
  padding-top: 10px;
}

.claim-card h3 {
  color: var(--ct-ink);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1;
}

.claim-card p {
  margin: 10px 0 0;
  color: rgba(34, 31, 31, 0.78);
}

.claim-band--light .claim-card {
  background: #ffffff;
  border-color: rgba(9, 19, 28, 0.08);
  box-shadow: 0 22px 54px rgba(7, 18, 28, 0.08);
}

.claim-band--light .claim-card h3 {
  color: var(--ct-ink);
}

.claim-band--light .claim-card p {
  color: rgba(34, 31, 31, 0.78);
}

.claim-band--dark .claim-card {
  background: rgba(255, 255, 255, 0.05);
}

.claim-band--dark .claim-card h3 {
  color: rgba(255, 255, 255, 0.98);
}

.claim-band--dark .claim-card p {
  color: rgba(239, 244, 248, 0.84);
}

.service-card__list,
.hosting-panel__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.service-card__list li,
.hosting-panel__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(34, 31, 31, 0.84);
}

.service-card__list li::before,
.hosting-panel__list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ct-red);
}

.section--accent .service-card,
.section:not(.section--light) .highlight-card,
.section:not(.section--light) .process-card {
  background: rgba(255, 255, 255, 0.04);
}

.section:not(.section--light) .service-card p,
.section:not(.section--light) .highlight-card p,
.section:not(.section--light) .process-card p {
  color: rgba(239, 244, 248, 0.86);
}

.section:not(.section--light) .service-card__list li {
  color: rgba(239, 244, 248, 0.86);
}

.section--hosting .hosting-panel__list li {
  color: rgba(239, 244, 248, 0.94);
}

.process-card__step {
  color: var(--ct-yellow);
}

.section--light .service-card__kicker,
.section--light .process-card__step {
  color: rgba(34, 31, 31, 0.54);
}

.hosting-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 38px;
  border-radius: 36px;
  border: 1px solid var(--ct-border);
  background:
    radial-gradient(circle at right top, rgba(55, 131, 194, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--ct-shadow);
}

.section--hosting .hosting-panel h2 {
  color: rgba(255, 255, 255, 0.98);
}

.section--hosting .hosting-panel > div:first-child > p:not(.eyebrow) {
  max-width: 34ch;
  color: rgba(239, 244, 248, 0.9);
}

.hosting-panel__box {
  padding: 28px;
}

.section--hosting .hosting-panel__box {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.section--hosting .hosting-panel__list {
  gap: 14px;
}

.section--hosting .hosting-panel__list li {
  padding-left: 20px;
  font-weight: 500;
  line-height: 1.6;
}

.section--hosting .hosting-panel__list li::before {
  box-shadow: 0 0 0 4px rgba(230, 36, 78, 0.16);
}

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

.support-card {
  padding: 34px;
  border-radius: 36px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(6, 14, 22, 0.9);
}

.support-card--maintenance {
  background:
    radial-gradient(circle at top right, rgba(36, 155, 86, 0.18), transparent 28%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(6, 14, 22, 0.92);
}

.support-card--maintenance::before {
  background: linear-gradient(90deg, var(--ct-green), var(--ct-blue), var(--ct-yellow));
}

.support-card h3 {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.02;
}

.support-card p:not(.eyebrow) {
  max-width: 34ch;
  color: rgba(239, 244, 248, 0.9);
}

.support-card .hosting-panel__list {
  gap: 14px;
}

.support-card .hosting-panel__list li {
  padding-left: 20px;
  color: rgba(239, 244, 248, 0.94);
  font-weight: 500;
  line-height: 1.6;
}

.support-card .hosting-panel__list li::before {
  box-shadow: 0 0 0 4px rgba(230, 36, 78, 0.16);
}

.contact-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.contact-strip__aside {
  flex-direction: column;
  margin-top: 0;
}

.contact-form-embed {
  padding: 24px;
  border-radius: var(--ct-radius-sm);
  border: 1px solid var(--ct-soft-border);
  background: #f7fafc;
  box-shadow: 0 18px 48px rgba(7, 18, 28, 0.08);
}

.contact-form-embed > *:first-child {
  margin-top: 0;
}

.contact-form-embed > *:last-child {
  margin-bottom: 0;
}

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

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--ct-radius-sm);
  border: 1px solid var(--ct-soft-border);
  background: #f7fafc;
}

.contact-list span {
  color: rgba(34, 31, 31, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--ct-ink);
  font-weight: 700;
}

.page-wrap {
  padding: 56px 0 92px;
}

.entry-card {
  padding: 34px;
}

.entry-card--centered {
  text-align: center;
}

.entry-card__header {
  margin-bottom: 18px;
}

.site-footer {
  border-top: 1px solid var(--ct-border);
  background: rgba(4, 10, 16, 0.86);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 30px;
  padding: 42px 0;
}

.site-footer__title {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.site-footer__text,
.site-footer__links a,
.site-footer__meta {
  color: rgba(239, 244, 248, 0.8);
  line-height: 1.7;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__meta p {
  margin: 18px 0 0;
}

.site-footer__meta a {
  margin-top: 18px;
  color: var(--ct-yellow);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero__grid,
  .section__grid--about,
  .hosting-panel,
  .contact-strip,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    min-height: 460px;
  }
}

@media (max-width: 800px) {
  :root {
    --ct-shell: calc(100vw - 24px);
  }

  .site-header__inner {
    padding: 16px 0;
    gap: 12px;
  }

  .site-logo-link {
    padding: 0;
    border-radius: 0;
  }

  .site-logo-img {
    width: min(176px, 100%);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    inset: 82px 12px auto;
    max-width: calc(100vw - 24px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ct-transition), transform var(--ct-transition);
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid var(--ct-border);
    background: rgba(6, 14, 22, 0.96);
    box-shadow: var(--ct-shadow);
  }

  .primary-nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a {
    display: block;
    padding: 14px 6px;
  }

  .hero {
    padding: 28px 0 72px;
  }

  .hero__grid {
    gap: 24px;
  }

  .hero__content h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats,
  .service-grid,
  .claim-band__grid,
  .highlight-grid,
  .process-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    min-height: 0;
    padding-top: 132px;
  }

  .hero__card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 24px;
  }

  .hero__card-brand {
    flex-direction: column;
  }

  .hero__orb--blue {
    top: 10px;
    left: 14%;
    width: 150px;
    height: 150px;
  }

  .hero__orb--red {
    top: 0;
    right: 6%;
    width: 96px;
    height: 96px;
  }

  .hero__orb--yellow {
    top: 28px;
    right: 30%;
    left: auto;
    bottom: auto;
    width: 72px;
    height: 72px;
  }

  .section,
  .page-wrap {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .section-heading h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .service-card,
  .claim-card,
  .highlight-card,
  .process-card,
  .support-card,
  .contact-form-embed,
  .entry-card,
  .contact-list li {
    padding: 24px;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --ct-shell: calc(100vw - 20px);
  }

  .site-logo-img {
    width: min(164px, 100%);
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
  }

  .hero__card {
    padding: 20px;
    border-radius: 28px;
  }

  .hero__card-brand img {
    width: 56px;
  }

  .hero__chips {
    gap: 10px;
  }

  .hero__chips li {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .metric-card strong {
    font-size: 1.3rem;
  }

  .service-card,
  .claim-card,
  .highlight-card,
  .process-card,
  .support-card,
  .contact-form-embed,
  .entry-card,
  .contact-list li {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .metric-card,
  .service-card,
  .claim-card,
  .highlight-card,
  .process-card,
  .support-card,
  .hosting-panel__box,
  .contact-form-embed,
  .contact-list li {
    transition: none;
  }
}
