:root {
  --navy: #071a2f;
  --navy-soft: #123454;
  --blue: #145be7;
  --blue-bright: #246ff4;
  --blue-pale: #eaf2ff;
  --sky: #f4f8ff;
  --green: #159957;
  --text: #122235;
  --muted: #5d6b7d;
  --line: #dce5f0;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(19, 48, 82, 0.08);
  --shadow-lg: 0 28px 80px rgba(15, 47, 83, 0.15);
  --container: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3,
strong,
.brand-name {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(214, 225, 239, 0.85);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 30px rgba(19, 48, 82, 0.03);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: auto;
  aspect-ratio: 1335 / 1024;
  flex: 0 0 54px;
  place-items: center;
  line-height: 1;
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  aspect-ratio: 1335 / 1024;
  object-fit: contain;
}

.brand-name {
  color: var(--navy);
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -1.1px;
}

.brand-name > span {
  color: var(--blue);
}

.brand-name small {
  margin-left: 3px;
  color: var(--navy);
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 560;
}

.desktop-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 27px;
  color: #28394d;
}

.desktop-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 10px;
  background: var(--blue);
  box-shadow: 0 9px 24px rgba(20, 91, 231, 0.24);
  color: var(--white);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    linear-gradient(120deg, #ffffff 0%, #f8fbff 55%, #edf5ff 100%);
}

.hero::before {
  position: absolute;
  right: -100px;
  bottom: -250px;
  width: 780px;
  height: 500px;
  border: 1px solid rgba(44, 118, 240, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -250px;
  left: 36%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(44, 118, 240, 0.08), transparent 68%);
}

.hero-glow-two {
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(65, 144, 255, 0.09), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 1.25px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 14px;
  border: 1px solid #cfe0fb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 5px 18px rgba(25, 70, 124, 0.04);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(46px, 5.3vw, 70px);
  font-weight: 790;
  letter-spacing: -3.2px;
  line-height: 1.02;
}

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

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #506175;
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 23px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  stroke-width: 2.2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #1765ef, #0e51d3);
  box-shadow: 0 15px 32px rgba(20, 91, 231, 0.28);
  color: var(--white);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(20, 91, 231, 0.34);
}

.button-secondary {
  border-color: #cfdae7;
  background: rgba(255, 255, 255, 0.65);
  color: #33465d;
}

.button-secondary:hover {
  border-color: #afc5df;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.reassurance {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 0;
  color: #708096;
  font-size: 14px;
}

.reassurance svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--green);
  transform: translateY(3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.site-showcase {
  display: grid;
  overflow: hidden;
  border: 1px solid #cdd9e7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(14, 42, 74, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-showcase:hover,
.site-showcase:focus-within {
  box-shadow: 0 35px 82px rgba(14, 42, 74, 0.24);
  transform: translateY(-4px);
}

.showcase-slide {
  display: block;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
  grid-area: 1 / 1;
}

#showcase-auto:checked ~ .site-showcase .showcase-slide {
  animation: showcase-cycle 15s linear infinite;
}

.showcase-slide:nth-child(2) {
  animation-delay: 5s;
}

.showcase-slide:nth-child(3) {
  animation-delay: 10s;
}

.site-showcase:hover .showcase-slide,
.site-showcase:focus-within .showcase-slide {
  animation-play-state: paused;
}

#showcase-mop:checked ~ .site-showcase .showcase-slide-mop,
#showcase-msb:checked ~ .site-showcase .showcase-slide-msb,
#showcase-wws:checked ~ .site-showcase .showcase-slide-wws {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.showcase-slide:focus-visible {
  outline: 3px solid rgba(23, 101, 239, 0.55);
  outline-offset: -3px;
}

@keyframes showcase-cycle {
  0%,
  29% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  32% {
    opacity: 0;
    visibility: visible;
    pointer-events: auto;
  }

  33%,
  96% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  97% {
    opacity: 0;
    visibility: visible;
    pointer-events: auto;
  }

  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.showcase-choice {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.showcase-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 15px;
}

.showcase-controls label {
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: #c6d3e4;
  box-shadow: 0 0 0 4px transparent;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.showcase-controls label:hover {
  background: #7e9cc5;
  transform: scale(1.18);
}

#showcase-auto:checked ~ .showcase-controls label {
  animation: showcase-dot-cycle 15s linear infinite;
}

#showcase-auto:checked ~ .showcase-controls label:nth-child(2) {
  animation-delay: 5s;
}

#showcase-auto:checked ~ .showcase-controls label:nth-child(3) {
  animation-delay: 10s;
}

#showcase-mop:checked ~ .showcase-controls label[for="showcase-mop"],
#showcase-msb:checked ~ .showcase-controls label[for="showcase-msb"],
#showcase-wws:checked ~ .showcase-controls label[for="showcase-wws"] {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 91, 231, 0.13);
  transform: scale(1.1);
}

#showcase-mop:focus-visible ~ .showcase-controls label[for="showcase-mop"],
#showcase-msb:focus-visible ~ .showcase-controls label[for="showcase-msb"],
#showcase-wws:focus-visible ~ .showcase-controls label[for="showcase-wws"] {
  outline: 3px solid rgba(36, 111, 244, 0.45);
  outline-offset: 4px;
}

#showcase-auto:checked ~ .site-showcase:hover + .showcase-controls label,
#showcase-auto:checked ~ .site-showcase:focus-within + .showcase-controls label {
  animation-play-state: paused;
}

@keyframes showcase-dot-cycle {
  0%,
  32% {
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(20, 91, 231, 0.13);
    transform: scale(1.1);
  }

  33%,
  100% {
    background: #c6d3e4;
    box-shadow: 0 0 0 4px transparent;
    transform: scale(1);
  }
}

.showcase-topbar {
  display: grid;
  min-height: 43px;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid #dce5ef;
  background: #ffffff;
  grid-template-columns: 1fr auto 1fr;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4deea;
}

.browser-dots i:first-child {
  background: #ff766f;
}

.browser-dots i:nth-child(2) {
  background: #f4bf4f;
}

.browser-dots i:last-child {
  background: #51bd72;
}

.showcase-url {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #65758a;
  font-size: 11px;
  font-weight: 650;
}

.showcase-url svg {
  width: 12px;
  height: 12px;
  color: #8190a3;
}

.showcase-open {
  width: 16px;
  height: 16px;
  justify-self: end;
  color: var(--blue);
}

.showcase-image {
  overflow: hidden;
  aspect-ratio: 1340 / 902;
  background: #edf4fb;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.showcase-slide-wws .showcase-image {
  background: #020b18;
}

.showcase-slide-wws .showcase-image img {
  object-fit: contain;
  object-position: center;
}

.site-showcase:hover .showcase-image img {
  transform: scale(1.012);
}

.site-showcase:hover .showcase-slide-wws .showcase-image img {
  transform: none;
}

.showcase-caption {
  display: grid;
  align-items: center;
  padding: 15px 17px;
  border-top: 1px solid #e1e8f0;
  background: #ffffff;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f8ee;
  color: #147843;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.showcase-badge svg {
  width: 14px;
  height: 14px;
}

.showcase-client {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.showcase-client strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-client small {
  color: #77869a;
  font-size: 10px;
}

.showcase-caption > svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(35, 111, 232, 0.13);
  border-radius: 50%;
}

.orbit-one {
  right: -160px;
  bottom: -70px;
  width: 630px;
  height: 320px;
  transform: rotate(-8deg);
}

.orbit-two {
  right: -120px;
  bottom: -25px;
  width: 520px;
  height: 260px;
  transform: rotate(-8deg);
}

.dashboard-shell {
  position: absolute;
  top: 32px;
  right: 18px;
  left: 5px;
  overflow: hidden;
  border: 7px solid #172231;
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 36px 55px rgba(17, 39, 68, 0.23);
  transform: rotateY(-4deg) rotateZ(-1.2deg);
  transform-origin: center;
}

.dashboard-shell::after {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3c4651;
  content: "";
}

.dashboard-topbar {
  display: flex;
  height: 53px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e4e9ef;
  background: #ffffff;
  color: #172436;
  font-size: 11px;
}

.mini-brand {
  font-weight: 760;
}

.mini-brand b {
  margin-right: 5px;
  color: var(--blue);
  font-size: 17px;
}

.online-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #5d6b79;
  font-size: 10px;
}

.online-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1dab67;
  box-shadow: 0 0 0 4px #e3f7ec;
  content: "";
}

.dashboard-body {
  display: grid;
  min-height: 350px;
  grid-template-columns: 92px 1fr;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 31px 18px;
  border-right: 1px solid #e7ecf2;
  background: #ffffff;
}

.dashboard-sidebar span {
  display: block;
  width: 45px;
  height: 7px;
  border-radius: 5px;
  background: #dce4ee;
}

.dashboard-sidebar span:nth-child(2),
.dashboard-sidebar span:nth-child(5) {
  width: 56px;
}

.dashboard-sidebar .active {
  width: 56px;
  height: 25px;
  margin: -9px 0 2px;
  background: #e6efff;
  box-shadow: inset 3px 0 var(--blue);
}

.dashboard-content {
  padding: 24px 22px 22px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-heading div {
  display: flex;
  flex-direction: column;
}

.dashboard-heading small {
  color: #8794a4;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.dashboard-heading strong {
  font-size: 15px;
}

.dashboard-heading > span {
  padding: 5px 9px;
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  background: white;
  color: #69788a;
  font-size: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stats-grid div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 13px;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(19, 48, 82, 0.04);
}

.stats-grid small {
  overflow: hidden;
  margin-bottom: 4px;
  color: #6d7a89;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stats-grid strong {
  color: #101d2d;
  font-size: 20px;
  line-height: 1.25;
}

.stats-grid div:nth-child(2) strong,
.stats-grid div:nth-child(3) strong {
  color: #16864f;
}

.stats-grid em {
  margin-top: 3px;
  color: #91a0af;
  font-size: 7px;
  font-style: normal;
}

.activity-card {
  padding: 12px 14px;
  border: 1px solid #e5ebf2;
  border-radius: 10px;
  background: #ffffff;
}

.activity-title,
.activity-row {
  display: grid;
  align-items: center;
  grid-template-columns: 16px 1fr auto;
}

.activity-title {
  margin-bottom: 7px;
  grid-template-columns: 1fr auto;
  font-size: 9px;
}

.activity-title small {
  color: #96a2af;
  font-size: 7px;
}

.activity-row {
  padding: 7px 0;
  border-top: 1px solid #eff2f6;
  color: #435267;
  font-size: 7.5px;
}

.activity-row small {
  color: #98a3af;
  font-size: 6.5px;
}

.activity-check {
  display: grid;
  width: 11px;
  height: 11px;
  place-items: center;
  border-radius: 50%;
  background: #e0f6e9;
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
}

.floating-shield {
  position: absolute;
  z-index: 4;
  top: 3px;
  right: -20px;
  display: grid;
  width: 91px;
  height: 91px;
  place-items: center;
  border: 1px solid white;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f2f6fb);
  box-shadow: 0 22px 45px rgba(19, 48, 82, 0.18);
  color: var(--blue);
  font-size: 39px;
  font-weight: 900;
}

.floating-shield::before {
  position: absolute;
  width: 50px;
  height: 58px;
  border-radius: 16px 16px 24px 24px;
  background: var(--blue);
  content: "";
  clip-path: polygon(50% 0, 94% 17%, 88% 69%, 50% 100%, 12% 69%, 6% 17%);
}

.floating-shield::after {
  position: relative;
  color: white;
  content: "✓";
  font-size: 25px;
}

.floating-status {
  position: absolute;
  z-index: 5;
  right: -8px;
  bottom: -5px;
  display: flex;
  width: 184px;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 55px rgba(19, 48, 82, 0.2);
  text-align: center;
  backdrop-filter: blur(15px);
}

.status-check {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 9px;
  place-items: center;
  border: 8px solid #e4f8ec;
  border-radius: 50%;
  background: #21a563;
  color: white;
  font-size: 16px;
  font-weight: 900;
}

.floating-status strong {
  color: var(--navy);
  font-size: 14px;
}

.floating-status small {
  margin-top: 3px;
  color: #728094;
  font-size: 9px;
}

.trust-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid #edf1f6;
  border-bottom: 1px solid #e7edf4;
  background: #ffffff;
}

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

.trust-grid > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 15px;
  padding: 25px 24px;
  border-right: 1px solid #e2e9f1;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue);
}

.trust-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2;
}

.trust-grid p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 14px;
}

.trust-grid small {
  color: #6d7b8d;
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 700px;
}

.section-heading.centered {
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-bottom: 14px;
}

.section-heading h2,
.multisite-copy h2,
.contact-copy h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 770;
  letter-spacing: -2px;
  line-height: 1.12;
}

.section-heading > p:last-child,
.pricing-heading > p,
.multisite-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-section {
  background: #ffffff;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(23, 53, 88, 0.035);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: #c3d7f2;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.featured-service {
  border-color: #bdd2f2;
  background: linear-gradient(160deg, #ffffff, #f5f9ff);
}

.service-number {
  position: absolute;
  top: 18px;
  right: 25px;
  color: #e6edf6;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
}

.service-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-pale);
  color: var(--blue);
}

.service-symbol svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.9;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.4px;
}

.service-card > p {
  min-height: 54px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #edf1f5;
  color: #45566a;
  font-size: 13px;
}

.service-card li::before,
.check-list li::before {
  content: none;
}

.service-card li > svg,
.check-list li > svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 3px;
  color: var(--green);
  stroke-width: 2.8;
}

.pricing-section {
  background: var(--sky);
}

.pricing-heading {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  margin-bottom: 48px;
}

.pricing-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.pricing-heading > p {
  margin-bottom: 4px;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 38px;
  border: 1px solid #dce5ef;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8edf3;
}

.plan-label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.price-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 21px;
}

.price {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0;
}

.price strong {
  color: var(--navy);
  font-size: 38px;
  letter-spacing: -1.7px;
  line-height: 1.1;
}

.price span {
  color: #738195;
  font-size: 12px;
}

.plan-intro {
  margin: 25px 0 12px;
  color: #657488;
  font-size: 14px;
}

.price-card .check-list {
  margin-bottom: 28px;
}

.check-list li {
  padding-block: 10px;
  font-size: 13px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-outline {
  border-color: #bacce4;
  background: #ffffff;
  color: var(--blue);
}

.button-outline:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 25px rgba(20, 91, 231, 0.12);
}

.premium-card {
  position: relative;
  border-color: transparent;
  background: linear-gradient(155deg, #0d61ea, #0b3f9e 95%);
  box-shadow: 0 26px 60px rgba(17, 82, 190, 0.28);
  color: white;
}

.popular-badge {
  position: absolute;
  top: -13px;
  right: 28px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #dff9e9;
  box-shadow: 0 7px 16px rgba(18, 91, 54, 0.15);
  color: #11733f;
  font-size: 11px;
  font-weight: 800;
}

.premium-card .price-card-head {
  border-color: rgba(255, 255, 255, 0.2);
}

.premium-card .plan-label,
.premium-card .price span,
.premium-card .plan-intro,
.premium-card .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.premium-card h3,
.premium-card .price strong {
  color: white;
}

.premium-card .check-list li {
  border-color: rgba(255, 255, 255, 0.13);
}

.premium-card .check-list li::before {
  color: #8af0b7;
}

.button-light {
  background: white;
  box-shadow: 0 12px 28px rgba(3, 30, 80, 0.2);
  color: #0d52c7;
}

.extras-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.extras-row > div {
  display: grid;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid #dde6f0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  grid-template-columns: 38px 1fr auto;
  gap: 13px;
}

.extras-row > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 800;
}

.extras-row > div > span svg {
  width: 18px;
  height: 18px;
}

.extras-row p {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.extras-row strong {
  color: var(--navy);
  font-size: 13px;
}

.extras-row small {
  color: #768599;
  font-size: 11px;
}

.extras-row b {
  color: var(--navy);
  font-size: 14px;
}

.multisite-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #061b34 0%, #0c3b74 100%);
}

.multisite-section::before,
.multisite-section::after {
  position: absolute;
  border: 1px solid rgba(88, 154, 249, 0.2);
  border-radius: 50%;
  content: "";
}

.multisite-section::before {
  top: -220px;
  right: -180px;
  width: 650px;
  height: 650px;
}

.multisite-section::after {
  right: -65px;
  bottom: -300px;
  width: 700px;
  height: 500px;
}

.multisite-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.section-kicker-light {
  color: #82b3ff;
}

.multisite-copy h2,
.contact-copy h2 {
  color: white;
}

.multisite-copy > p,
.contact-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.text-link,
.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link-light {
  color: white;
}

.text-link:hover svg,
.text-link-light:hover svg {
  transform: translateX(4px);
}

.text-link svg,
.text-link-light svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.multisite-prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.multisite-prices article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.multisite-prices article > span {
  display: block;
  margin-bottom: 16px;
  color: #87b9ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.multisite-prices article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.multisite-prices article p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.multisite-prices article strong {
  color: white;
  font-size: 20px;
  white-space: nowrap;
}

.multisite-prices article strong small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  font-weight: 500;
}

.time-note {
  display: block;
  margin-top: 10px;
  color: #b7d2f8;
  font-size: 10px;
}

.five-sites {
  margin: 2px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  grid-column: 1 / -1;
  text-align: center;
}

.method-section {
  background: #ffffff;
}

.method-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.method-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 1px;
  background: #ccdaeb;
  content: "";
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding-bottom: 31px;
}

.method-steps li:last-child {
  padding-bottom: 0;
}

.method-steps li > span {
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 6px solid #eef4fc;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px #cbdcf2;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.method-steps h3 {
  margin: 2px 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: var(--sky);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-list details {
  border-bottom: 1px solid #d6e0eb;
}

.faq-list details:first-child {
  border-top: 1px solid #d6e0eb;
}

.faq-list summary {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: #e5eefb;
  color: var(--blue);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-list summary span svg {
  width: 16px;
  height: 16px;
}

.faq-list details[open] summary span {
  background: var(--blue);
  color: white;
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -8px 50px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  padding: 88px 0;
  background: white;
}

.contact-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  padding: 58px 64px;
  border-radius: 26px;
  background: linear-gradient(125deg, #1262ed, #093f9b);
  box-shadow: 0 30px 70px rgba(11, 70, 163, 0.24);
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.contact-card::before,
.contact-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.contact-card::before {
  top: -170px;
  right: -110px;
  width: 400px;
  height: 400px;
}

.contact-card::after {
  right: -75px;
  bottom: -205px;
  width: 430px;
  height: 430px;
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-copy {
  max-width: 710px;
}

.contact-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.contact-copy > p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-action {
  display: flex;
  min-width: 260px;
  flex-direction: column;
  align-items: center;
}

.button-white {
  width: 100%;
  background: white;
  box-shadow: 0 15px 30px rgba(4, 38, 90, 0.22);
  color: #0e54cd;
}

.contact-email {
  margin-top: 13px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.contact-action small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}

.seo-note {
  border-top: 1px solid #e8edf3;
  background: #f9fbfd;
}

.seo-note .container {
  display: grid;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
  grid-template-columns: auto 1fr;
  gap: 27px;
}

.seo-note strong {
  color: var(--navy);
  font-size: 12px;
  white-space: nowrap;
}

.seo-note p {
  margin-bottom: 0;
  color: #778599;
  font-size: 11px;
}

.site-footer {
  padding: 56px 0 23px;
  background: #061728;
  color: white;
}

.footer-main {
  display: grid;
  align-items: center;
  padding-bottom: 40px;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
}

.footer-brand .brand-name,
.footer-brand .brand-name small {
  color: white;
}

.footer-main > p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-main nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
}

/* Page locale : création de site internet à Martigues */

.local-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 78% 20%, rgba(104, 173, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #f9fbff 0%, #eef5ff 100%);
}

.local-glow {
  position: absolute;
  border: 1px solid rgba(20, 91, 231, 0.1);
  border-radius: 50%;
}

.local-glow-one {
  top: -280px;
  right: -170px;
  width: 640px;
  height: 640px;
}

.local-glow-two {
  right: 22%;
  bottom: -390px;
  width: 620px;
  height: 620px;
}

.local-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.13fr) minmax(330px, 0.87fr);
  gap: 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: #738298;
  font-size: 12px;
}

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

.local-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  padding: 8px 12px;
  border: 1px solid #c9dbf5;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #1555bd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.local-eyebrow svg {
  width: 15px;
  height: 15px;
}

.local-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(43px, 5.2vw, 67px);
  line-height: 1.04;
  letter-spacing: -3px;
}

.local-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: #53677f;
  font-size: 18px;
  line-height: 1.75;
}

.local-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 27px 0 0;
  padding: 0;
  color: #667890;
  font-size: 12px;
  list-style: none;
}

.local-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.local-proof-list svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.local-hero-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(198, 216, 239, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(12, 48, 88, 0.15);
}

.local-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #1765ef, #0d4dca);
  box-shadow: 0 12px 24px rgba(20, 91, 231, 0.25);
  color: white;
}

.local-card-icon svg {
  width: 27px;
  height: 27px;
}

.local-hero-card h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -1.2px;
}

.local-hero-card > p:not(.section-kicker) {
  margin-bottom: 23px;
  color: #64758b;
  font-size: 14px;
}

.local-hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid #e2e9f2;
  color: #334960;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.local-hero-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.local-hero-card li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.local-section {
  padding: 92px 0;
}

.local-intro-section {
  border-bottom: 1px solid #e6edf5;
}

.local-intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
}

.local-intro-grid h2,
.local-area-card h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -2px;
}

.local-rich-copy p {
  margin-bottom: 17px;
  color: #5f7085;
  font-size: 16px;
  line-height: 1.8;
}

.local-rich-copy p:last-child {
  margin-bottom: 0;
}

.local-services-section {
  background: #f7faff;
}

.local-heading {
  margin-bottom: 46px;
}

.local-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.local-service-card {
  padding: 31px;
  border: 1px solid #dce6f2;
  border-radius: 19px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.local-service-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue);
}

.local-service-card > span svg {
  width: 24px;
  height: 24px;
}

.local-service-card h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: 20px;
}

.local-service-card p {
  margin-bottom: 0;
  color: #67788e;
  font-size: 13px;
}

.local-industry-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(36, 111, 244, 0.22), transparent 30%),
    #071a2f;
  color: white;
}

.local-industry-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 84px;
}

.local-industry-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.local-industry-copy > p:not(.section-kicker) {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.local-industry-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-industry-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.local-industry-list li > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: #67a2ff;
}

.local-industry-list li span {
  display: flex;
  flex-direction: column;
}

.local-industry-list strong {
  font-size: 13px;
}

.local-industry-list small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.local-reference-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}

.local-reference-label {
  margin-bottom: 9px;
  color: #80b0ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-reference-panel h3 {
  margin-bottom: 23px;
  font-size: 26px;
  line-height: 1.2;
}

.local-reference-panel > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.local-reference-panel > a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.local-reference-panel > a strong {
  font-size: 14px;
}

.local-reference-panel > a small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.local-reference-panel > a > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: #73a7ff;
}

.local-process-section {
  background: white;
}

.local-process-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  list-style: none;
}

.local-process-grid li {
  padding: 27px;
  border: 1px solid #dfe7f1;
  border-radius: 17px;
  background: #fbfcfe;
}

.local-process-grid li > span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.local-process-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.local-process-grid p {
  margin-bottom: 0;
  color: #6c7c90;
  font-size: 12px;
}

.local-area-section {
  padding-top: 0;
}

.local-area-card {
  display: grid;
  align-items: center;
  padding: 43px;
  border: 1px solid #dce7f4;
  border-radius: 22px;
  background: linear-gradient(135deg, #f3f8ff, #fbfdff);
  grid-template-columns: auto 1fr;
  gap: 29px;
}

.local-area-icon {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--blue);
}

.local-area-icon svg {
  width: 30px;
  height: 30px;
}

.local-area-card h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.local-area-card p:last-child {
  max-width: 900px;
  margin-bottom: 0;
  color: #63758b;
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(36, 111, 244, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero {
    padding-top: 72px;
  }

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

  .hero-visual {
    min-height: 0;
  }

  .dashboard-shell {
    right: 0;
  }

  .trust-grid > div {
    padding: 20px 14px;
  }

  .trust-grid strong {
    font-size: 12px;
  }

  .trust-grid small {
    font-size: 10px;
  }

  .service-card,
  .price-card {
    padding: 28px;
  }

  .multisite-wrap,
  .method-grid,
  .faq-grid {
    gap: 52px;
  }

  .contact-card {
    padding: 48px;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    width: 44px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #d9e3ef;
    border-radius: 10px;
    background: white;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary svg {
    width: 21px;
    height: 21px;
    color: var(--navy);
  }

  .mobile-nav nav {
    position: absolute;
    top: 51px;
    right: 0;
    display: flex;
    width: 220px;
    flex-direction: column;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow-lg);
  }

  .mobile-nav nav a {
    padding: 10px 13px;
    border-radius: 8px;
    color: #33465b;
    font-size: 14px;
  }

  .mobile-nav nav a:last-child {
    background: var(--blue);
    color: white;
  }

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

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

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 0;
    margin: 0 auto;
  }

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

  .trust-grid > div {
    padding: 22px 18px;
    border-bottom: 1px solid #e2e9f1;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }

  .trust-grid > div:first-child {
    padding-left: 18px;
  }

  .trust-grid > div:last-child {
    padding-right: 18px;
  }

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

  .service-card {
    display: grid;
    align-items: start;
    grid-template-columns: 64px 1fr;
    column-gap: 20px;
  }

  .service-symbol {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .service-card h3,
  .service-card > p,
  .service-card ul {
    grid-column: 2;
  }

  .service-card > p {
    min-height: 0;
  }

  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid,
  .multisite-wrap,
  .method-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .multisite-wrap,
  .method-grid,
  .faq-grid {
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .contact-card {
    gap: 30px;
  }

  .contact-action {
    max-width: 340px;
    align-items: flex-start;
  }

  .contact-action .button {
    width: 100%;
  }

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

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

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

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

  .brand-icon {
    width: 44px;
    height: auto;
    flex-basis: 44px;
  }

  .brand-icon img {
    width: 100%;
  }

  .brand-name {
    font-size: 24px;
  }

  .hero {
    padding: 53px 0 54px;
  }

  .eyebrow {
    margin-bottom: 19px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.75px;
  }

  .hero h1 {
    margin-bottom: 19px;
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -2.4px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .reassurance {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 0;
    margin-top: 12px;
  }

  .showcase-topbar {
    min-height: 38px;
    padding: 0 11px;
  }

  .showcase-url {
    font-size: 9px;
  }

  .showcase-caption {
    padding: 12px;
    grid-template-columns: 1fr auto;
    gap: 9px;
  }

  .showcase-badge {
    width: max-content;
    padding: 6px 9px;
    grid-column: 1 / -1;
  }

  .dashboard-shell {
    top: 25px;
    right: 7px;
    left: 7px;
    border-width: 5px;
    border-radius: 15px;
  }

  .dashboard-topbar {
    height: 42px;
    padding: 0 13px;
  }

  .dashboard-body {
    min-height: 244px;
    grid-template-columns: 52px 1fr;
  }

  .dashboard-sidebar {
    gap: 13px;
    padding: 22px 10px;
  }

  .dashboard-sidebar span,
  .dashboard-sidebar span:nth-child(2),
  .dashboard-sidebar span:nth-child(5) {
    width: 28px;
  }

  .dashboard-sidebar .active {
    width: 31px;
    height: 18px;
  }

  .dashboard-content {
    padding: 15px 12px;
  }

  .dashboard-heading {
    margin-bottom: 10px;
  }

  .dashboard-heading strong {
    font-size: 11px;
  }

  .stats-grid {
    gap: 5px;
  }

  .stats-grid div {
    padding: 8px;
  }

  .stats-grid strong {
    font-size: 13px;
  }

  .stats-grid em {
    display: none;
  }

  .activity-card {
    padding: 7px 8px;
  }

  .activity-row {
    padding: 4px 0;
    font-size: 5.9px;
  }

  .activity-row small {
    font-size: 5.3px;
  }

  .floating-shield {
    right: -3px;
    width: 61px;
    height: 61px;
  }

  .floating-shield::before {
    width: 34px;
    height: 39px;
  }

  .floating-shield::after {
    font-size: 17px;
  }

  .floating-status {
    right: -2px;
    bottom: -2px;
    width: 135px;
    padding: 12px 8px;
    border-radius: 14px;
  }

  .status-check {
    width: 34px;
    height: 34px;
    border-width: 5px;
    font-size: 12px;
  }

  .floating-status strong {
    font-size: 11px;
  }

  .floating-status small {
    font-size: 7px;
  }

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

  .trust-grid > div,
  .trust-grid > div:nth-child(3) {
    min-height: 86px;
    padding: 15px 3px;
    border-right: 0;
    border-bottom: 1px solid #e2e9f1;
  }

  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding-right: 3px;
    padding-left: 3px;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2,
  .multisite-copy h2,
  .contact-copy h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .section-heading > p:last-child,
  .pricing-heading > p,
  .multisite-copy > p,
  .contact-copy > p {
    font-size: 15px;
  }

  .service-card {
    display: block;
    padding: 25px;
  }

  .service-symbol {
    margin-bottom: 20px;
  }

  .service-card h3,
  .service-card > p,
  .service-card ul {
    grid-column: auto;
  }

  .price-card {
    padding: 25px;
  }

  .price-card-head {
    flex-direction: column;
    gap: 15px;
  }

  .price {
    align-items: flex-start;
  }

  .extras-row,
  .multisite-prices {
    grid-template-columns: 1fr;
  }

  .extras-row > div {
    grid-template-columns: 36px 1fr;
  }

  .extras-row b {
    padding-left: 49px;
    grid-column: 1 / -1;
  }

  .multisite-prices .five-sites {
    grid-column: auto;
  }

  .method-steps li {
    gap: 16px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-card {
    width: calc(100% - 20px);
    padding: 35px 27px;
  }

  .seo-note .container {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .seo-note strong {
    white-space: normal;
  }

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

  .footer-main nav {
    flex-wrap: wrap;
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 1000px) {
  .local-hero-grid,
  .local-industry-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .local-hero-card,
  .local-reference-panel {
    max-width: 720px;
  }

  .local-intro-grid {
    gap: 44px;
  }

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

  .local-service-card:last-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 700px) {
  .local-hero {
    padding: 48px 0 62px;
  }

  .local-hero-grid {
    gap: 34px;
  }

  .breadcrumb {
    margin-bottom: 18px;
  }

  .local-eyebrow {
    align-items: flex-start;
    border-radius: 13px;
    line-height: 1.45;
  }

  .local-hero h1 {
    margin-bottom: 19px;
    font-size: 40px;
    letter-spacing: -2px;
  }

  .local-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .local-proof-list {
    display: grid;
  }

  .local-hero-card {
    padding: 27px;
  }

  .local-hero-card h2 {
    font-size: 26px;
  }

  .local-section,
  .local-industry-section {
    padding: 69px 0;
  }

  .local-intro-grid,
  .local-services-grid,
  .local-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .local-service-card:last-child {
    grid-column: auto;
  }

  .local-intro-grid h2,
  .local-industry-copy h2 {
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .local-rich-copy p {
    font-size: 15px;
  }

  .local-industry-grid {
    gap: 37px;
  }

  .local-industry-list li {
    align-items: flex-start;
  }

  .local-reference-panel {
    padding: 25px;
  }

  .local-reference-panel h3 {
    font-size: 23px;
  }

  .local-area-section {
    padding-top: 0;
  }

  .local-area-card {
    padding: 29px;
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .local-area-card h2 {
    font-size: 29px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #showcase-auto:checked ~ .site-showcase .showcase-slide {
    animation: none !important;
  }

  #showcase-auto:checked ~ .site-showcase .showcase-slide:first-child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #showcase-auto:checked ~ .site-showcase .showcase-slide:not(:first-child) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  #showcase-auto:checked ~ .showcase-controls label {
    animation: none !important;
  }

  #showcase-auto:checked ~ .showcase-controls label:first-child {
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(20, 91, 231, 0.13);
  }
}

@media print {
  .site-header,
  .hero-visual,
  .hero-actions,
  .contact-section,
  .mobile-nav {
    display: none !important;
  }

  .section,
  .hero {
    padding: 32px 0;
  }

  body {
    color: #000;
  }
}
