:root {
  --navy: #0b1633;
  --muted: #34405c;
  --blue: #126bff;
  --green: #00a86b;
  --teal: #00b8c8;
  --purple: #8b5cf6;
  --light: #f5fafb;
  --soft-blue: #eef7ff;
  --soft-green: #ecfff6;
  --soft-purple: #f6f0ff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 22, 51, 0.1);
  --radius: 18px;
  --font-main: "Poppins", Arial, sans-serif;
  --font-heading: "Montserrat", "Poppins", Arial, sans-serif;
}

/* Related planning links on individual articles. */
body:not(.admin-body) .post-planning-section {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(18, 107, 255, 0.11);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(246, 251, 255, 0.98), rgba(243, 255, 249, 0.92));
}

body:not(.admin-body) .post-planning-heading {
  margin-bottom: 20px;
}

body:not(.admin-body) .post-planning-heading h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
}

body:not(.admin-body) .post-planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body:not(.admin-body) .post-planning-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .post-planning-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .post-planning-card:hover,
body:not(.admin-body) .post-planning-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 180, 125, 0.42);
  box-shadow: 0 18px 34px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .post-planning-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(0, 180, 125, 0.1);
  color: var(--green);
}

body:not(.admin-body) .post-planning-icon svg {
  width: 21px;
  height: 21px;
}

body:not(.admin-body) .post-planning-card small {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-body) .post-planning-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

body:not(.admin-body) .post-planning-card p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

body:not(.admin-body) .post-planning-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}

body:not(.admin-body) .post-planning-card strong svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 760px) {
  body:not(.admin-body) .post-planning-section {
    padding: 20px;
  }

  body:not(.admin-body) .post-planning-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .post-planning-card {
    min-height: 0;
  }
}

/* CMS image SEO + form verification polish. */
.image-library {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  align-items: stretch;
}

.image-library .image-seo-card {
  min-height: 0 !important;
  align-items: stretch;
  gap: 9px;
}

.image-library .image-seo-card img {
  height: 118px !important;
}

.image-library .image-seo-card label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #071936;
}

.image-library .image-seo-card input,
.image-library .image-seo-card textarea {
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 107, 255, 0.14);
  border-radius: 8px;
  background: #f8fbff;
  font: inherit;
}

.image-library .image-seo-card textarea {
  resize: vertical;
}

body:not(.admin-body) .bot-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: inherit;
  font-weight: 800;
}

body:not(.admin-body) .bot-check input {
  width: 74px;
  min-height: 44px;
  text-align: center;
}

body:not(.admin-body) .newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

body:not(.admin-body) .newsletter-form .bot-check {
  min-height: 48px;
  padding: 0 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

body:not(.admin-body) .newsletter-form .bot-check input {
  min-height: 36px;
  border: 0;
  border-radius: 16px;
}

body:not(.admin-body) .newsletter-form.is-verification-pending {
  grid-template-columns: minmax(0, 1fr) auto;
}

body:not(.admin-body) .newsletter-form.is-verification-pending .bot-check,
body:not(.admin-body) .post-mini-newsletter.is-verification-pending .bot-check {
  display: none;
}

body:not(.admin-body) .newsletter-form.is-verification-open .bot-check,
body:not(.admin-body) .post-mini-newsletter.is-verification-open .bot-check {
  animation: newsletterVerifyIn 0.2s ease both;
}

@keyframes newsletterVerifyIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body:not(.admin-body) .contact-form-card .bot-check {
  align-items: center;
}

body:not(.admin-body) .post-mini-newsletter .bot-check {
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 760px) {
  body:not(.admin-body) .newsletter-form {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .newsletter-form .bot-check,
  body:not(.admin-body) .newsletter-form input[type="email"],
  body:not(.admin-body) .newsletter-form button {
    width: 100%;
  }
}

/* Services hub: concise, scannable guide below the hero. */
body:not(.admin-body) .service-hub-intro-section {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(50px, 6vw, 78px);
}

body:not(.admin-body) .service-hub-intro-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(18, 107, 255, 0.11);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #fff 0%, #fbfdff 58%, #f4fffb 100%);
  background-size: 54px 54px, 54px 54px, auto;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .service-hub-intro-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green), #f1cf16);
  content: "";
}

body:not(.admin-body) .service-hub-intro-copy {
  min-width: 0;
}

body:not(.admin-body) .service-hub-intro-copy .eyebrow {
  margin-bottom: 18px;
}

body:not(.admin-body) .service-hub-intro-copy h2 {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.16;
}

body:not(.admin-body) .service-hub-intro-copy p {
  max-width: 820px;
  margin: 0 0 16px;
  color: #314363;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.72;
}

body:not(.admin-body) .service-hub-intro-copy p:first-of-type {
  color: #213453;
  font-weight: 600;
}

body:not(.admin-body) .service-guide-contact-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(0, 168, 107, 0.28);
  border-radius: 6px;
  color: #008f61;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .service-guide-contact-link svg {
  width: 15px;
  height: 15px;
}

body:not(.admin-body) .service-guide-contact-link:hover,
body:not(.admin-body) .service-guide-contact-link:focus-visible {
  border-color: var(--green);
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 168, 107, 0.12);
  transform: translateY(-2px);
}

body:not(.admin-body) .service-hub-intro-aside {
  min-width: 0;
}

body:not(.admin-body) .service-hub-intro-aside img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  object-fit: cover;
}

body:not(.admin-body) .service-guide-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

body:not(.admin-body) .service-guide-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

body:not(.admin-body) .service-guide-points svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--green);
}

@media (max-width: 900px) {
  body:not(.admin-body) .service-hub-intro-card {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-hub-intro-aside {
    display: grid;
    grid-template-columns: minmax(210px, 0.85fr) minmax(220px, 1.15fr);
    gap: 22px;
    align-items: center;
  }

  body:not(.admin-body) .service-guide-points {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .service-hub-intro-section {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  body:not(.admin-body) .service-hub-intro-card {
    gap: 26px;
    width: calc(100% - 28px);
    padding: 26px 20px;
    border-radius: 8px;
  }

  body:not(.admin-body) .service-hub-intro-copy .eyebrow {
    margin-bottom: 15px;
  }

  body:not(.admin-body) .service-hub-intro-copy h2 {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.2;
  }

  body:not(.admin-body) .service-hub-intro-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  body:not(.admin-body) .service-guide-contact-link {
    width: 100%;
  }

  body:not(.admin-body) .service-hub-intro-aside {
    display: block;
  }

  body:not(.admin-body) .service-hub-intro-aside img {
    display: none;
  }

  body:not(.admin-body) .service-guide-points {
    margin-top: 16px;
  }
}

/* Single case studies: use the compact service-detail hero language on phones. */
body:not(.admin-body) .project-hero-points {
  display: none;
}

@media (max-width: 720px) {
  body:not(.admin-body) .project-case-page .project-detail-hero {
    min-height: 0;
    margin-bottom: 0;
    padding: 38px 0 36px;
    border-radius: 0 0 26px 26px;
    background:
      linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
      radial-gradient(circle at 90% 18%, rgba(0, 168, 107, 0.13), transparent 34%),
      linear-gradient(150deg, #f8fcff 0%, #effbfa 100%);
    background-size: 52px 52px, 52px 52px, auto, auto;
    box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.07);
    isolation: isolate;
  }

  body:not(.admin-body) .project-case-page .project-detail-hero::before {
    top: 118px;
    right: -38px;
    z-index: 0;
    width: 130px;
    height: 130px;
    opacity: 0.16;
  }

  body:not(.admin-body) .project-case-page .project-detail-hero::after {
    display: none;
  }

  body:not(.admin-body) .project-case-page .project-detail-grid {
    display: block;
    position: relative;
    z-index: 1;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy {
    position: relative;
    z-index: 2;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy .eyebrow {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(0, 168, 107, 0.16);
    color: #008f62;
    background: rgba(0, 168, 107, 0.1);
    font-size: 10px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.08);
  }

  body:not(.admin-body) .project-case-page .project-detail-copy .eyebrow::after {
    display: none;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy h1 {
    max-width: 100%;
    margin: 14px 0 16px;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.08;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy p {
    max-width: 100%;
    margin: 0;
    color: #263d5d;
    font-size: 15px;
    line-height: 1.68;
  }

  body:not(.admin-body) .project-case-page .project-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  body:not(.admin-body) .project-case-page .project-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
    box-shadow: 0 11px 24px rgba(11, 22, 51, 0.08);
  }

  body:not(.admin-body) .project-case-page .project-detail-media {
    position: absolute;
    top: 82px;
    right: -58px;
    z-index: 0;
    width: 340px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    opacity: 0.1;
    pointer-events: none;
  }

  body:not(.admin-body) .project-case-page .project-detail-media::before {
    display: none;
  }

  body:not(.admin-body) .project-case-page .project-detail-media img {
    width: 100%;
    height: auto;
    border-radius: 0;
    aspect-ratio: 16 / 9.8;
    object-fit: cover;
    filter: saturate(0.82) contrast(0.86) brightness(1.18);
  }

  body:not(.admin-body) .project-case-page .project-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  body:not(.admin-body) .project-case-page .project-hero-points span {
    display: inline-flex;
    align-items: flex-start;
    gap: 5px;
    color: #274566;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.35;
  }

  body:not(.admin-body) .project-case-page .project-hero-points svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: var(--green);
  }

  body:not(.admin-body) .project-case-page .project-detail-hero + .project-overview-section {
    padding-top: 22px;
  }
}

/* Shared single-service layout based on the approved service-page composition. */
body:not(.admin-body) .service-detail-page > .service-detail-hero {
  min-height: 520px;
  padding-top: 42px;
  padding-bottom: 48px;
  border-radius: 0 0 74px 74px;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .service-detail-hero .section-inner {
  align-items: center;
}

body:not(.admin-body) .service-detail-hero h1 {
  font-size: clamp(40px, 4vw, 58px);
}

body:not(.admin-body) .service-detail-hero .sub-hero-image {
  border: 0;
  border-top: 4px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 22px 54px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .service-proof-strip {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 16px 0 0;
  background: #fff;
}

body:not(.admin-body) .service-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px 22px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .service-proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 3px 20px;
  border-right: 1px solid rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .service-proof-item:last-child {
  border-right: 0;
}

body:not(.admin-body) .service-proof-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #008f6a;
  background: rgba(0, 168, 107, 0.09);
}

body:not(.admin-body) .service-proof-item svg {
  width: 22px;
  height: 22px;
}

body:not(.admin-body) .service-proof-item div {
  display: grid;
  gap: 2px;
}

body:not(.admin-body) .service-proof-item strong {
  color: var(--navy);
  font: 900 15px/1.25 "Montserrat", sans-serif;
}

body:not(.admin-body) .service-proof-item small {
  color: #60738e;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

body:not(.admin-body) .service-scope-matrix-section {
  padding-top: clamp(40px, 5vw, 68px);
  padding-bottom: clamp(54px, 6vw, 84px);
}

body:not(.admin-body) .service-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(250px, 0.8fr));
  align-items: stretch;
  gap: 22px;
}

body:not(.admin-body) .service-audience-panel {
  padding: 10px 28px 10px 0;
}

body:not(.admin-body) .service-audience-panel h2,
body:not(.admin-body) .service-reasons-intro h2 {
  margin: 13px 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.12;
}

body:not(.admin-body) .service-audience-panel > p,
body:not(.admin-body) .service-reasons-intro > p {
  margin: 0 0 22px;
  color: #415572;
  line-height: 1.74;
}

body:not(.admin-body) .service-check-list,
body:not(.admin-body) .service-scope-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .service-check-list li,
body:not(.admin-body) .service-scope-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #344d6c;
  font-size: 14px;
  line-height: 1.55;
}

body:not(.admin-body) .service-check-list svg,
body:not(.admin-body) .service-scope-card li svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--green);
  stroke-width: 3;
}

body:not(.admin-body) .service-scope-card {
  position: relative;
  min-height: 100%;
  padding: 27px 25px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-top: 4px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 16px 38px rgba(11, 22, 51, 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .service-scope-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11, 22, 51, 0.085);
}

body:not(.admin-body) .service-scope-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

body:not(.admin-body) .service-scope-card-heading svg {
  width: 23px;
  height: 23px;
  color: var(--green);
}

body:not(.admin-body) .service-scope-card-heading h3 {
  margin: 0;
  font-size: 19px;
}

body:not(.admin-body) .service-scope-card--excluded {
  border-top-color: #ef4455;
}

body:not(.admin-body) .service-scope-card--excluded .service-scope-card-heading svg,
body:not(.admin-body) .service-scope-card--excluded li svg {
  color: #ef3348;
}

body:not(.admin-body) .service-guidance-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  border-top: 1px solid rgba(18, 107, 255, 0.06);
  border-bottom: 1px solid rgba(0, 168, 107, 0.06);
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.022) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff, #f8fffc);
  background-size: 58px 58px, 58px 58px, auto;
}

body:not(.admin-body) .service-guidance-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(290px, 0.68fr);
  align-items: start;
  gap: clamp(34px, 5vw, 68px);
}

body:not(.admin-body) .service-guidance-copy {
  min-width: 0;
}

body:not(.admin-body) .service-guidance-copy h2 {
  margin: 28px 0 12px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.2;
}

body:not(.admin-body) .service-guidance-copy h2:first-of-type {
  margin-top: 17px;
}

body:not(.admin-body) .service-guidance-copy p,
body:not(.admin-body) .service-guidance-copy li,
body:not(.admin-body) .service-estimate-card p,
body:not(.admin-body) .service-estimate-card li {
  color: #415572;
  font-size: 15px;
  line-height: 1.76;
}

body:not(.admin-body) .service-guidance-copy ul,
body:not(.admin-body) .service-guidance-copy ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

body:not(.admin-body) .service-estimate-card {
  position: sticky;
  top: 106px;
  padding: 30px;
  border: 1px solid rgba(0, 168, 107, 0.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(11, 22, 51, 0.065);
}

body:not(.admin-body) .service-estimate-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #126bff, #00b879);
}

body:not(.admin-body) .service-estimate-card > span svg {
  width: 27px;
  height: 27px;
}

body:not(.admin-body) .service-estimate-card > small {
  color: #008f62;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

body:not(.admin-body) .service-estimate-card h2 {
  margin: 8px 0 14px;
  font-size: 28px;
}

body:not(.admin-body) .service-estimate-card .btn {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

body:not(.admin-body) .service-process-section {
  padding-top: clamp(64px, 7vw, 94px);
  padding-bottom: clamp(64px, 7vw, 94px);
  background: #fff;
}

body:not(.admin-body) .service-process-section .section-heading {
  max-width: 790px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
}

body:not(.admin-body) .service-process-section .section-heading p {
  max-width: 650px;
  margin: 10px auto 0;
  color: var(--muted);
}

body:not(.admin-body) .service-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 20px;
}

body:not(.admin-body) .service-process-track::before {
  content: "";
  position: absolute;
  top: 33px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(18, 107, 255, 0.2) 0 10px, transparent 10px 18px);
}

body:not(.admin-body) .service-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: calc(var(--service-step-index, 0) * 70ms);
}

body:not(.admin-body) .service-process-track.is-process-ready .service-process-step {
  opacity: 0;
  transform: translateY(15px);
}

body:not(.admin-body) .service-process-track.is-process-ready.is-visible .service-process-step {
  opacity: 1;
  transform: translateY(0);
}

body:not(.admin-body) .service-process-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  place-items: center;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 50%;
  color: #008f6a;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .service-process-icon svg {
  width: 29px;
  height: 29px;
}

body:not(.admin-body) .service-process-step small {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

body:not(.admin-body) .service-process-step h3 {
  margin: 7px 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

body:not(.admin-body) .service-process-step p {
  margin: 0 auto;
  color: #60738e;
  font-size: 12px;
  line-height: 1.58;
}

body:not(.admin-body) .service-reasons-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.88), #fff);
}

body:not(.admin-body) .service-reasons-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
}

body:not(.admin-body) .service-reason-cards {
  display: grid;
  gap: 14px;
}

body:not(.admin-body) .service-reason-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 22, 51, 0.045);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .service-reason-card:hover {
  transform: translateX(4px);
  border-color: rgba(0, 168, 107, 0.3);
  box-shadow: 0 18px 38px rgba(11, 22, 51, 0.075);
}

body:not(.admin-body) .service-reason-card > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: #008f6a;
  background: rgba(0, 168, 107, 0.09);
}

body:not(.admin-body) .service-reason-card > span svg {
  width: 28px;
  height: 28px;
}

body:not(.admin-body) .service-reason-card h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

body:not(.admin-body) .service-reason-card p {
  margin: 0;
  color: #526680;
  font-size: 13px;
  line-height: 1.58;
}

body:not(.admin-body) .service-detail-page .service-next-steps-section {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

body:not(.admin-body) .service-detail-page .related-projects-section {
  padding-top: clamp(60px, 7vw, 92px);
  padding-bottom: clamp(60px, 7vw, 92px);
}

body:not(.admin-body) .service-detail-page .project-related-grid {
  align-items: stretch;
}

body:not(.admin-body) .service-detail-page .project-related-grid .project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

body:not(.admin-body) .service-detail-page .project-related-grid .project-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

body:not(.admin-body) .service-detail-page .project-related-grid .project-link {
  margin-top: auto;
}

body:not(.admin-body) .service-latest-posts {
  padding-top: clamp(60px, 7vw, 92px);
  padding-bottom: clamp(60px, 7vw, 92px);
}

body:not(.admin-body) .service-detail-page .service-faq-section {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.02) 1px, transparent 1px),
    #f8fcff;
  background-size: 58px 58px;
}

body:not(.admin-body) .service-detail-page .service-contact-cta {
  border-radius: 10px;
}

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

  body:not(.admin-body) .service-proof-item:nth-child(2) {
    border-right: 0;
  }

  body:not(.admin-body) .service-proof-item:nth-child(-n + 2) {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(18, 107, 255, 0.1);
  }

  body:not(.admin-body) .service-proof-item:nth-child(n + 3) {
    padding-top: 14px;
  }

  body:not(.admin-body) .service-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .service-audience-panel {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  body:not(.admin-body) .service-guidance-shell,
  body:not(.admin-body) .service-reasons-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-estimate-card {
    position: static;
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .service-detail-page > .service-detail-hero {
    min-height: 0;
    margin-bottom: 0 !important;
    padding-top: 28px;
    padding-bottom: 32px !important;
    border-radius: 0 0 30px 30px;
  }

  body:not(.admin-body) .service-detail-hero h1 {
    font-size: clamp(29px, 8.5vw, 37px);
  }

  body:not(.admin-body) .service-proof-strip {
    padding-top: 10px;
  }

  body:not(.admin-body) .service-proof-grid {
    gap: 0;
    padding: 14px 10px;
  }

  body:not(.admin-body) .service-proof-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding-right: 8px;
    padding-left: 8px;
  }

  body:not(.admin-body) .service-proof-item > span {
    width: 34px;
    height: 34px;
  }

  body:not(.admin-body) .service-proof-item svg {
    width: 18px;
    height: 18px;
  }

  body:not(.admin-body) .service-proof-item strong {
    font-size: 12px;
  }

  body:not(.admin-body) .service-proof-item small {
    font-size: 9px;
  }

  body:not(.admin-body) .service-scope-matrix-section {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  body:not(.admin-body) .service-scope-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body:not(.admin-body) .service-audience-panel {
    grid-column: auto;
    padding: 0 2px 8px;
  }

  body:not(.admin-body) .service-audience-panel h2,
  body:not(.admin-body) .service-reasons-intro h2 {
    font-size: 29px;
  }

  body:not(.admin-body) .service-scope-card {
    padding: 23px 20px;
  }

  body:not(.admin-body) .service-guidance-section,
  body:not(.admin-body) .service-process-section,
  body:not(.admin-body) .service-reasons-section,
  body:not(.admin-body) .service-detail-page .related-projects-section,
  body:not(.admin-body) .service-latest-posts,
  body:not(.admin-body) .service-detail-page .service-faq-section {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  body:not(.admin-body) .service-guidance-shell {
    gap: 30px;
  }

  body:not(.admin-body) .service-guidance-copy h2 {
    font-size: 24px;
  }

  body:not(.admin-body) .service-estimate-card {
    padding: 24px 21px;
  }

  body:not(.admin-body) .service-process-section .section-heading {
    margin-bottom: 28px;
  }

  body:not(.admin-body) .service-process-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body:not(.admin-body) .service-process-track::before {
    display: none;
  }

  body:not(.admin-body) .service-process-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 15px;
    padding: 18px;
    border: 1px solid rgba(18, 107, 255, 0.1);
    border-radius: 10px;
    background: #fff;
    text-align: left;
  }

  body:not(.admin-body) .service-process-track.is-process-ready .service-process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body:not(.admin-body) .service-process-icon {
    grid-row: 1 / 4;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  body:not(.admin-body) .service-process-icon svg {
    width: 24px;
    height: 24px;
  }

  body:not(.admin-body) .service-process-step h3,
  body:not(.admin-body) .service-process-step p {
    margin-right: 0;
    margin-left: 0;
  }

  body:not(.admin-body) .service-process-step h3 {
    margin-top: 4px;
    font-size: 15px;
  }

  body:not(.admin-body) .service-reasons-layout {
    gap: 30px;
  }

  body:not(.admin-body) .service-reason-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
  }

  body:not(.admin-body) .service-reason-card > span {
    width: 48px;
    height: 48px;
  }

  body:not(.admin-body) .service-reason-card > span svg {
    width: 23px;
    height: 23px;
  }

  body:not(.admin-body) .service-reason-card h3 {
    font-size: 16px;
  }

  body:not(.admin-body) .service-detail-page .service-next-steps-section {
    padding-top: 46px;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .service-process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body:not(.admin-body) .service-scope-card,
  body:not(.admin-body) .service-reason-card {
    transition: none;
  }
}

/* Service detail refinement: stronger hierarchy, branded sections, accessible FAQ. */
body:not(.admin-body) .service-detail-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.018) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

body:not(.admin-body) .service-detail-page > .service-detail-hero {
  margin-bottom: 0 !important;
  padding-top: 58px;
  padding-bottom: 78px;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06);
}

body:not(.admin-body) .service-detail-hero .section-inner {
  gap: clamp(42px, 6vw, 84px);
}

body:not(.admin-body) .service-detail-hero .eyebrow {
  display: inline-flex;
  max-width: min(100%, 520px);
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 168, 107, 0.16);
  color: #008f62;
  background: rgba(0, 168, 107, 0.1);
  font-size: 12px;
  line-height: 1.3;
}

body:not(.admin-body) .service-detail-hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.08);
}

body:not(.admin-body) .service-detail-hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.15vw, 60px);
  line-height: 1.08;
}

body:not(.admin-body) .service-detail-hero h1 .hero-accent-line {
  background: linear-gradient(100deg, var(--navy) 0 52%, #126bff 70%, #00a86b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not(.admin-body) .service-detail-hero .sub-hero-image {
  overflow: hidden;
  border-color: rgba(0, 168, 107, 0.16);
  background: linear-gradient(145deg, #f8fcff, #effbf7);
}

body:not(.admin-body) .service-detail-hero .sub-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

body:not(.admin-body) .service-breadcrumbs {
  margin: 0 0 20px;
}

body:not(.admin-body) .service-breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .service-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #657792;
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-body) .service-breadcrumbs li svg {
  width: 14px;
  height: 14px;
  color: #8fa1b9;
}

body:not(.admin-body) .service-breadcrumbs a {
  color: #315276;
}

body:not(.admin-body) .service-breadcrumbs a:hover {
  color: var(--green);
}

body:not(.admin-body) .service-breadcrumbs [aria-current="page"] {
  color: var(--navy);
}

body:not(.admin-body) .service-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
}

body:not(.admin-body) .service-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #274566;
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-body) .service-hero-points svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

body:not(.admin-body) .service-detail-page > .service-detail-hero + .service-overview-section {
  padding-top: clamp(46px, 5.5vw, 76px) !important;
}

body:not(.admin-body) .service-overview-section {
  position: relative;
  padding-bottom: clamp(48px, 6vw, 82px);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.78), rgba(255, 255, 255, 0));
}

body:not(.admin-body) .service-overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(290px, 0.72fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

body:not(.admin-body) .service-copy-panel {
  min-width: 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-top: 4px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.065);
}

body:not(.admin-body) .service-copy-panel > .eyebrow {
  margin-bottom: 6px;
}

body:not(.admin-body) .service-copy-panel h2 {
  margin: 28px 0 12px;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.2;
}

body:not(.admin-body) .service-copy-panel h2:first-of-type {
  margin-top: 16px;
}

body:not(.admin-body) .service-copy-panel p,
body:not(.admin-body) .service-copy-panel li {
  color: #415572;
  font-size: 16px;
  line-height: 1.78;
}

body:not(.admin-body) .service-copy-panel ul,
body:not(.admin-body) .service-copy-panel ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

body:not(.admin-body) .service-snapshot-card {
  position: sticky;
  top: 106px;
  padding: 30px;
  border: 1px solid rgba(0, 168, 107, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #fff, #f5fffb);
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 22px 50px rgba(11, 22, 51, 0.065);
}

body:not(.admin-body) .service-snapshot-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #126bff, #00b879);
}

body:not(.admin-body) .service-snapshot-icon svg {
  width: 27px;
  height: 27px;
}

body:not(.admin-body) .service-snapshot-card h2 {
  margin: 10px 0 18px;
  font-size: 25px;
  line-height: 1.2;
}

body:not(.admin-body) .service-snapshot-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .service-snapshot-card li {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  gap: 9px;
  color: #344d6c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

body:not(.admin-body) .service-snapshot-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--green);
}

body:not(.admin-body) .service-snapshot-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}

body:not(.admin-body) .service-snapshot-card > a svg {
  width: 17px;
  height: 17px;
}

body:not(.admin-body) .service-method-section {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 96px);
  border-top: 1px solid rgba(18, 107, 255, 0.06);
  border-bottom: 1px solid rgba(0, 168, 107, 0.06);
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.026) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff 0%, #f7fffb 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

body:not(.admin-body) .service-method-section .section-heading {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
}

body:not(.admin-body) .service-method-section .section-heading p {
  max-width: 660px;
  margin: 10px auto 0;
  color: var(--muted);
}

body:not(.admin-body) .service-method-grid {
  align-items: stretch;
}

body:not(.admin-body) .service-method-card {
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  padding: 30px;
}

body:not(.admin-body) .service-method-card .service-card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(18, 107, 255, 0.12);
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

body:not(.admin-body) .service-method-card h3 {
  min-height: 0;
  font-size: 22px;
}

body:not(.admin-body) .service-method-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .service-method-card li {
  position: relative;
  padding-left: 21px;
  color: #40536e;
  font-size: 14px;
  line-height: 1.62;
}

body:not(.admin-body) .service-method-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

body:not(.admin-body) .service-scope-section {
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 78px);
}

body:not(.admin-body) .service-scope-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(112deg, #126bff 0%, #0ca1bc 48%, #00a86b 100%);
  box-shadow: 0 26px 58px rgba(18, 107, 255, 0.16);
}

body:not(.admin-body) .service-scope-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

body:not(.admin-body) .service-scope-icon svg {
  width: 31px;
  height: 31px;
}

body:not(.admin-body) .service-scope-callout .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

body:not(.admin-body) .service-scope-callout h2 {
  margin: 9px 0 7px;
  color: #fff;
}

body:not(.admin-body) .service-scope-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

body:not(.admin-body) .service-scope-callout .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

body:not(.admin-body) .service-detail-page .related-projects-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.9), rgba(255, 255, 255, 0.96));
}

body:not(.admin-body) .service-faq-section {
  padding-top: clamp(58px, 7vw, 94px);
  padding-bottom: clamp(58px, 7vw, 94px);
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.027) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.022) 1px, transparent 1px),
    #f8fcff;
  background-size: 58px 58px;
}

body:not(.admin-body) .service-faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  align-items: start;
  gap: clamp(32px, 5vw, 68px);
}

body:not(.admin-body) .service-faq-intro {
  position: sticky;
  top: 108px;
}

body:not(.admin-body) .service-faq-intro h2 {
  margin: 12px 0 14px;
  font-size: clamp(31px, 3.2vw, 45px);
  line-height: 1.08;
}

body:not(.admin-body) .service-faq-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.72;
}

body:not(.admin-body) .service-faq-list {
  display: grid;
  gap: 12px;
}

body:not(.admin-body) .service-faq-item {
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(11, 22, 51, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body:not(.admin-body) .service-faq-item:hover,
body:not(.admin-body) .service-faq-item.is-open {
  border-color: rgba(0, 168, 107, 0.34);
  box-shadow: 0 18px 38px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .service-faq-item h3 {
  margin: 0;
}

body:not(.admin-body) .service-faq-item button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: 800 16px/1.42 "Montserrat", sans-serif;
  text-align: left;
  cursor: pointer;
}

body:not(.admin-body) .service-faq-item button:focus-visible {
  outline: 3px solid rgba(18, 107, 255, 0.28);
  outline-offset: -3px;
}

body:not(.admin-body) .service-faq-item button svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.08);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

body:not(.admin-body) .service-faq-item.is-open button svg {
  color: #fff;
  background: var(--green);
  transform: rotate(45deg);
}

body:not(.admin-body) .service-faq-answer {
  padding: 0 66px 22px 20px;
}

body:not(.admin-body) .service-faq-answer p {
  margin: 0;
  color: #4b5f7a;
  font-size: 15px;
  line-height: 1.76;
}

body:not(.admin-body) .service-final-cta-section {
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(50px, 6vw, 82px);
}

body:not(.admin-body) .service-next-steps-section {
  padding-top: clamp(58px, 7vw, 90px);
  padding-bottom: clamp(58px, 7vw, 90px);
  background: #fff;
}

body:not(.admin-body) .service-next-steps-section .section-heading {
  max-width: 690px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

body:not(.admin-body) .service-next-steps-section .section-heading p {
  margin: 9px auto 0;
  color: var(--muted);
}

body:not(.admin-body) .service-next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body:not(.admin-body) .service-related-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 13px;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-top: 3px solid var(--green);
  border-radius: 10px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 32px rgba(11, 22, 51, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body:not(.admin-body) .service-related-link:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 107, 0.34);
  box-shadow: 0 20px 40px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .service-related-link > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 11px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.1);
}

body:not(.admin-body) .service-related-link > span svg {
  width: 24px;
  height: 24px;
}

body:not(.admin-body) .service-related-link > svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

body:not(.admin-body) .service-related-link strong {
  font-size: 14px;
  line-height: 1.45;
}

body:not(.admin-body) .service-related-link--guide {
  border-top-color: var(--blue);
}

body:not(.admin-body) .service-related-link--guide > span {
  color: var(--blue);
  background: rgba(18, 107, 255, 0.09);
}

/* Services hub grouping from the final SEO refinement. */
body:not(.admin-body) .service-hub-groups {
  display: grid;
  gap: clamp(46px, 6vw, 76px);
  margin-top: 38px;
}

body:not(.admin-body) .service-hub-group {
  padding-top: 5px;
}

body:not(.admin-body) .service-group-heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  max-width: 880px;
  margin-bottom: 24px;
}

body:not(.admin-body) .service-group-heading .eyebrow {
  justify-content: center;
  margin-top: 4px;
}

body:not(.admin-body) .service-group-heading h3 {
  margin: 0 0 6px;
  font-size: clamp(25px, 2.5vw, 34px);
}

body:not(.admin-body) .service-group-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

body:not(.admin-body) .service-hub-group .services-design-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
  margin-top: 0;
}

body:not(.admin-body) .service-hub-group--maintain .services-design-grid {
  max-width: 360px;
}

@media (max-width: 960px) {
  body:not(.admin-body) .service-overview-shell,
  body:not(.admin-body) .service-faq-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-snapshot-card,
  body:not(.admin-body) .service-faq-intro {
    position: static;
  }

  body:not(.admin-body) .service-snapshot-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .service-scope-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  body:not(.admin-body) .service-scope-callout .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  body:not(.admin-body) .service-next-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .service-detail-page > .service-detail-hero {
    padding-top: 32px;
    padding-bottom: 34px !important;
  }

  body:not(.admin-body) .service-detail-hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  body:not(.admin-body) .service-detail-hero h1 {
    margin-top: 12px;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.08;
  }

  body:not(.admin-body) .service-detail-hero p {
    font-size: 15px;
    line-height: 1.68;
  }

  body:not(.admin-body) .service-breadcrumbs {
    margin-bottom: 15px;
  }

  body:not(.admin-body) .service-breadcrumbs li {
    font-size: 11px;
  }

  body:not(.admin-body) .service-hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  body:not(.admin-body) .service-hero-points span {
    align-items: flex-start;
    gap: 5px;
    font-size: 10px;
    line-height: 1.35;
  }

  body:not(.admin-body) .service-hero-points svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
  }

  body:not(.admin-body) .service-detail-page > .service-detail-hero + .service-overview-section {
    padding-top: 22px !important;
  }

  body:not(.admin-body) .service-overview-section {
    padding-bottom: 42px;
  }

  body:not(.admin-body) .service-copy-panel,
  body:not(.admin-body) .service-snapshot-card {
    padding: 22px 20px;
  }

  body:not(.admin-body) .service-copy-panel h2 {
    margin-top: 24px;
    font-size: 23px;
  }

  body:not(.admin-body) .service-copy-panel p,
  body:not(.admin-body) .service-copy-panel li {
    font-size: 15px;
    line-height: 1.7;
  }

  body:not(.admin-body) .service-snapshot-card ul {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-method-section {
    padding-top: 48px;
    padding-bottom: 50px;
    background-size: 44px 44px;
  }

  body:not(.admin-body) .service-method-card {
    padding: 24px 22px;
  }

  body:not(.admin-body) .service-method-card h3 {
    font-size: 20px;
  }

  body:not(.admin-body) .service-scope-callout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 21px;
  }

  body:not(.admin-body) .service-scope-icon {
    width: 56px;
    height: 56px;
  }

  body:not(.admin-body) .service-scope-callout .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .service-faq-section {
    padding-top: 48px;
    padding-bottom: 52px;
    background-size: 44px 44px;
  }

  body:not(.admin-body) .service-faq-layout {
    gap: 28px;
  }

  body:not(.admin-body) .service-faq-intro h2 {
    font-size: 32px;
  }

  body:not(.admin-body) .service-faq-intro .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .service-faq-item button {
    grid-template-columns: minmax(0, 1fr) 32px;
    min-height: 66px;
    padding: 16px;
    font-size: 14px;
  }

  body:not(.admin-body) .service-faq-item button svg {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  body:not(.admin-body) .service-faq-answer {
    padding: 0 16px 18px;
  }

  body:not(.admin-body) .service-faq-answer p {
    font-size: 14px;
  }

  body:not(.admin-body) .service-group-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:not(.admin-body) .service-group-heading .eyebrow {
    justify-self: start;
  }

  body:not(.admin-body) .service-hub-group .services-design-grid,
  body:not(.admin-body) .service-hub-group--maintain .services-design-grid {
    max-width: none;
  }

  body:not(.admin-body) .service-next-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .service-faq-item,
  body:not(.admin-body) .service-faq-item button svg {
    transition: none;
  }
}

/* Final internal-page hero line. Home remains intentionally unchanged. */
body:not(.admin-body) .about-page .about-hero-copy h1 span,
body:not(.admin-body) .services-page .services-hero-copy h1 span,
body:not(.admin-body) .portfolio-page .portfolio-hero-copy h1 span,
body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1 span,
body:not(.admin-body) .blog-page .blog-hero-copy h1 span,
body:not(.admin-body) .contact-page .contact-hero-copy h1 span,
body:not(.admin-body) .support-page .support-hero-copy h1 span,
body:not(.admin-body) .sub-hero h1 .hero-accent-line {
  position: relative !important;
  display: inline-block !important;
}

body:not(.admin-body) .about-page .about-hero-copy h1 span::after,
body:not(.admin-body) .services-page .services-hero-copy h1 span::after,
body:not(.admin-body) .portfolio-page .portfolio-hero-copy h1 span::after,
body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1 span::after,
body:not(.admin-body) .blog-page .blog-hero-copy h1 span::after,
body:not(.admin-body) .contact-page .contact-hero-copy h1 span::after,
body:not(.admin-body) .support-page .support-hero-copy h1 span::after,
body:not(.admin-body) .sub-hero h1 .hero-accent-line::after {
  content: "" !important;
  position: absolute !important;
  right: 4px !important;
  bottom: -10px !important;
  left: 4px !important;
  width: auto !important;
  height: 10px !important;
  border: solid var(--green) !important;
  border-width: 0 0 3px !important;
  border-radius: 0 0 50% 50% !important;
  background: none !important;
  opacity: 1 !important;
  transform: rotate(-1.5deg) !important;
  transform-origin: left center !important;
  clip-path: inset(0 100% 0 0);
  animation: internalHeroLineDraw 760ms cubic-bezier(.22, .72, .22, 1) 170ms forwards !important;
  pointer-events: none !important;
}

@keyframes internalHeroLineDraw {
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Service detail rhythm and contact-first conversion path. */
body:not(.admin-body) .service-detail-page > .service-detail-hero {
  display: flex;
  min-height: 610px;
  margin-bottom: 0 !important;
  align-items: center;
}

body:not(.admin-body) .service-detail-page > .service-detail-hero + .service-overview-section {
  margin-top: 0 !important;
  padding-top: clamp(42px, 5vw, 68px) !important;
}

body:not(.admin-body) .sub-hero-actions {
  margin-top: 28px;
}

body:not(.admin-body) .service-contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 107, 255, 0.12);
}

body:not(.admin-body) .service-contact-action p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

body:not(.admin-body) .service-contact-action .btn {
  flex: 0 0 auto;
}

body:not(.admin-body) .service-final-cta-section {
  padding-top: 22px;
}

@media (max-width: 900px) {
  body:not(.admin-body) .service-detail-page > .service-detail-hero {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .service-detail-page > .service-detail-hero {
    margin-bottom: 0 !important;
    padding-bottom: 36px !important;
  }

  body:not(.admin-body) .service-detail-page > .service-detail-hero + .service-overview-section {
    padding-top: 18px !important;
  }

  body:not(.admin-body) .service-contact-action {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  body:not(.admin-body) .service-contact-action .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .about-page .about-hero-copy h1 span::after,
  body:not(.admin-body) .services-page .services-hero-copy h1 span::after,
  body:not(.admin-body) .portfolio-page .portfolio-hero-copy h1 span::after,
  body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1 span::after,
  body:not(.admin-body) .blog-page .blog-hero-copy h1 span::after,
  body:not(.admin-body) .contact-page .contact-hero-copy h1 span::after,
  body:not(.admin-body) .support-page .support-hero-copy h1 span::after,
  body:not(.admin-body) .sub-hero h1 .hero-accent-line::after {
    clip-path: none;
    animation: none !important;
  }
}

/* Support page alignment, compact desktop navigation, and direct-contact emphasis. */
@keyframes contact-direct-motion {
  0%, 100% {
    transform: translateX(0);
    text-shadow: 0 0 0 rgba(211, 40, 58, 0);
  }
  50% {
    transform: translateX(3px);
    text-shadow: 0 4px 13px rgba(211, 40, 58, 0.16);
  }
}

@media (min-width: 1121px) {
  body:not(.admin-body) .main-nav {
    gap: clamp(11px, 1.15vw, 17px) !important;
  }
}

body:not(.admin-body) .support-page .support-showcase-hero {
  margin-bottom: 0 !important;
}

body:not(.admin-body) .support-page .support-hero-copy h1 span {
  display: block !important;
}

body:not(.admin-body) .support-page .support-benefits {
  margin-top: 2px;
}

body:not(.admin-body) .support-page .support-hero-visual {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  margin: 0;
}

body:not(.admin-body) .support-page .support-hero-visual img.page-mockup-image {
  width: min(100%, 700px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(11, 22, 51, 0.12));
}

body:not(.admin-body) .support-page .support-showcase-hero + .support-plans-section {
  margin-top: 0 !important;
  padding-top: min(58px, 5vw) !important;
  transform: none !important;
  will-change: auto !important;
}

body:not(.admin-body) .support-latest-posts,
body:not(.admin-body) .services-latest-posts,
body:not(.admin-body) .testimonials-latest-posts {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.02) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff, #f5fffb);
  background-size: 72px 72px, 72px 72px, auto;
}

body:not(.admin-body) .contact-info-list .contact-highlight {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  animation: none;
}

body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused,
body:not(.admin-body) .contact-info-list .contact-highlight:hover,
body:not(.admin-body) .contact-info-list .contact-highlight:focus-within {
  border: 0;
  background: none;
  box-shadow: none;
}

body:not(.admin-body) .contact-info-list .contact-highlight svg {
  color: var(--blue);
  background: #edf4ff;
}

body:not(.admin-body) .contact-info-list .contact-highlight b {
  color: var(--navy);
  font-size: inherit;
}

body:not(.admin-body) .contact-info-list .contact-highlight a {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: #d3283a;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
  -webkit-text-stroke: 0.12px rgba(136, 15, 31, 0.2);
  animation: contact-direct-motion 2.2s ease-in-out infinite;
  transition: color 180ms ease;
}

body:not(.admin-body) .contact-info-list .contact-highlight-email a {
  font-size: clamp(15px, 1.05vw, 17px);
}

body:not(.admin-body) .contact-info-list .contact-highlight-phone a {
  font-size: clamp(18px, 1.3vw, 21px);
}

body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused a,
body:not(.admin-body) .contact-info-list .contact-highlight:hover a,
body:not(.admin-body) .contact-info-list .contact-highlight:focus-within a {
  color: #ad1e31;
  animation-play-state: paused;
}

@media (max-width: 1180px) {
  body:not(.admin-body) .support-page .support-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .support-page .support-hero-visual {
    position: absolute;
    z-index: 0;
    top: 112px;
    right: -72px;
    bottom: auto;
    width: min(92vw, 390px);
    min-height: 0;
    opacity: 0.14;
    pointer-events: none;
  }

  body:not(.admin-body) .support-page .support-hero-copy {
    position: relative;
    z-index: 2;
  }

  body:not(.admin-body) .support-page .support-benefits {
    margin-top: 22px;
  }

  body:not(.admin-body) .support-latest-posts,
  body:not(.admin-body) .services-latest-posts,
  body:not(.admin-body) .testimonials-latest-posts {
    padding: 54px 14px 62px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight {
    margin: 0;
    padding: 0;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-email a {
    font-size: 15px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-phone a {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .contact-info-list .contact-highlight a {
    animation: none;
  }
}

/* Support page: WordPress care plans. */
body:not(.admin-body) .support-page {
  overflow: clip;
  background:
    linear-gradient(rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 72px 72px;
}

body:not(.admin-body) .support-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: clamp(30px, 4vw, 70px);
  width: min(100%, 1536px);
  min-height: 610px;
  margin: 0 auto;
  padding: clamp(58px, 6vw, 92px) max(38px, calc((100vw - 1320px) / 2));
  border: 1px solid rgba(18, 107, 255, 0.09);
  border-top: 0;
  border-radius: 0 0 84px 84px;
  background:
    radial-gradient(circle at 8% 25%, rgba(18, 107, 255, 0.05) 0 2px, transparent 2.5px) 0 0 / 24px 24px,
    linear-gradient(120deg, #f8fcff 0%, #eef8ff 58%, #edfff8 100%);
  box-shadow: 0 24px 50px rgba(14, 53, 102, 0.07);
}

body:not(.admin-body) .support-hero::before,
body:not(.admin-body) .support-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

body:not(.admin-body) .support-hero::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 0 66%, rgba(0, 184, 128, 0.08) 66% 66.4%, transparent 66.4%);
}

body:not(.admin-body) .support-hero::after {
  right: 5%;
  top: 11%;
  width: 150px;
  height: 92px;
  opacity: 0.45;
  background-image: radial-gradient(circle, #75c7f5 2px, transparent 2.5px);
  background-size: 17px 17px;
}

body:not(.admin-body) .support-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

body:not(.admin-body) .support-hero h1 {
  max-width: 650px;
  margin: 18px 0 22px;
  color: #061735;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

body:not(.admin-body) .support-hero h1 span,
body:not(.admin-body) .support-section-title h2 span {
  color: transparent;
  background: linear-gradient(100deg, #126bff 0%, #00a984 70%, #00b87b 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

body:not(.admin-body) .support-hero-copy > p {
  max-width: 690px;
  margin: 0;
  color: #38506f;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

body:not(.admin-body) .support-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 20px;
  max-width: 620px;
  margin-top: 30px;
}

body:not(.admin-body) .support-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #102a4e;
  font-size: 14px;
  font-weight: 700;
}

body:not(.admin-body) .support-benefits svg {
  width: 25px;
  height: 25px;
  color: #009d82;
  stroke-width: 1.8;
}

body:not(.admin-body) .support-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
}

body:not(.admin-body) .support-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(10, 50, 94, 0.1));
}

body:not(.admin-body) .support-plans-section {
  padding-top: clamp(62px, 7vw, 100px);
  padding-bottom: clamp(64px, 7vw, 96px);
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.78), #fff 46%, rgba(236, 255, 247, 0.58));
}

body:not(.admin-body) .support-section-title {
  max-width: 920px;
  margin: 0 auto clamp(48px, 5vw, 70px);
}

body:not(.admin-body) .support-section-title h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.15;
}

body:not(.admin-body) .support-section-title p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

body:not(.admin-body) .support-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(270px, 0.92fr);
  align-items: stretch;
  gap: 26px;
}

body:not(.admin-body) .support-pricing-layout--plans-only {
  grid-template-columns: minmax(0, 1fr);
}

body:not(.admin-body) .support-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

body:not(.admin-body) .support-plan-card {
  --plan-accent: #00a892;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  padding: 38px 28px 28px;
  overflow: visible;
  border: 1px solid rgba(15, 67, 112, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(18, 56, 96, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body:not(.admin-body) .support-plan-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  border-radius: 8px 8px 0 0;
  opacity: 0;
  background: linear-gradient(90deg, var(--plan-accent), #0bb5c8, #f1cf21);
  transition: opacity 220ms ease;
}

body:not(.admin-body) .support-plan-card.accent-green { --plan-accent: #00ad78; }
body:not(.admin-body) .support-plan-card.accent-blue { --plan-accent: #126bff; }
body:not(.admin-body) .support-plan-card.accent-purple { --plan-accent: #7c4dff; }

body:not(.admin-body) .support-plan-card:hover,
body:not(.admin-body) .support-plan-card:focus-within,
body:not(.admin-body) .support-plan-card.is-popular {
  border-color: color-mix(in srgb, var(--plan-accent) 78%, #fff);
}

body:not(.admin-body) .support-plan-card:hover,
body:not(.admin-body) .support-plan-card:focus-within {
  z-index: 2;
  transform: translateY(-9px);
  box-shadow: 0 24px 48px rgba(11, 67, 111, 0.14);
}

body:not(.admin-body) .support-plan-card:hover::before,
body:not(.admin-body) .support-plan-card:focus-within::before,
body:not(.admin-body) .support-plan-card.is-popular::before {
  opacity: 1;
}

body:not(.admin-body) .support-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: max-content;
  padding: 8px 18px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(100deg, #008f8b, #00b77b);
  box-shadow: 0 8px 18px rgba(0, 168, 126, 0.22);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

body:not(.admin-body) .support-popular-badge svg {
  width: 14px;
  height: 14px;
}

body:not(.admin-body) .support-plan-heading {
  min-height: 104px;
  text-align: center;
}

body:not(.admin-body) .support-plan-heading h3 {
  margin: 0 0 10px;
  color: var(--plan-accent);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

body:not(.admin-body) .support-plan-heading p {
  margin: 0;
  color: #344966;
  font-size: 14px;
  line-height: 1.55;
}

body:not(.admin-body) .support-plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 25px;
  color: #071b3b;
}

body:not(.admin-body) .support-plan-price strong {
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1;
}

body:not(.admin-body) .support-plan-price span {
  font-size: 16px;
  font-weight: 700;
}

body:not(.admin-body) .support-plan-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .support-plan-card li {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  color: #1d3658;
  font-size: 14px;
  line-height: 1.5;
}

body:not(.admin-body) .support-plan-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--plan-accent);
  stroke-width: 3;
}

body:not(.admin-body) .support-plan-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--plan-accent);
  border-radius: 6px;
  color: #fff;
  background: var(--plan-accent);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--plan-accent) 20%, transparent);
}

body:not(.admin-body) .support-plan-button:hover {
  color: #fff;
  filter: brightness(0.94);
}

body:not(.admin-body) .support-scope-card {
  align-self: stretch;
  padding: 28px 26px;
  border: 1px solid rgba(15, 67, 112, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f5fffb);
  box-shadow: 0 15px 34px rgba(18, 56, 96, 0.07);
}

body:not(.admin-body) .support-scope-card h3 {
  margin: 0 0 18px;
  color: #071b3b;
  font-size: 20px;
  line-height: 1.25;
}

body:not(.admin-body) .support-scope-card h3:nth-of-type(2) {
  margin: 28px -12px -12px;
  padding: 19px 18px 10px;
  border-top: 1px solid rgba(0, 166, 126, 0.14);
  color: #008f7c;
  background: linear-gradient(135deg, rgba(220, 252, 245, 0.9), rgba(234, 248, 255, 0.8));
}

body:not(.admin-body) .support-scope-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .support-scope-card li {
  position: relative;
  padding-left: 25px;
  color: #344966;
  font-size: 13px;
  line-height: 1.45;
}

body:not(.admin-body) .support-scope-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid #ff5f68;
  border-radius: 50%;
  color: #ff4552;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

body:not(.admin-body) .support-scope-card p {
  margin: 0 -12px -12px;
  padding: 0 18px 20px;
  color: #314b67;
  background: linear-gradient(135deg, rgba(220, 252, 245, 0.9), rgba(234, 248, 255, 0.8));
  font-size: 13px;
  line-height: 1.65;
}

body:not(.admin-body) .support-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 58, 101, 0.06);
}

body:not(.admin-body) .support-trust-strip span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 12px;
  align-items: center;
  min-height: 94px;
  padding: 18px 24px;
  color: #496078;
  font-size: 13px;
}

body:not(.admin-body) .support-trust-strip span + span {
  border-left: 1px solid rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .support-trust-strip svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: #009d82;
}

body:not(.admin-body) .support-trust-strip strong {
  color: #0b2244;
  font-size: 17px;
}

body:not(.admin-body) .support-plan-card.support-plan-enter {
  opacity: 0;
  transform: translateY(22px);
}

body:not(.admin-body) .support-plan-card.support-plan-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 460ms ease calc(var(--plan-index) * 90ms),
    transform 460ms cubic-bezier(.2, .8, .2, 1) calc(var(--plan-index) * 90ms),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body:not(.admin-body) .support-plan-card.support-plan-enter.is-visible:hover,
body:not(.admin-body) .support-plan-card.support-plan-enter.is-visible:focus-within {
  transform: translateY(-9px);
}

.admin-body .panel-support {
  border-left-color: #00a892;
  background: linear-gradient(135deg, #fff, #effffb);
}

.admin-body .panel-support h2 {
  color: #008c7a;
}

.admin-body .support-plan-object summary {
  border-left: 3px solid #00a892;
}

@media (max-width: 1160px) {
  body:not(.admin-body) .support-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    min-height: 550px;
  }

  body:not(.admin-body) .support-pricing-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .support-scope-card {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body:not(.admin-body) .support-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 54px 28px 42px;
    border-radius: 0 0 48px 48px;
  }

  body:not(.admin-body) .support-hero-copy {
    max-width: 660px;
  }

  body:not(.admin-body) .support-hero-visual {
    position: absolute;
    z-index: -1;
    right: -80px;
    bottom: -20px;
    width: min(78vw, 550px);
    opacity: 0.13;
  }

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

  body:not(.admin-body) .support-plan-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}

@media (max-width: 700px) {
  body:not(.admin-body) .support-hero {
    padding: 42px 18px 34px;
    border-radius: 0 0 34px 34px;
  }

  body:not(.admin-body) .support-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.06;
  }

  body:not(.admin-body) .support-hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  body:not(.admin-body) .support-benefits {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 24px;
  }

  body:not(.admin-body) .support-plans-section {
    padding: 52px 14px 60px;
  }

  body:not(.admin-body) .support-section-title {
    margin-bottom: 42px;
  }

  body:not(.admin-body) .support-section-title h2 {
    font-size: 32px;
  }

  body:not(.admin-body) .support-plan-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body:not(.admin-body) .support-plan-card,
  body:not(.admin-body) .support-plan-card:last-child {
    grid-column: auto;
    width: 100%;
    min-height: 0;
    padding: 36px 23px 24px;
  }

  body:not(.admin-body) .support-plan-heading {
    min-height: 0;
  }

  body:not(.admin-body) .support-plan-price {
    margin-top: 22px;
  }

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

  body:not(.admin-body) .support-trust-strip span {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 88px;
    padding: 14px;
  }

  body:not(.admin-body) .support-trust-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(18, 107, 255, 0.1);
  }

  body:not(.admin-body) .support-trust-strip span:nth-child(4) {
    border-top: 1px solid rgba(18, 107, 255, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .support-plan-card,
  body:not(.admin-body) .support-plan-card.support-plan-enter,
  body:not(.admin-body) .support-plan-card.support-plan-enter.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Contact information emphasis for direct enquiries. */
@keyframes contact-highlight-ring {
  0%, 100% {
    border-color: rgba(0, 173, 120, 0.18);
    box-shadow: 0 0 0 0 rgba(0, 173, 120, 0.08);
  }
  50% {
    border-color: rgba(0, 173, 120, 0.58);
    box-shadow: 0 0 0 5px rgba(0, 173, 120, 0.08);
  }
}

body:not(.admin-body) .contact-info-list .contact-highlight {
  position: relative;
  margin: -7px -10px;
  padding: 10px;
  border: 1px solid rgba(0, 173, 120, 0.22);
  border-radius: 8px;
  background: linear-gradient(100deg, rgba(232, 255, 247, 0.78), rgba(248, 253, 255, 0.96));
  animation: contact-highlight-ring 2.4s ease-in-out infinite;
}

body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused,
body:not(.admin-body) .contact-info-list .contact-highlight:hover,
body:not(.admin-body) .contact-info-list .contact-highlight:focus-within {
  border-color: rgba(0, 173, 120, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 173, 120, 0.09);
  animation-play-state: paused;
}

body:not(.admin-body) .contact-info-list .contact-highlight svg {
  color: #009d73;
  background: rgba(0, 173, 120, 0.1);
}

body:not(.admin-body) .contact-info-list .contact-highlight b {
  color: #075c49;
  font-size: 15px;
}

body:not(.admin-body) .contact-info-list .contact-highlight a {
  width: fit-content;
  max-width: 100%;
  color: #008e66;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
  -webkit-text-stroke: 0.2px rgba(0, 111, 82, 0.34);
  transition: color 180ms ease, transform 180ms ease;
}

body:not(.admin-body) .contact-info-list .contact-highlight-email a {
  font-size: clamp(15px, 1.05vw, 17px);
}

body:not(.admin-body) .contact-info-list .contact-highlight-phone a {
  font-size: clamp(17px, 1.2vw, 19px);
}

body:not(.admin-body) .contact-info-list .contact-highlight a:hover,
body:not(.admin-body) .contact-info-list .contact-highlight a:focus-visible {
  color: #006d53;
  transform: translateX(3px);
}

@media (max-width: 700px) {
  body:not(.admin-body) .contact-info-list .contact-highlight {
    margin-right: -4px;
    margin-left: -4px;
    padding: 10px 8px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight a {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .contact-info-list .contact-highlight {
    animation: none;
  }
}

/* Shared internal hero rhythm, using the Testimonials hero as the reference. */
body:not(.admin-body) .about-page > .about-hero-pro,
body:not(.admin-body) .services-page > .services-showcase-hero,
body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero,
body:not(.admin-body) .blog-page > .blog-showcase-hero,
body:not(.admin-body) .contact-page > .contact-showcase-hero {
  box-sizing: border-box !important;
  margin-bottom: 0 !important;
}

body:not(.admin-body) .about-page > .about-hero-pro + .section,
body:not(.admin-body) .services-page > .services-showcase-hero + .section,
body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero + .section,
body:not(.admin-body) .blog-page > .blog-showcase-hero + .section,
body:not(.admin-body) .contact-page > .contact-showcase-hero + .section {
  margin-top: 0 !important;
  transform: none !important;
  will-change: auto !important;
}

@media (min-width: 1101px) {
  body:not(.admin-body) .about-page > .about-hero-pro,
  body:not(.admin-body) .services-page > .services-showcase-hero,
  body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero,
  body:not(.admin-body) .blog-page > .blog-showcase-hero,
  body:not(.admin-body) .contact-page > .contact-showcase-hero {
    width: 100% !important;
    height: clamp(759px, calc(708px + 3.54vw), 776px) !important;
    min-height: clamp(759px, calc(708px + 3.54vw), 776px) !important;
  }

  body:not(.admin-body) .about-page > .about-hero-pro {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body:not(.admin-body) .about-page > .about-hero-pro,
  body:not(.admin-body) .services-page > .services-showcase-hero,
  body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero,
  body:not(.admin-body) .blog-page > .blog-showcase-hero,
  body:not(.admin-body) .contact-page > .contact-showcase-hero {
    position: relative !important;
    display: block !important;
    height: clamp(1109px, calc(1058px + 5.66vw), 1116px) !important;
    min-height: clamp(1109px, calc(1058px + 5.66vw), 1116px) !important;
    padding: 64px max(34px, calc((100vw - 920px) / 2 + 34px)) 54px !important;
    overflow: hidden !important;
  }

  body:not(.admin-body) .about-hero-copy,
  body:not(.admin-body) .services-hero-copy,
  body:not(.admin-body) .testimonial-hero-copy,
  body:not(.admin-body) .blog-hero-copy,
  body:not(.admin-body) .contact-hero-copy {
    position: relative !important;
    z-index: 2 !important;
    width: min(100%, 680px) !important;
  }

  body:not(.admin-body) .about-hero-visual,
  body:not(.admin-body) .services-hero-visual,
  body:not(.admin-body) .testimonial-hero-visual,
  body:not(.admin-body) .blog-hero-visual,
  body:not(.admin-body) .contact-hero-visual {
    position: absolute !important;
    right: 50% !important;
    bottom: 42px !important;
    z-index: 1 !important;
    width: min(68vw, 620px) !important;
    height: 410px !important;
    min-height: 0 !important;
    margin: 0 !important;
    transform: translateX(50%) !important;
  }

  body:not(.admin-body) .about-hero-visual img.page-mockup-image,
  body:not(.admin-body) .services-hero-visual img.page-mockup-image,
  body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
  body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
  body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .about-page > .about-hero-pro,
  body:not(.admin-body) .services-page > .services-showcase-hero,
  body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero,
  body:not(.admin-body) .blog-page > .blog-showcase-hero,
  body:not(.admin-body) .contact-page > .contact-showcase-hero {
    height: 614px !important;
    min-height: 614px !important;
    padding: 38px 18px 30px !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy h1,
  body:not(.admin-body) .services-page .services-hero-copy h1,
  body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1,
  body:not(.admin-body) .blog-page .blog-hero-copy h1,
  body:not(.admin-body) .contact-page .contact-hero-copy h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy h1 {
    margin: 10px 0 14px !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy h2 {
    margin: -4px 0 14px !important;
    padding-bottom: 6px !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy p {
    margin: 0 0 14px !important;
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy .hero-actions {
    margin-top: 18px !important;
  }
}

@media (max-width: 359px) {
  body:not(.admin-body) .about-page > .about-hero-pro,
  body:not(.admin-body) .services-page > .services-showcase-hero,
  body:not(.admin-body) .testimonials-page > .testimonial-showcase-hero,
  body:not(.admin-body) .blog-page > .blog-showcase-hero,
  body:not(.admin-body) .contact-page > .contact-showcase-hero {
    height: 704px !important;
    min-height: 704px !important;
  }
}

body:not(.admin-body) .newsletter-form.is-verification-pending {
  grid-template-columns: minmax(0, 1fr) auto;
}

body:not(.admin-body) .newsletter-form.is-verification-pending .bot-check,
body:not(.admin-body) .post-mini-newsletter.is-verification-pending .bot-check {
  display: none;
}

body:not(.admin-body) .newsletter-form.is-verification-open .bot-check,
body:not(.admin-body) .post-mini-newsletter.is-verification-open .bot-check {
  animation: newsletterVerifyIn 0.2s ease both;
}

/* Clickable article summary generated from each blog post's real headings. */
body:not(.admin-body) .post-prose h2,
body:not(.admin-body) .post-prose h3 {
  scroll-margin-top: 112px;
}

body:not(.admin-body) .toc-card ol {
  display: grid;
  gap: 12px;
}

body:not(.admin-body) .toc-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

body:not(.admin-body) .toc-card a:hover {
  color: var(--blue);
}

body:not(.admin-body) .mobile-toc-card {
  display: none;
}

@media (max-width: 760px) {
  body:not(.admin-body) .single-post-page .post-sidebar .toc-card {
    display: none;
  }

  body:not(.admin-body) .single-post-page .mobile-toc-card {
    display: block;
    margin: 0 0 24px;
  }

  body:not(.admin-body) .single-post-page .mobile-toc-card h2 {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.15;
  }

  body:not(.admin-body) .single-post-page .mobile-toc-card ol {
    gap: 10px;
    padding-left: 20px;
  }

  body:not(.admin-body) .single-post-page .mobile-toc-card a {
    font-size: 15px;
    line-height: 1.36;
  }
}

/* Single blog posts: calmer mobile heading scale for long SEO titles. */
@media (max-width: 760px) {
  body:not(.admin-body) .single-post-page .post-title-block h1 {
    margin: 10px 0 18px;
    font-size: clamp(24px, 6.4vw, 31px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0;
  }

  body:not(.admin-body) .single-post-page .post-prose h2 {
    font-size: clamp(21px, 5.8vw, 25px);
    line-height: 1.16;
  }

  body:not(.admin-body) .single-post-page .post-prose h3 {
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.18;
  }
}

/* About mobile hero: remove the large dead space below the CTA buttons. */
@media (max-width: 760px) {
  body:not(.admin-body) .about-page .about-hero-pro {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .about-page .about-hero-copy .hero-actions {
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .about-page .about-hero-pro + .section {
    padding-top: 12px !important;
  }
}

@media (max-width: 420px) {
  body:not(.admin-body) .about-page .about-hero-pro {
    padding-bottom: 14px !important;
  }
}

/* Services mobile hero: keep the rounded bottom close to the CTA buttons. */
@media (max-width: 760px) {
  body:not(.admin-body) .services-page .services-showcase-hero {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .services-page .services-hero-copy .hero-actions {
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .services-page .services-showcase-hero + .section {
    padding-top: 12px !important;
  }
}

@media (max-width: 420px) {
  body:not(.admin-body) .services-page .services-showcase-hero {
    padding-bottom: 14px !important;
  }
}

/* Blog mobile hero: keep the rounded bottom close to the CTA buttons. */
@media (max-width: 760px) {
  body:not(.admin-body) .blog-page .blog-showcase-hero,
  body:not(.admin-body) main.blog-page .blog-showcase-hero {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .blog-page .blog-hero-copy .hero-actions,
  body:not(.admin-body) main.blog-page .blog-hero-copy .hero-actions {
    margin-bottom: 0 !important;
  }

  body:not(.admin-body) .blog-page .blog-showcase-hero + .section,
  body:not(.admin-body) main.blog-page .blog-showcase-hero + .section {
    padding-top: 12px !important;
  }
}

@media (max-width: 420px) {
  body:not(.admin-body) .blog-page .blog-showcase-hero,
  body:not(.admin-body) main.blog-page .blog-showcase-hero {
    padding-bottom: 14px !important;
  }
}

/* Services page typography polish. */
body:not(.admin-body) .services-page .services-grid-section .section-title-center {
  max-width: 820px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  margin-bottom: clamp(32px, 4vw, 46px) !important;
}

body:not(.admin-body) .services-page .services-grid-section .section-title-center h2 {
  max-width: 780px !important;
  margin-top: 12px !important;
  color: var(--navy) !important;
  font-family: "Montserrat", "Poppins", sans-serif !important;
  font-size: clamp(40px, 4.3vw, 64px) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

body:not(.admin-body) .services-page .services-grid-section .section-title-center h2 span {
  position: relative !important;
  display: inline-block !important;
  background: linear-gradient(90deg, var(--blue), #00a6c8 48%, var(--green)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

body:not(.admin-body) .services-page .services-grid-section .section-title-center h2 span::after {
  content: "" !important;
  position: absolute !important;
  right: 2px !important;
  bottom: -8px !important;
  left: 2px !important;
  height: 9px !important;
  border: solid var(--green) !important;
  border-width: 0 0 3px !important;
  border-radius: 0 0 50% 50% !important;
  transform: rotate(-1.5deg) !important;
}

body:not(.admin-body) .services-page .services-grid-section .section-title-center p {
  max-width: 690px !important;
  margin-top: 18px !important;
  color: #394966 !important;
  font-size: 17px !important;
  font-weight: 650 !important;
  line-height: 1.78 !important;
}

body:not(.admin-body) .services-page .service-design-card p {
  color: #263755 !important;
  font-weight: 650 !important;
}

@media (max-width: 760px) {
  body:not(.admin-body) .services-page .services-grid-section .section-title-center {
    margin-bottom: 26px !important;
  }

  body:not(.admin-body) .services-page .services-grid-section .section-title-center h2 {
    font-size: clamp(34px, 9vw, 46px) !important;
    line-height: 1.08 !important;
  }

  body:not(.admin-body) .services-page .services-grid-section .section-title-center p {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.72 !important;
  }

  body:not(.admin-body) .services-page .service-design-card p {
    font-size: 16px !important;
    font-weight: 750 !important;
    line-height: 1.72 !important;
  }
}

/* Services card copy balance after expanded SEO-friendly descriptions. */
body:not(.admin-body) .services-page .service-design-card {
  min-height: 372px !important;
}

body:not(.admin-body) .services-page .service-design-card p {
  -webkit-line-clamp: 5 !important;
}

@media (max-width: 760px) {
  body:not(.admin-body) .services-page .service-design-card {
    min-height: 386px !important;
  }

  body:not(.admin-body) .services-page .service-design-card p {
    -webkit-line-clamp: 5 !important;
  }
}

/* Services card headings use the same blue-to-green language as hero text. */
body:not(.admin-body) .services-page .service-design-card h3,
body:not(.admin-body) .services-page .service-design-card h3 a,
body:not(.admin-body) #services .package-card h3 {
  background: linear-gradient(90deg, var(--blue), #00a6c8 48%, var(--green)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

body:not(.admin-body) .services-page .service-design-card h3 a:hover {
  filter: saturate(1.18) brightness(0.96);
}

/* Shared inner-page hero underline, matching the Contact "Your Project" line. Home is excluded. */
body:not(.admin-body) .about-page .about-hero-copy h1 span,
body:not(.admin-body) .services-page .services-hero-copy h1 span,
body:not(.admin-body) .portfolio-page .portfolio-hero-copy h1 span,
body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1 span,
body:not(.admin-body) .blog-page .blog-hero-copy h1 span,
body:not(.admin-body) .contact-page .contact-hero-copy h1 span {
  position: relative !important;
  display: inline-block !important;
}

body:not(.admin-body) .about-page .about-hero-copy h1 span::after,
body:not(.admin-body) .services-page .services-hero-copy h1 span::after,
body:not(.admin-body) .portfolio-page .portfolio-hero-copy h1 span::after,
body:not(.admin-body) .testimonials-page .testimonial-hero-copy h1 span::after,
body:not(.admin-body) .blog-page .blog-hero-copy h1 span::after,
body:not(.admin-body) .contact-page .contact-hero-copy h1 span::after {
  content: "" !important;
  position: absolute !important;
  right: 4px !important;
  bottom: -10px !important;
  left: 4px !important;
  width: auto !important;
  height: 10px !important;
  border: solid var(--green) !important;
  border-width: 0 0 3px !important;
  border-radius: 0 0 50% 50% !important;
  background: none !important;
  opacity: 1 !important;
  transform: rotate(-1.5deg) !important;
  transform-origin: left center !important;
  pointer-events: none !important;
}

/* Final mobile polish for inner-page hero rhythm. Home intentionally stays untouched. */
@media (max-width: 760px) {
  body:not(.admin-body) .about-hero-pro,
  body:not(.admin-body) .services-showcase-hero,
  body:not(.admin-body) .portfolio-showcase-hero,
  body:not(.admin-body) .testimonial-showcase-hero,
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-original-hero,
  body:not(.admin-body) .sub-hero {
    margin-bottom: 14px !important;
  }

  body:not(.admin-body) .about-hero-pro + .section,
  body:not(.admin-body) .services-showcase-hero + .section,
  body:not(.admin-body) .portfolio-showcase-hero + .section,
  body:not(.admin-body) .testimonial-showcase-hero + .section,
  body:not(.admin-body) .blog-showcase-hero + .section,
  body:not(.admin-body) .contact-original-hero + .section,
  body:not(.admin-body) .sub-hero + .section {
    padding-top: 14px !important;
  }
}

/* PeoplePerHour contact/footer badges. */
body:not(.admin-body) .pph-contact-card {
  margin-top: 14px;
  border-color: rgba(18, 107, 255, 0.18);
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.06), rgba(0, 184, 200, 0.08));
}

body:not(.admin-body) .pph-mark,
body:not(.admin-body) .pph-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
  background: linear-gradient(135deg, #126bff, #00b8c8);
}

body:not(.admin-body) .pph-mark {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(18, 107, 255, 0.22);
}

body:not(.admin-body) .pph-mini {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 10px;
}

body:not(.admin-body) .btn-pph {
  margin-top: 12px;
  color: #fff !important;
  background: linear-gradient(135deg, #126bff, #00b8c8) !important;
  box-shadow: 0 16px 30px rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .footer-pph-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

/* Contact page mockup redesign. */
body:not(.admin-body) .contact-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 52%, #ffffff 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body:not(.admin-body) .contact-original-hero {
  min-height: 640px;
  padding: clamp(62px, 7vw, 96px) max(26px, calc((100vw - 1280px) / 2)) clamp(48px, 6vw, 76px);
  border-bottom-right-radius: clamp(54px, 9vw, 140px);
  border-bottom-left-radius: clamp(34px, 6vw, 90px);
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 168, 107, 0.14), transparent 24%),
    radial-gradient(circle at 94% 34%, rgba(18, 107, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2f9ff 56%, #eaf5ff 100%);
}

body:not(.admin-body) .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.11);
}

body:not(.admin-body) .contact-pill svg {
  width: 16px;
  height: 16px;
}

body:not(.admin-body) .contact-original-hero .contact-hero-copy h1 {
  max-width: 620px;
  margin: 24px 0 20px;
  color: var(--navy);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.04;
}

body:not(.admin-body) .contact-original-hero .contact-hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

body:not(.admin-body) .contact-original-hero .contact-hero-copy h1 span::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -10px;
  left: 4px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 0 3px;
  border-radius: 0 0 50% 50%;
  transform: rotate(-1.5deg);
}

body:not(.admin-body) .about-hero-copy h1 span,
body:not(.admin-body) .services-hero-copy h1 span,
body:not(.admin-body) .portfolio-hero-copy h1 span,
body:not(.admin-body) .blog-hero-copy h1 span {
  position: relative;
  display: inline-block;
}

body:not(.admin-body) .about-hero-copy h1 span::after,
body:not(.admin-body) .services-hero-copy h1 span::after,
body:not(.admin-body) .portfolio-hero-copy h1 span::after,
body:not(.admin-body) .blog-hero-copy h1 span::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -10px;
  left: 4px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 0 3px;
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transform: scaleX(0.2) rotate(-1.5deg);
  transform-origin: left center;
  animation: heroCircleLine 780ms cubic-bezier(.22, .72, .22, 1) 180ms forwards;
}

@keyframes heroCircleLine {
  to {
    opacity: 1;
    transform: scaleX(1) rotate(-1.5deg);
  }
}

body:not(.admin-body) .contact-original-hero .contact-hero-copy p {
  max-width: 610px;
  color: #52617b;
  font-size: 17px;
  line-height: 1.75;
}

body:not(.admin-body) .contact-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 38px;
}

body:not(.admin-body) .contact-trust-row span {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 10px;
  align-items: center;
}

body:not(.admin-body) .contact-trust-row svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #46d984);
}

body:not(.admin-body) .contact-trust-row span:nth-child(2) svg {
  background: linear-gradient(135deg, var(--blue), #37a0ff);
}

body:not(.admin-body) .contact-trust-row strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.1;
}

body:not(.admin-body) .contact-trust-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

body:not(.admin-body) .contact-message-section {
  padding-top: clamp(48px, 6vw, 78px);
}

body:not(.admin-body) .contact-original-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

body:not(.admin-body) .contact-original-form,
body:not(.admin-body) .contact-info-panel,
body:not(.admin-body) .contact-work-card,
body:not(.admin-body) .contact-faq-item {
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 62px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .contact-original-form {
  display: block;
  padding: clamp(26px, 3vw, 36px);
}

body:not(.admin-body) .contact-original-form h2,
body:not(.admin-body) .contact-info-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 24px;
}

body:not(.admin-body) .contact-original-form h2 svg,
body:not(.admin-body) .contact-info-panel h2 svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
}

body:not(.admin-body) .contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

body:not(.admin-body) .contact-form-fields label,
body:not(.admin-body) .contact-original-form .full-field {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

body:not(.admin-body) .contact-form-fields input,
body:not(.admin-body) .contact-form-fields select,
body:not(.admin-body) .contact-form-fields textarea {
  margin-top: 8px;
  min-height: 54px;
  border-radius: 8px;
  border-color: rgba(18, 107, 255, 0.15);
  background: #fff;
}

body:not(.admin-body) .contact-form-fields textarea {
  min-height: 138px;
}

body:not(.admin-body) .contact-original-form .full-field {
  grid-column: 1 / -1;
}

body:not(.admin-body) .contact-original-form > .btn {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border-radius: 8px;
}

body:not(.admin-body) .contact-original-form .form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-body) .contact-original-form .form-note svg {
  width: 15px;
  height: 15px;
}

body:not(.admin-body) .contact-info-panel {
  padding: clamp(26px, 3vw, 34px);
}

body:not(.admin-body) .contact-info-list {
  display: grid;
  gap: 24px;
}

body:not(.admin-body) .contact-info-list span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
}

body:not(.admin-body) .contact-info-list svg {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .contact-info-list b {
  color: var(--navy);
  font-size: 14px;
}

body:not(.admin-body) .contact-info-list a,
body:not(.admin-body) .contact-info-list small {
  color: #23345f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

body:not(.admin-body) .upwork-contact-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 3px 14px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(0, 168, 107, 0.13);
  border-radius: 12px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .upwork-contact-card .upwork-mark {
  grid-row: span 2;
}

body:not(.admin-body) .upwork-contact-card strong {
  color: var(--green);
}

body:not(.admin-body) .upwork-contact-card small {
  color: var(--muted);
  line-height: 1.5;
}

body:not(.admin-body) .upwork-contact-card > svg {
  color: var(--green);
}

body:not(.admin-body) .contact-section-title {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  text-align: center;
}

body:not(.admin-body) .contact-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

body:not(.admin-body) .contact-work-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

body:not(.admin-body) .contact-work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(11, 22, 51, 0.13);
}

body:not(.admin-body) .contact-work-card > svg,
body:not(.admin-body) .contact-work-card .upwork-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
}

body:not(.admin-body) .contact-work-card > svg {
  padding: 15px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

body:not(.admin-body) .contact-work-card.consult > svg {
  background: var(--purple);
}

body:not(.admin-body) .contact-work-card.support > svg {
  background: #f97316;
}

body:not(.admin-body) .contact-work-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 21px;
}

body:not(.admin-body) .contact-work-card p {
  color: #52617b;
  line-height: 1.7;
}

body:not(.admin-body) .contact-work-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
}

body:not(.admin-body) .contact-work-card.email strong {
  color: var(--blue);
}

body:not(.admin-body) .contact-work-card.consult strong {
  color: var(--purple);
}

body:not(.admin-body) .contact-work-card.support strong {
  color: #f97316;
}

body:not(.admin-body) .contact-faq-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

body:not(.admin-body) .contact-faq-heading h2,
body:not(.admin-body) .contact-faq-heading a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body:not(.admin-body) .contact-faq-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

body:not(.admin-body) .contact-faq-heading a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

body:not(.admin-body) .contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

body:not(.admin-body) .contact-faq-item {
  padding: 0;
  box-shadow: 0 14px 34px rgba(11, 22, 51, 0.06);
}

body:not(.admin-body) .contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

body:not(.admin-body) .contact-faq-item summary::-webkit-details-marker {
  display: none;
}

body:not(.admin-body) .contact-faq-item summary svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--blue);
}

body:not(.admin-body) .contact-faq-item[open] summary svg {
  transform: rotate(45deg);
}

body:not(.admin-body) .contact-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #52617b;
  line-height: 1.7;
}

body:not(.admin-body) .contact-ready-section {
  padding-top: 24px;
}

body:not(.admin-body) .contact-ready-banner {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 26px;
  align-items: center;
  overflow: hidden;
  padding: 34px 48px;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 4% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 96% 50%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(110deg, #126bff, #0b61d8 58%, #0747a6);
  box-shadow: 0 24px 58px rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .contact-ready-shield {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 18px 36px rgba(11, 22, 51, 0.16);
}

body:not(.admin-body) .contact-ready-shield svg {
  width: 46px;
  height: 46px;
}

body:not(.admin-body) .contact-ready-banner h2,
body:not(.admin-body) .contact-ready-banner p {
  margin: 0;
  color: #fff;
}

body:not(.admin-body) .contact-ready-banner h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

body:not(.admin-body) .contact-ready-banner p {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.55;
}

body:not(.admin-body) .contact-ready-banner .btn {
  min-width: 260px;
  justify-content: center;
}

body:not(.admin-body) .upwork-mini {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

body:not(.admin-body) .contact-ready-banner small {
  grid-column: 3;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

body:not(.admin-body) .contact-ready-banner small svg {
  width: 15px;
  height: 15px;
  vertical-align: -3px;
}

@media (max-width: 1080px) {
  body:not(.admin-body) .contact-original-hero,
  body:not(.admin-body) .contact-original-grid,
  body:not(.admin-body) .contact-faq-grid,
  body:not(.admin-body) .contact-ready-banner {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .contact-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .contact-ready-banner small {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .contact-original-hero {
    min-height: 0;
    padding: 42px 18px 56px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 38px;
  }

  body:not(.admin-body) .contact-original-hero .contact-hero-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  body:not(.admin-body) .contact-original-hero .contact-hero-copy p {
    font-size: 15.5px;
  }

  body:not(.admin-body) .contact-trust-row,
  body:not(.admin-body) .contact-form-fields,
  body:not(.admin-body) .contact-work-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .contact-trust-row {
    gap: 14px;
  }

  body:not(.admin-body) .contact-original-form,
  body:not(.admin-body) .contact-info-panel,
  body:not(.admin-body) .contact-work-card {
    padding: 24px 20px;
  }

  body:not(.admin-body) .contact-faq-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body:not(.admin-body) .upwork-contact-card {
    grid-template-columns: 48px 1fr;
  }

  body:not(.admin-body) .upwork-contact-card > svg {
    display: none;
  }

  body:not(.admin-body) .contact-ready-banner {
    justify-items: start;
    padding: 30px 22px;
  }

  body:not(.admin-body) .contact-ready-shield {
    width: 74px;
    height: 74px;
  }

  body:not(.admin-body) .contact-ready-banner .btn {
    width: 100%;
    min-width: 0;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand strong,
.btn,
.header-cta,
.main-nav,
.eyebrow,
.package-price,
.stats-strip strong,
.about-big-number,
.section-title-center h2,
.object-title,
.admin-panel h2,
.admin-top h1,
.login-box h1 {
  font-family: var(--font-heading);
}

html {
  overflow-x: clip;
}

body:not(.admin-body)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 17%, rgba(139, 92, 246, 0.08), transparent 18%),
    radial-gradient(circle at 93% 10%, rgba(0, 184, 200, 0.08), transparent 20%),
    radial-gradient(circle at 84% 74%, rgba(0, 168, 107, 0.055), transparent 18%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.1em; height: 1.1em; stroke-width: 2.4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 107, 255, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.brand strong em {
  color: var(--green);
  font-style: normal;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

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

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta,
.btn-green {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 168, 107, 0.24);
}

.btn-outline {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.btn-light {
  color: var(--green);
  background: var(--white);
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 24px 80px;
}

.hero::before,
.hero::after,
.section-inner::before,
.about-preview::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  left: -92px;
  top: 86px;
  width: 210px;
  height: 330px;
  border-radius: 45% 55% 48% 52%;
  background: rgba(139, 92, 246, 0.14);
  filter: blur(1px);
}

.hero::after {
  left: 49%;
  top: 96px;
  width: 110px;
  height: 110px;
  opacity: 0.38;
  background-image: radial-gradient(var(--blue) 1.3px, transparent 1.3px);
  background-size: 12px 12px;
}

.hero h1,
.sub-hero h1 {
  margin: 18px 0;
  max-width: 720px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span,
.about-preview h2 span { color: var(--blue); }

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero p,
.sub-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.trust-row {
  gap: 28px;
  margin-top: 34px;
  font-size: 13px;
  font-weight: 900;
}

.trust-row span,
.link-arrow,
.section-heading-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg:nth-child(1) { color: var(--green); }

.hero-art {
  position: relative;
  padding: 22px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 6% 4% 2% 7%;
  border-radius: 42% 32% 38% 28%;
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.12), rgba(0, 184, 200, 0.22), rgba(0, 168, 107, 0.18));
}

.hero-art img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 24px 34px rgba(11, 22, 51, 0.12));
}

.hero-art .hero-composite {
  display: block;
  width: min(585px, 100%);
  margin-left: auto;
  object-fit: contain;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #008d5b;
  background: #c9f7df;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.section {
  padding: 34px 24px;
}

.section-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.section-inner::before {
  right: -42px;
  top: 18px;
  width: 88px;
  height: 88px;
  opacity: 0.16;
  background-image: radial-gradient(var(--purple) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
}

.pastel {
  position: relative;
  background: linear-gradient(90deg, rgba(238, 247, 255, 0.9), rgba(236, 255, 246, 0.7), rgba(246, 240, 255, 0.9));
  overflow: hidden;
}

.pastel::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(18, 107, 255, 0.08);
}

.pastel::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 42% 58% 50% 50%;
  background: rgba(0, 168, 107, 0.07);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.section-intro {
  align-self: center;
}

h2 {
  margin: 14px 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
}

h3 {
  margin: 14px 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

p { color: var(--muted); }

.service-card,
.project-card,
.testimonial-card,
.blog-card,
.content-card,
.why-card,
.contact-card,
.hero-mini-card,
.wide-service {
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 268px;
  padding: 34px 28px;
  text-align: center;
}

.service-card > svg,
.wide-service > svg {
  width: 44px;
  height: 44px;
}

.accent-blue > svg { color: var(--blue); }
.accent-green > svg { color: var(--green); }
.accent-teal > svg { color: var(--teal); }
.accent-purple > svg { color: var(--purple); }

.service-card a,
.link-arrow,
.section-heading-row a,
.blog-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.project-card {
  min-height: 374px;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-card div {
  padding: 20px 22px 22px;
}

.project-card span {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft-blue);
  font-size: 12px;
  font-weight: 800;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.service-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 105, 255, 0.18);
}

.service-offer-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 105, 255, 0.24);
}

.about-preview {
  position: relative;
  background: linear-gradient(110deg, #fff, var(--soft-purple), var(--soft-blue));
  overflow: hidden;
}

.about-preview::before {
  left: 24px;
  top: 52px;
  width: 100px;
  height: 100px;
  opacity: 0.32;
  background-image: radial-gradient(var(--purple) 1.4px, transparent 1.4px);
  background-size: 11px 11px;
}

.about-preview::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(18, 107, 255, 0.065);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}

.portrait-card {
  border-radius: 34% 42% 36% 28%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(0, 184, 200, 0.14));
  padding: 18px;
}

.portrait-card img {
  max-height: 360px;
  margin: 0 auto;
}

.skill {
  margin: 22px 0;
}

.skill span {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
}

.skill i {
  display: block;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) var(--value), #e6eaf2 var(--value));
}

.stats-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 36px auto;
  padding: 38px 46px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(100deg, var(--blue), var(--teal), var(--green), var(--purple));
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(#fff 1.1px, transparent 1.1px);
  background-size: 16px 16px;
}

.stats-strip > * {
  position: relative;
  z-index: 1;
}

.stats-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  align-items: center;
}

.stats-strip svg {
  grid-row: span 2;
  width: 50px;
  height: 50px;
}

.stats-strip strong {
  font-size: 30px;
  line-height: 1;
}

.stats-strip span {
  font-size: 13px;
  font-weight: 700;
}

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

.three-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  min-height: 220px;
  padding: 28px;
}

.testimonial-card.tall {
  min-height: 280px;
}

.stars {
  color: var(--green);
  font-size: 20px;
  letter-spacing: 2px;
}

.blog-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 210px;
  overflow: hidden;
}

.blog-card.vertical {
  display: block;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

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

.blog-card small {
  color: var(--muted);
  font-weight: 700;
}

.post-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.blog-card.vertical {
  min-height: 100%;
}

.blog-card.vertical img {
  height: 228px;
  min-height: 228px;
}

.blog-card.vertical div {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.blog-card.vertical h2 {
  margin-top: 4px;
  font-size: 24px;
}

.blog-card.vertical a {
  margin-top: auto;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(105deg, var(--blue), var(--teal), var(--purple));
}

.cta-band::before {
  content: "";
  position: absolute;
  right: 16%;
  top: -52px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.65;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  opacity: 0.22;
  background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
  background-size: 11px 11px;
}

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

.cta-band h2,
.cta-band p { color: var(--white); margin: 0; }

.cta-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  font-weight: 800;
  font-size: 13px;
}

.cta-points span {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.sub-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 24px;
  background: linear-gradient(120deg, #fff, var(--soft-blue), var(--soft-green));
}

.sub-hero::before {
  content: "";
  position: absolute;
  right: 9%;
  top: 36px;
  width: 110px;
  height: 110px;
  opacity: 0.2;
  background-image: radial-gradient(var(--blue) 1.2px, transparent 1.2px);
  background-size: 11px 11px;
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
}

.sub-hero-image {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(11, 22, 51, 0.13);
}

.sub-hero-image img {
  width: 100%;
  height: clamp(260px, 30vw, 390px);
  object-fit: cover;
}

.split,
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.hero-mini-card,
.content-card,
.why-card,
.contact-card {
  padding: 34px;
}

.hero-mini-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(140deg, var(--white), var(--soft-purple));
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
}

.check-list li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 900;
}

.mini-stack {
  display: grid;
  gap: 14px;
}

.mini-stack span {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 24px;
}

.wide-service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 30px;
}

.project-card.large {
  min-height: 440px;
}

.post-hero-img {
  max-height: 260px;
  margin-left: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-featured-img {
  width: 100%;
  max-height: 360px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  object-fit: cover;
}

.article-body {
  max-width: 840px;
  font-size: 18px;
}

.article-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.article-body .btn {
  margin-top: 12px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-form-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 168, 107, 0.1), transparent 36%),
    linear-gradient(135deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow);
}

.contact-form-card > div,
.contact-form-card .full-field,
.contact-form-card .form-alert,
.contact-form-card .form-note,
.contact-form-card button {
  grid-column: 1 / -1;
}

.contact-form-card h2 {
  margin-bottom: 6px;
}

.contact-form-card p {
  margin: 0;
}

.contact-form-card label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 107, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: rgba(18, 107, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(18, 107, 255, 0.1);
}

.contact-form-card .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.form-alert.success {
  color: #04643e;
  background: rgba(0, 168, 107, 0.12);
}

.form-alert.error {
  color: #9b1c1c;
  background: rgba(239, 68, 68, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.spam-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

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

.contact-options-section {
  padding-top: 0;
}

.contact-options-row {
  display: grid;
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.contact-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn-whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #00a86b 0%, #0ccf7c 100%);
  box-shadow: 0 14px 28px rgba(0, 168, 107, 0.24);
}

.btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 168, 107, 0.3);
}

.contact-option-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0 8px;
}

.contact-option-button {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 12px !important;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 12px;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(11, 22, 51, 0.08);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-option-button svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
}

.contact-option-button span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-option-button strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
  word-break: break-word;
}

.contact-option-button.whatsapp svg { color: var(--green); }
.contact-option-button.email svg { color: var(--blue); }

.contact-option-button:hover {
  border-color: rgba(18, 107, 255, 0.24);
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(11, 22, 51, 0.12);
}

.site-footer {
  margin-top: 40px;
  padding: 48px clamp(20px, 5vw, 72px) 22px;
  color: #dbe7ff;
  background: #06152b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr;
  gap: 42px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid h3,
.footer-grid strong { color: var(--white); }

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #dbe7ff;
}

.footer-brand { margin-bottom: 16px; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.socials a span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  margin-left: 18px;
}

.footer-newsletter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto 44px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 10% 0, rgba(18, 107, 255, 0.18), transparent 32%),
    linear-gradient(105deg, rgba(0, 146, 132, 0.96), rgba(0, 168, 107, 0.9) 58%, rgba(88, 205, 128, 0.9));
  box-shadow: 0 22px 54px rgba(0, 14, 30, 0.24);
}

.newsletter-section {
  margin-top: 42px;
  padding: 28px 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(105deg, #126bff 0%, #00a6c8 44%, #00a86b 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

.footer-newsletter span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-newsletter h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.footer-newsletter p {
  max-width: 590px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(7, 25, 54, 0.58);
}

.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), inset 0 0 0 2px rgba(18, 107, 255, 0.32);
}

.newsletter-form button {
  min-height: 50px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #071936;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(7, 25, 54, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.newsletter-form button:hover {
  background: #126bff;
  box-shadow: 0 18px 34px rgba(18, 107, 255, 0.24);
  transform: translateY(-2px);
}

.newsletter-alert {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
}

.newsletter-alert.error {
  background: rgba(255, 255, 255, 0.92);
  color: #b42318;
}

.thank-you-section {
  padding: 110px 0 76px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 15% 10%, rgba(18, 107, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  background-size: 58px 58px, 58px 58px, 100% 100%, 100% 100%;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 58px);
  border: 1px solid rgba(18, 107, 255, 0.14);
  border-top: 4px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, var(--teal), var(--green), #f4d212) border-box;
  box-shadow: 0 26px 70px rgba(11, 22, 51, 0.08);
  text-align: center;
}

.thank-you-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.12);
}

.thank-you-card h1 {
  max-width: 660px;
  margin: 18px auto 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.06;
}

.thank-you-card p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.admin-body {
  min-height: 100vh;
  background: var(--light);
}

.login-box,
.admin-shell {
  max-width: 1160px;
  margin: 40px auto;
  padding: 28px;
}

.login-box {
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-top,
.admin-panel,
.admin-details,
.sticky-save {
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11, 22, 51, 0.08);
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-top nav {
  display: flex;
  gap: 14px;
  font-weight: 900;
  color: var(--blue);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-form label,
.login-box label {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  font-size: 13px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--navy);
  font: inherit;
}

textarea { resize: vertical; }

.admin-details summary {
  cursor: pointer;
  font-weight: 900;
}

.admin-alert {
  padding: 12px 14px;
  border-radius: 10px;
  color: #075e40;
  background: #d9ffed;
  font-weight: 800;
}

.security-note {
  margin: 8px 0 16px;
  padding: 12px 14px;
  border: 1px solid #d9e9ff;
  border-radius: 12px;
  color: #27476d;
  background: #f1f8ff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.security-settings {
  border-left: 7px solid #0f766e;
  background: linear-gradient(135deg, #ffffff, #effdfa);
}

.security-settings summary {
  color: #0f766e;
}

.analytics-settings {
  border-left: 7px solid var(--blue);
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.analytics-settings summary {
  color: var(--blue);
}

.analytics-settings textarea {
  min-height: 150px;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
}

.extra-code-settings {
  border-left: 7px solid var(--purple);
  background: linear-gradient(135deg, #ffffff, #f6f0ff);
}

.extra-code-settings summary {
  color: var(--purple);
}

.extra-code-settings textarea {
  min-height: 150px;
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
}

.help {
  color: var(--muted);
  font-size: 13px;
}

.image-library {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.image-library figure {
  margin: 0;
  padding: 10px;
  border: 1px solid #d9e3ef;
  border-radius: 12px;
  background: #fff;
}

.image-library img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--light);
}

.image-library figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.admin-details small {
  color: var(--muted);
  font-weight: 700;
}

.new-item {
  border-left: 4px solid var(--green);
}

.danger {
  color: #a32121;
  background: #ffe8e8;
}

.sticky-save {
  position: sticky;
  bottom: 14px;
  text-align: right;
}

/* CMS usability pass */
.admin-shell {
  max-width: 1240px;
}

.admin-top {
  border: 1px solid #dbe8f5;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.admin-top h1 {
  margin: 0 0 6px;
}

.admin-panel {
  border: 1px solid #dfe9f4;
  border-left: 7px solid var(--blue);
  box-shadow: 0 14px 36px rgba(11, 22, 51, 0.08);
}

.admin-panel h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

.admin-panel h2:focus-visible {
  outline: 3px solid rgba(18, 107, 255, 0.22);
  outline-offset: 4px;
  border-radius: 8px;
}

.panel-title {
  min-width: 0;
}

.panel-tools {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
}

.admin-action,
.panel-toggle,
.panel-jump,
.copy-image-name,
.rich-toolbar button {
  appearance: none;
  border: 1px solid rgba(11, 22, 51, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-action:hover,
.panel-toggle:hover,
.panel-jump:hover,
.copy-image-name:hover,
.rich-toolbar button:hover {
  border-color: rgba(0, 92, 255, 0.28);
  box-shadow: 0 10px 24px rgba(11, 22, 51, 0.08);
  transform: translateY(-1px);
}

.admin-action {
  padding: 12px 15px;
}

.admin-save-action,
.panel-save {
  border-color: rgba(0, 168, 107, 0.26) !important;
  background: linear-gradient(135deg, var(--green), #00c978) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(0, 168, 107, 0.18);
}

.admin-section-nav {
  position: sticky;
  top: 94px;
  z-index: 29;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(11, 22, 51, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-section-nav button {
  appearance: none;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.admin-section-nav button:hover {
  color: var(--blue);
  border-color: rgba(18, 107, 255, 0.28);
  transform: translateY(-1px);
}

.panel-toggle {
  flex: 0 0 auto;
  padding: 10px 12px;
  font-size: 12px;
}

.panel-jump {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.panel-jump:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.section-save-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 168, 107, 0.13);
  border-radius: 10px;
  background: rgba(236, 255, 246, 0.72);
}

.section-save-row .help {
  margin: 0;
}

.admin-panel.is-collapsed {
  padding-bottom: 16px;
}

.admin-panel.is-collapsed > :not(h2) {
  display: none;
}

.admin-panel.is-collapsed .panel-toggle::after {
  content: " closed";
  color: var(--muted);
  font-weight: 700;
}

.panel-settings { border-left-color: var(--navy); background: linear-gradient(135deg, #ffffff, #f7fbff); }
.panel-images { border-left-color: var(--teal); background: linear-gradient(135deg, #ffffff, #effdff); }
.panel-pages { border-left-color: var(--blue); background: linear-gradient(135deg, #ffffff, #eef7ff); }
.panel-services { border-left-color: var(--green); background: linear-gradient(135deg, #ffffff, #ecfff6); }
.panel-portfolio { border-left-color: var(--purple); background: linear-gradient(135deg, #ffffff, #f6f0ff); }
.panel-testimonials { border-left-color: #f59e0b; background: linear-gradient(135deg, #ffffff, #fff7e8); }
.panel-blog { border-left-color: #ec4899; background: linear-gradient(135deg, #ffffff, #fff0f8); }
.panel-sitemap { border-left-color: #126bff; background: linear-gradient(135deg, #ffffff, #eef7ff); }

.panel-settings h2 { color: var(--navy); }
.panel-images h2 { color: var(--teal); }
.panel-pages h2 { color: var(--blue); }
.panel-services h2 { color: var(--green); }
.panel-portfolio h2 { color: var(--purple); }
.panel-testimonials h2 { color: #b45309; }
.panel-blog h2 { color: #be185d; }

.admin-details {
  border: 1px solid rgba(11, 22, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.admin-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
  font-size: 16px;
}

.admin-details[open] summary {
  margin-bottom: 16px;
}

.admin-details.new-item {
  background: rgba(255, 255, 255, 0.96);
  border-left-width: 7px;
}

.admin-form select,
.admin-form input,
.admin-form textarea {
  background: #ffffff;
}

.admin-form textarea {
  min-height: 96px;
}

.rich-editor {
  overflow: hidden;
  border: 1px solid #d8e4f0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid #e3edf7;
  background: linear-gradient(135deg, #f8fbff, #eef7ff);
}

.rich-toolbar button {
  min-width: 42px;
  padding: 10px 12px;
  font-size: 12px;
}

.rich-surface {
  min-height: 160px;
  padding: 15px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.7;
  outline: 0;
}

.rich-surface:focus {
  box-shadow: inset 0 0 0 2px rgba(0, 92, 255, 0.18);
}

.rich-surface h2,
.rich-surface h3,
.rich-surface h4 {
  margin: 10px 0 8px;
  line-height: 1.25;
}

.rich-surface p {
  margin: 0 0 12px;
}

.rich-surface ul,
.rich-surface ol {
  margin: 8px 0 12px 22px;
  padding: 0;
}

.rich-editor.html-mode textarea.rich-text {
  display: block !important;
  min-height: 180px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: Consolas, Monaco, monospace;
}

.admin-form button.danger {
  margin-top: 10px;
  border: 1px solid #ffcaca;
}

.copy-image-name {
  width: 100%;
  margin-top: 9px;
  padding: 10px;
  font-size: 11px;
}

.image-library figure {
  display: flex;
  min-height: 184px;
  flex-direction: column;
}

.image-library figcaption {
  flex: 1;
}

.sticky-save {
  border: 1px solid rgba(0, 168, 107, 0.2);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

/* Reference design alignment pass */
body:not(.admin-body) {
  font-size: 14px;
  line-height: 1.6;
}

body:not(.admin-body) .site-header {
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.96);
}

body:not(.admin-body) .brand {
  min-width: 260px;
  gap: 10px;
}

body:not(.admin-body) .brand img {
  width: 42px;
  height: 42px;
}

body:not(.admin-body) .brand strong {
  font-size: 20px;
  letter-spacing: 0;
}

body:not(.admin-body) .brand small {
  font-size: 11px;
  line-height: 1.1;
}

body:not(.admin-body) .main-nav {
  gap: 26px;
  font-size: 13px;
}

body:not(.admin-body) .header-cta,
body:not(.admin-body) .btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 13px;
}

body:not(.admin-body) .hero {
  grid-template-columns: 0.92fr 1fr;
  max-width: 1180px;
  min-height: 535px;
  padding: 62px 0 52px;
  gap: 42px;
}

body:not(.admin-body) .hero h1 {
  max-width: 560px;
  margin: 18px 0 18px;
  font-size: 44px;
  line-height: 1.22;
  font-weight: 900;
}

body:not(.admin-body) .hero p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.85;
}

body:not(.admin-body) .eyebrow {
  min-height: 25px;
  padding: 4px 10px;
  font-size: 11px;
}

body:not(.admin-body) .hero-actions {
  gap: 24px;
  margin-top: 26px;
}

body:not(.admin-body) .trust-row {
  gap: 34px;
  margin-top: 30px;
  font-size: 12px;
}

.hero-blob {
  position: relative;
  width: min(570px, 100%);
  height: 430px;
  margin-left: auto;
}

.hero-blob::before {
  content: "";
  position: absolute;
  inset: 34px 88px 12px 72px;
  border-radius: 34% 42% 32% 46%;
  background: linear-gradient(135deg, #65c8ff 0%, #159cff 36%, #19d49a 100%);
  box-shadow: 0 26px 55px rgba(18, 107, 255, 0.18);
}

.hero-blob::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 12px;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(rgba(139, 92, 246, 0.42) 1.3px, transparent 1.3px);
  background-size: 11px 11px;
}

.hero-art {
  padding: 0;
}

.hero-art::before {
  display: none;
}

.hero-person {
  position: absolute;
  z-index: 2;
  left: 78px;
  bottom: 0;
  width: 300px;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(11, 22, 51, 0.2));
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  width: 178px;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(11, 22, 51, 0.14);
}

.hero-badge svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.hero-badge strong {
  font-size: 14px;
  line-height: 1.1;
}

.hero-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.badge-wp { right: 8px; top: 76px; }
.badge-el { right: 0; top: 192px; }
.badge-sec { right: 10px; top: 315px; }
.badge-el svg { color: #c21874; }
.badge-sec svg { color: var(--green); }

body:not(.admin-body) .section {
  padding: 42px 0;
}

body:not(.admin-body) .section-inner {
  max-width: 1180px;
}

body:not(.admin-body) .pastel {
  padding: 54px 0;
  background: linear-gradient(100deg, rgba(238, 247, 255, 0.86), rgba(236, 255, 246, 0.68), rgba(246, 240, 255, 0.86));
}

body:not(.admin-body) .feature-grid {
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 28px;
}

body:not(.admin-body) .section-intro h2 {
  font-size: 31px;
  line-height: 1.22;
}

body:not(.admin-body) .section-intro p {
  font-size: 14px;
}

body:not(.admin-body) .service-card {
  min-height: 260px;
  padding: 34px 24px 28px;
  border-radius: 10px;
}

body:not(.admin-body) .service-card > svg {
  width: 52px;
  height: 52px;
  margin-bottom: 8px;
}

body:not(.admin-body) .service-card h3,
body:not(.admin-body) .project-card h3,
body:not(.admin-body) .blog-card h3 {
  font-size: 16px;
}

body:not(.admin-body) .service-card p {
  min-height: 48px;
  font-size: 13px;
}

body:not(.admin-body) #portfolio {
  padding-top: 48px;
  padding-bottom: 48px;
}

body:not(.admin-body) .project-card {
  min-height: 314px;
  border-radius: 10px;
  box-shadow: 0 15px 34px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .project-card img {
  height: 132px;
  aspect-ratio: auto;
}

body:not(.admin-body) .project-card div {
  padding: 15px 18px 18px;
}

body:not(.admin-body) .project-card p {
  min-height: 48px;
  margin: 0;
  font-size: 13px;
}

body:not(.admin-body) .project-card span {
  margin-top: 12px;
  padding: 5px 9px;
  font-size: 11px;
}

body:not(.admin-body) .about-preview {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 0;
  background: linear-gradient(105deg, #fff 0%, #f8f2ff 52%, #eef8ff 100%);
}

body:not(.admin-body) .about-grid {
  grid-template-columns: 285px 1fr 360px;
  gap: 46px;
}

body:not(.admin-body) .portrait-card {
  padding: 8px;
  border-radius: 42% 34% 38% 30%;
  box-shadow: none;
}

body:not(.admin-body) .portrait-card img {
  max-height: 278px;
}

body:not(.admin-body) .about-preview h2 {
  font-size: 30px;
}

body:not(.admin-body) .about-preview p {
  font-size: 14px;
}

body:not(.admin-body) .skill {
  margin: 17px 0;
}

body:not(.admin-body) .skill span {
  font-size: 13px;
}

body:not(.admin-body) .skill i {
  height: 6px;
}

body:not(.admin-body) .stats-strip {
  max-width: 1180px;
  margin: 44px auto 38px;
  padding: 34px 44px;
  border-radius: 12px;
}

body:not(.admin-body) .stats-strip svg {
  width: 48px;
  height: 48px;
}

body:not(.admin-body) .stats-strip strong {
  font-size: 30px;
}

body:not(.admin-body) .three-grid {
  gap: 24px;
}

body:not(.admin-body) .testimonial-card {
  min-height: 174px;
  padding: 24px 26px;
  border-radius: 10px;
}

body:not(.admin-body) .testimonial-card p {
  font-size: 13px;
}

body:not(.admin-body) .cta-band {
  grid-template-columns: 1.15fr 1.2fr 230px;
  padding: 38px;
  border-radius: 12px;
}

body:not(.admin-body) .cta-band h2 {
  font-size: 32px;
}

body:not(.admin-body) .cta-band p,
body:not(.admin-body) .cta-points {
  font-size: 13px;
}

body:not(.admin-body) .blog-card {
  grid-template-columns: 116px 1fr;
  min-height: 170px;
  border-radius: 10px;
}

body:not(.admin-body) .blog-card img {
  min-height: 170px;
}

body:not(.admin-body) .blog-card div {
  padding: 18px;
}

body:not(.admin-body) .blog-card p {
  font-size: 13px;
}

body:not(.admin-body) .site-footer {
  margin-top: 34px;
  padding-top: 42px;
}

body:not(.admin-body) .footer-grid {
  max-width: 1180px;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 1fr;
}

@media (max-width: 1040px) {
  .header-cta { display: none; }
  .feature-grid,
  .about-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-art { max-width: 640px; margin: 0 auto; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-inline: 24px; }
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 14px 18px;
  }
  .brand { min-width: 0; }
  .brand strong { font-size: 18px; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 0;
    color: var(--navy);
    background: transparent;
  }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .hero,
  .section,
  .sub-hero { padding-left: 18px; padding-right: 18px; }
  .feature-grid,
  .three-grid,
  .portfolio-grid,
  .about-grid,
  .two-col,
  .contact-grid,
  .split,
  .footer-grid,
  .admin-grid { grid-template-columns: 1fr; }
  .contact-form-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .blog-card { grid-template-columns: 1fr; }
  .stats-strip {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .cta-points { grid-template-columns: 1fr; }
  .footer-bottom,
  .admin-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reference design feel pass: larger boxes, pastel bands, subtle patterns, mobile polish */
body:not(.admin-body) {
  background:
    radial-gradient(circle at 0 14%, rgba(139, 92, 246, 0.08), transparent 17%),
    radial-gradient(circle at 100% 7%, rgba(0, 184, 200, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 36%, #ffffff 100%);
}

body:not(.admin-body) .hero,
body:not(.admin-body) .section-inner,
body:not(.admin-body) .about-preview,
body:not(.admin-body) .stats-strip,
body:not(.admin-body) .cta-band,
body:not(.admin-body) .header-inner,
body:not(.admin-body) .footer-grid,
body:not(.admin-body) .footer-bottom {
  max-width: 1250px;
}

body:not(.admin-body) .hero {
  min-height: 560px;
  padding: 74px 24px 64px;
}

body:not(.admin-body) .hero h1 {
  max-width: 590px;
  font-size: 46px;
  line-height: 1.22;
}

body:not(.admin-body) .hero p {
  max-width: 520px;
}

body:not(.admin-body) .hero::before {
  left: -135px;
  top: 128px;
  width: 245px;
  height: 360px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.05) 70%);
  filter: none;
}

body:not(.admin-body) .hero::after {
  left: 50.5%;
  top: 118px;
  width: 106px;
  height: 106px;
  opacity: 0.38;
  background-image: radial-gradient(#126bff 1.35px, transparent 1.35px);
  background-size: 12px 12px;
}

body:not(.admin-body) .hero-blob {
  width: min(590px, 100%);
  height: 450px;
}

body:not(.admin-body) .hero-blob::before {
  inset: 26px 80px 10px 58px;
  background:
    radial-gradient(circle at 24% 22%, rgba(18, 107, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #42b8ff 0%, #15cf91 100%);
}

body:not(.admin-body) .hero-blob::after {
  right: 42px;
  top: 6px;
  width: 118px;
  height: 118px;
  opacity: 0.25;
  background-image: radial-gradient(#c026d3 1.15px, transparent 1.15px);
  background-size: 11px 11px;
}

body:not(.admin-body) .hero-person {
  left: 66px;
  width: 335px;
  max-height: 430px;
}

body:not(.admin-body) .hero-badge {
  width: 205px;
  min-height: 86px;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(11, 22, 51, 0.13);
}

body:not(.admin-body) .badge-wp { right: 10px; top: 72px; }
body:not(.admin-body) .badge-el { right: 2px; top: 202px; }
body:not(.admin-body) .badge-sec { right: 8px; top: 334px; }

body:not(.admin-body) .section {
  position: relative;
  overflow: hidden;
  padding: 46px 24px;
}

body:not(.admin-body) .section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: clamp(20px, 7vw, 120px);
  top: 28px;
  width: 96px;
  height: 96px;
  opacity: 0.18;
  background-image: radial-gradient(#126bff 1.2px, transparent 1.2px);
  background-size: 11px 11px;
}

body:not(.admin-body) .section:nth-of-type(3n)::before {
  left: clamp(20px, 8vw, 130px);
  right: auto;
  background-image: radial-gradient(#8b5cf6 1.2px, transparent 1.2px);
}

body:not(.admin-body) .pastel {
  padding: 62px 24px;
  background:
    radial-gradient(circle at 4% 72%, rgba(18, 107, 255, 0.06), transparent 24%),
    radial-gradient(circle at 98% 17%, rgba(139, 92, 246, 0.08), transparent 24%),
    linear-gradient(100deg, rgba(238, 247, 255, 0.92), rgba(236, 255, 246, 0.74), rgba(246, 240, 255, 0.9));
}

body:not(.admin-body) #portfolio {
  background:
    radial-gradient(circle at 3% 20%, rgba(0, 184, 200, 0.06), transparent 22%),
    linear-gradient(90deg, #ffffff 0%, #f8fcff 58%, #ffffff 100%);
}

body:not(.admin-body) #testimonials,
body:not(.admin-body) #blog {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

body:not(.admin-body) .feature-grid {
  grid-template-columns: 285px repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body:not(.admin-body) .section-intro {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body:not(.admin-body) .section-intro h2 {
  font-size: 34px;
}

body:not(.admin-body) .service-card,
body:not(.admin-body) .project-card,
body:not(.admin-body) .testimonial-card,
body:not(.admin-body) .blog-card,
body:not(.admin-body) .content-card,
body:not(.admin-body) .why-card,
body:not(.admin-body) .contact-card,
body:not(.admin-body) .wide-service {
  border-radius: 10px;
  border-color: rgba(18, 107, 255, 0.13);
  box-shadow: 0 20px 44px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .service-card {
  min-height: 286px;
  padding: 38px 28px 32px;
}

body:not(.admin-body) .service-card > svg {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
}

body:not(.admin-body) .service-card h3,
body:not(.admin-body) .project-card h3,
body:not(.admin-body) .blog-card h3 {
  font-size: 17px;
}

body:not(.admin-body) .project-card {
  min-height: 348px;
}

body:not(.admin-body) .project-card img {
  height: 154px;
}

body:not(.admin-body) .project-card div {
  padding: 18px 22px 22px;
}

body:not(.admin-body) .about-preview {
  width: calc(100% - 48px);
  margin: 8px auto 0;
  padding: 64px 44px;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 28%, rgba(139, 92, 246, 0.08), transparent 20%),
    radial-gradient(circle at 92% 78%, rgba(18, 107, 255, 0.07), transparent 20%),
    linear-gradient(105deg, #ffffff 0%, #fbf5ff 52%, #eef8ff 100%);
}

body:not(.admin-body) .about-preview::before {
  left: 48px;
  top: 74px;
  width: 105px;
  height: 105px;
  opacity: 0.24;
}

body:not(.admin-body) .about-grid {
  grid-template-columns: 310px 1fr 390px;
}

body:not(.admin-body) .portrait-card img {
  max-height: 300px;
}

body:not(.admin-body) .stats-strip {
  margin: 48px auto 42px;
  padding: 40px 52px;
  border-radius: 12px;
}

body:not(.admin-body) .testimonial-card {
  min-height: 188px;
  padding: 28px 30px;
}

body:not(.admin-body) .cta-band {
  padding: 42px 40px;
  border-radius: 12px;
  background: linear-gradient(110deg, #126bff 0%, #00a6c8 44%, #8b5cf6 100%);
}

body:not(.admin-body) .blog-card {
  grid-template-columns: 132px 1fr;
  min-height: 184px;
}

body:not(.admin-body) .blog-card img {
  min-height: 184px;
}

@media (max-width: 1180px) {
  body:not(.admin-body) .hero,
  body:not(.admin-body) .section,
  body:not(.admin-body) .pastel {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  body:not(.admin-body) .section-intro {
    min-height: 0;
  }

  body:not(.admin-body) .about-grid {
    grid-template-columns: 290px 1fr;
  }

  body:not(.admin-body) .skill-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .hero,
  body:not(.admin-body) .section,
  body:not(.admin-body) .pastel {
    padding-left: 18px;
    padding-right: 18px;
  }

  body:not(.admin-body) .hero {
    padding-top: 42px;
    padding-bottom: 30px;
    gap: 18px;
  }

  body:not(.admin-body) .hero h1 {
    font-size: 36px;
    line-height: 1.22;
  }

  body:not(.admin-body) .hero p {
    font-size: 15px;
    line-height: 1.75;
  }

  body:not(.admin-body) .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body:not(.admin-body) .hero-actions .btn,
  body:not(.admin-body) .cta-band .btn {
    width: 100%;
  }

  body:not(.admin-body) .trust-row {
    display: flex;
    gap: 10px 14px;
    font-size: 11px;
  }

  body:not(.admin-body) .hero-blob {
    height: 330px;
    max-width: 355px;
  }

  body:not(.admin-body) .hero-person {
    left: 50%;
    width: 220px;
    max-height: 315px;
    transform: translateX(-58%);
  }

  body:not(.admin-body) .hero-blob::before {
    inset: 38px 52px 18px 36px;
  }

  body:not(.admin-body) .hero-badge {
    width: 160px;
    min-height: 64px;
    grid-template-columns: 30px 1fr;
    padding: 12px;
  }

  body:not(.admin-body) .hero-badge svg {
    width: 27px;
    height: 27px;
  }

  body:not(.admin-body) .hero-badge strong {
    font-size: 12px;
  }

  body:not(.admin-body) .hero-badge span {
    font-size: 11px;
  }

  body:not(.admin-body) .badge-wp { right: 0; top: 42px; }
  body:not(.admin-body) .badge-el { right: 0; top: 136px; }
  body:not(.admin-body) .badge-sec { right: 0; top: 230px; }

  body:not(.admin-body) .feature-grid,
  body:not(.admin-body) .three-grid,
  body:not(.admin-body) .about-grid,
  body:not(.admin-body) .portfolio-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  body:not(.admin-body) .section::before {
    width: 74px;
    height: 74px;
    opacity: 0.13;
  }

  body:not(.admin-body) .section-intro h2,
  body:not(.admin-body) .about-preview h2,
  body:not(.admin-body) .section-heading-row h2 {
    font-size: 28px;
  }

  body:not(.admin-body) .service-card {
    min-height: 248px;
    padding: 32px 24px;
  }

  body:not(.admin-body) .project-card,
  body:not(.admin-body) .testimonial-card,
  body:not(.admin-body) .blog-card {
    min-height: 0;
  }

  body:not(.admin-body) .project-card img {
    height: 210px;
  }

  body:not(.admin-body) .about-preview {
    width: auto;
    margin: 0;
    padding: 42px 18px;
  }

  body:not(.admin-body) .portrait-card {
    max-width: 285px;
    margin: 0 auto;
  }

  body:not(.admin-body) .stats-strip {
    width: auto;
    margin: 26px 18px;
    padding: 28px 24px;
  }

  body:not(.admin-body) .cta-band {
    padding: 34px 24px;
  }

  body:not(.admin-body) .blog-card {
    grid-template-columns: 118px 1fr;
  }

  body:not(.admin-body) .blog-card img {
    min-height: 176px;
  }

  body:not(.admin-body) .section-heading-row {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  body:not(.admin-body) .brand strong {
    font-size: 17px;
  }

  body:not(.admin-body) .brand small {
    font-size: 10px;
  }

  body:not(.admin-body) .hero h1 {
    font-size: 32px;
  }

  body:not(.admin-body) .hero-blob {
    height: 305px;
  }

  body:not(.admin-body) .hero-badge {
    width: 148px;
  }

  body:not(.admin-body) .blog-card {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .blog-card img {
    height: 190px;
  }
}

@media (max-width: 1040px) {
  body:not(.admin-body) .site-header {
    max-width: none;
    padding: 14px 20px;
  }

  body:not(.admin-body) .hero {
    grid-template-columns: 1fr;
    max-width: 720px;
    min-height: 0;
    padding: 48px 20px 44px;
    gap: 28px;
  }

  body:not(.admin-body) .hero h1 {
    width: auto;
    max-width: 620px;
    font-size: clamp(34px, 7vw, 46px);
  }

  body:not(.admin-body) .feature-grid,
  body:not(.admin-body) .about-grid,
  body:not(.admin-body) .three-grid,
  body:not(.admin-body) .portfolio-grid,
  body:not(.admin-body) .footer-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .section,
  body:not(.admin-body) .pastel,
  body:not(.admin-body) .about-preview {
    padding-left: 20px;
    padding-right: 20px;
  }

  body:not(.admin-body) .section-inner,
  body:not(.admin-body) .about-preview {
    max-width: 720px;
  }

  body:not(.admin-body) .service-card,
  body:not(.admin-body) .project-card,
  body:not(.admin-body) .testimonial-card,
  body:not(.admin-body) .blog-card {
    width: 100%;
  }

  body:not(.admin-body) .project-card {
    min-height: 0;
  }

  body:not(.admin-body) .project-card img {
    height: 190px;
  }

  body:not(.admin-body) .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-left: 20px;
    margin-right: 20px;
  }

  body:not(.admin-body) .cta-band {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  body:not(.admin-body) .hero-blob {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .brand {
    min-width: 0;
  }

  body:not(.admin-body) .hero {
    padding-top: 38px;
  }

  body:not(.admin-body) .hero-blob {
    width: 100%;
    height: 380px;
  }

  body:not(.admin-body) .hero-person {
    left: 50%;
    transform: translateX(-58%);
    width: 245px;
    max-height: 350px;
  }

  body:not(.admin-body) .hero-blob::before {
    inset: 42px 54px 18px 42px;
  }

  body:not(.admin-body) .hero-badge {
    width: 155px;
    min-height: 64px;
    padding: 12px 14px;
  }

  body:not(.admin-body) .hero-badge svg {
    width: 28px;
    height: 28px;
  }

  body:not(.admin-body) .badge-wp { right: 2px; top: 56px; }
  body:not(.admin-body) .badge-el { right: 0; top: 164px; }
  body:not(.admin-body) .badge-sec { right: 2px; top: 272px; }

  body:not(.admin-body) .stats-strip {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  body:not(.admin-body) .cta-points {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .blog-card {
    grid-template-columns: 110px 1fr;
  }
}

/* Full-width header/footer readability fix */
body:not(.admin-body) .site-header {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 22px;
  border-bottom: 1px solid rgba(18, 107, 255, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(11, 22, 51, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body:not(.admin-body) .header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
}

body:not(.admin-body) .site-footer {
  width: 100%;
  margin-top: 0;
  padding: 54px 22px 26px;
  color: #e7f0ff;
  background: linear-gradient(135deg, #06152b 0%, #08254d 58%, #061a34 100%);
  position: relative;
  overflow: hidden;
}

body:not(.admin-body) .site-footer::before {
  content: "";
  position: absolute;
  left: 6%;
  top: 34px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  background-image: radial-gradient(#fff 1.1px, transparent 1.1px);
  background-size: 12px 12px;
}

body:not(.admin-body) .site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 184, 200, 0.12);
}

body:not(.admin-body) .footer-grid,
body:not(.admin-body) .footer-bottom {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .footer-grid {
  max-width: 1180px;
  grid-template-columns: 1.22fr 0.78fr 0.95fr 1fr;
  gap: 54px;
}

body:not(.admin-body) .footer-grid h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

body:not(.admin-body) .footer-grid p {
  max-width: 310px;
  margin: 0 0 18px;
  color: #cbdaf0;
  font-size: 15px;
  line-height: 1.75;
}

body:not(.admin-body) .footer-grid a {
  margin: 10px 0;
  color: #e0ebff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}

body:not(.admin-body) .footer-grid a:hover {
  color: #ffffff;
}

body:not(.admin-body) .footer-grid .btn {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #00a86b, #07c982);
  box-shadow: 0 12px 26px rgba(0, 168, 107, 0.22);
  font-size: 13px;
  font-weight: 850;
}

body:not(.admin-body) .footer-grid .btn svg {
  width: 18px;
  height: 18px;
}

body:not(.admin-body) .footer-grid .btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 168, 107, 0.3);
}

body:not(.admin-body) .footer-brand {
  margin-bottom: 18px;
}

body:not(.admin-body) .footer-brand small {
  color: #b9c9e4;
}

body:not(.admin-body) .socials a {
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

body:not(.admin-body) .footer-bottom {
  max-width: 1180px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9c9e4;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  body:not(.admin-body) .site-header {
    padding: 0 20px;
  }

  body:not(.admin-body) .header-inner {
    min-height: 72px;
  }

  body:not(.admin-body) .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .site-header {
    padding: 0 18px;
  }

  body:not(.admin-body) .header-inner {
    min-height: 72px;
  }

  body:not(.admin-body) .main-nav {
    left: 0;
    right: 0;
    top: 72px;
  }

  body:not(.admin-body) .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body:not(.admin-body) .footer-grid p,
  body:not(.admin-body) .footer-grid a {
    font-size: 15px;
  }

  body:not(.admin-body) .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final cascade guard for the reference-style boxed layout */
body:not(.admin-body) .hero,
body:not(.admin-body) .section-inner,
body:not(.admin-body) .about-preview,
body:not(.admin-body) .stats-strip,
body:not(.admin-body) .cta-band,
body:not(.admin-body) .header-inner,
body:not(.admin-body) .footer-grid,
body:not(.admin-body) .footer-bottom {
  max-width: 1250px;
}

@media (max-width: 760px) {
  body:not(.admin-body) .hero {
    max-width: none;
    padding-top: 42px;
    padding-bottom: 30px;
    gap: 18px;
  }

  body:not(.admin-body) .hero-blob {
    width: min(355px, 100%);
    height: 330px;
  }

  body:not(.admin-body) .hero-person {
    width: 220px;
    max-height: 315px;
  }

  body:not(.admin-body) .hero-blob::before {
    inset: 38px 52px 18px 36px;
  }

  body:not(.admin-body) .badge-wp { right: 0; top: 42px; }
  body:not(.admin-body) .badge-el { right: 0; top: 136px; }
  body:not(.admin-body) .badge-sec { right: 0; top: 230px; }
}

@media (max-width: 430px) {
  body:not(.admin-body) .hero-blob {
    height: 305px;
  }
}

body:not(.admin-body) .hero-art .hero-composite {
  width: min(590px, 100%);
  max-height: 590px;
  margin-left: auto;
}

@media (max-width: 1040px) {
  body:not(.admin-body) .hero-art .hero-composite {
    width: min(560px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .hero-art {
    max-width: 390px;
    margin: 0 auto;
  }

  body:not(.admin-body) .hero-art .hero-composite {
    width: 100%;
    max-height: 390px;
  }
}

/* Final action/link polish: original design button sizing and arrow feel */
body:not(.admin-body) .header-cta,
body:not(.admin-body) .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  gap: 11px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

body:not(.admin-body) .header-cta,
body:not(.admin-body) .btn-green {
  background: linear-gradient(135deg, #00a86b, #07c982);
  box-shadow: 0 14px 28px rgba(0, 168, 107, 0.24);
}

body:not(.admin-body) .btn-outline {
  border: 2px solid rgba(18, 107, 255, 0.9);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .header-cta:hover,
body:not(.admin-body) .btn:hover {
  transform: translateY(-2px);
}

body:not(.admin-body) .btn-outline:hover {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 28px rgba(18, 107, 255, 0.18);
}

body:not(.admin-body) .header-cta svg,
body:not(.admin-body) .btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

body:not(.admin-body) .header-cta:hover svg,
body:not(.admin-body) .btn:hover svg,
body:not(.admin-body) .service-card a:hover svg,
body:not(.admin-body) .link-arrow:hover svg,
body:not(.admin-body) .section-heading-row a:hover svg,
body:not(.admin-body) .blog-card a:hover svg,
body:not(.admin-body) .project-link:hover svg {
  transform: translateX(3px);
}

body:not(.admin-body) .service-card a,
body:not(.admin-body) .link-arrow,
body:not(.admin-body) .section-heading-row a,
body:not(.admin-body) .blog-card a,
body:not(.admin-body) .project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0;
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: color 0.18s ease, gap 0.18s ease, transform 0.18s ease;
}

body:not(.admin-body) .service-card a,
body:not(.admin-body) .blog-card a,
body:not(.admin-body) .project-link {
  margin-top: 14px;
}

body:not(.admin-body) .link-arrow,
body:not(.admin-body) .section-heading-row a {
  min-height: 40px;
  width: fit-content;
  align-self: flex-start;
}

body:not(.admin-body) .section-heading-row a {
  padding: 0 2px;
  white-space: nowrap;
}

body:not(.admin-body) .service-card a svg,
body:not(.admin-body) .link-arrow svg,
body:not(.admin-body) .section-heading-row a svg,
body:not(.admin-body) .blog-card a svg,
body:not(.admin-body) .project-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.7;
  transition: transform 0.18s ease;
}

body:not(.admin-body) .service-card a:hover,
body:not(.admin-body) .link-arrow:hover,
body:not(.admin-body) .section-heading-row a:hover,
body:not(.admin-body) .blog-card a:hover,
body:not(.admin-body) .project-link:hover {
  color: var(--green);
}

body:not(.admin-body) .main-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
}

body:not(.admin-body) .main-nav a[aria-current="page"]::after {
  height: 3px;
  bottom: 2px;
}

body:not(.admin-body) .footer-grid a:not(.btn) {
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}

body:not(.admin-body) .footer-grid a:not(.btn):hover {
  transform: translateX(3px);
}

@media (max-width: 760px) {
  body:not(.admin-body) .header-cta,
  body:not(.admin-body) .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }

  body:not(.admin-body) .section-heading-row {
    gap: 12px;
  }

  body:not(.admin-body) .section-heading-row a,
  body:not(.admin-body) .link-arrow {
    min-height: 36px;
    font-size: 13px;
  }

  body:not(.admin-body) .service-card a,
  body:not(.admin-body) .blog-card a,
  body:not(.admin-body) .project-link {
    min-height: 34px;
  }

  body:not(.admin-body) .main-nav a {
    width: 100%;
    min-height: 44px;
    padding: 0;
  }
}

/* Admin density pass: wider workspace, tighter accordions, faster editing */
.admin-body {
  background:
    radial-gradient(circle at 3% 8%, rgba(18, 107, 255, 0.07), transparent 24%),
    radial-gradient(circle at 100% 4%, rgba(0, 168, 107, 0.06), transparent 22%),
    #f4f8fb;
}

.admin-shell {
  width: min(100% - 28px, 1680px);
  max-width: 1680px;
  margin: 14px auto;
  padding: 0;
}

.admin-top {
  position: sticky;
  top: 10px;
  z-index: 30;
  min-height: 72px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 12px;
}

.admin-top h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.admin-top p {
  margin: 4px 0 0;
  font-size: 13px;
}

.admin-top nav {
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-top nav a,
.admin-action {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-panel {
  margin-bottom: 0;
  padding: 14px 16px;
  border-left-width: 6px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(11, 22, 51, 0.06);
}

.admin-panel h2 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.2;
}

.panel-toggle {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 11px;
}

.panel-tools {
  gap: 5px;
}

.panel-jump {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 10px;
}

.panel-save {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
}

.admin-panel.is-collapsed {
  padding-top: 12px;
  padding-bottom: 12px;
}

.admin-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
}

.admin-details {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: 0 7px 18px rgba(11, 22, 51, 0.045);
}

.admin-details summary {
  min-height: 30px;
  padding: 0;
  gap: 10px;
  font-size: 14px;
}

.admin-details summary small {
  font-size: 11px;
}

.admin-details[open] summary {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 22, 51, 0.08);
}

.admin-details.new-item {
  border-left-width: 5px;
}

.admin-object {
  border-left: 5px solid var(--teal);
  background:
    linear-gradient(90deg, rgba(0, 184, 200, 0.05), transparent 36%),
    rgba(255, 255, 255, 0.95);
}

.admin-object-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}

.admin-object-grid .admin-object {
  min-width: 0;
  margin-bottom: 0;
}

.admin-object-grid .admin-object[open] {
  grid-column: span 2;
  border-color: var(--blue);
  box-shadow: 0 18px 38px rgba(18, 107, 255, 0.1);
}

.admin-object summary {
  align-items: flex-start;
}

.object-summary-main {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.sortable-help {
  margin: 10px 0 4px;
  padding: 9px 12px;
  border: 1px dashed rgba(18, 107, 255, 0.22);
  border-radius: 10px;
  background: rgba(18, 107, 255, 0.045);
}

.drag-handle {
  display: inline-grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(18, 107, 255, 0.18);
  border-radius: 9px;
  background: #f6fbff;
  color: var(--blue);
  cursor: grab;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  user-select: none;
}

.sortable-object-grid .admin-object {
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.sortable-object-grid .admin-object.is-dragging {
  opacity: 0.58;
  transform: scale(0.985);
  box-shadow: 0 18px 42px rgba(18, 107, 255, 0.18);
}

.object-meta small[data-drag-order]::after {
  content: " -> New order " attr(data-drag-order);
  color: var(--blue);
  font-weight: 800;
}

.object-thumb {
  flex: 0 0 auto;
  width: 58px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(11, 22, 51, 0.08);
  box-shadow: 0 8px 18px rgba(11, 22, 51, 0.08);
}

.object-title {
  display: block;
  min-width: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
}

.object-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.object-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.12);
  color: var(--green);
  font-size: 11px;
  text-transform: uppercase;
}

.object-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid rgba(11, 22, 51, 0.08);
  border-radius: 10px;
  background: rgba(248, 252, 255, 0.9);
}

.mini-action {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 107, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(11, 22, 51, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

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

.mini-action.danger {
  border-color: #ffcaca;
  background: #fff1f1;
  color: #a32121;
}

.service-object { border-left-color: var(--green); }
.portfolio-object { border-left-color: var(--blue); }
.testimonial-object { border-left-color: #8b5cf6; }
.blog-object { border-left-color: #be185d; }

.admin-form label,
.login-box label {
  gap: 5px;
  margin: 7px 0;
  font-size: 12px;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.login-box input {
  min-height: 38px;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 13px;
}

.admin-form input[type="file"] {
  padding: 8px;
  border-style: dashed;
  background: linear-gradient(135deg, #f8fcff, #ffffff);
  cursor: pointer;
}

.field-note {
  display: block;
  margin: 6px 0 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.upload-selected-note {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.admin-form textarea {
  min-height: 74px;
}

.analytics-settings textarea,
.extra-code-settings textarea {
  min-height: 110px;
}

.help,
.security-note {
  margin: 7px 0 10px;
  font-size: 12px;
  line-height: 1.45;
}

.rich-editor {
  border-radius: 10px;
}

.rich-toolbar {
  gap: 6px;
  padding: 7px;
}

.rich-toolbar button {
  min-width: 34px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 11px;
}

.rich-surface {
  min-height: 118px;
  padding: 11px;
  font-size: 13px;
  line-height: 1.55;
}

.image-library {
  grid-template-columns: repeat(auto-fill, minmax(122px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.image-library figure {
  min-height: 154px;
  padding: 8px;
  border-radius: 10px;
}

.image-library img {
  height: 72px;
  border-radius: 7px;
}

.image-library figcaption {
  margin-top: 6px;
  font-size: 10px;
  line-height: 1.25;
}

.copy-image-name {
  min-height: 30px;
  margin-top: 7px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 10px;
}

.admin-alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.admin-body .admin-alert {
  position: sticky;
  z-index: 120;
  top: 86px;
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(0, 168, 107, 0.3);
  box-shadow: 0 14px 34px rgba(11, 22, 51, 0.16);
}

.admin-body .admin-alert::before {
  content: "Saved";
  flex: 0 0 auto;
  margin-right: 10px;
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  background: #00a86b;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-body .admin-alert-warning {
  color: #765600;
  border-color: rgba(213, 158, 0, 0.38);
  background: #fff8d9;
}

.admin-body .admin-alert-warning::before {
  content: "Saved with note";
  background: #b37a00;
}

.admin-body .admin-alert-error {
  color: #8c1d2c;
  border-color: rgba(211, 40, 58, 0.38);
  background: #fff0f2;
}

.admin-body .admin-alert-error::before {
  content: "Not saved";
  background: #d3283a;
}

@media (max-width: 760px) {
  .admin-body .admin-alert {
    top: 74px;
  }
}

.sticky-save {
  right: 0;
  bottom: 10px;
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 168, 107, 0.24);
  box-shadow: 0 18px 38px rgba(11, 22, 51, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  transition: opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sticky-save:hover,
.sticky-save:focus-within {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(11, 22, 51, 0.14);
  opacity: 1;
  transform: translateY(-1px);
}

.sticky-save .btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 168, 107, 0.24);
}

.admin-form button.btn,
.admin-form .btn {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
}

@media (max-width: 1280px) {
  .admin-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .admin-shell {
    width: min(100% - 18px, 100%);
    margin-top: 10px;
  }

  .admin-top {
    position: static;
  }

  .admin-section-nav {
    position: static;
  }

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

  .admin-object-grid .admin-object[open] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-object-grid {
    grid-template-columns: 1fr;
  }

  .admin-object-grid .admin-object[open] {
    grid-column: auto;
  }

  .object-summary-main {
    align-items: flex-start;
  }

  .object-thumb {
    width: 50px;
    height: 40px;
  }

  .admin-panel {
    padding: 12px;
  }

  .admin-panel h2 {
    align-items: flex-start;
    flex-direction: column;
  }

  .panel-tools {
    width: 100%;
  }

  .panel-tools button {
    flex: 1 1 auto;
  }

  .section-save-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-save-row .btn {
    width: 100%;
    justify-content: center;
  }

  .admin-top nav {
    width: 100%;
  }

  .admin-top nav a,
  .admin-action {
    flex: 1 1 auto;
  }
}

/* Single-service template cleanup: shorter rhythm, full-width headings, fewer rounded surfaces. */
body:not(.admin-body) .service-detail-page .service-scope-matrix-section,
body:not(.admin-body) .service-detail-page .service-guidance-section,
body:not(.admin-body) .service-detail-page .service-process-section,
body:not(.admin-body) .service-detail-page .service-reasons-section,
body:not(.admin-body) .service-detail-page .related-projects-section,
body:not(.admin-body) .service-detail-page .service-faq-section,
body:not(.admin-body) .service-detail-page .service-latest-posts {
  padding-top: clamp(42px, 5vw, 62px);
  padding-bottom: clamp(44px, 5vw, 66px);
}

body:not(.admin-body) .service-detail-page .service-wide-heading,
body:not(.admin-body) .service-detail-page .service-process-section .section-heading {
  width: 100%;
  max-width: none;
  margin: 0 0 27px;
  text-align: left;
}

body:not(.admin-body) .service-detail-page .service-wide-heading h2,
body:not(.admin-body) .service-detail-page .service-process-section .section-heading h2 {
  width: 100%;
  max-width: none;
  margin: 13px 0 10px;
  font-size: clamp(29px, 3vw, 41px);
  line-height: 1.14;
}

body:not(.admin-body) .service-detail-page .service-wide-heading p,
body:not(.admin-body) .service-detail-page .service-process-section .section-heading p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

body:not(.admin-body) .service-detail-page .service-scope-grid {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(240px, 0.9fr));
  gap: 16px;
}

body:not(.admin-body) .service-detail-page .service-audience-panel {
  padding: 22px 24px 20px 0;
}

body:not(.admin-body) .service-detail-page .service-audience-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.2;
}

body:not(.admin-body) .service-detail-page .service-audience-panel > p {
  margin-bottom: 18px;
}

body:not(.admin-body) .service-detail-page .service-scope-card {
  padding: 23px 21px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .service-detail-page .service-scope-card:hover {
  box-shadow: 0 15px 30px rgba(11, 22, 51, 0.065);
  transform: translateY(-2px);
}

body:not(.admin-body) .service-detail-page .service-guidance-shell {
  grid-template-columns: minmax(0, 1.62fr) minmax(270px, 0.58fr);
  gap: clamp(28px, 4vw, 48px);
}

body:not(.admin-body) .service-detail-page .service-guidance-copy {
  width: 100%;
  max-width: none;
}

body:not(.admin-body) .service-detail-page .service-guidance-copy h2 {
  margin-top: 21px;
  margin-bottom: 9px;
  font-size: clamp(24px, 2.2vw, 31px);
}

body:not(.admin-body) .service-detail-page .service-guidance-copy p,
body:not(.admin-body) .service-detail-page .service-guidance-copy li,
body:not(.admin-body) .service-detail-page .service-estimate-card p,
body:not(.admin-body) .service-detail-page .service-estimate-card li {
  line-height: 1.66;
}

body:not(.admin-body) .service-detail-page .service-estimate-card {
  position: sticky;
  top: 106px;
  display: block;
  padding: 25px 23px;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(11, 22, 51, 0.05);
}

body:not(.admin-body) .service-detail-page .service-estimate-card > span {
  margin-bottom: 18px;
}

body:not(.admin-body) .service-detail-page .service-estimate-card > h2 {
  margin: 8px 0 10px;
  font-size: 23px;
}

body:not(.admin-body) .service-detail-page .service-estimate-card > p,
body:not(.admin-body) .service-detail-page .service-estimate-card > ul,
body:not(.admin-body) .service-detail-page .service-estimate-card > ol {
  margin-top: 10px;
  margin-bottom: 10px;
}

body:not(.admin-body) .service-detail-page .service-estimate-card .btn {
  width: 100%;
  min-width: 0;
  margin-top: 14px;
}

body:not(.admin-body) .service-detail-page .service-process-section .section-heading p {
  margin-left: 0;
}

body:not(.admin-body) .service-detail-page .service-process-track {
  gap: 14px;
}

body:not(.admin-body) .service-detail-page .service-process-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(11, 22, 51, 0.055);
}

body:not(.admin-body) .service-detail-page .service-process-icon svg {
  width: 25px;
  height: 25px;
}

body:not(.admin-body) .service-detail-page .service-process-step h3 {
  margin: 6px 0;
}

body:not(.admin-body) .service-detail-page .service-process-step p {
  line-height: 1.48;
}

body:not(.admin-body) .service-detail-page .service-reason-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body:not(.admin-body) .service-detail-page .service-reason-card {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  min-height: 132px;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 9px 22px rgba(11, 22, 51, 0.04);
}

body:not(.admin-body) .service-detail-page .service-reason-card:hover {
  box-shadow: 0 14px 28px rgba(11, 22, 51, 0.065);
  transform: translateY(-2px);
}

body:not(.admin-body) .service-detail-page .service-reason-card > span {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

body:not(.admin-body) .service-detail-page .service-reason-card > span svg {
  width: 23px;
  height: 23px;
}

body:not(.admin-body) .service-detail-page .service-related-projects-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: none;
  margin-top: 0;
}

body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  min-height: 260px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(11, 22, 51, 0.05);
}

body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card-media {
  height: 100%;
}

body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card-media img {
  height: 100%;
  min-height: 260px;
  aspect-ratio: auto;
  object-fit: cover;
}

body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card > div {
  padding: 23px 21px;
}

body:not(.admin-body) .service-detail-page .service-faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 28px;
}

body:not(.admin-body) .service-detail-page .service-faq-heading .eyebrow,
body:not(.admin-body) .service-detail-page .service-faq-heading h2,
body:not(.admin-body) .service-detail-page .service-faq-heading p {
  grid-column: 1;
}

body:not(.admin-body) .service-detail-page .service-faq-heading .btn {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: end;
}

body:not(.admin-body) .service-detail-page .service-faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px 14px;
}

body:not(.admin-body) .service-detail-page .service-faq-item {
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(11, 22, 51, 0.04);
}

body:not(.admin-body) .service-detail-page .service-faq-item button {
  min-height: 62px;
  padding: 14px 16px;
  font-size: 14px;
}

body:not(.admin-body) .service-detail-page .service-faq-answer {
  padding: 0 54px 17px 16px;
}

body:not(.admin-body) .service-detail-page .service-faq-answer p {
  font-size: 14px;
  line-height: 1.65;
}

body:not(.admin-body) .service-detail-page .service-final-cta-section {
  padding-top: 34px;
  padding-bottom: 36px;
}

body:not(.admin-body) .service-detail-page .service-contact-cta {
  border-radius: 8px;
}

@media (max-width: 980px) {
  body:not(.admin-body) .service-detail-page .service-scope-grid,
  body:not(.admin-body) .service-detail-page .service-reason-cards {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-detail-page .service-audience-panel {
    padding-right: 0;
  }

  body:not(.admin-body) .service-detail-page .service-related-projects-compact {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-detail-page .service-faq-heading {
    display: block;
  }

  body:not(.admin-body) .service-detail-page .service-faq-heading .btn {
    margin-top: 20px;
  }

  body:not(.admin-body) .service-detail-page .service-estimate-card {
    display: block;
  }

  body:not(.admin-body) .service-detail-page .service-estimate-card > span {
    margin-bottom: 16px;
  }

  body:not(.admin-body) .service-detail-page .service-estimate-card .btn {
    width: 100%;
    min-width: 0;
    margin-top: 14px;
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .service-detail-page .service-scope-matrix-section,
  body:not(.admin-body) .service-detail-page .service-guidance-section,
  body:not(.admin-body) .service-detail-page .service-process-section,
  body:not(.admin-body) .service-detail-page .service-reasons-section,
  body:not(.admin-body) .service-detail-page .related-projects-section,
  body:not(.admin-body) .service-detail-page .service-faq-section,
  body:not(.admin-body) .service-detail-page .service-latest-posts {
    padding-top: 38px;
    padding-bottom: 40px;
  }

  body:not(.admin-body) .service-detail-page .service-wide-heading,
  body:not(.admin-body) .service-detail-page .service-process-section .section-heading {
    margin-bottom: 22px;
  }

  body:not(.admin-body) .service-detail-page .service-wide-heading h2,
  body:not(.admin-body) .service-detail-page .service-process-section .section-heading h2 {
    font-size: 28px;
  }

  body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card {
    display: flex;
    min-height: 0;
  }

  body:not(.admin-body) .service-detail-page .service-related-projects-compact .project-card-media img {
    min-height: 0;
    aspect-ratio: 16 / 8;
  }

  body:not(.admin-body) .service-detail-page .service-faq-list {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-detail-page .service-faq-heading .btn {
    width: 100%;
    justify-content: center;
  }
}

body:not(.admin-body) .portfolio-carousel {
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
}

body:not(.admin-body) .carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 360px);
  gap: 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}

body:not(.admin-body) .carousel-track::-webkit-scrollbar {
  display: none;
}

body:not(.admin-body) .carousel-track .project-card {
  scroll-snap-align: start;
}

body:not(.admin-body) .project-card-media {
  display: block;
  color: inherit;
}

body:not(.admin-body) .project-card h2 a,
body:not(.admin-body) .project-card h3 a {
  color: inherit;
  text-decoration: none;
}

body:not(.admin-body) .project-card .project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(0, 105, 255, 0.18);
  border-radius: 8px;
  color: var(--blue);
  background: #f7fbff;
  font-weight: 800;
  text-decoration: none;
}

body:not(.admin-body) .project-card .project-link:hover {
  border-color: rgba(0, 105, 255, 0.38);
  background: #eef6ff;
}

body:not(.admin-body) .project-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 168, 107, 0.11), transparent 25%),
    radial-gradient(circle at 92% 12%, rgba(0, 105, 255, 0.12), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

body:not(.admin-body) .project-detail-hero::before,
body:not(.admin-body) .project-gallery-section::before,
body:not(.admin-body) .related-projects-section::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(rgba(0, 105, 255, 0.22) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.32;
  pointer-events: none;
}

body:not(.admin-body) .project-detail-hero::before {
  right: 7%;
  top: 118px;
}

body:not(.admin-body) .project-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

body:not(.admin-body) .project-detail-copy h1 {
  margin: 12px 0 16px;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
}

body:not(.admin-body) .project-detail-copy p {
  max-width: 620px;
  color: #23345f;
  font-size: 18px;
  line-height: 1.75;
}

body:not(.admin-body) .project-tags {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.1);
  color: var(--green-dark);
  font-weight: 800;
}

body:not(.admin-body) .project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

body:not(.admin-body) .project-detail-media {
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 105, 255, 0.12), rgba(0, 168, 107, 0.13));
  box-shadow: 0 26px 70px rgba(16, 41, 92, 0.16);
  overflow: hidden;
}

body:not(.admin-body) .project-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

body:not(.admin-body) .project-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.75fr);
  gap: 30px;
  align-items: start;
}

body:not(.admin-body) .content-card,
body:not(.admin-body) .recommendation-card {
  border: 1px solid rgba(15, 28, 61, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(18, 34, 71, 0.08);
}

body:not(.admin-body) .content-card {
  padding: 34px;
}

body:not(.admin-body) .content-card h2,
body:not(.admin-body) .content-card h3 {
  color: var(--navy);
}

body:not(.admin-body) .content-card p,
body:not(.admin-body) .content-card li,
body:not(.admin-body) .recommendation-card p {
  color: #27375f;
  font-size: 16px;
  line-height: 1.8;
}

body:not(.admin-body) .recommendation-card {
  position: sticky;
  top: 110px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(0, 168, 107, 0.12), transparent 45%),
    #ffffff;
}

body:not(.admin-body) .project-gallery-section,
body:not(.admin-body) .related-projects-section {
  position: relative;
  overflow: hidden;
}

body:not(.admin-body) .project-gallery-section::before {
  left: 4%;
  top: 18px;
}

body:not(.admin-body) .related-projects-section::before {
  right: 4%;
  top: 20px;
  background-image: radial-gradient(rgba(0, 168, 107, 0.22) 2px, transparent 2px);
}

body:not(.admin-body) .project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body:not(.admin-body) .project-gallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 34, 71, 0.1);
}

body:not(.admin-body) .project-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1020px) {
  body:not(.admin-body) .portfolio-carousel {
    grid-column: 1 / -1;
  }

  body:not(.admin-body) .project-detail-grid,
  body:not(.admin-body) .project-content-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .recommendation-card {
    position: static;
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .project-detail-hero {
    padding: 108px 0 48px;
  }

  body:not(.admin-body) .project-detail-copy h1 {
    font-size: 38px;
  }

  body:not(.admin-body) .content-card,
  body:not(.admin-body) .recommendation-card {
    padding: 22px;
  }

  body:not(.admin-body) .project-gallery {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .carousel-track {
    grid-auto-columns: minmax(260px, 86vw);
  }
}

/* About page final polish pass. */
body:not(.admin-body) .about-hero-pro {
  padding-top: clamp(62px, 6vw, 88px);
}

body:not(.admin-body) .about-hero-visual {
  isolation: isolate;
}

body:not(.admin-body) .about-hero-visual img:not(.page-mockup-image) {
  max-height: 620px;
  object-fit: contain;
}

body:not(.admin-body) .about-upwork-mark {
  right: 70px;
  top: 320px;
}

body:not(.admin-body) .about-work-image {
  min-height: 470px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  background:
    radial-gradient(circle at 78% 24%, rgba(18, 107, 255, 0.18), transparent 34%),
    radial-gradient(circle at 22% 72%, rgba(0, 168, 107, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(248, 252, 255, 0.98), rgba(239, 255, 248, 0.98));
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

body:not(.admin-body) .about-work-image img {
  min-height: 470px;
  padding: 22px 22px 0;
  transform: scale(1.03);
}

body:not(.admin-body) .tools-grid span {
  align-content: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(18, 107, 255, 0.16), rgba(0, 168, 107, 0.16)) border-box;
  border-color: transparent;
}

body:not(.admin-body) .tool-logo-badge {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(11, 22, 51, 0.12);
}

body:not(.admin-body) .tool-logo-badge.wordpress { background: linear-gradient(135deg, #126bff, #0b8bdc); }
body:not(.admin-body) .tool-logo-badge.elementor { background: linear-gradient(135deg, #c2185b, #7c3aed); }
body:not(.admin-body) .tool-logo-badge.woo { background: linear-gradient(135deg, #7c3aed, #9b5cff); font-size: 14px; }
body:not(.admin-body) .tool-logo-badge.astra { background: linear-gradient(135deg, #00a86b, #12c86f); }
body:not(.admin-body) .tool-logo-badge.crocoblock { background: linear-gradient(135deg, #00b8c8, #126bff); font-size: 15px; }
body:not(.admin-body) .tool-logo-badge.rocket { background: linear-gradient(135deg, #f59e0b, #ff6b35); font-size: 15px; }
body:not(.admin-body) .tool-logo-badge.figma { background: linear-gradient(135deg, #8b5cf6, #f24e1e); }
body:not(.admin-body) .tool-logo-badge.cloudflare { background: linear-gradient(135deg, #f97316, #facc15); font-size: 15px; }

@media (max-width: 1100px) {
  body:not(.admin-body) .about-upwork-mark {
    right: 58px;
    top: 300px;
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .about-hero-pro {
    padding-top: 34px;
  }

  body:not(.admin-body) .about-hero-visual {
    min-height: 330px;
  }

  body:not(.admin-body) .about-hero-visual img:not(.page-mockup-image) {
    width: min(100%, 330px);
  }

  body:not(.admin-body) .about-upwork-mark {
    right: 12px;
    top: 228px;
  }

  body:not(.admin-body) .about-work-image,
  body:not(.admin-body) .about-work-image img {
    min-height: 330px;
  }

  body:not(.admin-body) .about-work-image img {
    padding: 18px 14px 0;
    transform: none;
  }

  body:not(.admin-body) .tools-grid span {
    min-height: 88px;
  }
}

/* Absolute final override: home Recent Work compact cards. */
body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid !important;
  grid-template-rows: 168px 1fr !important;
  width: clamp(270px, 26vw, 320px) !important;
  min-height: 492px !important;
  max-height: 492px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 168px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  min-height: 0 !important;
  padding: 24px 26px 22px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  margin-bottom: 12px !important;
  font-size: 23px !important;
  line-height: 1.13 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box !important;
  flex: initial !important;
  min-height: 92px !important;
  max-height: 92px !important;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 15.5px !important;
  line-height: 1.48 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid !important;
  flex-direction: initial !important;
  gap: 14px !important;
  align-self: end !important;
  min-height: 0 !important;
  height: auto !important;
  justify-items: start !important;
  margin-top: 16px !important;
  padding-top: 0 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 5px 13px !important;
  align-items: center !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 166px !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr !important;
    min-height: 456px !important;
    max-height: 456px !important;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px !important;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    font-size: 21px !important;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px !important;
    max-height: 86px !important;
    font-size: 14.5px !important;
  }
}

/* Absolute final override: home Recent Work compact cards. */
body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid !important;
  grid-template-rows: 168px 1fr !important;
  width: clamp(270px, 26vw, 320px) !important;
  min-height: 492px !important;
  max-height: 492px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 168px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  min-height: 0 !important;
  padding: 24px 26px 22px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  margin-bottom: 12px !important;
  font-size: 23px !important;
  line-height: 1.13 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box !important;
  flex: initial !important;
  min-height: 92px !important;
  max-height: 92px !important;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 15.5px !important;
  line-height: 1.48 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid !important;
  flex-direction: initial !important;
  gap: 14px !important;
  align-self: end !important;
  min-height: 0 !important;
  height: auto !important;
  justify-items: start !important;
  margin-top: 16px !important;
  padding-top: 0 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 5px 13px !important;
  align-items: center !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 166px !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr !important;
    min-height: 456px !important;
    max-height: 456px !important;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px !important;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    font-size: 21px !important;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px !important;
    max-height: 86px !important;
    font-size: 14.5px !important;
  }
}

/* Absolute final override: home Recent Work compact cards. */
body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid !important;
  grid-template-rows: 168px 1fr !important;
  width: clamp(270px, 26vw, 320px) !important;
  min-height: 492px !important;
  max-height: 492px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 168px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  min-height: 0 !important;
  padding: 24px 26px 22px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  margin-bottom: 12px !important;
  font-size: 23px !important;
  line-height: 1.13 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box !important;
  flex: initial !important;
  min-height: 92px !important;
  max-height: 92px !important;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 15.5px !important;
  line-height: 1.48 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid !important;
  flex-direction: initial !important;
  gap: 14px !important;
  align-self: end !important;
  margin-top: 16px !important;
  padding-top: 0 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 5px 13px !important;
  align-items: center !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 166px !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr !important;
    min-height: 456px !important;
    max-height: 456px !important;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px !important;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    font-size: 21px !important;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px !important;
    max-height: 86px !important;
    font-size: 14.5px !important;
  }
}

/* Final override: compact home Recent Work cards. */
body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid !important;
  grid-template-rows: 168px 1fr !important;
  width: clamp(270px, 26vw, 320px) !important;
  min-height: 492px !important;
  max-height: 492px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 168px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  min-height: 0 !important;
  padding: 24px 26px 22px !important;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box !important;
  flex: initial !important;
  min-height: 92px !important;
  max-height: 92px !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid !important;
  flex-direction: initial !important;
  gap: 14px !important;
  align-self: end !important;
  margin-top: 16px !important;
  padding-top: 0 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  width: fit-content !important;
  min-height: 30px !important;
  padding: 5px 13px !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 166px !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr !important;
    min-height: 456px !important;
    max-height: 456px !important;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px !important;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px !important;
    max-height: 86px !important;
  }
}

/* Home recent projects compact polish. */
body:not(.admin-body) #portfolio .feature-grid {
  align-items: center;
}

body:not(.admin-body) #portfolio .portfolio-carousel {
  min-height: 0;
}

body:not(.admin-body) #portfolio .carousel-track {
  align-items: stretch;
  gap: 28px;
  padding-bottom: 10px;
}

body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid;
  grid-template-rows: 168px 1fr;
  width: clamp(270px, 26vw, 320px);
  min-height: 492px;
  max-height: 492px;
  border-radius: 11px;
}

body:not(.admin-body) #portfolio .project-card-media {
  height: 168px;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) #portfolio .project-card img {
  height: 168px;
  object-position: top center;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 0;
  padding: 24px 26px 22px;
}

body:not(.admin-body) #portfolio .project-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.13;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box;
  min-height: 92px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  color: #34405c;
  font-size: 15.5px;
  line-height: 1.48;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid;
  align-self: end;
  gap: 16px;
  margin-top: 18px;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 5px 13px;
  border-radius: 999px;
  background: #eef7ff;
  color: #14254a;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex;
  width: fit-content;
  min-width: 166px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(0, 184, 200, 0.35);
  border-radius: 999px;
  color: #00a6b6;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 184, 200, 0.08);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #00b8c8, #00a86b);
  box-shadow: 0 16px 30px rgba(0, 168, 107, 0.2);
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1040px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    width: min(335px, calc(100vw - 56px));
    min-height: 474px;
    max-height: 474px;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track {
    gap: 18px;
  }

  body:not(.admin-body) #portfolio .carousel-track .project-card {
    width: min(315px, calc(100vw - 54px));
    min-height: 456px;
    max-height: 456px;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px;
  }

  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    font-size: 21px;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px;
    font-size: 14.5px;
  }

  body:not(.admin-body) #portfolio .project-card-bottom .project-link {
    min-width: 154px;
    min-height: 42px;
    padding: 0 18px;
  }
}

/* CMS save control final polish. */
.admin-body .sticky-save {
  opacity: 0.98;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(0, 168, 107, 0.34);
  box-shadow: 0 18px 44px rgba(11, 22, 51, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-body .sticky-save:hover,
.admin-body .sticky-save:focus-within {
  opacity: 1;
  background: #fff;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.2);
}

.admin-body .sticky-save .btn {
  opacity: 1;
  color: #fff;
  background: linear-gradient(135deg, #00a86b, #08c978);
  box-shadow: 0 12px 26px rgba(0, 168, 107, 0.28);
}

.admin-body .admin-save-action,
.admin-body .panel-save {
  opacity: 0.98;
}

.admin-body .admin-save-action:hover,
.admin-body .admin-save-action:focus-visible,
.admin-body .panel-save:hover,
.admin-body .panel-save:focus-visible {
  opacity: 1;
}

/* Publish-ready final polish for inner mockup pages. */
body:not(.admin-body) .services-page,
body:not(.admin-body) .portfolio-page,
body:not(.admin-body) .testimonials-page,
body:not(.admin-body) .blog-page,
body:not(.admin-body) .contact-page,
body:not(.admin-body) .project-case-page,
body:not(.admin-body) .blog-post-page {
  background-color: #fbfdff;
}

body:not(.admin-body) .services-showcase-hero,
body:not(.admin-body) .portfolio-showcase-hero,
body:not(.admin-body) .testimonial-showcase-hero,
body:not(.admin-body) .blog-showcase-hero,
body:not(.admin-body) .contact-original-hero {
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.05), 0 22px 70px rgba(11, 22, 51, 0.035);
}

body:not(.admin-body) .services-hero-visual img.page-mockup-image,
body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
  border-radius: 10px;
}

body:not(.admin-body) .portfolio-case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 570px;
  border-color: rgba(18, 107, 255, 0.16);
}

body:not(.admin-body) .portfolio-case-media {
  height: 258px;
  border-bottom: 1px solid rgba(18, 107, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    #f7fbff;
  background-size: 28px 28px, 28px 28px, auto;
}

body:not(.admin-body) .portfolio-case-media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92) 62%, #fff);
  pointer-events: none;
}

body:not(.admin-body) .portfolio-case-media img {
  object-position: top center;
}

body:not(.admin-body) .portfolio-case-body {
  min-height: 300px;
  align-content: start;
  padding: 30px 28px 26px;
}

body:not(.admin-body) .portfolio-case-body h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

body:not(.admin-body) .portfolio-case-body p {
  min-height: 98px;
}

body:not(.admin-body) .portfolio-card-footer {
  align-self: end;
  margin-top: 26px;
}

body:not(.admin-body) .portfolio-filter-bar {
  border-color: rgba(18, 107, 255, 0.11);
}

body:not(.admin-body) .service-page-card,
body:not(.admin-body) .portfolio-case-card,
body:not(.admin-body) .testimonial-featured-card,
body:not(.admin-body) .blog-list-card,
body:not(.admin-body) .contact-work-card,
body:not(.admin-body) .post-sidebar-card,
body:not(.admin-body) .blog-post-content,
body:not(.admin-body) .project-overview-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe, linear-gradient(90deg, #00b8c8, #00a86b, #facc15)) border-box;
  border-top-color: transparent;
}

body:not(.admin-body) .service-page-card:hover,
body:not(.admin-body) .portfolio-case-card:hover,
body:not(.admin-body) .blog-list-card:hover,
body:not(.admin-body) .contact-work-card:hover {
  border-color: rgba(18, 107, 255, 0.2);
}

@media (max-width: 900px) {
  body:not(.admin-body) .portfolio-filter-bar {
    width: min(100% - 32px, 760px);
    margin-top: -34px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 22px;
    scrollbar-width: none;
  }

  body:not(.admin-body) .portfolio-filter-bar::-webkit-scrollbar {
    display: none;
  }

  body:not(.admin-body) .portfolio-filter-bar a {
    flex: 0 0 auto;
  }

  body:not(.admin-body) .portfolio-case-card {
    min-height: 0;
  }

  body:not(.admin-body) .portfolio-case-media {
    height: 235px;
  }

  body:not(.admin-body) .portfolio-case-body,
  body:not(.admin-body) .portfolio-case-body p {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .services-showcase-hero,
  body:not(.admin-body) .portfolio-showcase-hero,
  body:not(.admin-body) .testimonial-showcase-hero,
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-original-hero {
    box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.05), 0 14px 42px rgba(11, 22, 51, 0.035);
  }

  body:not(.admin-body) .portfolio-case-media {
    height: 210px;
  }

  body:not(.admin-body) .portfolio-case-body {
    padding: 24px 22px 22px;
  }

  body:not(.admin-body) .portfolio-card-footer {
    align-items: flex-start;
  }
}

/* Final contact page mockup override. */
body:not(.admin-body) .contact-page .contact-original-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  min-height: 640px;
  margin-bottom: 0;
  padding: clamp(62px, 7vw, 96px) max(26px, calc((100vw - 1280px) / 2)) clamp(48px, 6vw, 76px);
  border-bottom-right-radius: clamp(54px, 9vw, 140px);
  border-bottom-left-radius: clamp(34px, 6vw, 90px);
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 168, 107, 0.14), transparent 24%),
    radial-gradient(circle at 94% 34%, rgba(18, 107, 255, 0.11), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2f9ff 56%, #eaf5ff 100%);
}

body:not(.admin-body) .contact-page .contact-original-hero .contact-hero-copy h1 {
  max-width: 620px;
  margin: 24px 0 20px;
  color: var(--navy);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.04;
}

body:not(.admin-body) .contact-page .contact-original-hero .contact-hero-copy h1 span {
  position: relative;
  display: inline-block;
  background: none;
  color: var(--blue);
  -webkit-background-clip: initial;
  background-clip: initial;
}

body:not(.admin-body) .contact-page .contact-original-hero .contact-hero-copy h1 span::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -10px;
  left: 4px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 0 3px;
  border-radius: 0 0 50% 50%;
  transform: rotate(-1.5deg);
}

body:not(.admin-body) .contact-page .contact-original-hero .contact-hero-copy p {
  max-width: 610px;
  color: #52617b;
  font-size: 17px;
  line-height: 1.75;
}

body:not(.admin-body) .contact-page .contact-original-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

body:not(.admin-body) .contact-page .contact-original-form {
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 16px;
}

body:not(.admin-body) .contact-page .contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

body:not(.admin-body) .contact-page .contact-original-form .full-field {
  grid-column: 1 / -1;
}

body:not(.admin-body) .contact-page .contact-original-form > .btn {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border-radius: 8px;
}

body:not(.admin-body) .contact-page .contact-info-panel {
  display: block;
  padding: clamp(26px, 3vw, 34px);
}

body:not(.admin-body) .contact-page .upwork-mark,
body:not(.admin-body) .contact-page .upwork-mini {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #11c770, #009f58);
  color: #fff;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  box-shadow: 0 14px 28px rgba(0, 168, 107, 0.18);
}

body:not(.admin-body) .contact-page .upwork-contact-card {
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  gap: 4px 16px;
}

body:not(.admin-body) .contact-page .upwork-contact-card .upwork-mark {
  width: 54px;
  height: 54px;
  grid-row: 1 / span 2;
  font-size: 18px;
}

body:not(.admin-body) .contact-page .upwork-contact-card strong,
body:not(.admin-body) .contact-page .upwork-contact-card small {
  grid-column: 2;
}

body:not(.admin-body) .contact-page .upwork-contact-card > svg {
  width: 22px;
  height: 22px;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
}

body:not(.admin-body) .contact-page .contact-work-card .upwork-mark {
  width: 58px;
  height: 58px;
  font-size: 19px;
}

body:not(.admin-body) .contact-page .upwork-mini {
  width: 24px;
  height: 24px;
  font-size: 11px;
  box-shadow: none;
}

body:not(.admin-body) .contact-page .contact-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

body:not(.admin-body) .contact-page .contact-work-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
}

body:not(.admin-body) .contact-page .contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
}

body:not(.admin-body) .contact-page .contact-ready-banner {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 34px 48px;
}

body:not(.admin-body) .contact-page .contact-ready-banner small {
  grid-column: 3;
}

@media (max-width: 1080px) {
  body:not(.admin-body) .contact-page .contact-original-hero,
  body:not(.admin-body) .contact-page .contact-original-grid,
  body:not(.admin-body) .contact-page .contact-faq-grid,
  body:not(.admin-body) .contact-page .contact-ready-banner {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .contact-page .contact-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .contact-page .contact-ready-banner small {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .contact-page .contact-original-hero {
    min-height: 0;
    padding: 42px 18px 56px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 38px;
  }

  body:not(.admin-body) .contact-page .contact-original-hero .contact-hero-copy h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  body:not(.admin-body) .contact-page .contact-trust-row,
  body:not(.admin-body) .contact-page .contact-form-fields,
  body:not(.admin-body) .contact-page .contact-work-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .contact-page .contact-ready-banner {
    justify-items: start;
    padding: 30px 22px;
  }
}

/* Portfolio single case-study mockup polish. */
body:not(.admin-body) .project-case-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 34%, #f6fbff 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

body:not(.admin-body) .project-case-page > .section {
  padding-block: clamp(58px, 7vw, 98px);
}

body:not(.admin-body) .project-case-page .project-detail-hero {
  padding: clamp(126px, 10vw, 156px) 0 clamp(82px, 7vw, 108px);
  background:
    radial-gradient(circle at 8% 20%, rgba(0, 184, 200, 0.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(18, 107, 255, 0.11), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #eef8ff 52%, #ffffff 100%);
}

body:not(.admin-body) .project-case-page .project-detail-hero::after {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -96px;
  left: -6%;
  height: 168px;
  border-radius: 0 0 50% 50%;
  background: #ffffff;
  pointer-events: none;
}

body:not(.admin-body) .project-case-page .project-detail-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(36px, 6vw, 82px);
  z-index: 1;
}

body:not(.admin-body) .project-case-page .project-detail-copy h1 {
  max-width: 610px;
  margin-top: 16px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.2vw, 74px);
  letter-spacing: 0;
}

body:not(.admin-body) .project-case-page .project-detail-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: #20345f;
  font-size: 18px;
}

body:not(.admin-body) .project-case-page .project-detail-copy .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

body:not(.admin-body) .project-case-page .project-tags {
  display: none;
}

body:not(.admin-body) .project-case-page .project-actions .btn {
  min-height: 54px;
  border-radius: 8px;
  padding-inline: 26px;
  box-shadow: 0 14px 30px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .project-case-page .project-detail-media {
  position: relative;
  z-index: 1;
  border: 10px solid #ffffff;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 28px 72px rgba(16, 41, 92, 0.18);
}

body:not(.admin-body) .project-case-page .project-detail-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.03));
  pointer-events: none;
}

body:not(.admin-body) .project-case-page .project-detail-media img {
  aspect-ratio: 16 / 9.8;
  border-radius: 14px;
}

body:not(.admin-body) .project-overview-section {
  position: relative;
  z-index: 2;
  padding-top: clamp(44px, 5vw, 76px);
}

body:not(.admin-body) .project-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(15, 28, 61, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, rgba(0, 184, 200, 0.16), rgba(0, 168, 107, 0.14), rgba(18, 107, 255, 0.12)) border-box;
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .project-overview-copy {
  padding-right: clamp(0px, 4vw, 40px);
  border-right: 1px solid rgba(15, 28, 61, 0.1);
}

body:not(.admin-body) .project-overview-copy h2,
body:not(.admin-body) .project-focus-card h2,
body:not(.admin-body) .project-showcase-title {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.2;
}

body:not(.admin-body) .project-overview-copy p {
  max-width: 560px;
  margin: 0 0 16px;
  color: #263a58;
  font-size: 16px;
  line-height: 1.85;
}

body:not(.admin-body) .project-overview-copy p:last-child {
  margin-bottom: 0;
}

body:not(.admin-body) .project-focus-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .project-focus-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 30px;
  color: #263a58;
  font-size: 15px;
  line-height: 1.55;
}

body:not(.admin-body) .project-focus-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  color: var(--green);
  stroke-width: 2.7;
}

body:not(.admin-body) .project-showcase-section {
  padding-top: clamp(38px, 5vw, 70px);
}

body:not(.admin-body) .project-showcase-title {
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 14px;
  text-align: center;
}

body:not(.admin-body) .project-showcase-title::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

body:not(.admin-body) .project-showcase-frame {
  width: min(940px, 100%);
  margin: 10px auto 0;
  border: 10px solid #ffffff;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 82px rgba(11, 22, 51, 0.16);
}

body:not(.admin-body) .project-showcase-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
}

body:not(.admin-body) .project-recommendation-section {
  padding-top: clamp(18px, 3vw, 36px);
  padding-bottom: clamp(28px, 5vw, 62px);
}

body:not(.admin-body) .project-case-page .recommendation-card {
  position: relative;
  top: auto;
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 16%, rgba(0, 168, 107, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.98));
}

body:not(.admin-body) .project-case-page .related-projects-section {
  padding-top: clamp(42px, 6vw, 84px);
}

body:not(.admin-body) .project-related-grid {
  align-items: stretch;
  gap: clamp(22px, 3vw, 34px);
  margin-top: 18px;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 200, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 100% 0, rgba(18, 107, 255, 0.05), transparent 32%);
  box-shadow: 0 24px 58px rgba(11, 22, 51, 0.09);
  transition: transform 0.28s cubic-bezier(.2, .8, .2, 1), box-shadow 0.28s ease;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green), #facc15);
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card:hover {
  box-shadow: 0 34px 72px rgba(11, 22, 51, 0.14);
  transform: translate3d(0, -6px, 0);
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card > div {
  display: flex;
  min-height: 268px;
  flex: 1;
  flex-direction: column;
  padding: 26px 30px 30px;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card p {
  color: #263a58;
  font-size: 15px;
  line-height: 1.7;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-card span {
  display: none;
}

body:not(.admin-body) .project-case-page .related-projects-section .project-link {
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(0, 184, 200, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

body:not(.admin-body) .project-case-page .case-stagger-item {
  transform: translate3d(0, 10px, 0);
  transition:
    transform 0.42s cubic-bezier(.2, .8, .2, 1),
    box-shadow 0.28s ease;
  transition-delay: calc(var(--case-index, 0) * 45ms);
}

body:not(.admin-body) .project-case-page .is-revealed .case-stagger-item {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1020px) {
  body:not(.admin-body) .project-case-page .project-detail-grid,
  body:not(.admin-body) .project-overview-card {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .project-overview-copy {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 28, 61, 0.1);
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .project-case-page > .section {
    padding-block: 46px;
  }

  body:not(.admin-body) .project-case-page .project-detail-hero {
    padding: 104px 0 58px;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  body:not(.admin-body) .project-case-page .project-detail-copy p {
    font-size: 16px;
  }

  body:not(.admin-body) .project-case-page .project-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body:not(.admin-body) .project-case-page .project-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .project-overview-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  body:not(.admin-body) .project-overview-section,
  body:not(.admin-body) .project-showcase-section,
  body:not(.admin-body) .project-case-page .related-projects-section {
    padding-top: 46px;
  }

  body:not(.admin-body) .project-showcase-frame,
  body:not(.admin-body) .project-case-page .project-detail-media {
    border-width: 6px;
    border-radius: 16px;
  }

  body:not(.admin-body) .project-case-page .related-projects-section .project-card > div {
    min-height: 230px;
    padding: 24px 24px 26px;
  }
}

/* Last-mile hero image precedence for supplied page mockups. */
body:not(.admin-body) .about-hero-visual img.page-mockup-image,
body:not(.admin-body) .services-hero-visual img.page-mockup-image,
body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
  position: relative;
  inset: auto;
  width: min(100%, 690px);
  height: auto;
  min-height: 0;
  max-height: 560px;
  margin: 0 auto;
  padding: 0;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 30px 38px rgba(11, 22, 51, 0.13));
}

body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image {
  filter: drop-shadow(0 26px 34px rgba(11, 22, 51, 0.16));
}

@media (max-width: 760px) {
  body:not(.admin-body) .about-hero-visual img.page-mockup-image,
  body:not(.admin-body) .services-hero-visual img.page-mockup-image,
  body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
  body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
  body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
  body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
    width: min(100%, 360px);
    max-height: 330px;
  }
}

/* Page hero image refresh and display accents. */
body:not(.admin-body) .about-hero-copy h1,
body:not(.admin-body) .services-hero-copy h1,
body:not(.admin-body) .portfolio-hero-copy h1,
body:not(.admin-body) .testimonial-hero-copy h1,
body:not(.admin-body) .blog-hero-copy h1,
body:not(.admin-body) .contact-hero-copy h1,
body:not(.admin-body) .post-title-block h1 {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 800;
}

body:not(.admin-body) .section-title-center h2,
body:not(.admin-body) .packages-heading h2 {
  font-family: "Montserrat", "Poppins", sans-serif;
  font-weight: 800;
}

body:not(.admin-body) .about-hero-visual,
body:not(.admin-body) .services-hero-visual,
body:not(.admin-body) .portfolio-hero-visual,
body:not(.admin-body) .testimonial-hero-visual,
body:not(.admin-body) .blog-hero-visual,
body:not(.admin-body) .contact-hero-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
  isolation: isolate;
}

body:not(.admin-body) .page-mockup-image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 690px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(11, 22, 51, 0.13));
}

body:not(.admin-body) .page-mockup-image.transparent {
  filter: drop-shadow(0 26px 34px rgba(11, 22, 51, 0.16));
}

body:not(.admin-body) .blog-page,
body:not(.admin-body) .contact-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.018) 1px, transparent 1px),
    #fff;
  background-size: 76px 76px, 76px 76px, auto;
}

body:not(.admin-body) .blog-showcase-hero,
body:not(.admin-body) .contact-showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: 610px;
  margin: 0 0 34px;
  padding: 72px max(24px, calc((100vw - 1280px) / 2 + 24px)) 92px;
  overflow: hidden;
  border-bottom-left-radius: clamp(64px, 9vw, 150px);
  border-bottom-right-radius: clamp(64px, 9vw, 150px);
  background:
    radial-gradient(circle at 84% 38%, rgba(18, 107, 255, 0.1), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(0, 168, 107, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.024) 1px, transparent 1px),
    linear-gradient(120deg, #fff 0%, #f8fbff 50%, #f4fff9 100%);
  background-size: auto, auto, 66px 66px, 66px 66px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06), 0 22px 48px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .blog-showcase-hero::before,
body:not(.admin-body) .contact-showcase-hero::before,
body:not(.admin-body) .blog-showcase-hero::after,
body:not(.admin-body) .contact-showcase-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  pointer-events: none;
}

body:not(.admin-body) .blog-showcase-hero::before,
body:not(.admin-body) .contact-showcase-hero::before {
  right: max(54px, calc((100vw - 1280px) / 2 + 72px));
  top: 80px;
  width: 120px;
  height: 120px;
  color: rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .blog-showcase-hero::after,
body:not(.admin-body) .contact-showcase-hero::after {
  left: max(24px, calc((100vw - 1280px) / 2 + 36px));
  bottom: 86px;
  width: 92px;
  height: 92px;
  color: rgba(0, 168, 107, 0.16);
}

body:not(.admin-body) .blog-hero-copy,
body:not(.admin-body) .contact-hero-copy,
body:not(.admin-body) .blog-hero-visual,
body:not(.admin-body) .contact-hero-visual {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .blog-hero-copy h1,
body:not(.admin-body) .contact-hero-copy h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(44px, 4.4vw, 66px);
  line-height: 1.08;
}

body:not(.admin-body) .blog-hero-copy h1 span,
body:not(.admin-body) .contact-hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not(.admin-body) .blog-hero-copy p,
body:not(.admin-body) .contact-hero-copy p {
  max-width: 600px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

body:not(.admin-body) .about-hero-visual .page-mockup-image {
  width: min(100%, 650px);
}

@media (max-width: 1120px) {
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-showcase-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .blog-hero-visual,
  body:not(.admin-body) .contact-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-showcase-hero {
    min-height: 0;
    gap: 26px;
    padding: 40px 18px 58px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  body:not(.admin-body) .blog-hero-copy h1,
  body:not(.admin-body) .contact-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  body:not(.admin-body) .page-mockup-image {
    width: min(100%, 360px);
    max-height: 330px;
  }

  body:not(.admin-body) .about-hero-visual,
  body:not(.admin-body) .services-hero-visual,
  body:not(.admin-body) .portfolio-hero-visual,
  body:not(.admin-body) .testimonial-hero-visual,
  body:not(.admin-body) .blog-hero-visual,
  body:not(.admin-body) .contact-hero-visual {
    min-height: 300px;
  }
}

/* Portfolio page mockup design. */
body:not(.admin-body) .portfolio-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.018) 1px, transparent 1px),
    #fff;
  background-size: 76px 76px, 76px 76px, auto;
}

body:not(.admin-body) .portfolio-showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: 610px;
  margin: 0 0 0;
  padding: 72px max(24px, calc((100vw - 1280px) / 2 + 24px)) 108px;
  overflow: hidden;
  border-bottom-left-radius: clamp(64px, 9vw, 150px);
  border-bottom-right-radius: clamp(64px, 9vw, 150px);
  background:
    radial-gradient(circle at 86% 45%, rgba(18, 107, 255, 0.1), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(0, 168, 107, 0.09), transparent 26%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.024) 1px, transparent 1px),
    linear-gradient(120deg, #fff 0%, #f8fbff 48%, #efffff 100%);
  background-size: auto, auto, 66px 66px, 66px 66px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06), 0 22px 48px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .portfolio-showcase-hero::before,
body:not(.admin-body) .portfolio-showcase-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  pointer-events: none;
}

body:not(.admin-body) .portfolio-showcase-hero::before {
  right: max(54px, calc((100vw - 1280px) / 2 + 72px));
  top: 80px;
  width: 120px;
  height: 120px;
  color: rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .portfolio-showcase-hero::after {
  left: max(24px, calc((100vw - 1280px) / 2 + 36px));
  bottom: 86px;
  width: 92px;
  height: 92px;
  color: rgba(0, 168, 107, 0.16);
}

body:not(.admin-body) .portfolio-hero-copy,
body:not(.admin-body) .portfolio-hero-visual {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .portfolio-hero-copy h1 {
  max-width: 650px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(46px, 4.6vw, 68px);
  line-height: 1.05;
}

body:not(.admin-body) .portfolio-hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not(.admin-body) .portfolio-hero-copy p {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

body:not(.admin-body) .portfolio-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

body:not(.admin-body) .portfolio-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body:not(.admin-body) .portfolio-hero-badges svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

body:not(.admin-body) .portfolio-hero-visual {
  min-height: 430px;
}

body:not(.admin-body) .portfolio-hero-blob {
  position: absolute;
  inset: 22px 16px 12px 54px;
  border-radius: 40% 60% 48% 52% / 48% 42% 58% 52%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(18,107,255,0.28), rgba(0,168,107,0.16));
  background-size: 34px 34px, 34px 34px, auto;
}

body:not(.admin-body) .portfolio-device {
  position: absolute;
  overflow: hidden;
  border: 10px solid #101827;
  background: #fff;
  box-shadow: 0 28px 48px rgba(11, 22, 51, 0.22);
}

body:not(.admin-body) .portfolio-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.admin-body) .portfolio-device.laptop {
  left: 4%;
  bottom: 28px;
  width: min(53vw, 610px);
  height: 315px;
  border-radius: 18px;
  transform: rotate(-1.5deg);
}

body:not(.admin-body) .portfolio-device.tablet {
  right: 3%;
  bottom: 44px;
  width: 230px;
  height: 315px;
  border-radius: 24px;
  transform: rotate(2deg);
}

body:not(.admin-body) .portfolio-device.phone {
  right: 29%;
  bottom: 34px;
  width: 136px;
  height: 250px;
  border-width: 8px;
  border-radius: 28px;
  transform: rotate(-3deg);
}

body:not(.admin-body) .portfolio-filter-bar {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(1280px, calc(100% - 48px));
  margin: -45px auto 32px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 50px rgba(11, 22, 51, 0.12);
  backdrop-filter: blur(14px);
}

body:not(.admin-body) .portfolio-filter-bar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 900;
}

body:not(.admin-body) .portfolio-filter-bar a.active,
body:not(.admin-body) .portfolio-filter-bar a:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(18, 107, 255, 0.23);
}

body:not(.admin-body) .portfolio-filter-bar svg {
  width: 18px;
  height: 18px;
}

body:not(.admin-body) .portfolio-work-section {
  padding-top: 0;
}

body:not(.admin-body) .portfolio-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body:not(.admin-body) .portfolio-case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 52px rgba(11, 22, 51, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

body:not(.admin-body) .portfolio-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .portfolio-case-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 68px rgba(11, 22, 51, 0.14);
}

body:not(.admin-body) .portfolio-case-media {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: #f5faff;
}

body:not(.admin-body) .portfolio-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

body:not(.admin-body) .portfolio-case-card:hover .portfolio-case-media img {
  transform: scale(1.04);
}

body:not(.admin-body) .case-ribbon {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

body:not(.admin-body) .case-ribbon.dark {
  left: 12px;
  background: rgba(11, 22, 51, 0.86);
}

body:not(.admin-body) .case-ribbon.blue {
  left: 78px;
  background: var(--blue);
}

body:not(.admin-body) .portfolio-case-body {
  display: grid;
  min-height: 245px;
  padding: 26px;
}

body:not(.admin-body) .portfolio-case-body h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

body:not(.admin-body) .portfolio-case-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body:not(.admin-body) .portfolio-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

body:not(.admin-body) .tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body:not(.admin-body) .tag-pills span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18, 107, 255, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

body:not(.admin-body) .tag-pills span:nth-child(2) {
  background: rgba(0, 168, 107, 0.1);
  color: var(--green);
}

body:not(.admin-body) .tag-pills span:nth-child(3) {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

body:not(.admin-body) .round-project-link {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(18, 107, 255, 0.25);
}

body:not(.admin-body) .round-project-link svg {
  width: 19px;
  height: 19px;
}

body:not(.admin-body) .portfolio-featured-section {
  padding-top: 12px;
}

body:not(.admin-body) .portfolio-featured-case {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  overflow: hidden;
  padding: 42px 48px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #f4fff9, #eef8ff);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 28px 60px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .portfolio-featured-case::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .featured-badge {
  position: absolute;
  top: 38px;
  left: 34px;
  z-index: 2;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 20px 38px rgba(11, 22, 51, 0.13);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

body:not(.admin-body) .featured-badge svg {
  width: 25px;
  height: 25px;
}

body:not(.admin-body) .portfolio-featured-case figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 22px 44px rgba(11, 22, 51, 0.14);
}

body:not(.admin-body) .portfolio-featured-case img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

body:not(.admin-body) .portfolio-featured-case h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
}

body:not(.admin-body) .portfolio-featured-case p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.78;
}

body:not(.admin-body) .case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 12px;
}

body:not(.admin-body) .case-metrics span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

body:not(.admin-body) .case-metrics strong {
  color: var(--green);
  font-size: 22px;
}

body:not(.admin-body) .portfolio-stats {
  padding-top: 0;
}

body:not(.admin-body) .portfolio-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.09);
}

body:not(.admin-body) .portfolio-stat-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 14px;
  padding: 30px;
  border-right: 1px solid rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .portfolio-stat-strip div:last-child {
  border-right: 0;
}

body:not(.admin-body) .portfolio-stat-strip svg {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .portfolio-stat-strip strong {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

body:not(.admin-body) .portfolio-stat-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-body) .portfolio-feedback-section .section-title-center h2 span {
  color: var(--blue);
}

body:not(.admin-body) .portfolio-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body:not(.admin-body) .portfolio-feedback-card {
  display: grid;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(18, 107, 255, 0.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .feedback-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

body:not(.admin-body) .feedback-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

body:not(.admin-body) .feedback-head strong,
body:not(.admin-body) .feedback-head span {
  display: block;
}

body:not(.admin-body) .feedback-head strong {
  color: var(--navy);
}

body:not(.admin-body) .feedback-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

body:not(.admin-body) .portfolio-feedback-card p {
  color: var(--text);
  line-height: 1.72;
}

body:not(.admin-body) .feedback-stars {
  align-self: end;
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 18px;
}

body:not(.admin-body) .portfolio-page-cta-section {
  padding-top: 8px;
}

body:not(.admin-body) .portfolio-page-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 28px 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 96% 30%, rgba(255,255,255,0.2), transparent 24%),
    linear-gradient(110deg, var(--blue), #00a9c8 48%, var(--green));
  color: #fff;
  box-shadow: 0 24px 52px rgba(18, 107, 255, 0.16);
}

body:not(.admin-body) .portfolio-page-cta::before,
body:not(.admin-body) .portfolio-page-cta::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 90px;
  background: radial-gradient(rgba(255,255,255,0.55) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.4;
}

body:not(.admin-body) .portfolio-page-cta::before {
  left: 20px;
  top: 12px;
}

body:not(.admin-body) .portfolio-page-cta::after {
  right: 22px;
  bottom: 10px;
}

body:not(.admin-body) .portfolio-page-cta > * {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .portfolio-page-cta .upwork-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  font-size: 33px;
  font-weight: 900;
}

body:not(.admin-body) .portfolio-page-cta h2,
body:not(.admin-body) .portfolio-page-cta p {
  margin: 0;
  color: #fff;
}

body:not(.admin-body) .portfolio-page-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
}

body:not(.admin-body) .portfolio-page-cta p {
  margin-top: 8px;
  font-size: 16px;
}

@media (max-width: 1120px) {
  body:not(.admin-body) .portfolio-showcase-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .portfolio-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  body:not(.admin-body) .portfolio-case-grid,
  body:not(.admin-body) .portfolio-feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .portfolio-showcase-hero {
    min-height: 0;
    gap: 28px;
    padding: 40px 18px 74px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  body:not(.admin-body) .portfolio-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  body:not(.admin-body) .portfolio-hero-copy p {
    font-size: 15.5px;
  }

  body:not(.admin-body) .portfolio-hero-copy .hero-actions {
    align-items: stretch;
  }

  body:not(.admin-body) .portfolio-hero-copy .btn {
    justify-content: center;
    width: 100%;
  }

  body:not(.admin-body) .portfolio-hero-badges {
    display: grid;
    gap: 10px;
  }

  body:not(.admin-body) .portfolio-hero-visual {
    min-height: 310px;
  }

  body:not(.admin-body) .portfolio-hero-blob {
    inset: 28px 0 0 24px;
  }

  body:not(.admin-body) .portfolio-device.laptop {
    left: 0;
    bottom: 46px;
    width: 310px;
    height: 175px;
    border-width: 7px;
  }

  body:not(.admin-body) .portfolio-device.tablet {
    right: 4px;
    bottom: 50px;
    width: 112px;
    height: 165px;
    border-width: 6px;
    border-radius: 18px;
  }

  body:not(.admin-body) .portfolio-device.phone {
    right: 88px;
    bottom: 38px;
    width: 72px;
    height: 130px;
    border-width: 5px;
    border-radius: 18px;
  }

  body:not(.admin-body) .portfolio-filter-bar {
    justify-content: flex-start;
    width: calc(100% - 28px);
    margin-top: -38px;
    padding: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 20px;
  }

  body:not(.admin-body) .portfolio-filter-bar a {
    flex: 0 0 auto;
    padding: 0 16px;
  }

  body:not(.admin-body) .portfolio-case-grid,
  body:not(.admin-body) .portfolio-feedback-grid,
  body:not(.admin-body) .portfolio-featured-case,
  body:not(.admin-body) .portfolio-stat-strip {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .portfolio-case-media {
    height: 215px;
  }

  body:not(.admin-body) .portfolio-case-body {
    min-height: 230px;
    padding: 22px;
  }

  body:not(.admin-body) .portfolio-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body:not(.admin-body) .portfolio-featured-case {
    padding: 28px 20px;
  }

  body:not(.admin-body) .featured-badge {
    top: 18px;
    left: 18px;
    width: 76px;
    height: 76px;
    font-size: 10px;
  }

  body:not(.admin-body) .portfolio-featured-case img {
    height: 230px;
  }

  body:not(.admin-body) .case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .portfolio-stat-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 107, 255, 0.08);
  }

  body:not(.admin-body) .portfolio-stat-strip div:last-child {
    border-bottom: 0;
  }

  body:not(.admin-body) .portfolio-page-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 22px;
  }

  body:not(.admin-body) .portfolio-page-cta .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Testimonials page mockup design. */
body:not(.admin-body) .testimonials-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.018) 1px, transparent 1px),
    #fff;
  background-size: 76px 76px, 76px 76px, auto;
}

body:not(.admin-body) .testimonial-showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: 610px;
  padding: 72px max(24px, calc((100vw - 1280px) / 2 + 24px)) 100px;
  overflow: hidden;
  border-bottom-left-radius: clamp(64px, 9vw, 150px);
  border-bottom-right-radius: clamp(64px, 9vw, 150px);
  background:
    radial-gradient(circle at 84% 38%, rgba(124, 58, 237, 0.1), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(0, 168, 107, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.024) 1px, transparent 1px),
    linear-gradient(120deg, #fff 0%, #f8fbff 50%, #f4fff9 100%);
  background-size: auto, auto, 66px 66px, 66px 66px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06), 0 22px 48px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .testimonial-showcase-hero::before,
body:not(.admin-body) .testimonial-showcase-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  pointer-events: none;
}

body:not(.admin-body) .testimonial-showcase-hero::before {
  right: max(54px, calc((100vw - 1280px) / 2 + 72px));
  top: 80px;
  width: 120px;
  height: 120px;
  color: rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .testimonial-showcase-hero::after {
  left: max(24px, calc((100vw - 1280px) / 2 + 36px));
  bottom: 86px;
  width: 92px;
  height: 92px;
  color: rgba(0, 168, 107, 0.16);
}

body:not(.admin-body) .testimonial-hero-copy,
body:not(.admin-body) .testimonial-hero-visual {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .testimonial-hero-copy h1 {
  max-width: 700px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(46px, 4.4vw, 66px);
  line-height: 1.06;
}

body:not(.admin-body) .testimonial-hero-copy h1 span {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not(.admin-body) .testimonial-hero-copy p {
  max-width: 600px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.84;
}

body:not(.admin-body) .testimonial-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

body:not(.admin-body) .testimonial-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body:not(.admin-body) .testimonial-hero-points svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

body:not(.admin-body) .testimonial-hero-visual {
  min-height: 430px;
}

body:not(.admin-body) .testimonial-hero-blob {
  position: absolute;
  inset: 18px 10px 18px 56px;
  border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.12) 1px, transparent 1px),
    linear-gradient(135deg, rgba(18,107,255,0.25), rgba(124,58,237,0.16), rgba(0,168,107,0.12));
  background-size: 34px 34px, 34px 34px, auto;
}

body:not(.admin-body) .testimonial-hero-visual .portfolio-device.laptop {
  left: 4%;
  bottom: 26px;
  width: min(53vw, 610px);
  height: 325px;
}

body:not(.admin-body) .testimonial-hero-visual .portfolio-device.phone {
  right: 10%;
  bottom: 32px;
  width: 150px;
  height: 270px;
}

body:not(.admin-body) .testimonials-featured-section {
  margin-top: -34px;
}

body:not(.admin-body) .testimonial-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(11, 22, 51, 0.08);
  backdrop-filter: blur(12px);
}

body:not(.admin-body) .testimonial-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

body:not(.admin-body) .testimonial-featured-card {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .testimonial-featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .testimonial-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
}

body:not(.admin-body) .testimonial-card-top img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef8ff;
}

body:not(.admin-body) .stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-weight: 900;
}

body:not(.admin-body) .testimonial-card-top > svg {
  width: 38px;
  height: 38px;
  color: rgba(18, 107, 255, 0.24);
  fill: currentColor;
  stroke: 0;
}

body:not(.admin-body) .testimonial-featured-card.accent-2 .testimonial-card-top > svg {
  color: rgba(124, 58, 237, 0.28);
}

body:not(.admin-body) .testimonial-featured-card.accent-3 .testimonial-card-top > svg {
  color: rgba(0, 168, 107, 0.24);
}

body:not(.admin-body) .testimonial-featured-card p {
  margin: 26px 0 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

body:not(.admin-body) .testimonial-client-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

body:not(.admin-body) .testimonial-client-row strong,
body:not(.admin-body) .testimonial-client-row span {
  display: block;
}

body:not(.admin-body) .testimonial-client-row strong {
  color: var(--navy);
}

body:not(.admin-body) .testimonial-client-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

body:not(.admin-body) .testimonial-client-row b {
  color: var(--blue);
  font-size: 13px;
}

body:not(.admin-body) .testimonial-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .testimonial-stat-strip div {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .testimonial-stat-strip div:last-child {
  border-right: 0;
}

body:not(.admin-body) .testimonial-stat-strip svg {
  width: 56px;
  height: 56px;
  padding: 13px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .testimonial-stat-strip strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

body:not(.admin-body) .testimonial-stat-strip span {
  color: var(--muted);
  font-weight: 800;
}

body:not(.admin-body) .trusted-logos {
  display: grid;
  gap: 20px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(11, 22, 51, 0.06);
  text-align: center;
}

body:not(.admin-body) .trusted-logos > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body:not(.admin-body) .trusted-logos div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

body:not(.admin-body) .trusted-logos strong {
  color: rgba(11, 22, 51, 0.62);
  font-size: 17px;
}

body:not(.admin-body) .more-reviews-section {
  padding-top: 10px;
}

body:not(.admin-body) .more-review-grid,
body:not(.admin-body) .why-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

body:not(.admin-body) .more-review-card,
body:not(.admin-body) .why-clients-grid article {
  position: relative;
  display: grid;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(18, 107, 255, 0.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .more-review-card::before,
body:not(.admin-body) .why-clients-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .mini-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body:not(.admin-body) .mini-review-head span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 107, 255, 0.1);
  color: var(--blue);
  font-weight: 900;
}

body:not(.admin-body) .more-review-card p {
  color: var(--text);
  line-height: 1.68;
}

body:not(.admin-body) .more-review-card strong,
body:not(.admin-body) .more-review-card small {
  display: block;
}

body:not(.admin-body) .more-review-card strong {
  align-self: end;
  color: var(--navy);
}

body:not(.admin-body) .more-review-card small {
  color: var(--muted);
  font-weight: 800;
}

body:not(.admin-body) .review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

body:not(.admin-body) .review-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(18, 107, 255, 0.16);
}

body:not(.admin-body) .review-dots span.active {
  width: 12px;
  background: var(--blue);
}

body:not(.admin-body) .why-clients-section {
  padding-top: 12px;
}

body:not(.admin-body) .why-clients-grid article {
  min-height: 230px;
  background: linear-gradient(135deg, #f4f9ff, #fff);
}

body:not(.admin-body) .why-clients-grid article:nth-child(2),
body:not(.admin-body) .why-clients-grid article:nth-child(4) {
  background: linear-gradient(135deg, #effff8, #fff);
}

body:not(.admin-body) .why-clients-grid article:nth-child(3) {
  background: linear-gradient(135deg, #f7f2ff, #fff);
}

body:not(.admin-body) .why-clients-grid svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 15px;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.12);
}

body:not(.admin-body) .why-clients-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy);
}

body:not(.admin-body) .why-clients-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

body:not(.admin-body) .testimonial-page-cta-section {
  padding-top: 8px;
}

@media (max-width: 1120px) {
  body:not(.admin-body) .testimonial-showcase-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .testimonial-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  body:not(.admin-body) .testimonial-featured-grid,
  body:not(.admin-body) .more-review-grid,
  body:not(.admin-body) .why-clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .trusted-logos div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .testimonial-showcase-hero {
    min-height: 0;
    gap: 28px;
    padding: 40px 18px 68px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  body:not(.admin-body) .testimonial-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  body:not(.admin-body) .testimonial-hero-copy p {
    font-size: 15.5px;
  }

  body:not(.admin-body) .testimonial-hero-copy .hero-actions {
    align-items: stretch;
  }

  body:not(.admin-body) .testimonial-hero-copy .btn {
    justify-content: center;
    width: 100%;
  }

  body:not(.admin-body) .testimonial-hero-points {
    display: grid;
    gap: 10px;
  }

  body:not(.admin-body) .testimonial-hero-visual {
    min-height: 300px;
  }

  body:not(.admin-body) .testimonial-hero-blob {
    inset: 26px 0 0 18px;
  }

  body:not(.admin-body) .testimonial-hero-visual .portfolio-device.laptop {
    left: 0;
    bottom: 46px;
    width: 310px;
    height: 178px;
    border-width: 7px;
  }

  body:not(.admin-body) .testimonial-hero-visual .portfolio-device.phone {
    right: 18px;
    bottom: 38px;
    width: 84px;
    height: 150px;
    border-width: 5px;
    border-radius: 18px;
  }

  body:not(.admin-body) .testimonials-featured-section {
    margin-top: -28px;
  }

  body:not(.admin-body) .testimonial-shell {
    padding: 22px;
    border-radius: 18px;
  }

  body:not(.admin-body) .testimonial-featured-grid,
  body:not(.admin-body) .testimonial-stat-strip,
  body:not(.admin-body) .more-review-grid,
  body:not(.admin-body) .why-clients-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .testimonial-featured-card {
    min-height: 330px;
    padding: 26px;
  }

  body:not(.admin-body) .testimonial-card-top img {
    width: 64px;
    height: 64px;
  }

  body:not(.admin-body) .testimonial-stat-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 107, 255, 0.08);
  }

  body:not(.admin-body) .testimonial-stat-strip div:last-child {
    border-bottom: 0;
  }

  body:not(.admin-body) .trusted-logos div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Single blog post design. */
body:not(.admin-body) .single-post-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f8fcff 54%, #fff 100%);
  background-size: 76px 76px, 76px 76px, auto;
}

body:not(.admin-body) .single-post-wrap {
  display: grid;
  grid-template-columns: minmax(0, 835px) 360px;
  justify-content: space-between;
  gap: 54px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

body:not(.admin-body) .post-main-column {
  min-width: 0;
}

body:not(.admin-body) .post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-body) .post-breadcrumb a {
  color: var(--muted);
}

body:not(.admin-body) .post-breadcrumb svg {
  width: 14px;
  height: 14px;
}

body:not(.admin-body) .post-breadcrumb span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body:not(.admin-body) .post-article {
  min-width: 0;
}

body:not(.admin-body) .post-title-block h1 {
  max-width: 835px;
  margin: 14px 0 24px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.16;
}

body:not(.admin-body) .post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

body:not(.admin-body) .post-title-block {
  position: relative;
  padding-bottom: 4px;
}

body:not(.admin-body) .post-meta-row img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

body:not(.admin-body) .post-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body:not(.admin-body) .post-meta-row svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
}

body:not(.admin-body) .post-featured-media {
  position: relative;
  margin: 30px 0 30px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(239, 255, 248, 0.95), rgba(239, 248, 255, 0.95));
  box-shadow: 0 28px 58px rgba(11, 22, 51, 0.14);
}

body:not(.admin-body) .post-featured-media::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .post-featured-media img {
  display: block;
  width: 100%;
  height: clamp(300px, 38vw, 470px);
  object-fit: cover;
}

/* Inner page final polish pass: keep home untouched. */
body:not(.admin-body) .about-page > .section,
body:not(.admin-body) .services-page > .section,
body:not(.admin-body) .portfolio-page > .section,
body:not(.admin-body) .testimonials-page > .section,
body:not(.admin-body) .blog-page > .section,
body:not(.admin-body) .contact-page > .section,
body:not(.admin-body) .single-post-page > .section,
body:not(.admin-body) .project-case-page > .section {
  scroll-margin-top: 96px;
}

body:not(.admin-body) .about-story,
body:not(.admin-body) .about-knowledge,
body:not(.admin-body) .about-journey,
body:not(.admin-body) .about-approach,
body:not(.admin-body) .services-grid-section,
body:not(.admin-body) .portfolio-work-section,
body:not(.admin-body) .portfolio-featured-section,
body:not(.admin-body) .portfolio-feedback-section,
body:not(.admin-body) .testimonials-featured-section,
body:not(.admin-body) .more-reviews-section,
body:not(.admin-body) .why-clients-section,
body:not(.admin-body) .contact-options-section,
body:not(.admin-body) .related-posts-section {
  padding-block: clamp(64px, 7vw, 104px);
}

body:not(.admin-body) .blog-page main,
body:not(.admin-body) main.blog-page,
body:not(.admin-body) main.contact-page {
  overflow: clip;
}

body:not(.admin-body) .portfolio-filter-bar {
  max-width: min(1320px, calc(100% - 48px));
}

body:not(.admin-body) .portfolio-case-body,
body:not(.admin-body) .project-card div,
body:not(.admin-body) .blog-card div {
  min-width: 0;
}

body:not(.admin-body) .portfolio-case-body h2,
body:not(.admin-body) .portfolio-case-body p,
body:not(.admin-body) .project-card h3,
body:not(.admin-body) .project-card p,
body:not(.admin-body) .blog-card h3,
body:not(.admin-body) .blog-card p {
  overflow-wrap: anywhere;
}

body:not(.admin-body) .single-post-wrap {
  padding-top: clamp(70px, 7vw, 92px);
}

body:not(.admin-body) .single-post-page .related-posts-section {
  overflow: hidden;
}

body:not(.admin-body) .single-post-page .related-posts-carousel {
  max-width: 100%;
}

body:not(.admin-body) .single-post-page .related-post-card {
  min-width: 0;
}

@media (max-width: 1020px) {
  body:not(.admin-body) .single-post-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  body:not(.admin-body) .post-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .post-sidebar-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .about-story,
  body:not(.admin-body) .about-knowledge,
  body:not(.admin-body) .about-journey,
  body:not(.admin-body) .about-approach,
  body:not(.admin-body) .services-grid-section,
  body:not(.admin-body) .portfolio-work-section,
  body:not(.admin-body) .portfolio-featured-section,
  body:not(.admin-body) .portfolio-feedback-section,
  body:not(.admin-body) .testimonials-featured-section,
  body:not(.admin-body) .more-reviews-section,
  body:not(.admin-body) .why-clients-section,
  body:not(.admin-body) .contact-options-section,
  body:not(.admin-body) .related-posts-section {
    padding-block: 48px;
  }

  body:not(.admin-body) .portfolio-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100% - 32px, 520px);
    margin-top: -38px;
    padding: 12px;
    overflow: visible;
  }

  body:not(.admin-body) .portfolio-filter-bar a {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    white-space: normal;
    text-align: center;
  }

  body:not(.admin-body) .portfolio-filter-bar svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }

  body:not(.admin-body) .portfolio-case-media {
    height: 210px;
  }

  body:not(.admin-body) .portfolio-case-body {
    min-height: 0;
    padding: 24px;
  }

  body:not(.admin-body) .portfolio-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body:not(.admin-body) .single-post-wrap {
    width: min(100% - 32px, 760px);
    padding-top: 48px;
  }

  body:not(.admin-body) .post-title-block h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.18;
  }

  body:not(.admin-body) .post-featured-media {
    margin: 24px 0;
    border-radius: 10px;
  }

  body:not(.admin-body) .post-featured-media img {
    height: clamp(210px, 58vw, 300px);
  }

  body:not(.admin-body) .post-prose {
    font-size: 16px;
    line-height: 1.82;
  }

  body:not(.admin-body) .post-prose p:first-child {
    padding: 18px;
    font-size: 16px;
  }

  body:not(.admin-body) .post-guide-box,
  body:not(.admin-body) .post-nav-box {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .post-nav-box a + a {
    border-top: 1px solid rgba(18, 107, 255, 0.1);
    border-left: 0;
    text-align: left;
  }

  body:not(.admin-body) .post-sidebar {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .single-post-page .related-posts-carousel {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: visible;
    padding: 4px 0 0;
    scroll-snap-type: none;
  }

  body:not(.admin-body) .single-post-page .related-post-card {
    width: auto;
    scroll-snap-align: none;
  }
}

@media (max-width: 430px) {
  body:not(.admin-body) .portfolio-filter-bar {
    grid-template-columns: 1fr;
  }
}

body:not(.admin-body) .post-prose {
  color: var(--text);
  font-size: 18px;
  line-height: 1.88;
}

body:not(.admin-body) .post-prose p {
  margin: 0 0 24px;
}

body:not(.admin-body) .post-prose p:first-child {
  position: relative;
  margin-bottom: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 168, 107, 0.16);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(240, 255, 248, 0.86), rgba(255, 255, 255, 0.95));
  color: var(--navy);
  font-size: 19px;
  line-height: 1.78;
  box-shadow: 0 16px 34px rgba(11, 22, 51, 0.055);
}

body:not(.admin-body) .post-prose h2,
body:not(.admin-body) .post-prose h3 {
  margin: 34px 0 12px;
  color: var(--navy);
  line-height: 1.22;
}

body:not(.admin-body) .post-prose h2 {
  font-size: clamp(28px, 2.5vw, 36px);
}

body:not(.admin-body) .post-prose h3 {
  font-size: 24px;
}

body:not(.admin-body) .post-guide-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  margin: 34px 0 22px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,255,248,0.94));
  box-shadow: 0 20px 44px rgba(11, 22, 51, 0.07);
}

body:not(.admin-body) .post-guide-box strong,
body:not(.admin-body) .post-guide-box span {
  display: block;
}

body:not(.admin-body) .post-guide-box strong {
  color: var(--navy);
  font-size: 18px;
}

body:not(.admin-body) .post-guide-box span {
  margin-top: 4px;
  color: var(--muted);
}

body:not(.admin-body) .post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}

body:not(.admin-body) .post-tags span {
  color: var(--navy);
  font-weight: 900;
}

body:not(.admin-body) .post-tags a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(18, 107, 255, 0.11);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

body:not(.admin-body) .post-nav-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .post-nav-box a {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--navy);
}

body:not(.admin-body) .post-nav-box a + a {
  border-left: 1px solid rgba(18, 107, 255, 0.1);
  text-align: right;
}

body:not(.admin-body) .post-nav-box span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-body) .post-nav-box strong {
  line-height: 1.35;
}

body:not(.admin-body) .post-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
  position: sticky;
  top: 106px;
}

body:not(.admin-body) .post-side-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .post-side-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .post-side-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 20px;
}

body:not(.admin-body) .author-mini {
  display: flex;
  align-items: center;
  gap: 14px;
}

body:not(.admin-body) .author-mini img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

body:not(.admin-body) .author-mini strong,
body:not(.admin-body) .author-mini span {
  display: block;
}

body:not(.admin-body) .author-mini strong {
  color: var(--navy);
}

body:not(.admin-body) .author-mini span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body:not(.admin-body) .author-card p {
  margin: 16px 0 18px;
  color: var(--muted);
  line-height: 1.72;
}

body:not(.admin-body) .author-socials {
  display: flex;
  gap: 12px;
}

body:not(.admin-body) .author-socials a {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  padding: 0 10px;
  border-radius: 50%;
  color: var(--navy);
  background: #f0f6ff;
  font-size: 12px;
  font-weight: 900;
}

body:not(.admin-body) .toc-card ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.5;
}

body:not(.admin-body) .latest-card {
  display: grid;
}

body:not(.admin-body) .latest-mini-post {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(18, 107, 255, 0.08);
}

body:not(.admin-body) .latest-mini-post img {
  grid-row: span 3;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  object-fit: cover;
}

body:not(.admin-body) .latest-mini-post span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

body:not(.admin-body) .latest-mini-post strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.32;
}

body:not(.admin-body) .latest-mini-post small {
  color: var(--muted);
  font-weight: 700;
}

body:not(.admin-body) .post-sidebar-newsletter {
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--green));
}

body:not(.admin-body) .post-sidebar-newsletter p {
  line-height: 1.65;
}

body:not(.admin-body) .post-sidebar-newsletter::before {
  background: rgba(255, 255, 255, 0.5);
}

body:not(.admin-body) .post-sidebar-newsletter h2,
body:not(.admin-body) .post-sidebar-newsletter p,
body:not(.admin-body) .post-sidebar-newsletter small {
  color: #fff;
}

body:not(.admin-body) .post-mini-newsletter {
  display: grid;
  gap: 12px;
}

body:not(.admin-body) .post-mini-newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
}

body:not(.admin-body) .post-mini-newsletter button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
}

body:not(.admin-body) .related-posts-section {
  padding-top: 28px;
}

body:not(.admin-body) .related-posts-carousel {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

body:not(.admin-body) .related-post-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 430px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(11, 22, 51, 0.08);
  scroll-snap-align: start;
}

body:not(.admin-body) .related-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.admin-body) .related-post-card div {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 22px;
}

body:not(.admin-body) .related-post-card span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

body:not(.admin-body) .related-post-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

body:not(.admin-body) .related-post-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body:not(.admin-body) .single-post-page .related-post-card .blog-read-more {
  display: inline-flex;
  width: 122px;
  min-height: 38px;
  align-items: center;
  align-self: end;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #078f5d);
  box-shadow: 0 10px 20px rgba(0, 168, 107, 0.18);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body:not(.admin-body) .single-post-page .related-post-card .blog-read-more svg {
  width: 14px;
  height: 14px;
}

body:not(.admin-body) .single-post-page .related-post-card .blog-read-more:hover,
body:not(.admin-body) .single-post-page .related-post-card .blog-read-more:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #07945f, var(--blue));
  box-shadow: 0 13px 24px rgba(18, 107, 255, 0.2);
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  body:not(.admin-body) .single-post-wrap {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .post-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .single-post-wrap {
    width: calc(100% - 36px);
    padding-top: 42px;
  }

  body:not(.admin-body) .post-breadcrumb {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  body:not(.admin-body) .post-title-block h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  body:not(.admin-body) .post-featured-media img {
    height: 240px;
  }

  body:not(.admin-body) .post-prose {
    font-size: 16px;
  }

  body:not(.admin-body) .post-guide-box,
  body:not(.admin-body) .post-nav-box,
  body:not(.admin-body) .post-sidebar {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .post-nav-box a + a {
    border-top: 1px solid rgba(18, 107, 255, 0.1);
    border-left: 0;
    text-align: left;
  }

  body:not(.admin-body) .post-side-card {
    padding: 24px;
  }

  body:not(.admin-body) .related-posts-carousel {
    grid-auto-columns: 82%;
  }
}

/* Services page mockup design. */
body:not(.admin-body) .services-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.02) 1px, transparent 1px),
    #fff;
  background-size: 76px 76px, 76px 76px, auto;
}

body:not(.admin-body) .services-showcase-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: 610px;
  margin: 0 0 34px;
  padding: 70px max(24px, calc((100vw - 1280px) / 2 + 24px)) 86px;
  overflow: hidden;
  border-bottom-right-radius: clamp(80px, 12vw, 190px);
  border-bottom-left-radius: clamp(64px, 8vw, 130px);
  background:
    radial-gradient(circle at 84% 40%, rgba(0, 168, 107, 0.12), transparent 25%),
    radial-gradient(circle at 12% 62%, rgba(18, 107, 255, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    linear-gradient(120deg, #fff 0%, #f8fcff 52%, #efffff 100%);
  background-size: auto, auto, 66px 66px, 66px 66px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06), 0 22px 48px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .services-showcase-hero::before,
body:not(.admin-body) .services-showcase-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  pointer-events: none;
}

body:not(.admin-body) .services-showcase-hero::before {
  top: 70px;
  left: max(30px, calc((100vw - 1280px) / 2 + 44px));
  width: 120px;
  height: 120px;
  color: rgba(18, 107, 255, 0.22);
}

body:not(.admin-body) .services-showcase-hero::after {
  right: max(30px, calc((100vw - 1280px) / 2 + 40px));
  bottom: 82px;
  width: 100px;
  height: 100px;
  color: rgba(0, 168, 107, 0.15);
}

body:not(.admin-body) .services-hero-copy,
body:not(.admin-body) .services-hero-visual {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .services-hero-copy h1 {
  max-width: 590px;
  margin: 14px 0 22px;
  color: var(--navy);
  font-size: clamp(44px, 4.15vw, 60px);
  line-height: 1.08;
}

body:not(.admin-body) .services-hero-copy h1 span {
  display: block;
  color: var(--green);
}

body:not(.admin-body) .services-hero-copy p {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.78;
}

body:not(.admin-body) .services-hero-copy p::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: var(--green);
}

body:not(.admin-body) .services-hero-visual {
  min-height: 430px;
}

body:not(.admin-body) .services-orb {
  position: absolute;
  right: 6%;
  top: 42px;
  width: min(38vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(18, 107, 255, 0.88), rgba(0, 196, 148, 0.8));
  box-shadow: 0 34px 70px rgba(18, 107, 255, 0.2);
}

body:not(.admin-body) .services-laptop {
  position: absolute;
  left: 2%;
  bottom: 22px;
  width: min(54vw, 590px);
  transform: rotate(-7deg);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 30px 34px rgba(11, 22, 51, 0.22));
}

body:not(.admin-body) .laptop-screen {
  display: grid;
  gap: 14px;
  min-height: 265px;
  padding: 44px 48px;
  border: 12px solid #111827;
  border-bottom-width: 18px;
  border-radius: 20px 20px 12px 12px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #eef8ff 56%, #f4fff9);
  background-size: 34px 34px, 34px 34px, auto;
}

body:not(.admin-body) .screen-brand {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

body:not(.admin-body) .laptop-screen strong {
  max-width: 360px;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

body:not(.admin-body) .laptop-screen em {
  color: var(--green);
  font-style: normal;
}

body:not(.admin-body) .laptop-screen small {
  max-width: 330px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

body:not(.admin-body) .screen-bars {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

body:not(.admin-body) .screen-bars i {
  width: 58px;
  height: 9px;
  border-radius: 999px;
  background: rgba(18, 107, 255, 0.18);
}

body:not(.admin-body) .screen-bars i:nth-child(2) { width: 86px; background: rgba(0, 168, 107, 0.18); }
body:not(.admin-body) .screen-bars i:nth-child(3) { width: 46px; background: rgba(124, 58, 237, 0.16); }

body:not(.admin-body) .laptop-base {
  width: 108%;
  height: 24px;
  margin: -4px 0 0 -4%;
  border-radius: 8px 8px 34px 34px;
  background: linear-gradient(180deg, #202938, #0d1421);
}

body:not(.admin-body) .services-phone {
  position: absolute;
  right: 17%;
  bottom: 52px;
  display: grid;
  gap: 7px;
  width: 126px;
  min-height: 210px;
  padding: 24px 16px 16px;
  border: 8px solid #111827;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: 0 22px 42px rgba(11, 22, 51, 0.2);
}

body:not(.admin-body) .services-phone span {
  width: 38px;
  height: 4px;
  margin: -12px auto 4px;
  border-radius: 999px;
  background: #111827;
}

body:not(.admin-body) .services-phone strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.12;
}

body:not(.admin-body) .services-phone small {
  color: var(--green);
  font-weight: 900;
}

body:not(.admin-body) .services-phone div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

body:not(.admin-body) .services-phone i {
  height: 34px;
  border-radius: 10px;
  background: rgba(18, 107, 255, 0.12);
}

body:not(.admin-body) .services-phone i:nth-child(2),
body:not(.admin-body) .services-phone i:nth-child(3) {
  background: rgba(0, 168, 107, 0.14);
}

body:not(.admin-body) .services-plant {
  position: absolute;
  right: 4%;
  bottom: 32px;
  width: 76px;
  height: 120px;
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(0, 168, 107, 0.95) 0 10px, transparent 11px),
    radial-gradient(ellipse at 30% 28%, rgba(18, 107, 255, 0.75) 0 12px, transparent 13px),
    radial-gradient(ellipse at 70% 28%, rgba(0, 168, 107, 0.78) 0 12px, transparent 13px),
    linear-gradient(#fff, #f2f6f7);
  box-shadow: 0 18px 30px rgba(11, 22, 51, 0.12);
}

body:not(.admin-body) .services-grid-section {
  padding-top: 44px;
}

body:not(.admin-body) .services-grid-section .section-title-center p {
  max-width: 620px;
  margin: 6px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

body:not(.admin-body) .services-design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
  margin-top: 34px;
}

body:not(.admin-body) .service-design-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 14px;
  min-height: 402px;
  padding: 30px 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 24px 50px rgba(11, 22, 51, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

body:not(.admin-body) .service-design-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .service-design-card:hover {
  transform: translateY(-7px);
  border-color: rgba(18, 107, 255, 0.22);
  box-shadow: 0 34px 64px rgba(11, 22, 51, 0.13);
}

body:not(.admin-body) .service-icon-wrap {
  display: grid;
  grid-row: auto;
  grid-column: 1;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: rgba(18, 107, 255, 0.11);
  color: var(--blue);
}

body:not(.admin-body) .service-icon-wrap svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.1;
}

body:not(.admin-body) .service-design-card.accent-green .service-icon-wrap,
body:not(.admin-body) .service-design-card.accent-teal .service-icon-wrap {
  background: rgba(0, 168, 107, 0.13);
  color: var(--green);
}

body:not(.admin-body) .service-design-card.accent-purple .service-icon-wrap {
  background: rgba(124, 58, 237, 0.12);
  color: var(--purple);
}

body:not(.admin-body) .service-design-card.accent-orange .service-icon-wrap {
  background: rgba(245, 158, 11, 0.13);
  color: #f59e0b;
}

body:not(.admin-body) .service-design-card.accent-pink .service-icon-wrap {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
}

body:not(.admin-body) .service-design-card h3 {
  display: -webkit-box;
  grid-column: 1;
  min-height: 56px;
  margin: 0;
  overflow: hidden;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

body:not(.admin-body) .service-design-card h3 a {
  color: inherit;
  text-decoration: none;
}

body:not(.admin-body) .service-design-card h3 a:hover {
  color: var(--blue);
}

body:not(.admin-body) .service-design-card p {
  display: -webkit-box;
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

body:not(.admin-body) .service-learn-link {
  display: inline-flex;
  grid-column: 1;
  align-items: center;
  align-self: end;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 100%;
  margin-top: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

body:not(.admin-body) .service-design-card.accent-green .service-learn-link,
body:not(.admin-body) .service-design-card.accent-teal .service-learn-link {
  color: var(--green);
}

body:not(.admin-body) .service-design-card.accent-purple .service-learn-link {
  color: var(--purple);
}

body:not(.admin-body) .service-learn-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

body:not(.admin-body) .service-learn-link:hover svg {
  transform: translate(3px, -3px);
}

body:not(.admin-body) .services-page-cta-section {
  padding-top: 10px;
}

body:not(.admin-body) .services-page-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  padding: 32px 42px;
  border-radius: 12px;
  background: linear-gradient(110deg, var(--green), #03a7b7 48%, #5f49ff);
  color: #fff;
  box-shadow: 0 24px 52px rgba(18, 107, 255, 0.14);
}

body:not(.admin-body) .services-page-cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  opacity: 0.7;
}

body:not(.admin-body) .services-page-cta > span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  box-shadow: 0 18px 34px rgba(11, 22, 51, 0.12);
}

body:not(.admin-body) .services-page-cta > span svg {
  width: 38px;
  height: 38px;
}

body:not(.admin-body) .services-page-cta h2,
body:not(.admin-body) .services-page-cta p {
  margin: 0;
  color: #fff;
}

body:not(.admin-body) .services-page-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
}

body:not(.admin-body) .services-page-cta p {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  body:not(.admin-body) .services-showcase-hero {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .services-hero-visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  body:not(.admin-body) .services-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .services-showcase-hero {
    min-height: 0;
    gap: 28px;
    padding: 40px 18px 58px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
  }

  body:not(.admin-body) .services-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  body:not(.admin-body) .services-hero-copy p {
    font-size: 15.5px;
  }

  body:not(.admin-body) .services-hero-copy .hero-actions {
    align-items: stretch;
  }

  body:not(.admin-body) .services-hero-copy .btn {
    justify-content: center;
    width: 100%;
  }

  body:not(.admin-body) .services-hero-visual {
    min-height: 330px;
  }

  body:not(.admin-body) .services-orb {
    right: 0;
    top: 28px;
    width: 245px;
  }

  body:not(.admin-body) .services-laptop {
    left: -8px;
    bottom: 30px;
    width: 330px;
  }

  body:not(.admin-body) .laptop-screen {
    min-height: 160px;
    padding: 24px 24px;
    border-width: 8px;
    border-bottom-width: 13px;
  }

  body:not(.admin-body) .laptop-screen strong {
    font-size: 19px;
  }

  body:not(.admin-body) .laptop-screen small,
  body:not(.admin-body) .screen-bars {
    display: none;
  }

  body:not(.admin-body) .services-phone {
    right: 18px;
    bottom: 46px;
    width: 82px;
    min-height: 142px;
    padding: 18px 10px 10px;
    border-width: 6px;
    border-radius: 22px;
  }

  body:not(.admin-body) .services-phone strong {
    font-size: 11px;
  }

  body:not(.admin-body) .services-phone div {
    gap: 5px;
  }

  body:not(.admin-body) .services-phone i {
    height: 20px;
  }

  body:not(.admin-body) .services-plant {
    display: none;
  }

  body:not(.admin-body) .services-design-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not(.admin-body) .service-design-card {
    grid-template-columns: 1fr;
    min-height: 333px;
    padding: 24px 20px 22px;
  }

  body:not(.admin-body) .service-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  body:not(.admin-body) .service-icon-wrap svg {
    width: 28px;
    height: 28px;
  }

  body:not(.admin-body) .service-design-card h3 {
    min-height: 50px;
    font-size: 22px;
    font-weight: 900;
    -webkit-line-clamp: 2;
  }

  body:not(.admin-body) .service-design-card p {
    color: #263755;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.72;
    -webkit-line-clamp: 4;
  }

  body:not(.admin-body) .service-learn-link {
    grid-column: 1 / -1;
  }

  body:not(.admin-body) .services-page-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 22px;
  }

  body:not(.admin-body) .services-page-cta > span {
    width: 68px;
    height: 68px;
  }

  body:not(.admin-body) .services-page-cta .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Stable fixed header: prevents sticky-menu jitter while scrolling long pages. */
body:not(.admin-body) {
  padding-top: 76px;
  scroll-padding-top: 92px;
}

body:not(.admin-body) .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 76px;
  min-height: 76px;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

body:not(.admin-body) .header-inner {
  width: min(100%, 1180px);
  height: 76px;
  min-height: 76px;
}

body:not(.admin-body) .brand img {
  flex: 0 0 42px;
}

body:not(.admin-body) .main-nav a {
  transform: none;
}

@media (max-width: 760px) {
  body:not(.admin-body) {
    padding-top: 72px;
    scroll-padding-top: 88px;
  }

  body:not(.admin-body) .site-header {
    height: 72px;
    min-height: 72px;
  }

  body:not(.admin-body) .header-inner {
    height: 72px;
    min-height: 72px;
  }

  body:not(.admin-body) .main-nav {
    top: 72px;
  }
}

/* Final homepage card style: reference-inspired top line and soft hover lift. */
body:not(.admin-body) #services .service-card,
body:not(.admin-body) #portfolio .project-card,
body:not(.admin-body) #blog .blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 184, 200, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 92% 0, rgba(18, 107, 255, 0.06), transparent 34%);
  box-shadow: 0 24px 58px rgba(11, 22, 51, 0.09);
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(.2, .8, .2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

body:not(.admin-body) #services .service-card::before,
body:not(.admin-body) #portfolio .project-card::before,
body:not(.admin-body) #blog .blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green), #facc15);
}

body:not(.admin-body) #services .service-card:hover,
body:not(.admin-body) #portfolio .project-card:hover,
body:not(.admin-body) #blog .blog-card:hover {
  border-color: rgba(0, 168, 107, 0.28);
  box-shadow: 0 34px 72px rgba(11, 22, 51, 0.14);
  transform: translate3d(0, -6px, 0);
}

body:not(.admin-body) #services .service-card {
  display: flex;
  min-height: 292px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 42px 34px 30px;
  text-align: left;
}

body:not(.admin-body) #services .service-card > svg {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(0, 184, 200, 0.18);
  border-radius: 50%;
  background: rgba(0, 184, 200, 0.08);
  box-shadow: 0 12px 28px rgba(0, 184, 200, 0.08);
}

body:not(.admin-body) #services .service-card h3,
body:not(.admin-body) #portfolio .project-card h3,
body:not(.admin-body) #blog .blog-card h3 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

body:not(.admin-body) #services .service-card p,
body:not(.admin-body) #portfolio .project-card p,
body:not(.admin-body) #blog .blog-card p {
  color: #263a58;
  font-size: 15px;
  line-height: 1.7;
}

body:not(.admin-body) #services .service-card a,
body:not(.admin-body) #portfolio .project-card .project-link,
body:not(.admin-body) #blog .blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(0, 184, 200, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

body:not(.admin-body) #services .service-card a:hover,
body:not(.admin-body) #portfolio .project-card .project-link:hover,
body:not(.admin-body) #blog .blog-card a:hover {
  color: var(--green);
  border-color: rgba(0, 168, 107, 0.35);
  background: rgba(236, 255, 246, 0.86);
}

body:not(.admin-body) #portfolio .project-card img,
body:not(.admin-body) #blog .blog-card img {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) #portfolio .project-card div,
body:not(.admin-body) #blog .blog-card div {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 28px 30px 30px;
}

body:not(.admin-body) #blog .blog-card {
  grid-template-columns: 168px 1fr;
}

body:not(.admin-body) #blog .blog-card img {
  min-height: 100%;
}

@media (max-width: 760px) {
  body:not(.admin-body) #services .service-card {
    min-height: 0;
    padding: 34px 26px 28px;
  }

  body:not(.admin-body) #blog .blog-card {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) #portfolio .project-card div,
  body:not(.admin-body) #blog .blog-card div {
    min-height: 0;
    padding: 24px;
  }
}

/* Services & Packages homepage layout */
body:not(.admin-body) .packages-section {
  padding: 44px 24px 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 251, 0.96)),
    radial-gradient(circle at 8% 0, rgba(0, 168, 107, 0.08), transparent 25%),
    radial-gradient(circle at 92% 8%, rgba(18, 107, 255, 0.07), transparent 26%);
}

body:not(.admin-body) .packages-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

body:not(.admin-body) .packages-heading h2 {
  position: relative;
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.12;
}

body:not(.admin-body) .packages-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--teal));
}

body:not(.admin-body) .packages-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-top: 16px;
}

body:not(.admin-body) #services .package-card {
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 26px 22px 20px;
  text-align: center;
  border-color: rgba(18, 107, 255, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) #services .package-card::before {
  height: 0;
  background: transparent;
}

body:not(.admin-body) #services .package-card.is-featured {
  border: 3px solid rgba(18, 107, 255, 0.62);
  box-shadow: 0 20px 44px rgba(18, 107, 255, 0.15);
}

body:not(.admin-body) #services .package-card > svg {
  width: 48px;
  height: 48px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue);
  stroke-width: 2.25;
}

body:not(.admin-body) #services .package-card.accent-green > svg,
body:not(.admin-body) #services .package-card.accent-teal > svg {
  color: var(--green);
}

body:not(.admin-body) #services .package-card.accent-purple > svg {
  color: var(--purple);
}

body:not(.admin-body) #services .package-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
}

body:not(.admin-body) #services .package-card p {
  margin: 0 auto 10px;
  max-width: 190px;
  min-height: 48px;
  font-size: 13px;
  line-height: 1.45;
}

body:not(.admin-body) .package-price {
  display: block;
  margin: 0 0 12px;
  color: #07872e;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

body:not(.admin-body) .package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 15px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 9px 20px rgba(18, 107, 255, 0.25);
}

body:not(.admin-body) #services .package-card a {
  min-height: 38px;
  margin-top: auto;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(0, 168, 107, 0.22);
}

body:not(.admin-body) #services .package-card a:hover {
  color: #fff;
  background: #07945f;
  border-color: transparent;
}

@media (max-width: 1120px) {
  body:not(.admin-body) .packages-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .packages-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  body:not(.admin-body) .packages-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body:not(.admin-body) #services .package-card {
    padding: 30px 24px 22px;
  }

  body:not(.admin-body) #services .package-card p {
    min-height: 0;
  }
}

/* Final navigation stability pass: no layout shifts while browsing or changing active pages. */
html {
  scrollbar-gutter: stable;
}

body:not(.admin-body) .site-header {
  contain: layout paint;
}

body:not(.admin-body) .header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: visible;
}

body:not(.admin-body) .brand {
  flex: 0 0 230px;
}

body:not(.admin-body) .main-nav {
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 24px);
  min-width: 0;
}

body:not(.admin-body) .main-nav a {
  height: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.18s ease;
}

body:not(.admin-body) .main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

body:not(.admin-body) .main-nav a:hover::after,
body:not(.admin-body) .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

body:not(.admin-body) .header-cta {
  flex: 0 0 auto;
}

body:not(.admin-body) .nav-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1040px) {
  body:not(.admin-body) .brand {
    flex-basis: 230px;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .header-inner {
    gap: 12px;
  }

  body:not(.admin-body) .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  body:not(.admin-body) .main-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: flex;
    max-height: calc(100vh - 96px);
    padding: 14px;
    border: 1px solid rgba(18, 107, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(11, 22, 51, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body:not(.admin-body) .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body:not(.admin-body) .main-nav a {
    width: 100%;
    height: 42px;
    min-height: 42px;
    padding: 0 10px;
  }

  body:not(.admin-body) .main-nav a::after {
    right: auto;
    bottom: 4px;
    width: 42px;
  }
}

/* Latest Tips & Insights polish */
body:not(.admin-body) .latest-posts-section .blog-card img,
body:not(.admin-body) .blog-card.vertical img {
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.08), rgba(0, 168, 107, 0.08));
}

body:not(.admin-body) .latest-posts-section .blog-card a.blog-read-more,
body:not(.admin-body) .blog-card.vertical a.blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-top: auto;
  padding: 0 17px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #078f5d);
  box-shadow: 0 12px 24px rgba(0, 168, 107, 0.24);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

body:not(.admin-body) .latest-posts-section .blog-card a.blog-read-more svg,
body:not(.admin-body) .blog-card.vertical a.blog-read-more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

body:not(.admin-body) .latest-posts-section .blog-card a.blog-read-more:hover,
body:not(.admin-body) .blog-card.vertical a.blog-read-more:hover {
  color: #fff;
  background: linear-gradient(135deg, #07945f, var(--blue));
  box-shadow: 0 15px 30px rgba(18, 107, 255, 0.22);
  transform: translateY(-2px);
}

body:not(.admin-body) .latest-posts-section .blog-card a.blog-read-more:hover svg,
body:not(.admin-body) .blog-card.vertical a.blog-read-more:hover svg {
  transform: translateX(3px);
}

body:not(.admin-body) .latest-posts-section .three-grid {
  align-items: stretch;
}

body:not(.admin-body) .latest-posts-section .blog-card {
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 190px;
}

body:not(.admin-body) .latest-posts-section .blog-card img {
  width: 136px;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

body:not(.admin-body) .latest-posts-section .blog-card div {
  min-height: 190px;
  padding: 22px 20px;
}

body:not(.admin-body) .latest-posts-section .blog-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.28;
}

body:not(.admin-body) .latest-posts-section .blog-card p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
}

body:not(.admin-body) .latest-posts-section .blog-card .post-date {
  min-height: 24px;
  margin-bottom: 12px;
  padding: 3px 9px;
  font-size: 11px;
}

body:not(.admin-body) .latest-posts-section .blog-card a.blog-read-more {
  min-height: 38px;
  padding: 0 15px;
}

@media (max-width: 760px) {
  body:not(.admin-body) .latest-posts-section .blog-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body:not(.admin-body) .latest-posts-section .blog-card img {
    width: 100%;
    height: 220px;
    min-height: 220px;
  }

  body:not(.admin-body) .latest-posts-section .blog-card div {
    min-height: 0;
  }
}

/* Newsletter footer band */
body:not(.admin-body) .footer-newsletter {
  max-width: 1250px;
}

body:not(.admin-body) .footer-newsletter,
body:not(.admin-body) .footer-newsletter * {
  box-sizing: border-box;
}

body:not(.admin-body) .newsletter-form input,
body:not(.admin-body) .newsletter-form button {
  appearance: none;
  -webkit-appearance: none;
}

.subscriber-list {
  display: grid;
  gap: 8px;
}

.subscriber-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 120px 180px;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 13px;
}

.subscriber-head {
  background: rgba(18, 107, 255, 0.08);
  font-weight: 900;
}

.sitemap-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
}

.sitemap-tool label {
  display: grid;
  gap: 7px;
  margin: 14px 0;
}

.sitemap-status-card {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 255, 0.92));
  background-size: 42px 42px, 42px 42px, 100% 100%;
  box-shadow: 0 16px 34px rgba(11, 22, 51, 0.08);
}

.sitemap-status-card strong {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.sitemap-status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sitemap-status-card .btn {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 1040px) {
  body:not(.admin-body) .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .footer-newsletter {
    margin-bottom: 34px;
    padding: 24px 18px;
  }

  body:not(.admin-body) .footer-newsletter h2 {
    font-size: 28px;
  }

  body:not(.admin-body) .newsletter-form {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .newsletter-form input[type="email"],
  body:not(.admin-body) .newsletter-form button {
    min-height: 54px;
    width: 100%;
  }

  .subscriber-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sitemap-dashboard {
    grid-template-columns: 1fr;
  }
}

/* Professional pattern pass: replace soft bubbles with quieter grid/line textures. */
body:not(.admin-body)::before {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.026) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(18, 107, 255, 0.035));
  background-size: 76px 76px, 76px 76px, 100% 100%;
}

body:not(.admin-body) .hero::before {
  width: 185px;
  height: 185px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 107, 255, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  filter: none;
  opacity: 0.2;
  transform: rotate(8deg);
}

body:not(.admin-body) .hero::after,
body:not(.admin-body) .section::before,
body:not(.admin-body) .section::after,
body:not(.admin-body) .section-inner::before,
body:not(.admin-body) .section-inner::after,
body:not(.admin-body) .about-preview::before,
body:not(.admin-body) .about-preview::after,
body:not(.admin-body) .sub-hero::before,
body:not(.admin-body) .sub-hero::after,
body:not(.admin-body) .project-gallery-section::before,
body:not(.admin-body) .related-projects-section::before {
  border-radius: 0;
  background:
    linear-gradient(90deg, currentColor 1px, transparent 1px),
    linear-gradient(180deg, currentColor 1px, transparent 1px);
  background-size: 14px 14px;
  color: rgba(18, 107, 255, 0.12);
  filter: none;
  opacity: 0.45;
}

body:not(.admin-body) .section::before,
body:not(.admin-body) .section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body:not(.admin-body) .section::before {
  left: max(24px, calc((100% - 1250px) / 2));
  top: 28px;
  width: 96px;
  height: 96px;
}

body:not(.admin-body) .section::after {
  right: max(24px, calc((100% - 1250px) / 2));
  bottom: 28px;
  width: 74px;
  height: 74px;
  color: rgba(0, 168, 107, 0.11);
}

body:not(.admin-body) .sub-hero {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, #ffffff 0%, #f7fbff 50%, #f3fff9 100%);
  background-size: 68px 68px, 68px 68px, 100% 100%;
}

body:not(.admin-body) .sub-hero::before {
  left: 5%;
  top: 24%;
  width: 118px;
  height: 118px;
}

body:not(.admin-body) .sub-hero::after {
  right: 6%;
  bottom: 18%;
  width: 92px;
  height: 92px;
  color: rgba(0, 168, 107, 0.12);
}

body:not(.admin-body) .pastel,
body:not(.admin-body) .about-preview,
body:not(.admin-body) #portfolio,
body:not(.admin-body) #testimonials,
body:not(.admin-body) #blog,
body:not(.admin-body) .project-gallery-section,
body:not(.admin-body) .related-projects-section,
body:not(.admin-body) .packages-section {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 100%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
}

body:not(.admin-body) .section {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.9));
  background-size: 92px 92px, 92px 92px, 100% 100%;
}

body:not(.admin-body) .about-preview {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 92, 246, 0.024) 1px, transparent 1px),
    linear-gradient(105deg, #ffffff 0%, #f8fbff 54%, #f5fffb 100%);
  background-size: 76px 76px, 76px 76px, 100% 100%;
}

body:not(.admin-body) .content-card,
body:not(.admin-body) .why-card,
body:not(.admin-body) .contact-card,
body:not(.admin-body) .wide-service,
body:not(.admin-body) .service-card,
body:not(.admin-body) .project-card,
body:not(.admin-body) .testimonial-card,
body:not(.admin-body) .blog-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px;
}

body:not(.admin-body) .contact-form-card,
body:not(.admin-body) .hero-mini-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.95)),
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px;
}

body:not(.admin-body) .site-footer::after {
  right: 4%;
  bottom: 36px;
  width: 132px;
  height: 132px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.42;
}

body:not(.admin-body) .footer-newsletter {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  background-size: 100% 100%;
}

body:not(.admin-body) .newsletter-section {
  margin-top: 42px;
  padding: 22px 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(105deg, #126bff 0%, #00a6c8 44%, #00a86b 100%);
  background-size: 54px 54px, 54px 54px, 100% 100%;
}

body:not(.admin-body) .newsletter-section .footer-newsletter {
  min-height: 0;
  margin: 0 auto;
  padding: 20px 24px;
}

body:not(.admin-body) .newsletter-section .footer-newsletter h2 {
  font-size: clamp(25px, 2.5vw, 35px);
}

body:not(.admin-body) .newsletter-section + .site-footer {
  margin-top: 0;
}

body:not(.admin-body) #services .package-card {
  overflow: visible;
}

body:not(.admin-body) #services .package-card.is-featured {
  padding-top: 34px;
}

body:not(.admin-body) .package-badge {
  top: 0;
  left: 50%;
  min-height: 30px;
  padding: 0 18px;
  border: 3px solid #ffffff;
  border-radius: 7px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 24px rgba(18, 107, 255, 0.24);
}

@media (max-width: 760px) {
  body:not(.admin-body)::before {
    background-size: 54px 54px, 54px 54px, 100% 100%;
  }

  body:not(.admin-body) .section::before,
  body:not(.admin-body) .section::after,
  body:not(.admin-body) .sub-hero::before,
  body:not(.admin-body) .sub-hero::after {
    width: 64px;
    height: 64px;
    opacity: 0.22;
  }
}

/* Smooth public-page scroll reveals without animation overlap. */
body:not(.admin-body) .scroll-reveal {
  opacity: 1;
  transform: translate3d(0, 18px, 0);
  transition:
    transform 0.55s cubic-bezier(.2, .8, .2, 1);
  transition-delay: calc(min(var(--reveal-index, 0), 3) * 35ms);
  will-change: transform;
}

body:not(.admin-body) .scroll-reveal.is-revealed {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

body:not(.admin-body) .scroll-reveal.scroll-reveal--subtle {
  transform: translate3d(0, 8px, 0);
  transition-duration: 0.28s;
  transition-delay: 0ms;
}

body:not(.admin-body) .scroll-reveal.scroll-reveal--subtle.is-revealed {
  transform: translate3d(0, 0, 0);
}

body:not(.admin-body) .scroll-reveal:first-child {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

body:not(.admin-body) .carousel-track {
  scroll-behavior: smooth;
}

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

  body:not(.admin-body) .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final responsive clarity pass: compact mobile rhythm and cleaner component sizing. */
.spam-field input {
  width: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}

body:not(.admin-body) main {
  isolation: isolate;
}

body:not(.admin-body) .section,
body:not(.admin-body) .packages-section {
  padding-block: clamp(38px, 5vw, 58px);
}

body:not(.admin-body) .section-heading-row {
  gap: 18px;
}

body:not(.admin-body) .section-heading-row h2,
body:not(.admin-body) .section-intro h2,
body:not(.admin-body) .about-preview h2 {
  text-wrap: balance;
}

body:not(.admin-body) .portfolio-carousel {
  grid-column: span 3;
}

body:not(.admin-body) .carousel-track {
  grid-auto-columns: minmax(0, calc((100% - 52px) / 3));
}

body:not(.admin-body) .carousel-track .project-card {
  min-width: 0;
}

body:not(.admin-body) .project-card h3,
body:not(.admin-body) .blog-card h3,
body:not(.admin-body) .service-card h3 {
  text-wrap: balance;
}

body:not(.admin-body) .footer-grid {
  align-items: start;
}

body:not(.admin-body) .footer-grid > div {
  min-width: 0;
}

@media (max-width: 1040px) {
  body:not(.admin-body) .portfolio-carousel {
    grid-column: 1 / -1;
  }

  body:not(.admin-body) .carousel-track {
    grid-auto-columns: minmax(0, calc((100% - 26px) / 2));
  }

  body:not(.admin-body) .sub-hero {
    padding-block: 56px;
  }

  body:not(.admin-body) .sub-hero h1 {
    font-size: clamp(34px, 5.5vw, 50px);
  }

  body:not(.admin-body) .split,
  body:not(.admin-body) .two-col,
  body:not(.admin-body) .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) {
    line-height: 1.58;
  }

  body:not(.admin-body) .site-header {
    padding-inline: 14px;
  }

  body:not(.admin-body) .header-inner {
    min-height: 68px;
  }

  body:not(.admin-body) .brand {
    gap: 9px;
  }

  body:not(.admin-body) .brand img {
    width: 38px;
    height: 38px;
  }

  body:not(.admin-body) .brand strong {
    font-size: 17px;
  }

  body:not(.admin-body) .brand small {
    font-size: 10px;
  }

  body:not(.admin-body) .main-nav {
    top: 68px;
    right: 12px;
    left: 12px;
  }

  body:not(.admin-body) .hero {
    padding: 34px 18px 30px;
    gap: 22px;
  }

  body:not(.admin-body) .hero h1 {
    margin: 14px 0;
    font-size: clamp(31px, 8vw, 38px);
    line-height: 1.14;
  }

  body:not(.admin-body) .hero p {
    font-size: 15px;
    line-height: 1.68;
  }

  body:not(.admin-body) .hero-actions {
    margin-top: 22px;
  }

  body:not(.admin-body) .hero-art {
    max-width: 340px;
  }

  body:not(.admin-body) .sub-hero {
    padding: 38px 18px 34px;
  }

  body:not(.admin-body) .sub-hero h1 {
    margin: 12px 0;
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.16;
  }

  body:not(.admin-body) .sub-hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  body:not(.admin-body) .sub-hero-image img {
    height: 230px;
  }

  body:not(.admin-body) .section,
  body:not(.admin-body) .packages-section {
    padding: 34px 18px;
  }

  body:not(.admin-body) .section-inner,
  body:not(.admin-body) .about-preview {
    width: 100%;
    max-width: 100%;
  }

  body:not(.admin-body) .section-heading-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  body:not(.admin-body) .section-heading-row > a,
  body:not(.admin-body) .link-arrow {
    width: fit-content;
  }

  body:not(.admin-body) .packages-heading {
    gap: 10px;
    margin-bottom: 14px;
  }

  body:not(.admin-body) #services .package-card {
    padding: 30px 22px 22px;
  }

  body:not(.admin-body) #services .package-card p {
    max-width: 260px;
  }

  body:not(.admin-body) .feature-grid {
    gap: 18px;
  }

  body:not(.admin-body) .portfolio-carousel {
    width: 100%;
    margin-inline: 0;
  }

  body:not(.admin-body) .carousel-track {
    grid-auto-columns: 100%;
    gap: 18px;
    padding-bottom: 12px;
    scroll-padding-inline: 0;
  }

  body:not(.admin-body) .project-card {
    min-height: 0;
  }

  body:not(.admin-body) .project-card img {
    height: 176px;
  }

  body:not(.admin-body) .project-card div {
    min-height: 0;
    padding: 20px;
  }

  body:not(.admin-body) .about-preview {
    padding: 34px 18px;
  }

  body:not(.admin-body) .about-grid {
    gap: 22px;
  }

  body:not(.admin-body) .stats-strip {
    width: auto;
    margin: 20px 18px 30px;
    gap: 18px;
    padding: 26px 22px;
  }

  body:not(.admin-body) .stats-strip div {
    justify-content: flex-start;
  }

  body:not(.admin-body) .cta-band {
    gap: 22px;
    padding: 28px 22px;
  }

  body:not(.admin-body) .cta-band h2 {
    font-size: 28px;
  }

  body:not(.admin-body) #blog .blog-card,
  body:not(.admin-body) .blog-card.vertical {
    display: grid;
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) #blog .blog-card img,
  body:not(.admin-body) .blog-card.vertical img {
    width: 100%;
    height: 210px;
    min-height: 210px;
  }

  body:not(.admin-body) #blog .blog-card div,
  body:not(.admin-body) .blog-card.vertical div {
    min-height: 0;
    padding: 20px;
  }

  body:not(.admin-body) .wide-service {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  body:not(.admin-body) .contact-form-card,
  body:not(.admin-body) .content-card,
  body:not(.admin-body) .contact-card,
  body:not(.admin-body) .why-card {
    padding: 22px;
  }

  body:not(.admin-body) .contact-form-card input,
  body:not(.admin-body) .contact-form-card select,
  body:not(.admin-body) .contact-form-card textarea {
    min-height: 46px;
  }

  body:not(.admin-body) .contact-option-buttons {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .contact-direct-actions .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .newsletter-section {
    margin-top: 28px;
    padding: 16px 14px;
  }

  body:not(.admin-body) .newsletter-section .footer-newsletter {
    gap: 16px;
    padding: 18px;
  }

  body:not(.admin-body) .newsletter-section .footer-newsletter h2 {
    font-size: 25px;
  }

  body:not(.admin-body) .newsletter-form input[type="email"],
  body:not(.admin-body) .newsletter-form button {
    min-height: 50px;
  }

  body:not(.admin-body) .site-footer {
    padding: 34px 18px 22px;
  }

  body:not(.admin-body) .footer-grid {
    gap: 22px;
  }

  body:not(.admin-body) .footer-grid h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  body:not(.admin-body) .footer-grid p,
  body:not(.admin-body) .footer-grid a {
    font-size: 14px;
    line-height: 1.5;
  }

  body:not(.admin-body) .footer-grid a {
    margin: 7px 0;
  }

  body:not(.admin-body) .footer-bottom {
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
    font-size: 13px;
  }

  body:not(.admin-body) .footer-bottom a {
    margin: 0 14px 0 0;
  }
}

@media (max-width: 390px) {
  body:not(.admin-body) .hero h1,
  body:not(.admin-body) .sub-hero h1 {
    font-size: 30px;
  }

  body:not(.admin-body) .carousel-track {
    grid-auto-columns: 100%;
  }

  body:not(.admin-body) .btn,
  body:not(.admin-body) .header-cta {
    min-height: 46px;
    padding-inline: 16px;
  }
}

/* Nofomsok signature stripe: a selective brand mark for home blocks and cards. */
body:not(.admin-body) {
  --nof-signature-stripe: linear-gradient(90deg, var(--teal) 0%, var(--green) 58%, #facc15 100%);
}

body:not(.admin-body) #services .package-card,
body:not(.admin-body) #portfolio .project-card,
body:not(.admin-body) #blog .blog-card,
body:not(.admin-body) #testimonials .testimonial-card:nth-child(odd),
body:not(.admin-body) .about-preview,
body:not(.admin-body) .stats-strip,
body:not(.admin-body) .cta-band,
body:not(.admin-body) .newsletter-section .footer-newsletter {
  position: relative;
  overflow: hidden;
}

body:not(.admin-body) #services .package-card::before,
body:not(.admin-body) #portfolio .project-card::before,
body:not(.admin-body) #blog .blog-card::before,
body:not(.admin-body) #testimonials .testimonial-card:nth-child(odd)::before,
body:not(.admin-body) .about-preview::after,
body:not(.admin-body) .stats-strip::before,
body:not(.admin-body) .cta-band::before,
body:not(.admin-body) .newsletter-section .footer-newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  height: 4px;
  border-radius: inherit;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--nof-signature-stripe);
  pointer-events: none;
}

body:not(.admin-body) #services .package-card.is-featured {
  overflow: visible;
}

body:not(.admin-body) #services .package-card.is-featured::before {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

body:not(.admin-body) #services .package-card .package-badge {
  z-index: 7;
}

body:not(.admin-body) .stats-strip::before,
body:not(.admin-body) .cta-band::before,
body:not(.admin-body) .newsletter-section .footer-newsletter::before {
  height: 5px;
}

@media (max-width: 640px) {
  body:not(.admin-body) #services .package-card::before,
  body:not(.admin-body) #portfolio .project-card::before,
  body:not(.admin-body) #blog .blog-card::before,
  body:not(.admin-body) #testimonials .testimonial-card:nth-child(odd)::before,
  body:not(.admin-body) .about-preview::after,
  body:not(.admin-body) .stats-strip::before,
  body:not(.admin-body) .cta-band::before,
  body:not(.admin-body) .newsletter-section .footer-newsletter::before {
    height: 3px;
  }
}

/* Clean newsletter reference style: gradient only, no grid pattern or trademark stripe. */
body:not(.admin-body) .newsletter-section {
  background: linear-gradient(105deg, #126bff 0%, #00a6c8 45%, #00a86b 100%) !important;
  background-size: 100% 100% !important;
}

body:not(.admin-body) .newsletter-section .footer-newsletter {
  border-top: 0 !important;
}

body:not(.admin-body) .newsletter-section .footer-newsletter::before {
  content: none !important;
  display: none !important;
}

body:not(.admin-body) .floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #00a86b 0%, #0ccf7c 100%);
  box-shadow: 0 18px 34px rgba(0, 168, 107, 0.32), 0 0 0 8px rgba(0, 168, 107, 0.08);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: whatsappFloat 3.4s ease-in-out infinite;
}

body:not(.admin-body) .floating-whatsapp svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

body:not(.admin-body) .floating-whatsapp:hover,
body:not(.admin-body) .floating-whatsapp:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #00b977 0%, #126bff 100%);
  box-shadow: 0 22px 42px rgba(18, 107, 255, 0.24), 0 0 0 10px rgba(0, 168, 107, 0.12);
  transform: translateY(-4px);
}

@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .floating-whatsapp {
    animation: none;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
    font-size: 13px;
  }
}

body:not(.admin-body) .site-footer .socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

body:not(.admin-body) .site-footer .socials a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform: none;
}

body:not(.admin-body) .site-footer .socials a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

body:not(.admin-body) .site-footer .socials svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

body:not(.admin-body) .site-footer .social-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

body:not(.admin-body) #portfolio,
body:not(.admin-body) main .portfolio-grid {
  background:
    radial-gradient(circle at 8% 18%, rgba(18, 107, 255, 0.08), transparent 30%),
    radial-gradient(circle at 94% 82%, rgba(0, 168, 107, 0.09), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eefaff 48%, #f7fff9 100%);
}

body:not(.admin-body) #portfolio {
  overflow: hidden;
}

body:not(.admin-body) .portfolio-grid {
  align-items: stretch;
}

body:not(.admin-body) .portfolio-carousel,
body:not(.admin-body) .carousel-track {
  align-items: stretch;
}

body:not(.admin-body) .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
    linear-gradient(135deg, rgba(18, 107, 255, 0.05), rgba(0, 168, 107, 0.05));
}

body:not(.admin-body) .portfolio-grid .project-card,
body:not(.admin-body) .carousel-track .project-card {
  min-height: 100%;
}

body:not(.admin-body) .portfolio-grid .project-card {
  min-height: 580px;
}

body:not(.admin-body) .project-card > div {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

body:not(.admin-body) .project-card p {
  flex: 1 1 auto;
}

body:not(.admin-body) .project-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

body:not(.admin-body) .project-card-bottom span {
  margin: 0;
}

body:not(.admin-body) .project-card-bottom .project-link {
  margin-top: 0;
}

body:not(.admin-body) .packages-animated .packages-heading {
  opacity: 0;
  transform: translateY(18px);
}

body:not(.admin-body) .packages-animated .package-card {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  filter: blur(8px);
}

body:not(.admin-body) .packages-animated.packages-in-view .packages-heading {
  animation: packagesHeadingIn 0.55s ease forwards;
}

body:not(.admin-body) .packages-animated.packages-in-view .package-card {
  animation: packageCardIn 0.68s cubic-bezier(0.18, 0.84, 0.3, 1) forwards;
  animation-delay: calc(var(--package-index, 0) * 95ms + 90ms);
}

body:not(.admin-body) .packages-animated.packages-in-view .package-card.is-featured {
  animation-name: packageFeaturedIn;
}

@keyframes packagesHeadingIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes packageCardIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(8px);
  }
  65% {
    opacity: 1;
    transform: translateY(-7px) scale(1.015);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes packageFeaturedIn {
  0% {
    opacity: 0;
    transform: translateY(38px) scale(0.95);
    filter: blur(8px);
  }
  62% {
    opacity: 1;
    transform: translateY(-9px) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .packages-animated .packages-heading,
  body:not(.admin-body) .packages-animated .package-card {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

/* About page redesign. */
body:not(.admin-body) .about-page {
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.022) 1px, transparent 1px),
    #ffffff;
  background-size: 72px 72px, 72px 72px, auto;
}

body:not(.admin-body) .about-hero-pro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 96px);
  max-width: none;
  min-height: 620px;
  margin: 0 auto 26px;
  padding: 76px max(24px, calc((100vw - 1280px) / 2 + 24px)) 88px;
  overflow: hidden;
  border-bottom-left-radius: 52% 7%;
  border-bottom-right-radius: 52% 9%;
  background:
    radial-gradient(circle at 74% 30%, rgba(0, 168, 107, 0.09), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(18, 107, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.05);
}

body:not(.admin-body) .about-hero-pro::before,
body:not(.admin-body) .about-hero-pro::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 118px;
  height: 118px;
  opacity: 0.22;
  background:
    radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  color: var(--blue);
  pointer-events: none;
}

body:not(.admin-body) .about-hero-pro::before {
  right: max(70px, calc((100vw - 1280px) / 2 + 86px));
  top: 50px;
}

body:not(.admin-body) .about-hero-pro::after {
  right: max(32px, calc((100vw - 1280px) / 2 + 42px));
  bottom: 112px;
  color: var(--green);
}

body:not(.admin-body) .about-hero-copy,
body:not(.admin-body) .about-hero-visual {
  position: relative;
  z-index: 1;
}

body:not(.admin-body) .about-hero-copy h1 {
  max-width: 620px;
  margin: 12px 0 12px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

body:not(.admin-body) .about-hero-copy h1 span {
  display: block;
  color: var(--green);
}

body:not(.admin-body) .about-hero-copy h2 {
  display: inline-block;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  color: var(--navy);
  font-size: 24px;
}

body:not(.admin-body) .about-hero-copy p {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.85;
}

body:not(.admin-body) .about-hero-copy .hero-actions {
  margin-top: 28px;
}

body:not(.admin-body) .cv-download {
  background: #fff;
  border-color: rgba(11, 22, 51, 0.12);
  box-shadow: 0 16px 34px rgba(11, 22, 51, 0.1);
}

body:not(.admin-body) .about-hero-visual {
  min-height: 520px;
}

body:not(.admin-body) .about-hero-blob {
  position: absolute;
  inset: 34px 24px 30px 36px;
  border-radius: 42% 58% 46% 54% / 54% 38% 62% 46%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(140deg, rgba(0, 168, 107, 0.56), rgba(18, 107, 255, 0.58));
  background-size: 32px 32px, 32px 32px, auto;
  filter: saturate(1.08);
}

body:not(.admin-body) .about-hero-visual img:not(.page-mockup-image) {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 600px);
  margin: 0 auto;
  filter: drop-shadow(0 28px 38px rgba(11, 22, 51, 0.18));
}

body:not(.admin-body) .about-float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: 118px;
  padding: 18px 16px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 42px rgba(11, 22, 51, 0.14);
  backdrop-filter: blur(10px);
}

body:not(.admin-body) .about-float-card strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

body:not(.admin-body) .about-float-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

body:not(.admin-body) .about-float-card.years {
  left: 38px;
  top: 130px;
}

body:not(.admin-body) .about-float-card.success {
  left: 28px;
  top: 285px;
}

body:not(.admin-body) .about-upwork-mark {
  position: absolute;
  right: 34px;
  top: 275px;
  z-index: 4;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #12c86f, #00a86b);
  color: #fff;
  box-shadow: 0 24px 42px rgba(0, 168, 107, 0.28);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

body:not(.admin-body) .about-story {
  padding-top: 72px;
}

body:not(.admin-body) .about-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
}

body:not(.admin-body) .about-work-image {
  position: relative;
  display: grid;
  place-items: end center;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(229, 244, 255, 0.95), rgba(240, 255, 248, 0.95));
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 28px 64px rgba(11, 22, 51, 0.13);
}

body:not(.admin-body) .about-work-image::before,
body:not(.admin-body) .about-info-card::before,
body:not(.admin-body) .journey-line article::before,
body:not(.admin-body) .approach-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .about-work-image img {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 430px;
  padding: 28px 24px 0;
  object-fit: contain;
  object-position: center bottom;
}

body:not(.admin-body) .about-story-copy h2 {
  max-width: 560px;
  margin: 12px 0 20px;
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.12;
}

body:not(.admin-body) .about-story-copy h2::after,
body:not(.admin-body) .section-title-center h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--green);
}

body:not(.admin-body) .about-story-copy p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.8;
}

body:not(.admin-body) .signature {
  display: block;
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: 28px;
  font-style: italic;
  font-weight: 800;
}

body:not(.admin-body) .section-title-center {
  display: grid;
  justify-items: center;
  margin-bottom: 30px;
  text-align: center;
}

body:not(.admin-body) .section-title-center h2 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}

body:not(.admin-body) .section-title-center h2::after {
  margin-right: auto;
  margin-left: auto;
}

body:not(.admin-body) .section-title-center.small {
  margin-top: 38px;
  margin-bottom: 20px;
}

body:not(.admin-body) .about-card-grid {
  display: grid;
  gap: 24px;
}

body:not(.admin-body) .about-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body:not(.admin-body) .about-info-card,
body:not(.admin-body) .journey-line article,
body:not(.admin-body) .approach-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 48px rgba(11, 22, 51, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body:not(.admin-body) .about-info-card:hover,
body:not(.admin-body) .journey-line article:hover,
body:not(.admin-body) .approach-grid article:hover,
body:not(.admin-body) .tools-grid span:hover {
  border-color: rgba(18, 107, 255, 0.2);
  box-shadow: 0 30px 58px rgba(11, 22, 51, 0.12);
  transform: translateY(-5px);
}

body:not(.admin-body) .about-info-card {
  min-height: 330px;
  padding: 30px 24px 24px;
}

body:not(.admin-body) .about-info-card > svg,
body:not(.admin-body) .journey-line article > svg,
body:not(.admin-body) .approach-grid article > svg {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .about-info-card:nth-child(1) > svg,
body:not(.admin-body) .approach-grid article:nth-child(1) > svg {
  color: var(--green);
  background: rgba(0, 168, 107, 0.12);
}

body:not(.admin-body) .about-info-card:nth-child(3) > svg,
body:not(.admin-body) .approach-grid article:nth-child(3) > svg {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.12);
}

body:not(.admin-body) .about-info-card:nth-child(4) > svg,
body:not(.admin-body) .approach-grid article:nth-child(4) > svg {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.13);
}

body:not(.admin-body) .about-info-card h3,
body:not(.admin-body) .journey-line h3,
body:not(.admin-body) .approach-grid h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 19px;
}

body:not(.admin-body) .about-info-card p,
body:not(.admin-body) .journey-line p,
body:not(.admin-body) .approach-grid p {
  color: var(--muted);
  line-height: 1.65;
}

body:not(.admin-body) .about-skill {
  display: grid;
  gap: 8px;
  margin: 13px 0;
}

body:not(.admin-body) .about-skill span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-body) .about-skill i {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 107, 255, 0.1);
}

body:not(.admin-body) .about-skill i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
}

body:not(.admin-body) .about-big-number {
  display: block;
  margin: 8px 0 6px;
  color: var(--blue);
  font-size: 44px;
  line-height: 1;
}

body:not(.admin-body) .check-list.compact {
  gap: 10px;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px dashed rgba(11, 22, 51, 0.16);
}

body:not(.admin-body) .check-list.compact li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

body:not(.admin-body) .journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

body:not(.admin-body) .journey-line::before {
  content: "";
  position: absolute;
  top: 74px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 107, 255, 0.08), rgba(18, 107, 255, 0.45), rgba(0, 168, 107, 0.12));
}

body:not(.admin-body) .journey-line article {
  z-index: 1;
  min-height: 210px;
  padding: 26px 22px 22px;
}

body:not(.admin-body) .journey-line span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 900;
}

body:not(.admin-body) .about-stats {
  margin-top: 12px;
}

body:not(.admin-body) .approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body:not(.admin-body) .approach-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 16px;
  min-height: 138px;
  padding: 24px;
}

body:not(.admin-body) .approach-grid article > svg {
  grid-row: span 2;
  margin: 0;
}

body:not(.admin-body) .tools-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
}

body:not(.admin-body) .tools-grid span {
  position: relative;
  display: grid;
  min-height: 104px;
  place-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 16px 12px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(11, 22, 51, 0.07);
  font-weight: 800;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body:not(.admin-body) .tools-grid strong {
  display: grid;
  min-width: 52px;
  height: 52px;
  place-items: center;
  padding: 0 8px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.12), rgba(0, 168, 107, 0.14));
  color: #fff;
  font-size: 14px;
}

body:not(.admin-body) .tools-grid span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--nof-signature-stripe);
}

body:not(.admin-body) .tools-grid svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  stroke-width: 2.2;
}

body:not(.admin-body) .tool-icon.wordpress svg { color: #126bff; }
body:not(.admin-body) .tool-icon.elementor svg { color: #c2185b; }
body:not(.admin-body) .tool-icon.woo svg { color: #7c3aed; }
body:not(.admin-body) .tool-icon.astra svg { color: #00a86b; }
body:not(.admin-body) .tool-icon.crocoblock svg { color: #00b8c8; }
body:not(.admin-body) .tool-icon.rocket svg { color: #f59e0b; }
body:not(.admin-body) .tool-icon.figma svg { color: #8b5cf6; }
body:not(.admin-body) .tool-icon.cloudflare svg { color: #f97316; }

@media (max-width: 1100px) {
  body:not(.admin-body) .about-hero-pro,
  body:not(.admin-body) .about-story-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .about-hero-pro {
    min-height: 0;
  }

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

  body:not(.admin-body) .about-card-grid.four,
  body:not(.admin-body) .journey-line,
  body:not(.admin-body) .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .tools-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .about-hero-pro {
    gap: 26px;
    padding: 40px 18px 28px;
  }

  body:not(.admin-body) .about-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  body:not(.admin-body) .about-hero-copy h2 {
    font-size: 20px;
  }

  body:not(.admin-body) .about-hero-copy p {
    font-size: 15px;
  }

  body:not(.admin-body) .about-hero-visual {
    min-height: 360px;
  }

  body:not(.admin-body) .about-hero-blob {
    inset: 38px 8px 24px;
  }

  body:not(.admin-body) .about-float-card {
    width: 98px;
    padding: 13px 12px;
  }

  body:not(.admin-body) .about-float-card strong {
    font-size: 22px;
  }

  body:not(.admin-body) .about-float-card.years {
    left: 4px;
    top: 86px;
  }

  body:not(.admin-body) .about-float-card.success {
    left: 4px;
    top: 210px;
  }

  body:not(.admin-body) .about-upwork-mark {
    right: 8px;
    top: 210px;
    width: 64px;
    height: 64px;
    font-size: 25px;
  }

  body:not(.admin-body) .about-work-image img {
    min-height: 310px;
  }

  body:not(.admin-body) .about-card-grid.four,
  body:not(.admin-body) .journey-line,
  body:not(.admin-body) .approach-grid,
  body:not(.admin-body) .tools-grid {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .about-info-card {
    min-height: 0;
  }

  body:not(.admin-body) .journey-line::before {
    display: none;
  }

  body:not(.admin-body) .approach-grid article {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .tools-grid span {
    min-height: 76px;
  }
}

@media (max-width: 420px) {
  body:not(.admin-body) .about-hero-copy .hero-actions {
    align-items: stretch;
  }

  body:not(.admin-body) .about-hero-copy .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

/* Final rounded hero system for separate pages. */
body:not(.admin-body) .sub-hero {
  position: relative;
  isolation: isolate;
  margin: 0 0 28px;
  padding: 74px max(22px, calc((100vw - 1280px) / 2 + 24px)) 94px;
  overflow: hidden;
  border-bottom-left-radius: 50% 7%;
  border-bottom-right-radius: 50% 9%;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 168, 107, 0.11), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(18, 107, 255, 0.07), transparent 30%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.026) 1px, transparent 1px),
    linear-gradient(120deg, #ffffff 0%, #f8fcff 48%, #f2fff8 100%);
  background-size: auto, auto, 66px 66px, 66px 66px, auto;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06);
}

body:not(.admin-body) .sub-hero::before,
body:not(.admin-body) .sub-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 0;
  background:
    radial-gradient(currentColor 1.35px, transparent 1.35px);
  background-size: 12px 12px;
  pointer-events: none;
}

body:not(.admin-body) .sub-hero::before {
  top: 54px;
  right: max(62px, calc((100vw - 1280px) / 2 + 78px));
  width: 132px;
  height: 132px;
  color: rgba(18, 107, 255, 0.18);
}

body:not(.admin-body) .sub-hero::after {
  right: max(22px, calc((100vw - 1280px) / 2 + 30px));
  bottom: 86px;
  width: 92px;
  height: 92px;
  color: rgba(0, 168, 107, 0.16);
}

body:not(.admin-body) .sub-hero .section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1230px;
  padding: 0;
}

body:not(.admin-body) .sub-hero .section-inner::before,
body:not(.admin-body) .sub-hero .section-inner::after {
  display: none;
}

body:not(.admin-body) .sub-hero h1 {
  max-width: 760px;
  margin: 14px 0 16px;
  font-size: clamp(42px, 4.6vw, 64px);
}

body:not(.admin-body) .sub-hero p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.82;
}

body:not(.admin-body) .sub-hero-image,
body:not(.admin-body) .hero-mini-card {
  border-radius: 14px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  box-shadow: 0 28px 58px rgba(11, 22, 51, 0.12);
}

body:not(.admin-body) .sub-hero-image {
  background: #fff;
}

body:not(.admin-body) .sub-hero-image::before,
body:not(.admin-body) .hero-mini-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: var(--nof-signature-stripe);
  pointer-events: none;
}

body:not(.admin-body) .sub-hero-image img {
  height: clamp(260px, 28vw, 390px);
  filter: saturate(1.03);
}

body:not(.admin-body) .hero-mini-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.96));
  background-size: 36px 36px, 36px 36px, auto;
}

body:not(.admin-body) .hero-mini-card svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  border-radius: 14px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.12);
}

@media (max-width: 900px) {
  body:not(.admin-body) .sub-hero {
    padding-top: 58px;
    padding-bottom: 74px;
    border-bottom-left-radius: 44% 4%;
    border-bottom-right-radius: 44% 5%;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .sub-hero {
    margin-bottom: 14px;
    padding: 42px 18px 54px;
    border-bottom-left-radius: 34% 3%;
    border-bottom-right-radius: 34% 4%;
    background-size: 48px 48px, 48px 48px, 48px 48px, 48px 48px, auto;
  }

  body:not(.admin-body) .sub-hero::before {
    top: 28px;
    right: 16px;
    width: 72px;
    height: 72px;
  }

  body:not(.admin-body) .sub-hero::after {
    right: 20px;
    bottom: 38px;
    width: 56px;
    height: 56px;
  }

  body:not(.admin-body) .sub-hero h1 {
    font-size: clamp(32px, 8.8vw, 40px);
  }

  body:not(.admin-body) .sub-hero p {
    font-size: 15px;
  }
}

/* Stronger separated-page hero rounding. */
body:not(.admin-body) .sub-hero,
body:not(.admin-body) .about-hero-pro {
  border-bottom-left-radius: clamp(54px, 8vw, 132px);
  border-bottom-right-radius: clamp(54px, 8vw, 132px);
  box-shadow:
    inset 0 -1px 0 rgba(18, 107, 255, 0.06),
    0 22px 48px rgba(11, 22, 51, 0.045);
}

body:not(.admin-body) .sub-hero {
  margin-bottom: 42px;
  padding-bottom: 108px;
}

body:not(.admin-body) .about-hero-pro {
  margin-bottom: 42px;
  padding-bottom: 104px;
}

body:not(.admin-body) .sub-hero::before,
body:not(.admin-body) .about-hero-pro::before {
  opacity: 0.28;
}

body:not(.admin-body) .sub-hero::after,
body:not(.admin-body) .about-hero-pro::after {
  opacity: 0.24;
}

@media (max-width: 900px) {
  body:not(.admin-body) .sub-hero,
  body:not(.admin-body) .about-hero-pro {
    border-bottom-left-radius: 72px;
    border-bottom-right-radius: 72px;
  }

  body:not(.admin-body) .sub-hero {
    padding-bottom: 82px;
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .sub-hero,
  body:not(.admin-body) .about-hero-pro {
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    margin-bottom: 26px;
  }

  body:not(.admin-body) .sub-hero {
    padding-bottom: 62px;
  }
}

/* Final page mockup image precedence. */
body:not(.admin-body) .about-hero-visual img.page-mockup-image,
body:not(.admin-body) .services-hero-visual img.page-mockup-image,
body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
  position: relative;
  inset: auto;
  width: min(100%, 690px);
  height: auto;
  max-height: 560px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(11, 22, 51, 0.13));
}

body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image {
  filter: drop-shadow(0 26px 34px rgba(11, 22, 51, 0.16));
}

@media (max-width: 760px) {
  body:not(.admin-body) .about-hero-visual img.page-mockup-image,
  body:not(.admin-body) .services-hero-visual img.page-mockup-image,
  body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
  body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
  body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
  body:not(.admin-body) .contact-hero-visual img.page-mockup-image {
    width: min(100%, 360px);
    max-height: 330px;
  }
}

/* About page final cascade polish. */
body:not(.admin-body) .about-hero-pro {
  padding-top: clamp(62px, 6vw, 88px);
}

body:not(.admin-body) .about-hero-visual {
  isolation: isolate;
}

body:not(.admin-body) .about-hero-visual img:not(.page-mockup-image) {
  max-height: 620px;
  object-fit: contain;
}

body:not(.admin-body) .about-upwork-mark {
  right: 70px;
  top: 320px;
}

body:not(.admin-body) .about-work-image {
  min-height: 470px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  background:
    radial-gradient(circle at 78% 24%, rgba(18, 107, 255, 0.18), transparent 34%),
    radial-gradient(circle at 22% 72%, rgba(0, 168, 107, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(248, 252, 255, 0.98), rgba(239, 255, 248, 0.98));
  background-size: auto, auto, 38px 38px, 38px 38px, auto;
}

body:not(.admin-body) .about-work-image img {
  min-height: 470px;
  padding: 22px 22px 0;
  transform: scale(1.03);
}

body:not(.admin-body) .tools-grid span {
  align-content: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(18, 107, 255, 0.16), rgba(0, 168, 107, 0.16)) border-box;
  border-color: transparent;
}

body:not(.admin-body) .tool-logo-badge {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(11, 22, 51, 0.12);
}

body:not(.admin-body) .tool-logo-badge.wordpress { background: linear-gradient(135deg, #126bff, #0b8bdc); }
body:not(.admin-body) .tool-logo-badge.elementor { background: linear-gradient(135deg, #c2185b, #7c3aed); }
body:not(.admin-body) .tool-logo-badge.woo { background: linear-gradient(135deg, #7c3aed, #9b5cff); font-size: 14px; }
body:not(.admin-body) .tool-logo-badge.astra { background: linear-gradient(135deg, #00a86b, #12c86f); }
body:not(.admin-body) .tool-logo-badge.crocoblock { background: linear-gradient(135deg, #00b8c8, #126bff); font-size: 15px; }
body:not(.admin-body) .tool-logo-badge.rocket { background: linear-gradient(135deg, #f59e0b, #ff6b35); font-size: 15px; }
body:not(.admin-body) .tool-logo-badge.figma { background: linear-gradient(135deg, #8b5cf6, #f24e1e); }
body:not(.admin-body) .tool-logo-badge.cloudflare { background: linear-gradient(135deg, #f97316, #facc15); font-size: 15px; }

@media (max-width: 1100px) {
  body:not(.admin-body) .about-upwork-mark {
    right: 58px;
    top: 300px;
  }
}

@media (max-width: 720px) {
  body:not(.admin-body) .about-hero-pro {
    padding-top: 34px;
  }

  body:not(.admin-body) .about-hero-visual {
    min-height: 330px;
  }

  body:not(.admin-body) .about-hero-visual img:not(.page-mockup-image) {
    width: min(100%, 330px);
  }

  body:not(.admin-body) .about-upwork-mark {
    right: 12px;
    top: 228px;
  }

  body:not(.admin-body) .about-work-image,
  body:not(.admin-body) .about-work-image img {
    min-height: 330px;
  }

  body:not(.admin-body) .about-work-image img {
    padding: 18px 14px 0;
    transform: none;
  }

  body:not(.admin-body) .tools-grid span {
    min-height: 88px;
  }
}

/* About page mobile tools polish. */
@media (max-width: 720px) {
  body:not(.admin-body) .about-approach .section-title-center.small {
    margin-bottom: 22px;
  }

  body:not(.admin-body) .about-approach .section-title-center.small h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.08;
  }

  body:not(.admin-body) .about-approach .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 18px;
    padding-bottom: 18px;
  }

  body:not(.admin-body) .about-approach .tools-grid span {
    min-height: 112px !important;
    padding: 16px 10px 14px !important;
    gap: 9px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    box-shadow: 0 10px 24px rgba(11, 22, 51, 0.055) !important;
  }

  body:not(.admin-body) .about-approach .tools-grid span::before {
    height: 3px;
  }

  body:not(.admin-body) .about-approach .tool-logo-badge {
    width: 46px !important;
    height: 46px !important;
    border-radius: 15px !important;
    font-size: 15px !important;
    box-shadow: 0 10px 20px rgba(11, 22, 51, 0.1) !important;
  }

  body:not(.admin-body) .about-approach .tool-logo-badge.woo,
  body:not(.admin-body) .about-approach .tool-logo-badge.crocoblock,
  body:not(.admin-body) .about-approach .tool-logo-badge.rocket,
  body:not(.admin-body) .about-approach .tool-logo-badge.cloudflare {
    font-size: 12px !important;
  }
}

@media (max-width: 390px) {
  body:not(.admin-body) .about-approach .tools-grid {
    gap: 10px !important;
  }

  body:not(.admin-body) .about-approach .tools-grid span {
    min-height: 104px !important;
    padding-inline: 8px !important;
    font-size: 13px !important;
  }
}
/* Absolute final override: home Recent Work compact cards. */
body:not(.admin-body) #portfolio .carousel-track .project-card {
  display: grid !important;
  grid-template-rows: 168px 1fr !important;
  width: clamp(270px, 26vw, 320px) !important;
  min-height: 492px !important;
  max-height: 492px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 168px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: grid !important;
  grid-template-rows: auto auto auto !important;
  align-content: start !important;
  min-height: 0 !important;
  padding: 24px 26px 22px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  margin-bottom: 12px !important;
  font-size: 23px !important;
  line-height: 1.13 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  display: -webkit-box !important;
  flex: initial !important;
  min-height: 92px !important;
  max-height: 92px !important;
  margin: 0 !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 15.5px !important;
  line-height: 1.48 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: grid !important;
  flex-direction: initial !important;
  gap: 14px !important;
  align-self: end !important;
  margin-top: 16px !important;
  padding-top: 0 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 30px !important;
  margin: 0 !important;
  padding: 5px 13px !important;
  align-items: center !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  display: inline-flex !important;
  width: fit-content !important;
  min-width: 166px !important;
  min-height: 44px !important;
  margin-top: 0 !important;
  padding: 0 22px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

@media (max-width: 640px) {
  body:not(.admin-body) #portfolio .carousel-track .project-card {
    grid-template-rows: 150px 1fr !important;
    min-height: 456px !important;
    max-height: 456px !important;
  }

  body:not(.admin-body) #portfolio .project-card-media,
  body:not(.admin-body) #portfolio .project-card img {
    height: 150px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 20px !important;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    font-size: 21px !important;
  }

  body:not(.admin-body) #portfolio .project-card p {
    min-height: 86px !important;
    max-height: 86px !important;
    font-size: 14.5px !important;
  }
}
body:not(.admin-body) #portfolio .project-card-bottom {
  min-height: 0 !important;
  height: auto !important;
  justify-items: start !important;
}
body:not(.admin-body) #portfolio .carousel-track .project-card {
  grid-template-rows: 154px 1fr !important;
  min-height: 462px !important;
  max-height: 462px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 154px !important;
}

body:not(.admin-body) #portfolio .project-card p {
  min-height: 70px !important;
  max-height: 70px !important;
  -webkit-line-clamp: 3;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  margin-top: 14px !important;
}

/* Home Recent Work polish: clean cards, no category row, compact CTA. */
body:not(.admin-body) #portfolio .section-inner.feature-grid {
  gap: clamp(34px, 4.5vw, 64px) !important;
  align-items: center !important;
}

body:not(.admin-body) #portfolio .portfolio-carousel {
  padding: 16px 8px 24px !important;
  margin: -16px -8px -24px !important;
}

body:not(.admin-body) #portfolio .carousel-track {
  gap: clamp(22px, 2.6vw, 34px) !important;
  align-items: stretch !important;
  padding: 0 2px 16px !important;
}

body:not(.admin-body) #portfolio .carousel-track .project-card {
  grid-template-rows: 150px 1fr !important;
  width: clamp(280px, 25vw, 318px) !important;
  min-height: 428px !important;
  max-height: 428px !important;
  overflow: hidden !important;
  border: 1px solid rgba(18, 107, 255, 0.08) !important;
  border-radius: 0 0 10px 10px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgba(0, 184, 200, 0.85), rgba(18, 107, 255, 0.7), rgba(250, 204, 21, 0.86)) border-box !important;
  box-shadow: none !important;
}

body:not(.admin-body) #portfolio .project-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: none !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 150px !important;
}

body:not(.admin-body) #portfolio .project-card img {
  object-fit: cover !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  padding: 24px 25px 24px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  min-height: 58px !important;
  margin: 0 0 11px !important;
  font-size: 22px !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  min-height: 68px !important;
  max-height: 68px !important;
  margin: 0 !important;
  color: rgba(6, 22, 58, 0.78) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  -webkit-line-clamp: 3 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  display: flex !important;
  min-height: 0 !important;
  height: auto !important;
  margin-top: auto !important;
  padding-top: 22px !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

body:not(.admin-body) #portfolio .project-card-bottom span {
  display: none !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  min-width: 0 !important;
  min-height: 38px !important;
  width: auto !important;
  padding: 0 16px !important;
  gap: 8px !important;
  border: 1px solid rgba(0, 184, 200, 0.42) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #008f94 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 20px rgba(0, 184, 200, 0.08) !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link svg {
  width: 16px !important;
  height: 16px !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link:hover {
  border-color: transparent !important;
  background: linear-gradient(135deg, #126bff 0%, #00b86b 100%) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(18, 107, 255, 0.18) !important;
}

@media (max-width: 760px) {
  body:not(.admin-body) #portfolio .section-inner.feature-grid {
    gap: 24px !important;
  }

  body:not(.admin-body) #portfolio .carousel-track .project-card {
    width: min(86vw, 318px) !important;
    min-height: 424px !important;
    max-height: 424px !important;
  }

  body:not(.admin-body) #portfolio .project-card > div {
    padding: 22px 22px 23px !important;
  }

  body:not(.admin-body) #portfolio .project-card h3 {
    min-height: auto !important;
    font-size: 20px !important;
  }
}

/* Final Recent Work fit: compact enough to show three polished cards on desktop. */
body:not(.admin-body) #portfolio .section-inner.feature-grid {
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr) !important;
  gap: clamp(30px, 3.8vw, 54px) !important;
}

body:not(.admin-body) #portfolio .portfolio-carousel {
  grid-column: 2 !important;
  padding: 18px 6px 26px !important;
  margin: -18px -6px -26px !important;
}

body:not(.admin-body) #portfolio .carousel-track {
  grid-auto-columns: clamp(258px, 21.2vw, 270px) !important;
  gap: 22px !important;
  padding: 0 1px 18px !important;
}

body:not(.admin-body) #portfolio .carousel-track .project-card {
  grid-template-rows: 142px 1fr !important;
  width: clamp(258px, 21.2vw, 270px) !important;
  min-height: 410px !important;
  max-height: 410px !important;
}

body:not(.admin-body) #portfolio .project-card-media,
body:not(.admin-body) #portfolio .project-card img {
  height: 142px !important;
}

body:not(.admin-body) #portfolio .project-card > div {
  padding: 22px 22px 22px !important;
}

body:not(.admin-body) #portfolio .project-card h3 {
  min-height: 52px !important;
  margin-bottom: 10px !important;
  font-size: 20px !important;
  line-height: 1.15 !important;
}

body:not(.admin-body) #portfolio .project-card p {
  min-height: 66px !important;
  max-height: 66px !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body:not(.admin-body) #portfolio .project-card-bottom {
  padding-top: 18px !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link {
  min-height: 35px !important;
  padding: 0 14px !important;
  font-size: 12.5px !important;
  gap: 7px !important;
}

body:not(.admin-body) #portfolio .project-card-bottom .project-link svg {
  width: 15px !important;
  height: 15px !important;
}

/* Single project extra website CTAs. */
body:not(.admin-body) .project-visit-inline {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #126bff 0%, #00b86b 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 107, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body:not(.admin-body) .project-visit-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 168, 107, 0.22);
}

body:not(.admin-body) .project-visit-inline svg {
  width: 16px;
  height: 16px;
}

body:not(.admin-body) .project-visit-showcase {
  margin: 24px auto 0;
}

/* Single project spacing polish: center showcase CTA and normalize vertical rhythm. */
body:not(.admin-body) .project-case-page .project-overview-section,
body:not(.admin-body) .project-case-page .project-showcase-section {
  padding-top: clamp(42px, 5vw, 68px) !important;
  padding-bottom: clamp(42px, 5vw, 68px) !important;
}

body:not(.admin-body) .project-case-page .project-overview-card {
  margin-bottom: 0 !important;
}

body:not(.admin-body) .project-showcase-section .section-inner {
  display: grid !important;
  justify-items: center !important;
  row-gap: 22px !important;
}

/* Legal pages: keep Privacy and Terms consistent with inner-page design. */
body:not(.admin-body) .legal-page .legal-hero {
  overflow: hidden;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(246, 251, 255, 0.98), rgba(238, 255, 248, 0.9));
  background-size: 48px 48px, 48px 48px, auto;
}

body:not(.admin-body) .legal-page .legal-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--green);
  background: rgba(0, 168, 107, 0.11);
}

body:not(.admin-body) .legal-page .legal-hero .eyebrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

body:not(.admin-body) .legal-page .legal-hero h1 {
  max-width: 720px;
  color: var(--navy);
}

body:not(.admin-body) .legal-page .legal-hero h1::after {
  content: "";
  display: block;
  width: min(270px, 64vw);
  height: 16px;
  margin-top: -6px;
  background: linear-gradient(90deg, rgba(0, 168, 107, 0), var(--green), rgba(18, 107, 255, 0));
  border-radius: 50%;
  opacity: 0.85;
  transform: rotate(-1.5deg);
}

body:not(.admin-body) .legal-page .legal-hero .hero-mini-card {
  max-width: 410px;
  min-height: 300px;
  padding: 34px;
  border-color: rgba(0, 168, 107, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 255, 0.92)),
    linear-gradient(90deg, rgba(18, 107, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

body:not(.admin-body) .legal-page .legal-hero .hero-mini-card strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

body:not(.admin-body) .legal-page .legal-hero .hero-mini-card span {
  color: #344666;
  font-size: 15px;
  line-height: 1.75;
}

body:not(.admin-body) .legal-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

body:not(.admin-body) .legal-hero-badges em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(18, 107, 255, 0.08);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

body:not(.admin-body) .legal-page .legal-content-section {
  padding-top: clamp(44px, 6vw, 72px);
}

body:not(.admin-body) .legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(26px, 4vw, 42px);
  align-items: start;
  max-width: 1180px;
}

body:not(.admin-body) .legal-layout::before,
body:not(.admin-body) .legal-layout::after {
  display: none;
}

body:not(.admin-body) .legal-page .article-body {
  max-width: none;
  border-top: 4px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
}

body:not(.admin-body) .legal-article {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
}

body:not(.admin-body) .legal-article::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 26px;
  width: 88px;
  height: 88px;
  opacity: 0.14;
  background: radial-gradient(rgba(18, 107, 255, 0.55) 1.25px, transparent 1.25px);
  background-size: 11px 11px;
  pointer-events: none;
}

body:not(.admin-body) .legal-article-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 107, 255, 0.11);
}

body:not(.admin-body) .legal-article-head span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body:not(.admin-body) .legal-article-head strong {
  color: #50607c;
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-body) .legal-page .article-body h2 {
  margin-top: 34px;
  padding-top: 6px;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy);
}

body:not(.admin-body) .legal-page .article-body h2:first-child {
  margin-top: 0;
}

body:not(.admin-body) .legal-page .article-body p {
  color: #263755;
  font-weight: 520;
}

body:not(.admin-body) .legal-side-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-top: 4px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 18px 46px rgba(11, 22, 51, 0.08);
}

body:not(.admin-body) .legal-side-card > svg {
  width: 54px;
  height: 54px;
  padding: 14px;
  border-radius: 16px;
  color: var(--green);
  background: rgba(0, 168, 107, 0.12);
}

body:not(.admin-body) .legal-side-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

body:not(.admin-body) .legal-side-card p {
  margin: 0;
  color: #344666;
  font-size: 15px;
  line-height: 1.75;
}

body:not(.admin-body) .legal-side-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .legal-side-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #263755;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

body:not(.admin-body) .legal-side-card li svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--green);
}

body:not(.admin-body) .legal-side-card .btn {
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  body:not(.admin-body) .legal-layout {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .legal-side-card {
    position: relative;
    top: auto;
    order: -1;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .legal-page .legal-hero {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  body:not(.admin-body) .legal-page .legal-hero .hero-mini-card {
    min-height: 0;
    padding: 26px 22px;
  }

  body:not(.admin-body) .legal-page .legal-hero .hero-mini-card strong {
    font-size: 21px;
  }

  body:not(.admin-body) .legal-page .article-body,
  body:not(.admin-body) .legal-side-card {
    padding: 24px 20px;
  }

  body:not(.admin-body) .legal-article-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

body:not(.admin-body) .project-showcase-section .project-showcase-title {
  margin-bottom: 0 !important;
}

body:not(.admin-body) .project-showcase-section .project-showcase-frame {
  margin: 0 auto !important;
}

/* Blog listing page cards: richer hover, roomier copy, stronger headings. */
body:not(.admin-body) .blog-page #blog-posts.three-grid {
  gap: clamp(22px, 2.6vw, 30px);
  align-items: stretch;
  grid-auto-rows: 1fr;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0, 184, 200, 0.16);
  border-top: 4px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 253, 255, 0.96)) padding-box,
    var(--nof-signature-stripe) border-box;
  box-shadow: 0 18px 42px rgba(11, 22, 51, 0.075);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical:hover {
  border-color: rgba(0, 168, 107, 0.3);
  box-shadow: 0 30px 68px rgba(11, 22, 51, 0.14);
  transform: translate3d(0, -8px, 0);
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: clamp(214px, 16vw, 258px);
  min-height: clamp(214px, 16vw, 258px);
  transition: transform 0.34s ease, filter 0.34s ease;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical > div {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  min-height: 302px;
  flex-direction: column;
  padding: clamp(24px, 2.35vw, 30px);
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0;
  text-wrap: balance;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical h2 a {
  color: inherit;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical:hover h2 a {
  color: var(--blue);
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical p {
  margin: 0 0 20px;
  color: #263a58;
  font-size: 14px;
  font-weight: 520;
  line-height: 1.66;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical .post-date {
  margin-bottom: 6px;
}

body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical .blog-read-more {
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
}

@media (max-width: 760px) {
  body:not(.admin-body) .blog-page #blog-posts.three-grid {
    gap: 24px;
  }

  body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical:hover {
    transform: translate3d(0, -4px, 0);
  }

  body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical img {
    height: 204px;
    min-height: 204px;
  }

  body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical > div {
    min-height: 0;
    padding: 22px 20px 24px;
  }

  body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical h2 {
    font-size: 22px;
    line-height: 1.32;
  }

  body:not(.admin-body) .blog-page #blog-posts .blog-card.vertical p {
    font-size: 14px;
    line-height: 1.64;
  }
}

body:not(.admin-body) .project-visit-showcase {
  display: flex !important;
  margin: 0 auto !important;
}

body:not(.admin-body) .project-overview-copy .project-visit-inline {
  margin-top: 20px !important;
}

/* Unified green eyebrow pills, matching the contact-page top label. */
body:not(.admin-body) .eyebrow,
body:not(.admin-body) .eyebrow.blue,
body:not(.admin-body) .contact-pill,
body:not(.admin-body) .about-hero-copy .eyebrow,
body:not(.admin-body) .services-hero-copy .eyebrow {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 28px !important;
  padding: 6px 13px !important;
  align-items: center !important;
  gap: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(0, 168, 107, 0.12) !important;
  color: var(--green) !important;
  font-family: "Montserrat", "Poppins", sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

body:not(.admin-body) .eyebrow:not(.contact-pill)::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 2px, transparent 2.5px);
  opacity: 0.95;
}

body:not(.admin-body) .eyebrow:not(.contact-pill)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: -12px;
  margin-bottom: -9px;
  flex: 0 0 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-bottom-right-radius: 4px;
  transform: rotate(22deg);
}

body:not(.admin-body) .contact-pill svg,
body:not(.admin-body) .eyebrow svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  color: currentColor !important;
  stroke-width: 2.4 !important;
}

body:not(.admin-body) .project-case-page .project-detail-copy .eyebrow::after {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  display: block !important;
  height: 5px !important;
  border-radius: 0 0 4px 0 !important;
  background: transparent !important;
}

/* Header no-bounce fix: keep menu geometry identical across pages and scroll states. */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
}

body:not(.admin-body) .site-header {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 76px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(18, 107, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  transform: translateZ(0);
  backface-visibility: hidden;
}

body:not(.admin-body) .header-inner {
  display: grid !important;
  grid-template-columns: 242px minmax(0, 1fr) 224px !important;
  align-items: center !important;
  gap: 24px !important;
  width: min(1180px, calc(100% - 48px)) !important;
  min-height: 76px !important;
  margin: 0 auto !important;
  overflow: visible !important;
}

body:not(.admin-body) .brand {
  width: 242px !important;
  min-width: 242px !important;
  flex: initial !important;
  justify-self: start !important;
}

body:not(.admin-body) .main-nav {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  justify-content: center !important;
  justify-self: center !important;
  gap: clamp(14px, 1.6vw, 22px) !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-synthesis: none;
}

body:not(.admin-body) .main-nav a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: center !important;
  transform: translateZ(0);
}

body:not(.admin-body) .main-nav a:nth-child(3),
body:not(.admin-body) .main-nav a:nth-child(4) {
  min-width: 66px !important;
}

body:not(.admin-body) .main-nav a:nth-child(5) {
  min-width: 94px !important;
}

body:not(.admin-body) .header-cta {
  width: 224px !important;
  min-width: 224px !important;
  justify-self: end !important;
}

@media (max-width: 1120px) {
  body:not(.admin-body) .header-inner {
    grid-template-columns: 222px minmax(0, 1fr) 198px !important;
    gap: 16px !important;
    width: min(100%, calc(100% - 36px)) !important;
  }

  body:not(.admin-body) .brand {
    width: 222px !important;
    min-width: 222px !important;
  }

  body:not(.admin-body) .main-nav {
    gap: 12px !important;
    font-size: 12.5px !important;
  }

  body:not(.admin-body) .header-cta {
    width: 198px !important;
    min-width: 198px !important;
    padding-inline: 14px !important;
  }
}

@media (max-width: 900px) {
  body:not(.admin-body) .header-inner {
    grid-template-columns: minmax(0, 1fr) 44px !important;
  }

  body:not(.admin-body) .brand {
    width: auto !important;
    min-width: 0 !important;
  }

  body:not(.admin-body) .header-cta {
    display: none !important;
  }

  body:not(.admin-body) .nav-toggle {
    display: inline-flex !important;
  }

  body:not(.admin-body) .main-nav {
    position: fixed !important;
    top: 76px !important;
    right: 18px !important;
    left: 18px !important;
    display: flex !important;
    width: auto !important;
    max-height: calc(100vh - 96px) !important;
    padding: 14px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    border: 1px solid rgba(18, 107, 255, 0.08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 18px 44px rgba(11, 22, 51, 0.14) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(0, -8px, 0) !important;
    transition: opacity 0.2s ease, transform 0.2s ease !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  body:not(.admin-body) .main-nav.is-open {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body:not(.admin-body) .main-nav a,
  body:not(.admin-body) .main-nav a:nth-child(3),
  body:not(.admin-body) .main-nav a:nth-child(4),
  body:not(.admin-body) .main-nav a:nth-child(5) {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    padding: 0 10px !important;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .main-nav {
    width: auto !important;
    margin: 0 !important;
    justify-content: flex-start !important;
  }
}

/* Testimonials page review carousel. */
body:not(.admin-body) .more-review-carousel {
  overflow: hidden;
  width: 100%;
  padding: 2px 2px 22px;
  margin: 0 -2px;
}

body:not(.admin-body) .more-review-carousel .more-review-grid {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 84px) / 4);
  grid-template-columns: none !important;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body:not(.admin-body) .more-review-carousel .more-review-card {
  min-width: 0;
}

body:not(.admin-body) .review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

body:not(.admin-body) .review-arrow {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(18, 107, 255, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(11, 22, 51, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body:not(.admin-body) .review-arrow:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}

body:not(.admin-body) .review-arrow svg {
  width: 17px;
  height: 17px;
}

body:not(.admin-body) .review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

body:not(.admin-body) .review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 107, 255, 0.18);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body:not(.admin-body) .review-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: var(--blue);
}

body:not(.admin-body) .review-dots button:hover {
  transform: translateY(-1px);
  background: var(--green);
}

@media (max-width: 1040px) {
  body:not(.admin-body) .more-review-carousel .more-review-grid {
    grid-auto-columns: calc((100% - 28px) / 2);
  }
}

@media (max-width: 640px) {
  body:not(.admin-body) .more-review-carousel .more-review-grid {
    grid-auto-columns: 100%;
    gap: 18px;
  }

  body:not(.admin-body) .review-controls {
    gap: 10px;
  }
}

/* Hero design sync: apply portfolio hero typography and color language to about and services. */
body:not(.admin-body) .about-hero-pro,
body:not(.admin-body) .services-showcase-hero {
  overflow: hidden !important;
  background:
    radial-gradient(circle at 86% 45%, rgba(18, 107, 255, 0.1), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(0, 168, 107, 0.09), transparent 26%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.024) 1px, transparent 1px),
    linear-gradient(120deg, #fff 0%, #f8fbff 48%, #efffff 100%) !important;
  background-size: auto, auto, 66px 66px, 66px 66px, auto !important;
  border-bottom-left-radius: clamp(64px, 9vw, 150px) !important;
  border-bottom-right-radius: clamp(64px, 9vw, 150px) !important;
  box-shadow: inset 0 -1px 0 rgba(18, 107, 255, 0.06), 0 22px 48px rgba(11, 22, 51, 0.045) !important;
}

body:not(.admin-body) .about-hero-pro,
body:not(.admin-body) .services-showcase-hero {
  min-height: 610px !important;
  padding-top: clamp(70px, 6vw, 86px) !important;
  padding-bottom: clamp(78px, 8vw, 108px) !important;
}

body:not(.admin-body) .about-hero-copy,
body:not(.admin-body) .services-hero-copy {
  position: relative !important;
  z-index: 1 !important;
}

body:not(.admin-body) .about-hero-copy .eyebrow,
body:not(.admin-body) .services-hero-copy .eyebrow {
  display: inline-flex !important;
  width: fit-content !important;
  min-height: 26px !important;
  margin-bottom: 0 !important;
  padding: 5px 12px !important;
  align-items: center !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(18, 107, 255, 0.09), rgba(0, 168, 107, 0.09)) !important;
  color: var(--blue) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

body:not(.admin-body) .about-hero-copy h1,
body:not(.admin-body) .services-hero-copy h1 {
  max-width: 650px !important;
  margin: 14px 0 22px !important;
  color: var(--navy) !important;
  font-family: "Montserrat", "Poppins", sans-serif !important;
  font-size: clamp(46px, 4.6vw, 68px) !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body:not(.admin-body) .about-hero-copy h1 span,
body:not(.admin-body) .services-hero-copy h1 span {
  display: block !important;
  background: linear-gradient(90deg, var(--blue), var(--green)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

body:not(.admin-body) .about-hero-copy p,
body:not(.admin-body) .services-hero-copy p {
  max-width: 610px !important;
  margin: 0 0 28px !important;
  color: var(--muted) !important;
  font-size: 17px !important;
  line-height: 1.84 !important;
}

body:not(.admin-body) .about-hero-copy h2 {
  display: inline-block !important;
  margin: -6px 0 22px !important;
  padding-bottom: 8px !important;
  border-bottom: 3px solid var(--green) !important;
  color: var(--navy) !important;
  font-family: "Montserrat", "Poppins", sans-serif !important;
  font-size: clamp(19px, 1.6vw, 24px) !important;
  font-weight: 850 !important;
}

body:not(.admin-body) .services-hero-copy p::after {
  display: none !important;
}

@media (max-width: 760px) {
  body:not(.admin-body) .about-hero-copy h1,
  body:not(.admin-body) .services-hero-copy h1 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  body:not(.admin-body) .about-hero-pro,
  body:not(.admin-body) .services-showcase-hero {
    border-bottom-left-radius: 44px !important;
    border-bottom-right-radius: 44px !important;
  }
}

@media (max-width: 980px) {
  body:not(.admin-body) #portfolio .section-inner.feature-grid {
    grid-template-columns: 1fr !important;
  }

  body:not(.admin-body) #portfolio .portfolio-carousel {
    grid-column: 1 / -1 !important;
  }
}

/* Final eyebrow color override: keep top labels green like the contact page. */
body:not(.admin-body) .eyebrow,
body:not(.admin-body) .eyebrow.blue,
body:not(.admin-body) .about-hero-copy .eyebrow,
body:not(.admin-body) .services-hero-copy .eyebrow,
body:not(.admin-body) .portfolio-hero-copy .eyebrow,
body:not(.admin-body) .testimonial-hero-copy .eyebrow,
body:not(.admin-body) .blog-hero-copy .eyebrow,
body:not(.admin-body) .contact-pill {
  background: rgba(0, 168, 107, 0.12) !important;
  color: var(--green) !important;
}

/* Home hero headline color treatment. */
body:not(.admin-body) .hero-copy h1 .hero-gradient-word {
  display: inline !important;
  background: linear-gradient(90deg, #1677ff 0%, #0b9fd4 48%, #009a84 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

body:not(.admin-body) .hero-copy h1 .hero-green-word {
  display: inline !important;
  color: #009b7a !important;
  -webkit-text-fill-color: #009b7a !important;
}

/* Robust mobile navigation layer. */
@media (max-width: 900px) {
  body:not(.admin-body).mobile-menu-open {
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  body:not(.admin-body) .site-header {
    z-index: 9999 !important;
    contain: none !important;
    overflow: visible !important;
  }

  body:not(.admin-body) .header-inner {
    contain: none !important;
    overflow: visible !important;
  }

  body:not(.admin-body) .nav-toggle {
    position: relative !important;
    z-index: 10001 !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(18, 107, 255, 0.12) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(11, 22, 51, 0.08) !important;
  }

  body:not(.admin-body) .main-nav {
    z-index: 10000 !important;
    visibility: hidden !important;
    overflow-y: auto !important;
  }

  body:not(.admin-body) .main-nav.is-open,
  body:not(.admin-body) .site-header.menu-open .main-nav {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body:not(.admin-body) .main-nav a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border-radius: 10px !important;
  }
}

/* Final mobile menu: full-width animated drop panel that pushes content down. */
@media (max-width: 900px) {
  body:not(.admin-body) {
    --mobile-menu-height: 0px;
  }

  body:not(.admin-body) .site-header {
    height: auto !important;
    min-height: 76px !important;
    padding-block: 10px !important;
    transition: background-color 120ms ease, box-shadow 140ms ease, border-color 120ms ease !important;
  }

  body:not(.admin-body) .site-header.menu-open {
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom-color: rgba(0, 168, 107, 0.12) !important;
    box-shadow: 0 18px 46px rgba(11, 22, 51, 0.1) !important;
  }

  body:not(.admin-body) main {
    transition: margin-top 80ms cubic-bezier(.22, .72, .22, 1) !important;
  }

  body:not(.admin-body).mobile-menu-open main {
    margin-top: calc(var(--mobile-menu-height) + 14px) !important;
  }

  body:not(.admin-body) .header-inner {
    grid-template-columns: minmax(0, 1fr) 48px !important;
    align-items: center !important;
    height: auto !important;
    min-height: 76px !important;
    row-gap: 0 !important;
    padding: 0 !important;
  }

  body:not(.admin-body) .brand img {
    width: 42px !important;
    height: 42px !important;
  }

  body:not(.admin-body) .nav-toggle {
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease !important;
  }

  body:not(.admin-body) .site-header.menu-open .nav-toggle {
    border-color: rgba(0, 168, 107, 0.28) !important;
    background: linear-gradient(135deg, rgba(18, 107, 255, 0.08), rgba(0, 168, 107, 0.1)) !important;
    transform: translateY(1px) !important;
  }

  body:not(.admin-body) .main-nav {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px !important;
    overflow: hidden !important;
    border: 1px solid rgba(18, 107, 255, 0) !important;
    border-radius: 18px !important;
    background:
      linear-gradient(135deg, rgba(18, 107, 255, 0.055), rgba(0, 168, 107, 0.07)),
      rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 0 0 rgba(11, 22, 51, 0) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(0, -12px, 0) scale(.985) !important;
    transition:
      opacity 90ms ease,
      transform 110ms cubic-bezier(.22, .72, .22, 1),
      border-color 90ms ease,
      box-shadow 110ms ease !important;
    will-change: opacity, transform;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body:not(.admin-body) .main-nav.is-open,
  body:not(.admin-body) .site-header.menu-open .main-nav {
    max-height: calc(var(--mobile-menu-height) + 80px) !important;
    margin-top: 10px !important;
    padding: 12px !important;
    border-color: rgba(18, 107, 255, 0.1) !important;
    box-shadow: 0 16px 36px rgba(11, 22, 51, 0.08) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  body:not(.admin-body) .main-nav a,
  body:not(.admin-body) .main-nav a:nth-child(3),
  body:not(.admin-body) .main-nav a:nth-child(4),
  body:not(.admin-body) .main-nav a:nth-child(5) {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 14px !important;
    justify-content: flex-start !important;
    border: 1px solid rgba(18, 107, 255, 0.1) !important;
    border-radius: 14px !important;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, rgba(0, 184, 200, 0.26), rgba(0, 168, 107, 0.2)) border-box !important;
    color: #06163a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(11, 22, 51, 0.045) !important;
    transform: translate3d(0, 0, 0) !important;
    transition: transform 100ms ease, border-color 100ms ease, color 100ms ease, background-color 100ms ease !important;
  }

  body:not(.admin-body) .main-nav a:hover {
    border-color: rgba(0, 168, 107, 0.22) !important;
    color: #008b70 !important;
    transform: translate3d(0, -1px, 0) !important;
  }

  body:not(.admin-body) .main-nav a[aria-current="page"] {
    border-color: rgba(0, 168, 107, 0.28) !important;
    background: linear-gradient(135deg, rgba(18, 107, 255, 0.1), rgba(0, 168, 107, 0.13)) !important;
    color: #007d62 !important;
    overflow: hidden !important;
  }

  body:not(.admin-body) .main-nav a::after,
  body:not(.admin-body) .main-nav a[aria-current="page"]::after {
    left: 14px !important;
    right: auto !important;
    bottom: 5px !important;
    width: 30% !important;
    max-width: 94px !important;
    height: 3px !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 520px) {
  body:not(.admin-body) .site-header {
    padding-inline: 14px !important;
  }

  body:not(.admin-body) .header-inner {
    min-height: 70px !important;
    width: 100% !important;
  }

  body:not(.admin-body) .main-nav {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding-inline: 0 !important;
  }

  body:not(.admin-body) .main-nav.is-open,
  body:not(.admin-body) .site-header.menu-open .main-nav {
    margin-top: 8px !important;
    padding: 10px !important;
  }

  body:not(.admin-body) .main-nav a,
  body:not(.admin-body) .main-nav a:nth-child(3),
  body:not(.admin-body) .main-nav a:nth-child(4),
  body:not(.admin-body) .main-nav a:nth-child(5) {
    min-height: 44px !important;
    height: 44px !important;
  }

  body:not(.admin-body) .main-nav a::after,
  body:not(.admin-body) .main-nav a[aria-current="page"]::after {
    left: 13px !important;
    right: auto !important;
    width: 30% !important;
    max-width: 92px !important;
  }
}

/* About hero transition: join the rounded hero cleanly to the story section. */
body:not(.admin-body) .about-page > .about-hero-pro {
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

body:not(.admin-body) .about-page > .about-story.scroll-reveal {
  transform: none !important;
  will-change: auto !important;
}

/* Mobile-only hero visual layer: soft transparent image behind hero content. */
@media (max-width: 760px) {
  body:not(.admin-body) .about-hero-pro,
  body:not(.admin-body) .services-showcase-hero,
  body:not(.admin-body) .portfolio-showcase-hero,
  body:not(.admin-body) .testimonial-showcase-hero,
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-original-hero,
  body:not(.admin-body) .sub-hero {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    padding: 42px 18px 34px !important;
    overflow: hidden !important;
    isolation: isolate !important;
  }

  body:not(.admin-body) .about-hero-pro::before,
  body:not(.admin-body) .services-showcase-hero::before,
  body:not(.admin-body) .portfolio-showcase-hero::before,
  body:not(.admin-body) .testimonial-showcase-hero::before,
  body:not(.admin-body) .blog-showcase-hero::before,
  body:not(.admin-body) .contact-original-hero::before,
  body:not(.admin-body) .sub-hero::before {
    z-index: -2 !important;
  }

  body:not(.admin-body) .about-hero-pro::after,
  body:not(.admin-body) .services-showcase-hero::after,
  body:not(.admin-body) .portfolio-showcase-hero::after,
  body:not(.admin-body) .testimonial-showcase-hero::after,
  body:not(.admin-body) .blog-showcase-hero::after,
  body:not(.admin-body) .contact-original-hero::after,
  body:not(.admin-body) .sub-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.72) 100%),
      radial-gradient(circle at 82% 22%, rgba(18, 107, 255, 0.12), transparent 34%),
      radial-gradient(circle at 86% 68%, rgba(0, 168, 107, 0.1), transparent 32%) !important;
  }

  body:not(.admin-body) .about-hero-copy,
  body:not(.admin-body) .services-hero-copy,
  body:not(.admin-body) .portfolio-hero-copy,
  body:not(.admin-body) .testimonial-hero-copy,
  body:not(.admin-body) .blog-hero-copy,
  body:not(.admin-body) .contact-hero-copy,
  body:not(.admin-body) .sub-hero .section-inner > div:first-child {
    position: relative !important;
    z-index: 2 !important;
    max-width: 620px !important;
  }

  body:not(.admin-body) .about-hero-visual,
  body:not(.admin-body) .services-hero-visual,
  body:not(.admin-body) .portfolio-hero-visual,
  body:not(.admin-body) .testimonial-hero-visual,
  body:not(.admin-body) .blog-hero-visual,
  body:not(.admin-body) .contact-hero-visual,
  body:not(.admin-body) .sub-hero-image {
    position: absolute !important;
    inset: 118px -58px auto auto !important;
    z-index: 0 !important;
    width: min(86vw, 380px) !important;
    min-height: 0 !important;
    margin: 0 !important;
    opacity: 0.16 !important;
    pointer-events: none !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body:not(.admin-body) .about-hero-visual img.page-mockup-image,
  body:not(.admin-body) .services-hero-visual img.page-mockup-image,
  body:not(.admin-body) .portfolio-hero-visual img.page-mockup-image,
  body:not(.admin-body) .testimonial-hero-visual img.page-mockup-image,
  body:not(.admin-body) .blog-hero-visual img.page-mockup-image,
  body:not(.admin-body) .contact-hero-visual img.page-mockup-image,
  body:not(.admin-body) .sub-hero-image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    filter: saturate(1.08) contrast(1.03) !important;
  }

  body:not(.admin-body) .about-hero-visual::before,
  body:not(.admin-body) .services-hero-visual::before,
  body:not(.admin-body) .portfolio-hero-visual::before,
  body:not(.admin-body) .testimonial-hero-visual::before,
  body:not(.admin-body) .blog-hero-visual::before,
  body:not(.admin-body) .contact-hero-visual::before,
  body:not(.admin-body) .sub-hero-image::before {
    display: none !important;
  }

  body:not(.admin-body) .hero-actions {
    position: relative !important;
    z-index: 3 !important;
  }

  body:not(.admin-body) .about-hero-pro + .section,
  body:not(.admin-body) .services-showcase-hero + .section,
  body:not(.admin-body) .portfolio-showcase-hero + .section,
  body:not(.admin-body) .testimonial-showcase-hero + .section,
  body:not(.admin-body) .blog-showcase-hero + .section,
  body:not(.admin-body) .contact-original-hero + .section,
  body:not(.admin-body) .sub-hero + .section {
    padding-top: 20px !important;
  }
}

@media (max-width: 520px) {
  body:not(.admin-body) .about-hero-pro,
  body:not(.admin-body) .services-showcase-hero,
  body:not(.admin-body) .portfolio-showcase-hero,
  body:not(.admin-body) .testimonial-showcase-hero,
  body:not(.admin-body) .blog-showcase-hero,
  body:not(.admin-body) .contact-original-hero,
  body:not(.admin-body) .sub-hero {
    min-height: 0 !important;
    padding-top: 38px !important;
    padding-bottom: 30px !important;
  }

  body:not(.admin-body) .about-hero-visual,
  body:not(.admin-body) .services-hero-visual,
  body:not(.admin-body) .portfolio-hero-visual,
  body:not(.admin-body) .testimonial-hero-visual,
  body:not(.admin-body) .blog-hero-visual,
  body:not(.admin-body) .contact-hero-visual,
  body:not(.admin-body) .sub-hero-image {
    right: -74px !important;
    top: 122px !important;
    bottom: auto !important;
    width: min(92vw, 360px) !important;
    opacity: 0.15 !important;
  }
}

/* Final local presentation overrides. Keep these after legacy frontend rules. */
@media (min-width: 1121px) {
  body:not(.admin-body) .main-nav {
    gap: clamp(11px, 1.15vw, 17px) !important;
  }
}

body:not(.admin-body) .support-page .support-showcase-hero {
  margin-bottom: 0 !important;
}

body:not(.admin-body) .support-page .support-showcase-hero + .support-plans-section {
  margin-top: 0 !important;
  padding-top: min(58px, 5vw) !important;
  transform: none !important;
  will-change: auto !important;
}

body:not(.admin-body) .contact-info-list .contact-highlight,
body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused,
body:not(.admin-body) .contact-info-list .contact-highlight:hover,
body:not(.admin-body) .contact-info-list .contact-highlight:focus-within {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  animation: none;
}

body:not(.admin-body) .contact-info-list .contact-highlight svg {
  color: var(--blue);
  background: #edf4ff;
}

body:not(.admin-body) .contact-info-list .contact-highlight b {
  color: var(--navy);
  font-size: inherit;
}

body:not(.admin-body) .contact-info-list .contact-highlight a {
  display: inline-block;
  color: #d3283a;
  animation: contact-direct-motion 2.2s ease-in-out infinite;
}

body:not(.admin-body) .contact-info-list .contact-highlight-email a {
  font-size: clamp(15px, 1.05vw, 17px);
}

body:not(.admin-body) .contact-info-list .contact-highlight-phone a {
  font-size: clamp(18px, 1.3vw, 21px);
}

body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused a,
body:not(.admin-body) .contact-info-list .contact-highlight:hover a,
body:not(.admin-body) .contact-info-list .contact-highlight:focus-within a {
  color: #ad1e31;
  animation-play-state: paused;
}

@media (max-width: 760px) {
  body:not(.admin-body) .contact-info-list .contact-highlight,
  body:not(.admin-body) .contact-info-list .contact-highlight.is-hover-paused,
  body:not(.admin-body) .contact-info-list .contact-highlight:hover,
  body:not(.admin-body) .contact-info-list .contact-highlight:focus-within {
    margin: 0;
    padding: 0;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-email a {
    font-size: 15px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-phone a {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .contact-info-list .contact-highlight a {
    animation: none;
  }
}

/* Keep the full contact email visible on narrow screens. */
body:not(.admin-body) .contact-info-list .contact-highlight-email {
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 10px;
}

body:not(.admin-body) .contact-info-list .contact-highlight-email svg {
  width: 34px;
  height: 34px;
  padding: 8px;
}

body:not(.admin-body) .contact-info-list .contact-highlight-email a {
  max-width: none;
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(12px, 3.2vw, 15.5px);
  letter-spacing: 0;
}

@media (max-width: 700px) {
  body:not(.admin-body) .contact-info-list .contact-highlight-email {
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 7px;
    row-gap: 3px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-email svg {
    grid-row: 1;
    grid-column: 1;
    width: 31px;
    height: 31px;
    padding: 7px;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-email b {
    grid-row: 1;
    grid-column: 2;
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-email a {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 2px;
    font-size: clamp(13.5px, 3.9vw, 15.5px);
  }

  body:not(.admin-body) .contact-info-list .contact-highlight-phone b {
    font-size: 12.5px;
    line-height: 1.35;
  }
}

/* Final Support sizing and navigation consistency. */
@media (min-width: 1101px) {
  body:not(.admin-body) .support-page .support-showcase-hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr) !important;
    height: 759px !important;
    min-height: 759px !important;
    max-height: 759px !important;
  }

  body:not(.admin-body) .support-page .support-hero-visual {
    min-height: 565px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  body:not(.admin-body) .support-page .support-showcase-hero {
    height: max(1109px, calc(1058.15px + 5.65vw)) !important;
    min-height: max(1109px, calc(1058.15px + 5.65vw)) !important;
    max-height: max(1109px, calc(1058.15px + 5.65vw)) !important;
  }
}

@media (max-width: 760px) {
  body:not(.admin-body) .support-page .support-showcase-hero {
    height: 614px !important;
    min-height: 614px !important;
    max-height: 614px !important;
    padding-bottom: 14px !important;
  }

  body:not(.admin-body) .support-page .support-showcase-hero + .support-plans-section {
    padding-top: 12px !important;
  }
}

@media (max-width: 340px) {
  body:not(.admin-body) .support-page .support-showcase-hero {
    height: 704px !important;
    min-height: 704px !important;
    max-height: 704px !important;
  }
}

@media (min-width: 901px) {
  body:not(.admin-body) .main-nav {
    gap: 16px !important;
  }

  body:not(.admin-body) .main-nav a,
  body:not(.admin-body) .main-nav a:nth-child(3),
  body:not(.admin-body) .main-nav a:nth-child(4),
  body:not(.admin-body) .main-nav a:nth-child(5) {
    width: auto !important;
    min-width: 0 !important;
    padding-right: 3px !important;
    padding-left: 3px !important;
  }
}

/* CMS-managed promotional popup. */
body.site-popup-open {
  overflow: hidden;
}

body:not(.admin-body) .site-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 12px;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--site-popup-overlay, rgba(7, 22, 51, 0.72));
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px) saturate(0.82);
  -webkit-backdrop-filter: blur(3px) saturate(0.82);
  transition: opacity 220ms ease, visibility 220ms ease;
}

body:not(.admin-body) .site-popup-layer[hidden] {
  display: none;
}

body:not(.admin-body) .site-popup-layer.is-visible {
  opacity: 1;
  visibility: visible;
}

body:not(.admin-body) .site-popup-frame {
  position: relative;
  box-sizing: border-box;
  width: min(var(--site-popup-desktop-width, 481px), 100%, calc((100vh - 32px) * 1.047));
  max-width: 100%;
  padding: 2px;
  border-radius: var(--site-popup-radius, 28px);
  background: linear-gradient(105deg, #126bff 0%, #00a86b 58%, #18c6b6 100%);
  box-shadow: 0 30px 90px rgba(2, 13, 34, 0.32);
  transform: translateY(18px) scale(0.965);
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

body:not(.admin-body) .site-popup-layer.is-visible .site-popup-frame {
  transform: translateY(0) scale(1);
}

body:not(.admin-body) .site-popup-image-link {
  display: block;
  overflow: hidden;
  border-radius: max(6px, calc(var(--site-popup-radius, 28px) - 2px));
  background: #fff;
}

body:not(.admin-body) .site-popup-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 28px);
  border-radius: inherit;
  object-fit: contain;
}

body:not(.admin-body) .site-popup-frame--html {
  width: min(var(--site-popup-desktop-width, 560px), calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  background: linear-gradient(105deg, #126bff 0%, #00a86b 58%, #18c6b6 100%);
}

body:not(.admin-body) .site-popup-html {
  display: grid;
  gap: 17px;
  min-height: 100%;
  padding: clamp(34px, 5vw, 54px) clamp(24px, 4vw, 42px) clamp(24px, 4vw, 36px);
  border-radius: max(6px, calc(var(--site-popup-radius, 28px) - 2px));
  background:
    linear-gradient(145deg, rgba(224, 249, 244, 0.42), transparent 35%),
    #fff;
  color: #071936;
}

body:not(.admin-body) .site-popup-eyebrow {
  margin: 0;
  color: #008e7e;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

body:not(.admin-body) .site-popup-html h2 {
  max-width: 12em;
  margin: 0;
  color: #071936;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(27px, 3.2vw, 39px);
  font-weight: 800;
  line-height: 1.12;
}

body:not(.admin-body) .site-popup-html h2 span {
  display: block;
  background: linear-gradient(100deg, #047d85 0%, #00a86b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body:not(.admin-body) .site-popup-copy {
  margin: 0;
  color: #3e4e68;
  font-size: 15px;
  line-height: 1.65;
}

body:not(.admin-body) .site-popup-features {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:not(.admin-body) .site-popup-features li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #071936;
  font-size: 16px;
  font-weight: 700;
}

body:not(.admin-body) .site-popup-features svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(0, 142, 126, 0.48);
  border-radius: 50%;
  color: #008e7e;
}

body:not(.admin-body) .site-popup-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 310px);
  min-height: 52px;
  margin: 2px auto 0;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(100deg, #008f86, #00a86b);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 143, 134, 0.22);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

body:not(.admin-body) .site-popup-primary:hover,
body:not(.admin-body) .site-popup-primary:focus-visible {
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 143, 134, 0.3);
  transform: translateY(-2px);
}

body:not(.admin-body) .site-popup-primary svg {
  width: 19px;
  height: 19px;
}

body:not(.admin-body) .site-popup-later {
  width: max-content;
  min-height: 34px;
  margin: -5px auto 0;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: #126bff;
  cursor: pointer;
  font: 800 14px/1.2 "Montserrat", sans-serif;
}

body:not(.admin-body) .site-popup-later:hover,
body:not(.admin-body) .site-popup-later:focus-visible {
  color: #004fd0;
  text-decoration: underline;
}

body:not(.admin-body) .site-popup-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -3px 0 0;
  color: #65738a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

body:not(.admin-body) .site-popup-note svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
}

body:not(.admin-body) .site-popup-close {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 3px solid #fff;
  background: #e63946;
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  top: 1.3%;
  right: 3.5%;
  width: 48px;
  min-width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(116, 15, 27, 0.3);
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body:not(.admin-body) .site-popup-close:hover,
body:not(.admin-body) .site-popup-close:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 2px;
  background: #c9182b;
  box-shadow: 0 11px 28px rgba(116, 15, 27, 0.4);
  transform: scale(1.07);
}

body:not(.admin-body) .site-popup-frame--html .site-popup-close {
  top: 12px;
  right: 12px;
}

body:not(.admin-body) .site-popup-image-link:focus-visible {
  outline: 3px solid #126bff;
  outline-offset: 4px;
}

@media (max-width: 520px) {
  body:not(.admin-body) .site-popup-layer {
    padding: 8px;
  }

  body:not(.admin-body) .site-popup-frame {
    width: min(var(--site-popup-mobile-width, 320px), calc(100vw - 24px), calc((100vh - 32px) * 1.047));
    border-radius: min(var(--site-popup-radius, 28px), 22px);
  }

  body:not(.admin-body) .site-popup-frame--html {
    width: min(var(--site-popup-mobile-width, 320px), calc(100vw - 16px));
  }

  body:not(.admin-body) .site-popup-html {
    gap: 12px;
    padding: 31px 19px 20px;
  }

  body:not(.admin-body) .site-popup-eyebrow {
    font-size: 11px;
  }

  body:not(.admin-body) .site-popup-html h2 {
    padding-right: 20px;
    font-size: clamp(24px, 8vw, 31px);
  }

  body:not(.admin-body) .site-popup-copy {
    font-size: 13px;
    line-height: 1.55;
  }

  body:not(.admin-body) .site-popup-features {
    gap: 8px;
  }

  body:not(.admin-body) .site-popup-features li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    font-size: 14px;
  }

  body:not(.admin-body) .site-popup-features svg {
    width: 32px;
    height: 32px;
    padding: 7px;
  }

  body:not(.admin-body) .site-popup-primary {
    min-height: 46px;
    font-size: 13px;
  }

  body:not(.admin-body) .site-popup-close {
    top: 8px;
    right: 8px;
    width: 42px;
    min-width: 42px;
    border-width: 2px;
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.admin-body) .site-popup-layer,
  body:not(.admin-body) .site-popup-frame {
    transition: none;
  }
}

.admin-body .panel-popups {
  border-top-color: #00a984;
  background: linear-gradient(135deg, #f8fffd 0%, #f7fbff 100%);
}

.admin-body .popup-admin-grid {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-auto-flow: row;
}

.admin-body .popup-admin-object {
  min-height: 78px;
}

.admin-body .popup-type-field[hidden] {
  display: none !important;
}

.admin-body .admin-span-2 {
  grid-column: span 2;
}

.admin-body .popup-summary-grid,
.admin-body .popup-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-body .popup-summary-grid {
  margin: 14px 0 18px;
}

.admin-body .popup-summary-grid article,
.admin-body .popup-admin-stats span {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(0, 169, 132, 0.16);
  border-radius: 7px;
  background: #fff;
}

.admin-body .popup-summary-grid strong,
.admin-body .popup-admin-stats b {
  color: #007f6b;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.admin-body .popup-summary-grid span,
.admin-body .popup-admin-stats span {
  color: #43536b;
  font-size: 12px;
  font-weight: 700;
}

.admin-body .popup-admin-stats {
  margin: 8px 0 12px;
}

.admin-body .popup-admin-preview {
  width: min(100%, 430px);
  margin: 10px 0 16px;
  padding: 2px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(105deg, #126bff, #00a86b);
}

.admin-body .popup-admin-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.admin-body .popup-admin-html-preview {
  display: grid;
  gap: 7px;
  width: min(100%, 430px);
  margin: 10px 0 16px;
  padding: 18px;
  border: 1px solid rgba(0, 169, 132, 0.2);
  border-radius: 10px;
  background: #fff;
}

.admin-body .popup-admin-html-preview small {
  color: #008e7e;
  font-weight: 900;
}

.admin-body .popup-admin-html-preview strong {
  color: #071936;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.admin-body .popup-admin-html-preview strong span {
  color: #00a86b;
}

.admin-body .popup-admin-html-preview p {
  margin: 0;
  color: #52627a;
  font-size: 12px;
  line-height: 1.55;
}

.admin-body .panel-popups input[type="color"] {
  min-height: 40px;
  padding: 4px;
}

.admin-body .popup-log-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-body .popup-log-actions label {
  display: grid;
  gap: 5px;
}

.admin-body .popup-log-actions label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.admin-body .popup-log-actions input {
  width: 92px;
}

.admin-body .popup-event-table {
  overflow-x: auto;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 7px;
  background: #fff;
}

.admin-body .popup-event-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) minmax(90px, 0.7fr) minmax(110px, 0.8fr) minmax(150px, 1fr);
  gap: 10px;
  min-width: 620px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(18, 107, 255, 0.08);
  color: #43536b;
  font-size: 12px;
}

.admin-body .popup-event-row:last-child {
  border-bottom: 0;
}

.admin-body .popup-event-head {
  background: #f2f8ff;
  color: #071936;
}

@media (max-width: 760px) {
  .admin-body .popup-summary-grid,
  .admin-body .popup-admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-body .admin-span-2 {
    grid-column: auto;
  }
}

body:not(.admin-body) .support-plan-button,
body:not(.admin-body) .support-plan-card.accent-blue .support-plan-button,
body:not(.admin-body) .support-plan-card.accent-purple .support-plan-button {
  border-color: #00a86b;
  background: linear-gradient(100deg, #00a86b, #00bc88);
  box-shadow: 0 8px 18px rgba(0, 168, 107, 0.2);
}

/* Final overrides: CMS image SEO + form verification polish. */
.image-library {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)) !important;
  align-items: stretch;
}

.image-library .image-seo-card {
  min-height: 0 !important;
  align-items: stretch;
  gap: 9px;
}

.image-library .image-seo-card img {
  height: 118px !important;
}

.image-library .image-seo-card label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  color: #071936;
}

.image-library .image-seo-card input,
.image-library .image-seo-card textarea {
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(18, 107, 255, 0.14);
  border-radius: 8px;
  background: #f8fbff;
  font: inherit;
}

.image-library .image-seo-card textarea {
  resize: vertical;
}

body:not(.admin-body) .bot-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: inherit;
  font-weight: 800;
}

body:not(.admin-body) .bot-check input {
  width: 74px;
  min-height: 44px;
  text-align: center;
}

body:not(.admin-body) .newsletter-form {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

body:not(.admin-body) .newsletter-form .bot-check {
  min-height: 48px;
  padding: 0 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

body:not(.admin-body) .newsletter-form .bot-check input {
  min-height: 36px;
  border: 0;
  border-radius: 16px;
}

body:not(.admin-body) .contact-form-card .bot-check {
  align-items: center;
}

body:not(.admin-body) .post-mini-newsletter .bot-check {
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 760px) {
  body:not(.admin-body) .newsletter-form {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .newsletter-form .bot-check,
  body:not(.admin-body) .newsletter-form input[type="email"],
  body:not(.admin-body) .newsletter-form button {
    width: 100%;
  }
}

/* Mobile case-study hero must follow all legacy portfolio declarations. */
@media (max-width: 720px) {
  body:not(.admin-body) .project-case-page .project-detail-hero {
    padding: 38px 0 36px;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.08;
  }

  body:not(.admin-body) .project-case-page .project-detail-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  body:not(.admin-body) .project-case-page .project-detail-media {
    position: absolute;
    top: 82px;
    right: -58px;
    z-index: 0;
    width: 340px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    opacity: 0.1;
    pointer-events: none;
  }

  body:not(.admin-body) .project-case-page .project-detail-media img {
    width: 100%;
    height: auto;
    border-radius: 0;
    aspect-ratio: 16 / 9.8;
    object-fit: cover;
    filter: saturate(0.82) contrast(0.86) brightness(1.18);
  }
}

/* Services hub restructuring: nine build/improve cards, rebrand band, three move/care cards. */
body:not(.admin-body) .services-page .service-hub-groups {
  gap: clamp(48px, 6vw, 76px);
}

body:not(.admin-body) .services-page .service-hub-group {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(18, 107, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #fbfdff, #f5fffb);
  background-size: 52px 52px, 52px 52px, auto;
}

body:not(.admin-body) .services-page .service-group-heading {
  grid-template-columns: 128px minmax(0, 1fr);
  margin-bottom: 26px;
}

body:not(.admin-body) .services-page .service-group-heading h3 {
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.18;
}

body:not(.admin-body) .services-page .service-group-heading p {
  max-width: 790px;
}

body:not(.admin-body) .services-page .service-hub-group .services-design-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body:not(.admin-body) .services-page .service-design-card {
  min-height: 350px;
  padding: 27px 26px 24px;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(11, 22, 51, 0.065);
}

body:not(.admin-body) .services-page .service-design-card h3 {
  min-height: 49px;
  font-size: 19px;
}

body:not(.admin-body) .services-page .service-design-card p {
  -webkit-line-clamp: 5;
}

body:not(.admin-body) .services-page .service-learn-link {
  width: max-content;
  min-height: 38px;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

body:not(.admin-body) .service-rebrand-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  overflow: hidden;
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 107, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 168, 107, 0.028) 1px, transparent 1px),
    linear-gradient(120deg, #f4fbff, #f4fff9);
  background-size: 48px 48px, 48px 48px, auto;
}

body:not(.admin-body) .service-rebrand-copy h2 {
  max-width: 660px;
  margin: 17px 0 16px;
  color: var(--navy);
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.13;
}

body:not(.admin-body) .service-rebrand-copy > p {
  max-width: 680px;
  margin: 0;
  color: #314363;
  font-size: 16px;
  line-height: 1.75;
}

body:not(.admin-body) .service-rebrand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 27px;
}

body:not(.admin-body) .service-rebrand-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

body:not(.admin-body) .service-rebrand-points svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

body:not(.admin-body) .service-rebrand-image {
  min-width: 0;
  margin: 0;
}

body:not(.admin-body) .service-rebrand-image img {
  display: block;
  width: 100%;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 24px 46px rgba(11, 22, 51, 0.1);
}

body:not(.admin-body) .service-choice-section {
  padding-top: clamp(52px, 6vw, 80px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

body:not(.admin-body) .service-choice-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(34px, 5vw, 70px);
}

body:not(.admin-body) .service-choice-heading {
  position: sticky;
  top: 112px;
}

body:not(.admin-body) .service-choice-heading h2 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.15;
}

body:not(.admin-body) .service-choice-heading p {
  max-width: 470px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

body:not(.admin-body) .service-choice-accordion {
  display: grid;
  gap: 12px;
}

body:not(.admin-body) .service-choice-item {
  overflow: hidden;
  border: 1px solid rgba(18, 107, 255, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(11, 22, 51, 0.055);
}

body:not(.admin-body) .service-choice-item[open] {
  border-color: rgba(0, 168, 107, 0.28);
  box-shadow: 0 18px 34px rgba(0, 168, 107, 0.08);
}

body:not(.admin-body) .service-choice-item summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  color: var(--navy);
  cursor: pointer;
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

body:not(.admin-body) .service-choice-item summary::-webkit-details-marker {
  display: none;
}

body:not(.admin-body) .service-choice-item summary svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  color: var(--green);
  transition: transform 180ms ease;
}

body:not(.admin-body) .service-choice-item[open] summary svg {
  transform: rotate(45deg);
}

body:not(.admin-body) .service-choice-answer {
  padding: 0 20px 19px;
  border-top: 1px solid rgba(18, 107, 255, 0.07);
}

body:not(.admin-body) .service-choice-answer p {
  margin: 16px 0 0;
  color: #40516f;
  font-size: 14px;
  line-height: 1.75;
}

body:not(.admin-body) .service-choice-answer a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 107, 255, 0.25);
  text-underline-offset: 3px;
}

/* About tools: compact professional system instead of oversized mobile tiles. */
body:not(.admin-body) .about-approach .section-title-center.small {
  max-width: 720px;
  margin: 58px auto 28px;
}

body:not(.admin-body) .about-approach .section-title-center.small p {
  max-width: 650px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body:not(.admin-body) .about-approach .tools-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body:not(.admin-body) .about-approach .tool-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 104px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(18, 107, 255, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(11, 22, 51, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

body:not(.admin-body) .about-approach .tool-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--nof-signature-stripe);
  content: "";
}

body:not(.admin-body) .about-approach .tool-card:hover {
  border-color: rgba(0, 168, 107, 0.24);
  box-shadow: 0 20px 38px rgba(11, 22, 51, 0.095);
  transform: translateY(-4px);
}

body:not(.admin-body) .about-approach .tool-card > span {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 0;
  align-content: initial;
  place-items: initial;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: none;
}

body:not(.admin-body) .about-approach .tool-card > span::before {
  display: none;
}

body:not(.admin-body) .about-approach .tool-card > span:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body:not(.admin-body) .about-approach .tool-card b {
  color: var(--navy);
  font-family: "Montserrat", "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}

body:not(.admin-body) .about-approach .tool-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

body:not(.admin-body) .about-approach .tool-card .tool-logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(11, 22, 51, 0.1);
}

@media (max-width: 980px) {
  body:not(.admin-body) .services-page .service-hub-group .services-design-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.admin-body) .service-rebrand-band,
  body:not(.admin-body) .service-choice-shell {
    grid-template-columns: 1fr;
  }

  body:not(.admin-body) .service-choice-heading {
    position: static;
  }

  body:not(.admin-body) .about-approach .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body:not(.admin-body) .services-page .service-hub-group {
    padding: 24px 16px;
  }

  body:not(.admin-body) .services-page .service-group-heading {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  body:not(.admin-body) .services-page .service-hub-group .services-design-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body:not(.admin-body) .services-page .service-design-card {
    min-height: 316px;
    padding: 24px 20px 21px;
  }

  body:not(.admin-body) .service-rebrand-band {
    gap: 27px;
    padding: 28px 19px;
  }

  body:not(.admin-body) .service-rebrand-copy h2 {
    font-size: 29px;
  }

  body:not(.admin-body) .service-rebrand-points {
    display: grid;
  }

  body:not(.admin-body) .service-rebrand-copy .btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.admin-body) .service-choice-shell {
    gap: 27px;
  }

  body:not(.admin-body) .service-choice-item summary {
    min-height: 60px;
    padding: 15px 16px;
    font-size: 14px;
  }

  body:not(.admin-body) .service-choice-answer {
    padding: 0 16px 16px;
  }

  body:not(.admin-body) .about-approach .section-title-center.small {
    margin-top: 44px;
  }

  body:not(.admin-body) .about-approach .tools-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body:not(.admin-body) .about-approach .tool-card {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 82px;
    padding: 14px 15px;
  }

  body:not(.admin-body) .about-approach .tool-card .tool-logo-badge {
    width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
  }
}
