:root {
  --blue: #075bdc;
  --blue-2: #1d6ff2;
  --blue-3: #eaf4ff;
  --ink: #081636;
  --text: #263b5d;
  --muted: #60718e;
  --line: #d9e5f5;
  --soft: #f5f9ff;
  --white: #ffffff;
  --green: #46b76c;
  --shadow: 0 18px 42px rgba(15, 63, 128, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 9%, rgba(35, 112, 239, 0.13), transparent 27rem),
    linear-gradient(180deg, #ffffff 0%, #fdfefe 55%, #f7fbff 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7, 91, 220, 0.28);
  outline-offset: 3px;
}

img,
svg {
  display: block;
}

.mobile-break {
  display: none;
}

.page-shell {
  width: min(calc(100% - 48px), 1400px);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 292px;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  color: var(--blue);
  flex: 0 0 52px;
  overflow: hidden;
}

.brand-mark svg {
  width: 100% !important;
  height: 100% !important;
}

.brand-mark svg path:first-child {
  fill: currentColor;
}

.brand-mark svg path:last-child {
  fill: #ffffff;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
}

.nav-link svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.has-menu {
  position: relative;
}

.services-menu {
  position: absolute;
  top: 40px;
  left: -18px;
  width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 31, 77, 0.12);
  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}

.has-menu.open .services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.services-menu a {
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--text);
}

.services-menu a:hover {
  background: var(--blue-3);
  color: var(--blue);
}

.quote-button,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 55px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0864e9, #064ec8);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(6, 82, 207, 0.27);
}

.quote-button {
  min-width: 158px;
  min-height: 54px;
}

.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
}

.mobile-menu-button svg {
  margin: auto;
  width: 23px;
  height: 23px;
}

.mobile-nav {
  display: none;
  width: min(calc(100% - 48px), 1400px);
  margin: 0 auto 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(7, 31, 77, 0.1);
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 700;
}

.hero {
  min-height: 588px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 42px;
  align-items: center;
  padding: 42px 0 54px;
  border-bottom: 1px solid rgba(217, 229, 245, 0.7);
}

.hero-copy {
  padding-left: 11px;
}

.hero h1 {
  max-width: 660px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(43px, 3.75vw, 55px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 576px;
  margin: 0;
  color: #526782;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 39px;
}

.primary-action,
.secondary-action {
  min-width: 245px;
  padding: 0 31px;
}

.primary-action svg,
.secondary-action svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 55px;
  border: 2px solid #b6caf0;
  border-radius: 8px;
  background: #ffffff;
  color: #13264a;
  font-size: 15px;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 59px;
  color: #1b2e50;
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-row svg {
  width: 25px;
  height: 25px;
  color: var(--blue);
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.browser-frame,
.floating-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.property-frame {
  width: min(100%, 660px);
  height: 450px;
  position: absolute;
  top: 8px;
  right: 16px;
  z-index: 1;
  overflow: hidden;
  border-radius: 14px;
}

.browser-dots {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-bottom: 1px solid #e7eef9;
  background: #f8fbff;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb7b7;
}

.browser-dots span:nth-child(2) {
  background: #ffd58a;
}

.browser-dots span:nth-child(3) {
  background: #9edfae;
}

.property-nav {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 49px;
  background: #ffffff;
  color: #13264a;
  font-size: 7px;
  font-weight: 800;
}

.property-nav strong {
  font-size: 11px;
  line-height: 1.1;
}

.property-nav div {
  display: flex;
  align-items: center;
  gap: 19px;
}

.property-nav span:first-child {
  color: var(--blue);
}

.property-nav b {
  padding: 9px 17px;
  border-radius: 3px;
  background: #061434;
  color: #ffffff;
}

.property-screen {
  height: calc(100% - 89px);
  position: relative;
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  overflow: hidden;
  background: #eef5ff;
}

.property-text {
  position: relative;
  z-index: 2;
  padding: 58px 0 0 52px;
}

.property-text h2 {
  margin: 0 0 12px;
  color: #081636;
  font-size: 33px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.property-text p {
  width: 220px;
  margin: 0 0 20px;
  color: #62708a;
  font-size: 9px;
  font-weight: 600;
}

.property-text button,
.phone-mock button {
  border: 0;
  border-radius: 3px;
  background: #061434;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 10px 16px;
}

.property-screen img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
  height: 100%;
  object-fit: cover;
}

.property-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #f2f7ff 0%, #f2f7ff 38%, rgba(242, 247, 255, 0.7) 50%, transparent 68%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border-radius: 12px;
}

.score-card {
  left: 6px;
  bottom: 30px;
  width: 154px;
  height: 196px;
  padding: 22px 22px 18px;
  text-align: center;
  color: var(--ink);
}

.score-card strong {
  display: block;
  text-align: left;
  font-size: 12px;
  margin-bottom: 20px;
}

.score-ring {
  width: 92px;
  height: 92px;
  margin: 0 auto 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 96%, #dfe8f2 96% 100%);
}

.score-ring::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
}

.score-ring span {
  position: relative;
  color: var(--green);
  font-size: 27px;
  font-weight: 700;
}

.score-card small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.analytics-card {
  left: 171px;
  bottom: 30px;
  width: 325px;
  min-height: 183px;
  padding: 22px 28px;
}

.analytics-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  margin-bottom: 16px;
}

.analytics-card dl {
  margin: 0;
  display: grid;
  gap: 15px;
}

.analytics-card div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.analytics-card dt {
  color: #172b4d;
  font-size: 11px;
  font-weight: 700;
}

.analytics-card dd {
  margin: 0;
  color: #52627a;
  font-size: 11px;
  font-weight: 800;
}

.analytics-card span {
  margin-left: 22px;
  color: #3aa96d;
}

.phone-mock {
  right: 0;
  bottom: 28px;
  width: 154px;
  height: 303px;
  padding: 18px 12px 13px;
  border: 3px solid #d3dfed;
  border-radius: 22px;
  background: #ffffff;
}

.phone-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #102341;
  font-size: 7px;
  line-height: 1.15;
}

.phone-top svg {
  width: 14px;
  height: 14px;
}

.phone-mock h3 {
  margin: 36px 0 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.14;
  font-weight: 800;
}

.phone-mock button {
  padding: 7px 10px;
  font-size: 7px;
}

.phone-mock img {
  width: 100%;
  height: 88px;
  margin-top: 12px;
  border-radius: 4px;
  object-fit: cover;
}

.phone-mock > span {
  display: inline-block;
  margin-top: 6px;
  border-radius: 3px;
  background: #0b1d3c;
  color: #ffffff;
  font-size: 7px;
  font-weight: 800;
  padding: 4px 6px;
}

.section-title {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.services-section {
  padding: 29px 0 32px;
}

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

.service-card {
  min-height: 258px;
  padding: 31px 21px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
  box-shadow: 0 10px 22px rgba(8, 42, 93, 0.04);
}

.service-card > svg {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  color: var(--blue);
  stroke-width: 1.8;
}

.service-card h3 {
  min-height: 42px;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: #1c2d4c;
  font-size: 14px;
  line-height: 1.47;
  font-weight: 600;
}

.demo-section {
  padding: 30px 0 36px;
}

.demo-intro {
  max-width: 790px;
  margin: 0 auto 24px;
  text-align: center;
}

.demo-intro > span,
.demo-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-intro .section-title {
  margin-top: 8px;
}

.demo-intro p {
  margin: 14px 0 0;
  color: #3d5270;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.demo-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, clamp(380px, 38vw, 570px)) 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 42, 93, 0.08);
}

.demo-card > img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  background: #eef4fb;
}

.demo-card > div {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 22px 24px 24px;
  background: #ffffff;
}

.demo-card h3 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  overflow-wrap: break-word;
}

.demo-card p {
  margin: 0;
  color: #304664;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  overflow-wrap: break-word;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.05);
}

.ecommerce-panel {
  min-height: 433px;
  padding: 25px 54px 27px 25px;
}

.shop-mock {
  position: relative;
  min-height: 350px;
  border-radius: 10px;
  overflow: visible;
  background: #ffffff;
}

.cart-fab {
  position: absolute;
  top: 30px;
  right: 20px;
  z-index: 4;
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #075bdc;
  color: #ffffff;
  box-shadow: 0 10px 19px rgba(7, 91, 220, 0.34);
}

.cart-fab svg {
  width: 23px;
  height: 23px;
}

.shop-mock h3 {
  margin: 26px 0 18px;
  padding-left: 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  padding: 0 20px 20px;
}

.product-grid article {
  min-width: 0;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 5px;
  object-fit: cover;
  background: #f0f4f9;
}

.product-grid span {
  display: block;
  margin-top: 13px;
  color: #688099;
  font-size: 8px;
  font-weight: 800;
}

.product-grid strong {
  display: block;
  margin-top: 8px;
  color: #071835;
  font-size: 13px;
  font-weight: 800;
}

.product-grid button {
  width: 100%;
  min-height: 35px;
  margin-top: 9px;
  border: 0;
  border-radius: 4px;
  background: #0a1c39;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
}

.cart-card {
  position: absolute;
  right: -58px;
  bottom: -9px;
  width: 202px;
  min-height: 292px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(12, 54, 112, 0.18);
}

.cart-card h4 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.cart-line {
  display: grid;
  grid-template-columns: 33px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 8px;
  color: #13264a;
  font-weight: 700;
}

.cart-line img {
  width: 33px;
  height: 42px;
  border-radius: 3px;
  object-fit: cover;
}

.cart-line strong {
  font-size: 8px;
}

.subtotal {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 19px;
  color: #293b56;
  font-size: 10px;
  font-weight: 700;
}

.cart-card button {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  background: #071835;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
}

.cart-card svg {
  width: 13px;
  height: 13px;
}

.feature-copy h2,
.hosting-copy h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-copy > p,
.hosting-copy > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: #243957;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 600;
}

.feature-list {
  display: grid;
  gap: 26px 46px;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
}

.feature-list article > svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
  stroke-width: 1.9;
}

.feature-list h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.17;
  font-weight: 800;
}

.feature-list p {
  margin: 0;
  color: #243957;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.platform-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 37px;
  color: #111827;
}

.platform-logos .woo {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 6px;
  border-radius: 3px;
  background: #a35abf;
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
  font-weight: 800;
}

.platform-logos strong {
  color: #151a24;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.platform-logos .divider {
  width: 1px;
  height: 31px;
  margin: 0 28px;
  background: #bfcadd;
}

.shopify-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #69bd45;
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  transform: rotate(-7deg);
}

.platform-logos .shopify {
  font-size: 28px;
  font-style: italic;
}

.hosting-panel {
  min-height: 319px;
  margin-top: 20px;
  padding: 0 0 0 49px;
  gap: 48px;
  overflow: hidden;
}

.hosting-copy h2 {
  margin-bottom: 16px;
}

.hosting-copy h2 span {
  color: var(--blue);
}

.hosting-copy > p {
  max-width: 607px;
  margin-bottom: 35px;
}

.hosting-copy strong {
  color: var(--blue);
}

.hosting-points {
  display: flex;
  gap: 56px;
  color: #13264a;
  font-size: 13px;
  font-weight: 800;
}

.hosting-points span {
  display: inline-grid;
  grid-template-columns: 43px 1fr;
  gap: 11px;
  align-items: center;
}

.hosting-points svg {
  width: 43px;
  height: 43px;
  color: var(--blue);
  stroke-width: 1.7;
}

.dashboard-mock {
  height: 319px;
  display: grid;
  grid-template-columns: 141px 1fr;
  align-self: stretch;
  background: #ffffff;
}

.dashboard-mock aside {
  padding: 24px 18px;
  background: linear-gradient(180deg, #082149, #071633);
  color: #b7c6dc;
}

.nixi-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.nixi-logo span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid #1575f4;
  border-right-color: transparent;
}

.dashboard-mock aside b,
.dashboard-mock aside span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-mock aside b {
  background: #0b5cc7;
  color: #ffffff;
}

.dashboard-mock aside svg {
  width: 13px;
  height: 13px;
}

.dashboard-content {
  min-width: 0;
  padding: 28px 30px 20px;
}

.dashboard-content h3 {
  margin: 0 0 17px;
  color: #152849;
  font-size: 17px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 17px;
}

.metric-grid article {
  min-height: 77px;
  padding: 16px 14px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
}

.metric-grid span {
  display: block;
  color: #687b95;
  font-size: 10px;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  color: #0a1a36;
  font-size: 28px;
  font-weight: 800;
}

.chart-card {
  padding: 13px 15px 12px;
  border: 1px solid #dce7f4;
  border-radius: 8px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1b2d4e;
  font-size: 11px;
  font-weight: 800;
}

.chart-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #61718b;
  font-size: 9px;
  font-weight: 700;
}

.chart-head b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d6ff2;
}

.chart-head b:nth-child(2) {
  background: #6fb783;
}

.chart-head b:nth-child(3) {
  background: #64748b;
}

.chart-card svg {
  width: 100%;
  height: 106px;
  margin-top: 5px;
}

.chart-card polyline {
  fill: none;
  stroke: #1f6eea;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.grid-line {
  fill: none;
  stroke: #e8eef7;
  stroke-width: 2;
}

.chart-dates {
  display: flex;
  justify-content: space-between;
  color: #677991;
  font-size: 9px;
  font-weight: 700;
}

.best-practices {
  padding: 14px 0 20px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.practice-grid article {
  min-height: 175px;
  padding: 29px 28px 19px;
  text-align: center;
  position: relative;
}

.practice-grid article + article {
  border-left: 1px solid var(--line);
}

.practice-grid svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: var(--blue);
  stroke-width: 1.9;
}

.practice-grid h3 {
  min-height: 38px;
  margin: 0 0 6px;
  color: #102341;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 800;
}

.practice-grid p {
  margin: 0;
  color: #1f324f;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 600;
}

.why-section {
  margin-top: 3px;
  padding: 17px 22px 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eff6ff 0%, #eaf3ff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 24px;
}

.why-grid article {
  min-height: 91px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: flex-start;
  padding: 0 22px;
  border-left: 1px solid #c6d8ee;
}

.why-grid article:first-child {
  border-left: 0;
}

.why-grid svg {
  width: 37px;
  height: 37px;
  color: var(--blue);
  stroke-width: 1.7;
}

.why-grid h3 {
  margin: 0 0 4px;
  color: #102341;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.why-grid p {
  margin: 0;
  color: #1d304e;
  font-size: 12px;
  line-height: 1.39;
  font-weight: 700;
}

.site-footer {
  margin-top: 17px;
  padding: 28px 0 13px;
  background: linear-gradient(135deg, #06172d 0%, #092846 62%, #063154 100%);
  color: #d7e4f4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.85fr 0.85fr 1.25fr;
  gap: 62px;
}

.footer-logo {
  min-width: 0;
  color: #ffffff;
}

.footer-logo .brand-mark {
  width: 45px;
  height: 45px;
  flex-basis: 45px;
}

.footer-logo strong {
  color: #ffffff;
  font-size: 25px;
}

.footer-logo small {
  color: #c8d7ea;
}

.footer-brand p {
  max-width: 397px;
  margin: 21px 0 20px;
  color: #d9e6f5;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

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

.socials a,
.socials span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.socials svg {
  width: 17px;
  height: 17px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.site-footer a,
.site-footer address span {
  display: block;
  margin-bottom: 8px;
  color: #d7e4f4;
  font-size: 13px;
  line-height: 1.32;
  font-style: normal;
  font-weight: 500;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
}

.site-footer address a,
.site-footer address span {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  overflow-wrap: anywhere;
}

.site-footer address svg {
  width: 16px;
  height: 16px;
  color: #d7e4f4;
  margin-top: 1px;
}

.copyright {
  width: min(calc(100% - 48px), 1400px);
  margin: 18px auto 0;
  color: #d7e4f4;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.icon-text {
  display: inline-flex;
  align-items: center;
}

.nav-link.active {
  color: var(--blue);
}

.inner-page {
  background:
    radial-gradient(circle at 78% 2%, rgba(35, 112, 239, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero .eyebrow {
  display: inline-flex;
  margin-bottom: 17px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #526782;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.compact-actions {
  margin-top: 32px;
}

.service-detail-grid,
.portfolio-grid,
.plan-grid,
.split-benefits,
.platform-card-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.service-detail-grid {
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 30px;
}

.detail-card,
.process-section,
.commerce-page-panel,
.store-preview,
.platform-card-grid article,
.plan-grid article,
.split-benefits article,
.portfolio-grid article,
.contact-form,
.contact-card,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.05);
}

.detail-card {
  padding: 31px;
}

.detail-card > svg,
.plan-grid svg,
.split-benefits svg {
  width: 54px;
  height: 54px;
  color: var(--blue);
  stroke-width: 1.8;
}

.detail-card h2,
.plan-grid h2,
.split-benefits h2 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.detail-card p,
.plan-grid p,
.split-benefits p,
.platform-card-grid p,
.faq-grid p,
.portfolio-grid p,
.contact-card p {
  margin: 0;
  color: #283c5b;
  font-size: 15px;
  line-height: 1.52;
  font-weight: 600;
}

.detail-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
  color: #1c2d4c;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.process-section {
  margin-top: 8px;
  margin-bottom: 34px;
  padding: 34px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.process-grid article {
  padding: 24px;
  border-radius: 10px;
  background: #f2f7ff;
}

.process-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3,
.platform-card-grid h3,
.portfolio-grid h2,
.faq-grid h3,
.contact-card h2 {
  margin: 8px 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.process-grid p {
  margin: 0;
  color: #283c5b;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.commerce-page-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
  padding: 34px;
  margin-bottom: 30px;
}

.store-preview {
  overflow: hidden;
}

.store-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
}

.store-visual-grid article {
  min-width: 0;
}

.store-visual-grid img,
.portfolio-grid img {
  width: 100%;
  object-fit: cover;
}

.store-visual-grid img {
  aspect-ratio: 1.16 / 1;
  border-radius: 8px;
}

.store-visual-grid strong {
  display: block;
  margin-top: 15px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.store-visual-grid span {
  display: block;
  margin-top: 5px;
  color: #526782;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.platform-section {
  margin-bottom: 34px;
}

.platform-card-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.platform-card-grid article {
  padding: 31px;
}

.platform-card-grid .woo {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 8px;
  border-radius: 4px;
  background: #a35abf;
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
}

.platform-card-grid .shopify-mark {
  display: inline-grid;
}

.hosting-page-panel {
  margin-bottom: 28px;
}

.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
}

.plan-grid article,
.split-benefits article {
  padding: 31px;
}

.split-benefits {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
  margin-bottom: 34px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.portfolio-grid article {
  overflow: hidden;
}

.portfolio-grid img {
  aspect-ratio: 1.32 / 1;
}

.portfolio-grid div {
  padding: 24px;
}

.portfolio-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 32px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbdaf0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 600;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(7, 91, 220, 0.17);
  border-color: var(--blue);
}

.full-field,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-submit {
  border: 0;
  width: fit-content;
  min-width: 190px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.contact-card {
  padding: 32px;
}

.contact-card a,
.contact-card span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 19px;
  color: #142743;
  font-size: 15px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.contact-mini-panel {
  margin-top: 28px;
  padding: 22px;
  border-radius: 10px;
  background: #eff6ff;
}

.contact-mini-panel strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.contact-mini-panel p {
  margin-top: 6px;
}

.faq-section {
  margin-bottom: 34px;
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.faq-grid article {
  padding: 26px;
}

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

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

  .hero-visual {
    min-height: 500px;
  }

  .property-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .score-card {
    left: calc(50% - 326px);
  }

  .analytics-card {
    left: calc(50% - 156px);
  }

  .phone-mock {
    right: calc(50% - 330px);
  }

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

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

  .cart-card {
    right: 20px;
  }

  .hosting-panel {
    padding: 36px;
  }

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

  .practice-grid article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .practice-grid article:nth-child(n + 5) {
    border-top: 1px solid var(--line);
  }

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

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .quote-button {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .site-header.menu-open .mobile-nav {
    display: block;
  }

  .brand {
    min-width: 0;
  }

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

@media (max-width: 940px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .desktop-nav,
  .quote-button {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .site-header.menu-open .mobile-nav {
    display: block;
  }

  .brand {
    min-width: 0;
  }

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

  .hero h1 {
    font-size: 42px;
  }

  .feature-list.two-column,
  .product-grid,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    height: auto;
    align-self: auto;
  }

  .dashboard-mock aside {
    display: none;
  }

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

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

  .practice-grid article + article {
    border-left: 0;
  }

  .practice-grid article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .practice-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .why-grid article {
    border-left: 0;
    border-top: 1px solid #c6d8ee;
    padding: 20px 10px;
  }

  .why-grid article:first-child,
  .why-grid article:nth-child(2) {
    border-top: 0;
  }
}

@media (max-width: 700px) {
  .page-shell,
  .mobile-nav,
  .copyright {
    width: min(calc(100% - 28px), 1400px);
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
    column-gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

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

  .hero {
    padding-top: 24px;
    gap: 26px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .mobile-break {
    display: block;
  }

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

  .hero-actions {
    gap: 14px;
    margin-top: 26px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    min-width: 0;
  }

  .trust-row {
    gap: 18px;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 338px;
  }

  .property-frame {
    position: relative;
    left: auto;
    transform: none;
    height: 310px;
  }

  .property-nav {
    padding: 0 18px;
  }

  .property-nav div {
    display: none;
  }

  .property-screen {
    grid-template-columns: 1fr;
  }

  .property-text {
    max-width: 188px;
    padding: 38px 20px 0 24px;
  }

  .property-text h2 {
    font-size: 25px;
  }

  .property-text p {
    width: auto;
    max-width: 150px;
    line-height: 1.35;
  }

  .property-screen img {
    width: 64%;
  }

  .property-screen::before {
    background: linear-gradient(90deg, #f2f7ff 0%, #f2f7ff 48%, rgba(242, 247, 255, 0.86) 63%, rgba(242, 247, 255, 0.2) 82%);
  }

  .score-card,
  .analytics-card,
  .phone-mock {
    display: none;
  }

  .section-title {
    font-size: 24px;
  }

  .services-grid,
  .practice-grid,
  .why-grid,
  .demo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .demo-section {
    padding: 22px 0 28px;
  }

  .demo-intro {
    text-align: left;
  }

  .demo-card {
    grid-template-rows: minmax(0, clamp(220px, 64vw, 270px)) 1fr;
  }

  .demo-card > img {
    object-position: top center;
  }

  .demo-card > div {
    padding: 18px 20px 22px;
  }

  .practice-grid article,
  .practice-grid article + article,
  .practice-grid article:nth-child(4),
  .practice-grid article:nth-child(n + 5) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .practice-grid article:first-child {
    border-top: 0;
  }

  .ecommerce-panel,
  .hosting-panel {
    padding: 18px;
  }

  .feature-copy h2,
  .hosting-copy h2 {
    font-size: 28px;
  }

  .feature-list.two-column,
  .product-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .cart-card {
    position: static;
    width: auto;
    margin: 18px 20px 0;
  }

  .shop-mock {
    overflow: hidden;
  }

  .platform-logos {
    flex-wrap: wrap;
  }

  .platform-logos .divider {
    display: none;
  }

  .hosting-points {
    display: grid;
    gap: 18px;
  }

  .hosting-panel {
    overflow: visible;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    height: auto;
  }

  .dashboard-content {
    padding: 20px;
  }

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

  .chart-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .chart-dates span:nth-child(even) {
    display: none;
  }
}

@media (max-width: 1180px) {
  .service-detail-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commerce-page-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 940px) {
  .split-benefits,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .page-hero {
    padding: 38px 0 30px;
  }

  .page-hero h1 {
    font-size: 35px;
  }

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

  .service-detail-grid,
  .portfolio-grid,
  .process-grid,
  .store-visual-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .process-section,
  .commerce-page-panel,
  .platform-card-grid article,
  .plan-grid article,
  .split-benefits article,
  .contact-form,
  .contact-card,
  .faq-grid article {
    padding: 22px;
  }

  .why-grid article:nth-child(2) {
    border-top: 1px solid #c6d8ee;
  }

  .form-submit {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand strong {
    font-size: 17px;
    white-space: nowrap;
  }

  .brand small {
    max-width: 172px;
    font-size: 10px;
    line-height: 1.2;
  }

  .mobile-menu-button {
    width: 42px;
    height: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .property-frame {
    height: 310px;
  }

  .property-text {
    max-width: 168px;
    padding-left: 22px;
  }

  .property-text h2 {
    font-size: 22px;
  }

  .property-text p {
    max-width: 132px;
  }

  .property-text button {
    max-width: 132px;
    white-space: normal;
  }

  .property-screen img {
    width: 58%;
  }

  .property-screen::before {
    background: linear-gradient(90deg, #f2f7ff 0%, #f2f7ff 56%, rgba(242, 247, 255, 0.92) 72%, rgba(242, 247, 255, 0.35) 90%);
  }
}

@media (max-width: 700px) {
  .hosting-panel {
    overflow: visible;
  }

  .dashboard-mock {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    align-self: auto;
  }

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

/* Service area pages */
.areas-page,
.city-hub {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.areas-page .page-shell,
.city-hub .page-shell {
  width: min(calc(100% - 56px), 1400px);
}

.areas-hero {
  padding: 74px 0 38px;
}

.areas-hero .eyebrow,
.city-backlink {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid #cfe0f6;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.areas-hero h1,
.city-hero-copy h1,
.miami-hero h1,
.orlando-hero-copy h1 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 800;
}

.areas-hero p,
.city-hero-copy > p,
.miami-hero p,
.orlando-hero-copy > p {
  max-width: 860px;
  margin: 22px 0 0;
  color: #314767;
  font-size: 19px;
  line-height: 1.58;
  font-weight: 600;
}

.areas-hero-links,
.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.areas-hero-links a,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid #b9cff0;
  border-radius: 8px;
  background: #ffffff;
  color: #0a2b63;
  font-size: 14px;
  font-weight: 800;
}

.areas-major {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 12px 0 36px;
}

.areas-major-card,
.areas-regions,
.areas-seo,
.city-photo-panel,
.gainesville-focus > div,
.city-services,
.city-nearby,
.city-industries,
.miami-industries,
.city-link-path,
.miami-market article,
.miami-services article,
.orlando-route article,
.orlando-sector-grid,
.orlando-services article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.06);
}

.areas-major-card {
  display: grid;
  grid-template-rows: minmax(0, 220px) 1fr;
  overflow: hidden;
}

.areas-major-card > img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}

.areas-major-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: #ffffff;
}

.areas-major-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.areas-major-card h2,
.areas-regions h2,
.areas-seo h2,
.city-section-intro h2,
.city-nearby h2,
.city-industries h2,
.miami-industries h2,
.city-link-path h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  overflow-wrap: break-word;
}

.areas-major-card p,
.areas-regions p,
.areas-seo p,
.city-section-intro p,
.city-nearby p,
.miami-industries p,
.city-link-path p {
  margin: 0;
  color: #354b6b;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 600;
  overflow-wrap: break-word;
}

.areas-major-card a,
.miami-services a,
.orlando-services a,
.areas-seo a:not(.primary-action),
.city-link-path p a,
.city-services a,
.gainesville-focus a {
  color: var(--blue);
  font-weight: 800;
}

.areas-regions,
.areas-seo {
  padding: 34px;
  margin-bottom: 28px;
}

.areas-regions > p {
  max-width: 900px;
  margin-top: 12px;
}

.areas-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.areas-region-grid article {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
  padding: 20px;
  border-radius: 10px;
  background: #f4f8ff;
}

.areas-region-grid h3 {
  flex: 0 0 100%;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.areas-region-grid span,
.city-nearby nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #cfe0f6;
  border-radius: 8px;
  background: #ffffff;
  color: #173158;
  font-size: 13px;
  font-weight: 800;
}

.areas-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.areas-seo p {
  max-width: 920px;
  margin-top: 12px;
}

.city-hero,
.orlando-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0 38px;
}

.city-photo-panel,
.orlando-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.city-photo-panel {
  overflow: hidden;
}

.city-photo-panel img,
.orlando-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.city-photo-panel figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 9px;
  max-width: 410px;
  padding: 24px;
  border-radius: 12px;
  background: #071d3f;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(3, 18, 43, 0.28);
}

.city-photo-panel figcaption strong,
.orlando-priority-card strong {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
}

.city-photo-panel figcaption span,
.orlando-priority-card span {
  color: #e6effb;
  font-size: 14px;
  font-weight: 700;
}

.gainesville-focus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.gainesville-focus > div {
  padding: 28px;
}

.gainesville-focus span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.gainesville-focus h2,
.miami-market h2,
.orlando-route h2,
.miami-services h2,
.orlando-services h2,
.orlando-sector-grid h3,
.city-service-list h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
}

.gainesville-focus p,
.miami-market p,
.orlando-route p,
.miami-services p,
.orlando-services p,
.orlando-sector-grid p,
.city-service-list p,
.city-industries span {
  margin: 0;
  color: #334867;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.city-services,
.city-nearby,
.city-industries,
.miami-industries,
.city-link-path,
.orlando-sector-grid {
  margin-top: 28px;
  padding: 34px;
}

.city-section-intro {
  max-width: 880px;
  margin-bottom: 24px;
}

.city-section-intro p {
  margin-top: 10px;
}

.city-service-list,
.miami-services,
.orlando-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.city-service-list article {
  min-width: 0;
  padding: 22px;
  border: 1px solid #d7e5f5;
  border-radius: 10px;
  background: #f7fbff;
}

.city-service-list svg,
.miami-services svg,
.orlando-services svg,
.orlando-sector-grid svg {
  width: 46px;
  height: 46px;
  color: var(--blue);
  stroke-width: 1.8;
}

.city-nearby {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.city-nearby p {
  margin-top: 12px;
}

.city-nearby nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-nearby nav a {
  min-height: 48px;
  justify-content: center;
}

.city-industries div,
.miami-industries > div:last-child {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.city-industries span,
.miami-industries > div:last-child span {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 132px;
  padding: 22px 14px;
  text-align: center;
  background: #ffffff;
  border-left: 1px solid var(--line);
}

.city-industries span:first-child,
.miami-industries > div:last-child span:first-child {
  border-left: 0;
}

.city-industries svg,
.miami-industries > div:last-child svg {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.city-link-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.city-link-path h2,
.city-link-path p {
  grid-column: 1;
}

.city-link-path p {
  margin-top: 10px;
}

.city-link-path .primary-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.miami-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 640px;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #06152d;
}

.miami-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.miami-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 20, 45, 0.92) 0%, rgba(5, 20, 45, 0.74) 48%, rgba(5, 20, 45, 0.18) 100%);
}

.miami-hero-overlay {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: 56px;
  color: #ffffff;
}

.miami-hero h1,
.miami-hero p {
  color: #ffffff;
}

.miami-hero .city-backlink {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.miami-hero .secondary-action {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: #ffffff;
}

.miami-market,
.orlando-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.miami-market article,
.orlando-route article,
.miami-services article,
.orlando-services article {
  padding: 28px;
}

.miami-market article:first-child {
  background: #061f45;
}

.miami-market article:first-child h2,
.miami-market article:first-child p {
  color: #ffffff;
}

.miami-industries {
  border-color: #c9dcf3;
}

.miami-industries > div:last-child {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.miami-services,
.orlando-services {
  margin-top: 28px;
}

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

.miami-services article,
.orlando-services article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.orlando-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
}

.orlando-visual {
  min-height: 520px;
  overflow: visible;
}

.orlando-visual img {
  min-height: 520px;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(8, 42, 93, 0.16);
}

.orlando-priority-card {
  position: absolute;
  right: 28px;
  bottom: -22px;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100% - 56px));
  padding: 24px;
  border-radius: 12px;
  background: #071d3f;
  color: #ffffff;
  box-shadow: 0 18px 35px rgba(3, 18, 43, 0.28);
}

.orlando-priority-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.orlando-priority-card svg {
  width: 18px;
  height: 18px;
  color: #83b7ff;
}

.orlando-route article {
  border-top: 5px solid var(--blue);
}

.orlando-route span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.orlando-sector-grid > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.orlando-sector-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid #d7e5f5;
  border-radius: 10px;
  background: #f7fbff;
}

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

@media (max-width: 1180px) {
  .areas-major,
  .areas-region-grid,
  .city-service-list,
  .orlando-sector-grid > div:last-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .city-photo-panel,
  .orlando-visual {
    max-width: 900px;
  }

  .city-industries div,
  .miami-industries > div:last-child {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-industries span:nth-child(4),
  .miami-industries > div:last-child span:nth-child(4) {
    border-left: 0;
  }

  .city-industries span:nth-child(n + 4),
  .miami-industries > div:last-child span:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 940px) {
  .areas-seo,
  .city-nearby,
  .city-link-path {
    grid-template-columns: 1fr;
  }

  .gainesville-focus,
  .miami-market,
  .orlando-route,
  .miami-services,
  .orlando-services {
    grid-template-columns: 1fr;
  }

  .city-link-path .primary-action {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .city-industries div,
  .miami-industries > div:last-child {
    grid-template-columns: repeat(2, 1fr);
  }

  .city-industries span,
  .city-industries span:nth-child(4),
  .miami-industries > div:last-child span,
  .miami-industries > div:last-child span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .city-industries span:nth-child(1),
  .city-industries span:nth-child(2),
  .miami-industries > div:last-child span:nth-child(1),
  .miami-industries > div:last-child span:nth-child(2) {
    border-top: 0;
  }

  .city-industries span:nth-child(even),
  .miami-industries > div:last-child span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .miami-hero {
    min-height: 560px;
  }
}

@media (max-width: 700px) {
  .areas-page .page-shell,
  .city-hub .page-shell {
    width: min(calc(100% - 28px), 1400px);
  }

  .areas-hero,
  .city-hero,
  .orlando-hero {
    padding: 34px 0 22px;
  }

  .areas-hero h1,
  .city-hero-copy h1,
  .miami-hero h1,
  .orlando-hero-copy h1 {
    font-size: 38px;
  }

  .areas-hero p,
  .city-hero-copy > p,
  .miami-hero p,
  .orlando-hero-copy > p {
    font-size: 16px;
  }

  .areas-major,
  .areas-region-grid,
  .city-service-list,
  .city-nearby nav,
  .orlando-sector-grid > div:last-child,
  .city-industries div,
  .miami-industries > div:last-child {
    grid-template-columns: 1fr;
  }

  .areas-major-card {
    grid-template-rows: minmax(0, 210px) auto;
  }

  .areas-major-card > div {
    padding: 20px;
  }

  .areas-regions,
  .areas-seo,
  .city-services,
  .city-nearby,
  .city-industries,
  .miami-industries,
  .city-link-path,
  .orlando-sector-grid {
    padding: 22px;
  }

  .areas-major-card h2,
  .areas-regions h2,
  .areas-seo h2,
  .city-section-intro h2,
  .city-nearby h2,
  .city-industries h2,
  .miami-industries h2,
  .city-link-path h2 {
    font-size: 25px;
  }

  .city-photo-panel img,
  .orlando-visual img {
    min-height: 340px;
  }

  .city-photo-panel figcaption,
  .orlando-priority-card {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 14px;
    border-radius: 12px;
  }

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

  .gainesville-focus > div,
  .miami-market article,
  .orlando-route article,
  .miami-services article,
  .orlando-services article,
  .orlando-sector-grid article {
    padding: 22px;
  }

  .city-industries span,
  .city-industries span:nth-child(2),
  .city-industries span:nth-child(even),
  .city-industries span:nth-child(4),
  .miami-industries > div:last-child span,
  .miami-industries > div:last-child span:nth-child(2),
  .miami-industries > div:last-child span:nth-child(even),
  .miami-industries > div:last-child span:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .city-industries span:first-child,
  .miami-industries > div:last-child span:first-child {
    border-top: 0;
  }

  .miami-hero {
    min-height: 0;
    margin-top: 18px;
  }

  .miami-hero > img {
    position: relative;
    height: 310px;
  }

  .miami-hero::after {
    display: none;
  }

  .miami-hero-overlay {
    padding: 24px;
    background: #071d3f;
  }

  .city-hero-actions,
  .areas-hero-links {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .areas-hero h1,
  .city-hero-copy h1,
  .miami-hero h1,
  .orlando-hero-copy h1 {
    font-size: 34px;
  }
}

.hub-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(7, 91, 220, 0.09), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 64%, #f2f7fd 100%);
}

.hub-page .page-shell {
  width: min(calc(100% - 68px), 1760px);
}

.hub-page .site-header {
  background: rgba(255, 255, 255, 0.98);
}

.hub-page .header-inner {
  min-height: 88px;
}

.ocala-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 78px;
  align-items: center;
  padding: 46px 0 38px;
}

.ocala-hero-copy {
  min-width: 0;
}

.ocala-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 33px;
  padding: 0 22px;
  border: 1px solid #d6e4f7;
  border-radius: 999px;
  background: #f6faff;
  color: #2d65b8;
  font-size: 15px;
  font-weight: 800;
}

.ocala-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #071838;
  font-size: clamp(58px, 4.9vw, 82px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.ocala-hero-copy > p {
  max-width: 690px;
  margin: 0;
  color: #3d526f;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.ocala-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 34px;
  color: #24569f;
  font-size: 15px;
  font-weight: 800;
}

.ocala-tech-tags span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.ocala-tech-tags span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.ocala-actions {
  margin-top: 42px;
  gap: 36px;
}

.ocala-actions .primary-action,
.ocala-actions .secondary-action {
  min-width: 236px;
}

.ocala-hero-photo {
  position: relative;
  min-height: 630px;
  margin: 0;
  border-radius: 14px;
}

.ocala-hero-photo > img {
  width: 100%;
  height: 630px;
  border-radius: 14px;
  object-fit: cover;
  object-position: 54% 50%;
  box-shadow: 0 24px 56px rgba(8, 42, 93, 0.13);
}

.ocala-partner-card {
  position: absolute;
  left: -18px;
  top: 50%;
  width: 410px;
  min-height: 424px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 42px 38px 34px;
  border-radius: 14px;
  background: linear-gradient(180deg, #082246 0%, #071a37 100%);
  color: #ffffff;
  transform: translateY(-45%);
  box-shadow: 0 22px 42px rgba(4, 26, 59, 0.28);
}

.ocala-partner-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.ocala-partner-card span {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: center;
  color: #edf5ff;
  font-size: 14px;
  font-weight: 700;
}

.ocala-partner-card svg {
  width: 20px;
  height: 20px;
}

.ocala-partner-card b {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(220, 235, 255, 0.3);
  font-size: 17px;
}

.ocala-serving-badge {
  position: absolute;
  right: -15px;
  bottom: -27px;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border: 7px solid #e8f2ff;
  border-radius: 50%;
  background: linear-gradient(180deg, #1474f5, #075bdc);
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(7, 91, 220, 0.24);
}

.ocala-serving-badge span {
  display: block;
  font-size: 11px;
  font-weight: 800;
}

.ocala-serving-badge strong {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  line-height: 1.05;
  font-weight: 800;
}

.ocala-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 43px;
  align-items: center;
  padding: 0 0 45px;
}

.ocala-proof span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #243a5a;
  font-size: 14px;
  font-weight: 800;
}

.ocala-proof svg {
  width: 37px;
  height: 37px;
  padding: 8px;
  border: 1px solid #d9e7f8;
  border-radius: 50%;
  background: #f8fbff;
  color: var(--blue);
}

.ocala-why,
.ocala-service-area,
.ocala-services,
.ocala-industries,
.ocala-split > article,
.ocala-testimonials,
.ocala-faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.04);
}

.ocala-why {
  padding: 30px 28px 39px;
}

.ocala-why h2,
.ocala-services h2,
.ocala-industries h2,
.ocala-testimonials h2,
.ocala-faq h2 {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 800;
}

.ocala-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 31px;
  margin-top: 20px;
}

.ocala-why-grid article {
  min-height: 292px;
  padding: 33px 21px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

.ocala-why-grid svg {
  width: 61px;
  height: 61px;
  margin: 0 auto 22px;
  color: var(--blue);
  stroke-width: 1.75;
}

.ocala-why-grid h3 {
  margin: 0 0 11px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.ocala-why-grid p {
  margin: 0;
  color: #2b3f5e;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.ocala-service-area {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 0.44fr 1.32fr;
  gap: 38px;
  align-items: center;
  margin-top: 42px;
  padding: 36px 38px 34px;
  overflow: hidden;
}

.ocala-area-copy h2 {
  margin: 0 0 21px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.ocala-area-copy p,
.ocala-area-note {
  margin: 0;
  color: #304664;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.ocala-map-mark svg {
  width: 158px;
  height: 174px;
  color: #0a65df;
  opacity: 0.18;
}

.ocala-map-mark path,
.ocala-map-mark circle {
  fill: currentColor;
}

.ocala-map-mark circle {
  fill: none;
  stroke: #0a65df;
  stroke-width: 7;
  opacity: 0.9;
}

.ocala-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 54px;
}

.ocala-city-grid a {
  min-height: 62px;
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid #cadcf1;
  border-radius: 8px;
  background: #ffffff;
  color: #223653;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(8, 42, 93, 0.04);
}

.ocala-city-grid a::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--blue);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ocala-area-note {
  grid-column: 3;
  text-align: center;
  color: #60718e;
  font-size: 14px;
}

.ocala-services {
  margin-top: 28px;
  padding: 22px 33px 35px;
}

.ocala-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 29px;
  margin-top: 21px;
}

.ocala-service-grid article {
  min-height: 146px;
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.ocala-service-grid svg {
  width: 66px;
  height: 66px;
  color: var(--blue);
  stroke-width: 1.8;
}

.ocala-service-grid h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
}

.ocala-service-grid p {
  margin: 0;
  color: #324765;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 600;
}

.hub-woo,
.hub-shopify,
.hub-nixi {
  align-self: center;
  justify-self: start;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
}

.hub-woo {
  width: 66px;
  height: 41px;
  border-radius: 4px;
  background: #a35abf;
  font-size: 28px;
  line-height: 1;
}

.hub-shopify {
  width: 58px;
  height: 68px;
  border-radius: 6px 14px 12px 14px;
  background: #74bd43;
  font-size: 36px;
  transform: rotate(7deg);
}

.hub-nixi {
  width: 58px;
  height: 58px;
  border-radius: 11px;
  background: #136ee7;
  font-size: 42px;
  line-height: 1;
}

.ocala-industries {
  margin-top: 28px;
  padding: 17px 28px 24px;
}

.ocala-industries div {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 23px;
}

.ocala-industries span {
  min-height: 95px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: #1c304d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.ocala-industries span:first-child {
  border-left: 0;
}

.ocala-industries svg {
  width: 54px;
  height: 54px;
  color: var(--blue);
  stroke-width: 1.7;
}

.ocala-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 28px;
}

.ocala-split > article {
  min-height: 410px;
  padding: 34px;
}

.ocala-commerce-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  overflow: hidden;
}

.ocala-commerce-card h2,
.ocala-standards-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.ocala-commerce-card p {
  max-width: 390px;
  margin: 0;
  color: #324765;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
}

.ocala-platform-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 31px 0 32px;
}

.ocala-platform-lockup strong {
  color: #17233c;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
}

.ocala-platform-lockup .hub-shopify {
  width: 35px;
  height: 39px;
  font-size: 23px;
}

.ocala-platform-lockup .hub-woo {
  width: 77px;
  height: 39px;
  font-size: 29px;
}

.hub-shopify-word {
  font-size: 28px !important;
  font-style: italic;
}

.ocala-commerce-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #283e5d;
  font-size: 14px;
  font-weight: 700;
}

.ocala-commerce-card li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
}

.ocala-commerce-card li svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.ocala-device-mock {
  position: relative;
  min-height: 340px;
}

.ocala-laptop {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(100%, 430px);
  border: 8px solid #101b2d;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(8, 42, 93, 0.15);
}

.ocala-laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 118%;
  height: 18px;
  border-radius: 0 0 20px 20px;
  background: #dce5ef;
  transform: translateX(-50%);
}

.ocala-browser-bar {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 14px;
  border-bottom: 1px solid #e5edf7;
}

.ocala-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9e9e;
}

.ocala-browser-bar span:nth-child(2) {
  background: #ffd15f;
}

.ocala-browser-bar span:nth-child(3) {
  background: #7bd28f;
}

.ocala-laptop img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.ocala-product-card {
  position: absolute;
  right: 18px;
  top: 55px;
  width: 122px;
  padding: 13px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.16);
}

.ocala-product-card b,
.ocala-product-card span {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.ocala-product-card span {
  margin-top: 5px;
  color: #58708e;
}

.ocala-product-card button {
  width: 100%;
  min-height: 25px;
  margin-top: 10px;
  border: 0;
  border-radius: 4px;
  background: #081a36;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
}

.ocala-phone-shop {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 96px;
  min-height: 186px;
  padding: 11px;
  border: 5px solid #151f31;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 42, 93, 0.18);
}

.ocala-phone-shop img {
  width: 100%;
  height: 118px;
  border-radius: 9px;
  object-fit: cover;
}

.ocala-phone-shop strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.ocala-standard-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.ocala-standard-list span {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  color: #324765;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.ocala-standard-list svg {
  grid-row: span 2;
  width: 45px;
  height: 45px;
  color: var(--blue);
  stroke-width: 1.8;
}

.ocala-standard-list b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
}

.ocala-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 28px;
}

.ocala-testimonials,
.ocala-faq {
  padding: 25px 30px 30px;
}

.ocala-testimonials > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 21px;
}

.ocala-testimonials blockquote {
  min-height: 165px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.ocala-testimonials svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
  stroke-width: 2.3;
}

.ocala-testimonials p {
  margin: 12px 0 18px;
  color: #324765;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.ocala-testimonials cite {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.ocala-testimonials cite span {
  display: block;
  margin-top: 2px;
  color: #667a96;
  font-size: 11px;
  font-weight: 700;
}

.ocala-faq details {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.ocala-faq summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 17px;
  color: #243a5a;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.ocala-faq summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #7c8da8;
  border-bottom: 2px solid #7c8da8;
  transform: rotate(45deg) translateY(-3px);
}

.ocala-faq details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.ocala-faq details p {
  margin: 0;
  padding: 0 17px 16px;
  color: #324765;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 600;
}

.ocala-cta {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 0;
  padding: 25px 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, #0963df 0%, #075bdc 48%, #054ab4 100%);
  color: #ffffff;
}

.ocala-cta div {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
}

.ocala-cta svg {
  width: 34px;
  height: 34px;
}

.ocala-cta h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 800;
}

.ocala-cta p {
  grid-column: 2;
  margin: -8px 0 0;
  color: #dfeeff;
  font-size: 16px;
  font-weight: 600;
}

.ocala-cta-primary,
.ocala-cta-secondary {
  min-width: 165px;
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.ocala-cta-primary {
  background: #ffffff;
  color: #075bdc;
}

.ocala-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.68);
  color: #ffffff;
}

@media (max-width: 1320px) {
  .hub-page .page-shell {
    width: min(calc(100% - 48px), 1400px);
  }

  .ocala-hero {
    gap: 48px;
  }

  .ocala-partner-card {
    left: 20px;
    width: 360px;
  }

  .ocala-why-grid,
  .ocala-service-grid {
    gap: 18px;
  }

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

  .ocala-industries span:nth-child(5) {
    border-left: 0;
  }
}

@media (max-width: 1080px) {
  .ocala-hero {
    grid-template-columns: 1fr;
  }

  .ocala-hero-photo {
    max-width: 860px;
  }

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

  .ocala-service-area {
    grid-template-columns: 1fr;
  }

  .ocala-map-mark {
    display: none;
  }

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

  .ocala-area-note {
    grid-column: auto;
  }

  .ocala-service-grid,
  .ocala-split,
  .ocala-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 940px) {
  .ocala-hero h1 {
    font-size: 54px;
  }

  .ocala-hero-photo > img {
    height: 520px;
  }

  .ocala-partner-card {
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .ocala-city-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

  .ocala-industries span,
  .ocala-industries span:nth-child(5) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ocala-industries span:nth-child(1),
  .ocala-industries span:nth-child(2) {
    border-top: 0;
  }

  .ocala-cta {
    grid-template-columns: 70px 1fr;
  }

  .ocala-cta-primary,
  .ocala-cta-secondary {
    grid-column: 2;
    width: 220px;
  }
}

@media (max-width: 700px) {
  .hub-page .page-shell {
    width: min(calc(100% - 28px), 1400px);
  }

  .ocala-hero {
    gap: 30px;
    padding-top: 26px;
  }

  .ocala-eyebrow {
    min-height: 32px;
    margin-bottom: 22px;
    padding: 0 14px;
    font-size: 12px;
  }

  .ocala-hero h1 {
    font-size: 39px;
  }

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

  .ocala-tech-tags {
    gap: 10px 12px;
    margin-top: 22px;
    font-size: 13px;
  }

  .ocala-tech-tags span + span::before {
    display: none;
  }

  .ocala-actions {
    gap: 14px;
    margin-top: 26px;
  }

  .ocala-hero-photo {
    min-height: 0;
  }

  .ocala-hero-photo > img {
    height: 360px;
  }

  .ocala-partner-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    margin-top: 16px;
    padding: 24px;
  }

  .ocala-partner-card strong {
    font-size: 23px;
  }

  .ocala-serving-badge {
    width: 104px;
    height: 104px;
    right: 10px;
    top: 308px;
    bottom: auto;
    border-width: 5px;
  }

  .ocala-serving-badge strong {
    font-size: 13px;
  }

  .ocala-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 28px;
  }

  .ocala-why,
  .ocala-service-area,
  .ocala-services,
  .ocala-industries,
  .ocala-split > article,
  .ocala-testimonials,
  .ocala-faq {
    padding: 22px;
  }

  .ocala-why h2,
  .ocala-services h2,
  .ocala-industries h2,
  .ocala-testimonials h2,
  .ocala-faq h2 {
    font-size: 24px;
  }

  .ocala-why-grid,
  .ocala-service-grid,
  .ocala-city-grid,
  .ocala-industries div,
  .ocala-testimonials > div {
    grid-template-columns: 1fr;
  }

  .ocala-why-grid article {
    min-height: 0;
  }

  .ocala-service-area,
  .ocala-services,
  .ocala-industries,
  .ocala-split,
  .ocala-bottom,
  .ocala-cta {
    margin-top: 18px;
  }

  .ocala-service-grid article {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .ocala-service-grid svg {
    width: 52px;
    height: 52px;
  }

  .ocala-industries span,
  .ocala-industries span:nth-child(2),
  .ocala-industries span:nth-child(5) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ocala-industries span:first-child {
    border-top: 0;
  }

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

  .ocala-device-mock {
    min-height: 300px;
  }

  .ocala-laptop {
    left: 0;
    right: auto;
    width: calc(100% - 48px);
  }

  .ocala-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ocala-cta div,
  .ocala-cta p,
  .ocala-cta-primary,
  .ocala-cta-secondary {
    grid-column: auto;
    justify-self: center;
  }

  .ocala-cta-primary,
  .ocala-cta-secondary {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .ocala-hero h1 {
    font-size: 35px;
  }

  .ocala-hero-photo > img {
    height: 300px;
  }

  .ocala-serving-badge {
    top: 248px;
  }

  .ocala-city-grid a {
    padding: 0 16px;
  }
}
