@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Jura:wght@400;500;600;700&display=swap');

/* Site-wide interaction and navigation overrides. */
html,
body {
  cursor: auto !important;
}

.cursor,
.cursor-ring {
  display: none !important;
}

.ticker {
  display: none !important;
}

header#siteHeader {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif !important;
}

h1 {
  font-weight: 900 !important;
}

h2 {
  font-weight: 700 !important;
}

.section-accent::before {
  display: none !important;
}

header#siteHeader .menu a,
header#siteHeader .btn-phone,
header#siteHeader .mobile-menu a,
header#siteHeader .mobile-services-toggle,
header#siteHeader .btn-sky {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

header#siteHeader .btn-sky {
  background: #0ea5e9 !important;
  border-radius: 999px !important;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

header#siteHeader .btn-sky:hover {
  background: #000 !important;
  transform: translateY(-5px) !important;
}

/* Homepage hero book showcase. */
.hero #heroRotatingWord {
  display: inline-block;
  min-width: 5.6em;
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero #heroRotatingWord.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.hero-popup-cta {
  width: fit-content;
  margin: 0 0 32px;
  padding: 15px 28px;
  border: 2px solid #000;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease, transform 0.3s ease;
}

.hero-popup-cta:hover {
  border-color: var(--sky);
  background: var(--sky);
  color: #fff;
  transform: translateY(-5px);
}

.hero-popup-cta:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.35);
  outline-offset: 4px;
}

/* Consistent site-wide CTA hover movement. */
.btn-sky:hover,
.btn-outline:hover,
.btn-white:hover,
.btn-white-outline:hover,
.btn-phone:hover,
.nav-book-cta:hover,
.hero-popup-cta:hover,
.live-chat-btn:hover {
  transform: translateY(-5px) !important;
}

.hero .hero-right {
  right: auto;
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 5% 48px 0;
}

.hero-book-showcase {
  position: relative;
  width: min(100%, 640px);
  height: 590px;
}

.hero-cover {
  position: absolute;
  margin: 0;
  width: clamp(180px, 18vw, 245px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #fff;
  border: 5px solid #fff;
  border-radius: 4px;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.hero-cover img,
.hero-right .hero-cover img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.hero-cover-left {
  left: 1%;
  top: 19%;
  z-index: 1;
  transform: rotate(-8deg);
}

.hero-cover-center {
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(200px, 20vw, 270px);
  transform: translate(-50%, -50%);
}

.hero-cover-right {
  right: 1%;
  top: 17%;
  z-index: 2;
  transform: rotate(7deg);
}

.hero-cover-left:hover {
  z-index: 4;
  transform: rotate(-8deg) translateY(-5px);
}

.hero-cover-center:hover {
  transform: translate(-50%, -50%) translateY(-5px);
}

.hero-cover-right:hover {
  z-index: 4;
  transform: rotate(7deg) translateY(-5px);
}

.hero-cover:hover {
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.3);
}

.hero .hero-book-badge2 {
  display: none;
}

@media (max-width: 1100px) and (min-width: 701px) {
  .hero .hero-right {
    min-height: 470px;
    max-height: none;
    padding: 24px 8% 54px;
  }

  .hero-book-showcase {
    width: min(100%, 570px);
    height: 430px;
  }

  .hero-cover {
    width: 190px;
  }

  .hero-cover-center {
    width: 215px;
  }
}

@media (max-width: 700px) {
  .hero .hero-right {
    display: none;
  }

  .hero #heroRotatingWord {
    min-width: 0;
  }

  .hero-popup-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero #heroRotatingWord,
  .hero-cover {
    transition: none;
  }
}

/* Featured books upsell carousel. */
.upsell-section {
  padding: 88px 0 !important;
  overflow: hidden;
  background: #f7f8fa;
}

.upsell-shell {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(0, 3fr);
  gap: 34px;
  align-items: center;
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}

.upsell-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-right: 12px;
}

.upsell-intro-icon {
  color: var(--text-primary);
}

.upsell-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--sky-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.upsell-intro h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(29px, 2.5vw, 42px);
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.upsell-intro p {
  max-width: 240px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.upsell-carousel {
  display: flex;
  gap: 18px;
  min-width: 0;
  padding: 10px 8px 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-padding-inline: 8px;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.upsell-carousel::-webkit-scrollbar {
  display: none;
}

.upsell-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3.15);
  min-width: 220px;
  aspect-ratio: 0.72;
  padding: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #cbd2db;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.upsell-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.upsell-card-wide > img {
  object-position: right center;
}

.upsell-card:hover,
.upsell-card:focus-visible {
  z-index: 2;
  border-color: var(--sky);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
  transform: translateY(-5px);
}

.upsell-card:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.28);
  outline-offset: 3px;
}

.upsell-cart {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translate(-50%, -44%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease,
    background-color 0.25s ease, color 0.25s ease;
}

.upsell-card:hover .upsell-cart,
.upsell-card:focus-visible .upsell-cart {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.upsell-card:hover .upsell-cart {
  color: #fff;
  background: var(--sky);
}

@media (max-width: 900px) {
  .upsell-section {
    padding: 64px 0 !important;
  }

  .upsell-shell {
    display: block;
    width: 100%;
  }

  .upsell-intro {
    width: calc(100% - 40px);
    margin: 0 auto 32px;
    padding: 0;
  }

  .upsell-intro p {
    max-width: 500px;
  }

  .upsell-carousel {
    gap: 14px;
    padding: 8px 20px 28px;
    scroll-padding-inline: 20px;
  }

  .upsell-card {
    flex-basis: calc((100% - 14px) / 1.15);
    min-width: 0;
    padding: 18px;
  }

  .upsell-cart {
    left: auto;
    top: auto;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    opacity: 1;
    transform: none;
  }

  .upsell-card:hover .upsell-cart,
  .upsell-card:focus-visible .upsell-cart {
    transform: none;
  }
}

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

  .upsell-card,
  .upsell-cart {
    transition: none;
  }
}

/* Site-wide light footer treatment. */
.footer {
  padding-bottom: 0 !important;
  color: #172033 !important;
  background: #f2f3f5 !important;
}

.footer .logo,
.footer .footer-col h5 {
  color: #111827 !important;
}

.footer .footer-brand p {
  color: #5f6877 !important;
}

.footer .footer-col:not(:first-child) {
  border-left: 1px solid #d5d9df;
  padding-left: 28px;
}

.footer .footer-col a,
.footer .footer-col ul li a {
  color: #5f6877 !important;
}

.footer .footer-col a:hover,
.footer .footer-col ul li a:hover {
  color: var(--sky-dark) !important;
}

.footer .footer-trust-logos span {
  border-color: #d4d8de !important;
  background: #fff !important;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 48px !important;
  padding: 22px 0 !important;
  color: #384152 !important;
  background: #d8dce1 !important;
  border-top: 1px solid #c8cdd4 !important;
  box-shadow: 0 0 0 100vmax #d8dce1;
  clip-path: inset(0 -100vmax);
}

.footer-bottom .footer-copyright,
.footer-bottom p {
  margin: 0;
  color: #384152 !important;
  font-size: 13px;
  line-height: 1.6;
}

.footer-credit-separator {
  margin: 0 4px;
  opacity: 0.45;
}

.pawdev-credit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: inherit;
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.pawdev-credit:hover,
.pawdev-credit:focus-visible {
  opacity: 0.6;
}

.pawdev-heart {
  color: #dc2626;
  font-size: 14px;
}

.footer-bottom-social {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #384152;
  background: transparent;
  border: 1px solid #aeb5bf;
  border-radius: 50%;
  transition: color 0.25s ease, background-color 0.25s ease,
    border-color 0.25s ease, transform 0.25s ease;
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  color: #fff;
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-3px);
}

.footer-social-icon:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.3);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .footer .footer-col:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center;
  }

  .footer-bottom-social {
    justify-content: center;
  }
}

/* Global sizing system. Keep section backgrounds full-width; constrain inner content. */
:root {
  --page-max-width: 1140px;
  --section-padding-y: 110px;
  --section-padding-x: 20px;
  --section-padding-y-mobile: 70px;
  --section-padding-x-mobile: 15px;
  --shadow-sm: -3px 5px 9px rgba(30, 31, 30, 0.1) !important;
  --shadow: -8px 10px 18px rgba(30, 31, 30, 0.14) !important;
  --shadow-lg: -14px 16px 28px rgba(30, 31, 30, 0.2) !important;
}

html,
body {
  font-family: 'Inter', sans-serif !important;
}

body,
p,
li,
label,
input,
select,
textarea {
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}

h1,
.hero h1,
.service-hero h1 {
  font-family: 'Inter', sans-serif !important;
  font-size: 70px !important;
  font-weight: 800 !important;
  line-height: 87px !important;
  text-transform: capitalize !important;
}

h2,
.title h2,
.cta-band h2 {
  font-family: 'Inter', sans-serif !important;
  font-size: 50px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

h3,
.card h3,
.pricing-card h3,
.contact-info h3,
.popup-box h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  text-transform: uppercase !important;
}

h4,
.faq-header h4,
.hero-form h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1.28 !important;
  text-transform: uppercase !important;
}

.btn-sky,
.btn-outline,
.btn-white,
.btn-white-outline,
.btn-phone,
.nav-book-cta,
.hero-popup-cta,
.live-chat-btn,
.contact-form button,
.popup-form button,
a[class*='btn-'],
button:not(.hamburger):not(.popup-close):not(.faq-toggle) {
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  line-height: 1.2 !important;
  padding: 12px 25px !important;
}

section {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  padding: var(--section-padding-y) var(--section-padding-x) !important;
}

.container,
.hero-wrap,
.service-hero-wrap,
.upsell-shell {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

header#siteHeader .nav {
  width: calc(100% - (var(--section-padding-x) * 2)) !important;
  max-width: var(--page-max-width) !important;
}

.hero-left {
  padding-left: 0 !important;
}

.hero-right {
  padding-right: 0 !important;
}

@media (max-width: 700px) {
  body,
  p,
  li,
  label,
  input,
  select,
  textarea {
    font-size: 17px !important;
    line-height: 28px !important;
  }

  h1,
  .hero h1,
  .service-hero h1 {
    font-size: clamp(40px, 11vw, 52px) !important;
    line-height: 1.12 !important;
  }

  h2,
  .title h2,
  .cta-band h2 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  h3,
  .card h3,
  .pricing-card h3,
  .contact-info h3,
  .popup-box h3 {
    font-size: 23px !important;
  }

  h4,
  .faq-header h4,
  .hero-form h4 {
    font-size: 20px !important;
  }

  section {
    padding: var(--section-padding-y-mobile) var(--section-padding-x-mobile) !important;
  }

  .container,
  .hero-wrap,
  .service-hero-wrap,
  .upsell-shell {
    width: 100% !important;
    max-width: var(--page-max-width) !important;
  }

  header#siteHeader .nav {
    width: calc(100% - (var(--section-padding-x-mobile) * 2)) !important;
    max-width: var(--page-max-width) !important;
  }
}

/* Header navigation cleanup and services mega menu. */
header#siteHeader .nav {
  position: relative !important;
}

header#siteHeader .menu {
  align-items: stretch !important;
  gap: 24px !important;
}

header#siteHeader .menu > a,
header#siteHeader .menu-trigger {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

header#siteHeader .menu-item-services {
  display: flex !important;
  align-items: stretch !important;
  position: static !important;
}

header#siteHeader .menu-item-services .menu-trigger {
  min-height: 100% !important;
}

header#siteHeader .menu-item-services .mega-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  display: grid !important;
  grid-template-columns: 30% 40% 30% !important;
  width: min(var(--page-max-width), calc(100vw - 40px)) !important;
  height: min(460px, calc(100vh - 120px)) !important;
  min-width: 0 !important;
  padding: 26px !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.18) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 10px) !important;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease !important;
  overflow: visible !important;
}

header#siteHeader .menu-item-services .mega-menu::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: -18px !important;
  height: 18px !important;
}

header#siteHeader .menu-item-services:hover .mega-menu,
header#siteHeader .menu-item-services:focus-within .mega-menu,
header#siteHeader .menu-item-services.is-open .mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

header#siteHeader .mega-menu-left,
header#siteHeader .mega-menu-middle,
header#siteHeader .mega-menu-right {
  min-width: 0 !important;
}

header#siteHeader .mega-menu-left {
  max-height: 100% !important;
  padding-right: 24px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(100, 116, 139, 0.5) transparent !important;
}

header#siteHeader .mega-menu-left::-webkit-scrollbar {
  width: 5px !important;
}

header#siteHeader .mega-menu-left::-webkit-scrollbar-track {
  background: transparent !important;
}

header#siteHeader .mega-menu-left::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.45) !important;
  border-radius: 999px !important;
}

header#siteHeader .mega-menu-middle {
  position: relative !important;
  max-height: 100% !important;
  padding: 6px 24px !important;
  border-left: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-right: 1px solid rgba(15, 23, 42, 0.1) !important;
  overflow: hidden !important;
}

header#siteHeader .mega-menu-right {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-height: 100% !important;
  padding-left: 24px !important;
  overflow: hidden !important;
}

header#siteHeader .mega-kicker {
  display: block !important;
  margin: 0 0 16px !important;
  color: #7f9288 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

header#siteHeader .mega-menu a::after {
  display: none !important;
}

header#siteHeader .mega-service-link,
header#siteHeader .mega-feature {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  color: #334155 !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transform: translateX(0) !important;
  transition: color 0.22s ease, background-color 0.22s ease,
    border-color 0.22s ease, transform 0.22s ease !important;
}

header#siteHeader .mega-service-link {
  padding: 10px 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

header#siteHeader .mega-icon {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  color: #0f766e !important;
  background: rgba(15, 118, 110, 0.08) !important;
  border-radius: 8px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

header#siteHeader .mega-icon svg,
header#siteHeader .mega-feature-icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

header#siteHeader .mega-service-link > span:last-child {
  min-width: 0 !important;
  overflow-wrap: anywhere !important;
}

header#siteHeader .mega-service-link:hover,
header#siteHeader .mega-service-link:focus-visible,
header#siteHeader .mega-service-link.is-active,
header#siteHeader .mega-feature:hover,
header#siteHeader .mega-feature:focus-visible {
  color: #0f172a !important;
  background: rgba(148, 163, 184, 0.3) !important;
  border-color: rgba(100, 116, 139, 0.38) !important;
  transform: translateX(5px) !important;
}

header#siteHeader .mega-service-link:focus-visible,
header#siteHeader .mega-feature:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.28) !important;
  outline-offset: 2px !important;
}

header#siteHeader .mega-feature-set {
  display: none !important;
  flex-direction: column !important;
  gap: 10px !important;
  max-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  padding-right: 3px !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(100, 116, 139, 0.45) transparent !important;
}

header#siteHeader .mega-feature-set::-webkit-scrollbar {
  width: 5px !important;
}

header#siteHeader .mega-feature-set::-webkit-scrollbar-track {
  background: transparent !important;
}

header#siteHeader .mega-feature-set::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.45) !important;
  border-radius: 999px !important;
}

header#siteHeader .mega-feature-set.is-active {
  display: flex !important;
}

header#siteHeader .mega-feature {
  align-items: flex-start !important;
  flex-direction: column !important;
  gap: 5px !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 14px 16px 14px 50px !important;
}

header#siteHeader .mega-feature::before {
  display: none !important;
}

header#siteHeader .mega-feature-icon {
  position: absolute !important;
  left: 16px !important;
  top: 15px !important;
  display: grid !important;
  place-items: center !important;
  width: 24px !important;
  height: 24px !important;
  color: #0369a1 !important;
  background: rgba(14, 165, 233, 0.1) !important;
  border-radius: 7px !important;
}

header#siteHeader .mega-feature-icon svg {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2 !important;
}

header#siteHeader .mega-feature > span:not(.mega-feature-icon) {
  color: #111827 !important;
  display: block !important;
  max-width: 100% !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  overflow-wrap: anywhere !important;
}

header#siteHeader .mega-feature small {
  color: #64748b !important;
  display: block !important;
  max-width: 100% !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere !important;
}

header#siteHeader .mega-feature.is-highlighted {
  background: rgba(255, 237, 213, 0.76) !important;
  border-color: rgba(251, 146, 60, 0.52) !important;
}

header#siteHeader .mega-feature.is-highlighted:hover,
header#siteHeader .mega-feature.is-highlighted:focus-visible {
  background: rgba(255, 237, 213, 0.9) !important;
  border-color: rgba(251, 146, 60, 0.72) !important;
}

header#siteHeader .mega-badge {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: -2px 0 2px !important;
  padding: 4px 9px !important;
  color: #9a3412 !important;
  background: #fb923c !important;
  border-radius: 999px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  overflow-wrap: normal !important;
}

header#siteHeader .mega-image-panel {
  display: none !important;
  width: min(100%, 245px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1.414 !important;
  max-height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #eef2f7 !important;
  border-radius: 14px !important;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08) !important;
}

header#siteHeader .mega-image-panel.is-active {
  display: block !important;
}

header#siteHeader .mega-image-panel img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}

header#siteHeader .mobile-menu > a {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

header#siteHeader .mobile-services-toggle {
  padding: 0 0 14px !important;
}

header#siteHeader .mobile-submenu a {
  position: relative !important;
  padding: 8px 10px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  transition: background-color 0.22s ease, border-color 0.22s ease,
    transform 0.22s ease !important;
}

header#siteHeader .mobile-submenu a:hover,
header#siteHeader .mobile-submenu a:focus-visible {
  background: rgba(148, 163, 184, 0.3) !important;
  border-color: rgba(100, 116, 139, 0.38) !important;
  transform: translateX(5px) !important;
}

@media (max-width: 1100px) {
  header#siteHeader .menu-item-services .mega-menu {
    display: none !important;
  }
}

/* Brand guide alignment: palette and typography from archonic brandguide.pdf. */
:root {
  --brand-blue: #0ea5e9;
  --brand-blue-deep: #066192;
  --brand-green: #006f53;
  --brand-ink: #1e1f1e;
  --brand-white: #ffffff;
  --brand-blue-80: #3eb7ed;
  --brand-blue-60: #6ec9f2;
  --brand-blue-40: #9fdcf6;
  --brand-blue-20: #cfedfb;
  --brand-green-20: #cce2dd;
  --brand-ink-soft: #4b4c4b;
  --brand-ink-muted: #686a68;
  --sky: var(--brand-blue);
  --sky-light: var(--brand-blue-20);
  --sky-mid: var(--brand-blue-40);
  --sky-dark: var(--brand-blue-deep);
  --sky-deep: var(--brand-ink);
  --text-primary: var(--brand-ink);
  --text-muted: var(--brand-ink-muted);
}

body,
p,
li,
label,
input,
select,
textarea {
  color: var(--brand-ink-soft) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}

h1,
.hero h1,
.service-hero h1 {
  color: var(--brand-ink) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 56px !important;
  font-weight: 500 !important;
  line-height: 64px !important;
  letter-spacing: 0 !important;
}

h2,
.title h2,
.cta-band h2 {
  color: var(--brand-ink) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 40px !important;
  font-weight: 500 !important;
  line-height: 48px !important;
  letter-spacing: 0 !important;
}

h3,
.card h3,
.pricing-card h3,
.contact-info h3,
.popup-box h3 {
  color: var(--brand-ink) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  line-height: 36px !important;
  letter-spacing: 0 !important;
}

h4,
.faq-header h4,
.hero-form h4 {
  color: var(--brand-ink) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  line-height: 32px !important;
  letter-spacing: 0 !important;
}

.section-kicker,
.eyebrow,
.upsell-kicker,
header#siteHeader .mega-kicker {
  color: var(--brand-green) !important;
  font-family: 'Jura', 'Inter', Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.08em !important;
}

.btn-sky,
.nav-book-cta,
.live-chat-btn,
.contact-form button,
.popup-form button {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  color: var(--brand-white) !important;
}

.btn-sky:hover,
.nav-book-cta:hover,
.live-chat-btn:hover,
.contact-form button:hover,
.popup-form button:hover {
  background: var(--brand-blue-deep) !important;
  border-color: var(--brand-blue-deep) !important;
}

.btn-outline,
.btn-white-outline,
.btn-phone,
.hero-popup-cta {
  border-color: var(--brand-blue) !important;
  color: var(--brand-blue-deep) !important;
}

.btn-outline:hover,
.btn-white-outline:hover,
.btn-phone:hover,
.hero-popup-cta:hover {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  color: var(--brand-white) !important;
}

header#siteHeader {
  background: var(--brand-white) !important;
  box-shadow: 0 8px 24px rgba(30, 31, 30, 0.12) !important;
}

header#siteHeader .logo,
header#siteHeader .menu > a,
header#siteHeader .menu-trigger,
header#siteHeader .mobile-menu > a,
header#siteHeader .mobile-services-toggle {
  color: var(--brand-ink) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
}

header#siteHeader .menu > a:hover,
header#siteHeader .menu-trigger:hover,
header#siteHeader .mobile-menu > a:hover,
header#siteHeader .mobile-services-toggle:hover {
  color: var(--brand-blue-deep) !important;
}

header#siteHeader .btn-sky {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  line-height: 1.1 !important;
}

header#siteHeader .btn-sky:hover {
  background: var(--brand-blue-deep) !important;
  border-color: var(--brand-blue-deep) !important;
}

header#siteHeader .menu-item-services .mega-menu {
  background: var(--brand-white) !important;
  border-color: rgba(6, 97, 146, 0.16) !important;
  box-shadow: 0 22px 52px rgba(30, 31, 30, 0.18) !important;
}

header#siteHeader .mega-menu-left {
  scrollbar-color: rgba(6, 97, 146, 0.45) transparent !important;
}

header#siteHeader .mega-menu-middle {
  border-left-color: rgba(6, 97, 146, 0.16) !important;
  border-right-color: rgba(6, 97, 146, 0.16) !important;
}

header#siteHeader .mega-service-link,
header#siteHeader .mega-feature {
  color: var(--brand-ink-soft) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  max-width: 100% !important;
  min-width: 0 !important;
  white-space: normal !important;
}

header#siteHeader .mega-service-link {
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.28 !important;
}

header#siteHeader .mega-icon {
  color: var(--brand-green) !important;
  background: rgba(0, 111, 83, 0.1) !important;
}

header#siteHeader .mega-feature-icon {
  color: var(--brand-blue-deep) !important;
  background: rgba(14, 165, 233, 0.12) !important;
}

header#siteHeader .mega-service-link:hover,
header#siteHeader .mega-service-link:focus-visible,
header#siteHeader .mega-service-link.is-active,
header#siteHeader .mega-feature:hover,
header#siteHeader .mega-feature:focus-visible {
  color: var(--brand-ink) !important;
  background: rgba(207, 237, 251, 0.78) !important;
  border-color: rgba(6, 97, 146, 0.3) !important;
}

header#siteHeader .mega-service-link:focus-visible,
header#siteHeader .mega-feature:focus-visible {
  outline-color: rgba(14, 165, 233, 0.32) !important;
}

header#siteHeader .mega-feature > span:not(.mega-feature-icon) {
  color: var(--brand-ink) !important;
  display: block !important;
  max-width: 100% !important;
  min-width: 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  word-break: normal !important;
}

header#siteHeader .mega-feature small {
  color: var(--brand-ink-muted) !important;
  display: block !important;
  max-width: 100% !important;
  min-width: 0 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  overflow-wrap: break-word !important;
  white-space: normal !important;
  word-break: normal !important;
}

header#siteHeader .mega-feature.is-highlighted {
  background: rgba(204, 226, 221, 0.72) !important;
  border-color: rgba(0, 111, 83, 0.34) !important;
}

header#siteHeader .mega-feature.is-highlighted:hover,
header#siteHeader .mega-feature.is-highlighted:focus-visible {
  background: rgba(204, 226, 221, 0.92) !important;
  border-color: rgba(0, 111, 83, 0.52) !important;
}

header#siteHeader .mega-badge {
  background: var(--brand-green) !important;
  color: var(--brand-white) !important;
  font-family: 'Jura', 'Inter', Arial, Helvetica, sans-serif !important;
}

header#siteHeader .mobile-submenu a {
  color: var(--brand-ink-soft) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
}

header#siteHeader .mobile-submenu a:hover,
header#siteHeader .mobile-submenu a:focus-visible {
  background: rgba(207, 237, 251, 0.78) !important;
  border-color: rgba(6, 97, 146, 0.3) !important;
}

.platform-strip .platform-item h4 {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.platform-strip .platform-item p {
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.process-step h3 {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.process-step p {
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.process-step .step-num,
.process-step .card-num {
  transition: color 0.3s ease, opacity 0.3s ease !important;
}

.process-step:hover .step-num,
.process-step:hover .card-num {
  color: rgba(30, 31, 30, 0.18) !important;
  opacity: 1 !important;
}

.footer {
  color: var(--brand-ink) !important;
  background: #f4f8f7 !important;
}

.footer .logo,
.footer .footer-col h5 {
  color: var(--brand-ink) !important;
}

.footer .footer-col a:hover,
.footer .footer-col ul li a:hover,
.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  background: var(--brand-blue-deep) !important;
  border-color: var(--brand-blue-deep) !important;
  color: var(--brand-white) !important;
}

.cta-band h2,
.cta-band p,
.cta-band .cta-badge {
  color: var(--brand-white) !important;
}

.cta-band,
.numbers-section,
.service-hero,
.pricing-card.featured,
.contact-info {
  color: var(--brand-white) !important;
}

.cta-band h1,
.cta-band h2,
.cta-band h3,
.cta-band h4,
.cta-band h5,
.cta-band h6,
.cta-band p,
.cta-band li,
.cta-band small,
.cta-band span:not(.btn-sky):not(.btn-outline):not(.btn-white):not(.btn-white-outline),
.numbers-section h1,
.numbers-section h2,
.numbers-section h3,
.numbers-section h4,
.numbers-section h5,
.numbers-section h6,
.numbers-section p,
.numbers-section li,
.numbers-section small,
.numbers-section span,
.numbers-section .number-count,
.numbers-section .number-label,
.numbers-section .number-desc,
.service-hero h1,
.service-hero h2,
.service-hero h3,
.service-hero h4,
.service-hero h5,
.service-hero h6,
.service-hero p,
.service-hero li,
.service-hero small,
.service-hero span:not(.btn-sky):not(.btn-outline):not(.btn-white):not(.btn-white-outline),
.pricing-card.featured h1,
.pricing-card.featured h2,
.pricing-card.featured h3,
.pricing-card.featured h4,
.pricing-card.featured h5,
.pricing-card.featured h6,
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured small,
.pricing-card.featured span:not(.btn-sky):not(.btn-outline):not(.btn-white):not(.btn-white-outline),
.pricing-card.featured .price-note,
.contact-info h1,
.contact-info h2,
.contact-info h3,
.contact-info h4,
.contact-info h5,
.contact-info h6,
.contact-info p,
.contact-info li,
.contact-info small,
.contact-info span:not(.btn-sky):not(.btn-outline):not(.btn-white):not(.btn-white-outline) {
  color: var(--brand-white) !important;
}

.cta-band .btn-white,
.pricing-card.featured .btn-white {
  color: var(--brand-blue-deep) !important;
}

.cta-band .btn-white-outline,
.pricing-card.featured .btn-white-outline {
  color: var(--brand-white) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-grid,
.grid-3:has(.pricing-card) {
  align-items: stretch !important;
}

.pricing-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.pricing-card .pricing-list,
.pricing-card ul {
  flex: 1 1 auto !important;
}

.pricing-card > a[class*='btn-'],
.pricing-card > .btn-sky,
.pricing-card > .btn-white,
.pricing-card > .btn-outline,
.pricing-card > .btn-white-outline {
  margin-top: auto !important;
}

#stickyBanner,
#stickyBanner *,
#stickyBanner p,
#stickyBanner strong {
  color: var(--brand-white) !important;
}

#stickyBanner a {
  text-decoration: none !important;
}

.portfolio-item:is(a),
a.portfolio-item {
  color: inherit !important;
  text-decoration: none !important;
}

#testimonials .testi-card,
#testimonials .testi-card *,
#testimonials .author-name,
#testimonials .author-role {
  font-family: 'Inter Display', 'Inter', Arial, Helvetica, sans-serif !important;
}

#testimonials .testi-card {
  font-size: 14px !important;
}

#testimonials .testi-card blockquote,
#testimonials .testi-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
  font-style: normal !important;
}

#testimonials .stars {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
}

#testimonials .testimonial-arrow {
  display: inline-grid !important;
  place-items: center !important;
  color: var(--brand-blue-deep) !important;
  background: var(--brand-white) !important;
  border-color: rgba(6, 97, 146, 0.35) !important;
  overflow: visible !important;
}

#testimonials .testimonial-arrow:hover {
  color: var(--brand-white) !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
}

#testimonials .testimonial-arrow svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  stroke: currentColor !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.cover-portfolio .title h2 {
  color: var(--brand-white) !important;
}

.cover-portfolio .title p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.service-hero {
  color: var(--brand-ink) !important;
}

.service-hero h1,
.service-hero h2,
.service-hero h3,
.service-hero h4,
.service-hero h5,
.service-hero h6,
.service-hero p,
.service-hero li,
.service-hero small,
.service-hero span:not(.tag-dot):not(.btn-sky):not(.btn-outline):not(.btn-white):not(.btn-white-outline),
.service-hero .hero-panel,
.service-hero .hero-panel *:not(button):not(.btn-sky):not(.btn-outline) {
  color: var(--brand-ink) !important;
}

.service-hero .hero-sub,
.service-hero .proof-card span,
.service-hero .hero-panel p,
.service-hero .hero-panel .privacy {
  color: var(--brand-ink-soft) !important;
}

.service-hero .hero-tag {
  color: var(--brand-blue-deep) !important;
}

.service-hero h1 em {
  color: var(--brand-white) !important;
}

.service-hero .hero-panel h2 {
  font-size: 27px !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
}

.service-hero .hero-panel p,
.service-hero .hero-panel .privacy {
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.service-hero .hero-panel label {
  font-size: 11px !important;
  line-height: 1.35 !important;
  letter-spacing: 0.5px !important;
}

.service-hero .hero-panel input,
.service-hero .hero-panel select,
.service-hero .hero-panel textarea {
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.service-hero .hero-panel button,
.service-hero .hero-panel .btn-sky,
.service-hero .hero-panel .btn-outline {
  font-size: 13px !important;
  line-height: 1.25 !important;
}

/* Replace earlier blue outer glows with a quieter gray cast from bottom-left. */
.hero-panel,
.hero-book-card,
.mega-menu,
.submenu,
.mobile-menu,
.proof-card,
.trust-grid,
.card:hover,
.process-step,
.process-step:hover,
.benefit-panel,
.pricing-card,
.pricing-card:hover,
.pricing-card.featured,
.pricing-card.featured:hover,
.faq-item,
.contact-grid,
.blog-card:hover,
.testi-card:hover,
.portfolio-item:hover,
.genre-cover,
.browser-mockup {
  box-shadow: var(--shadow-lg) !important;
}

.proof-card,
.trust-grid,
.process-step,
.pricing-card,
.faq-item {
  box-shadow: var(--shadow-sm) !important;
}

header#siteHeader.scrolled {
  box-shadow: var(--shadow) !important;
}

.service-hero::before,
.hero::before {
  top: auto !important;
  right: auto !important;
  bottom: -210px !important;
  left: -170px !important;
  width: 380px !important;
  height: 380px !important;
  background: radial-gradient(circle, rgba(30, 31, 30, 0.16) 0%, rgba(30, 31, 30, 0.1) 28%, transparent 48%) !important;
}

.service-hero::after,
.hero::after {
  top: auto !important;
  right: auto !important;
  bottom: -150px !important;
  left: 4% !important;
  width: 280px !important;
  height: 280px !important;
  background: radial-gradient(circle, rgba(30, 31, 30, 0.1) 0%, rgba(30, 31, 30, 0.06) 24%, transparent 45%) !important;
}

.btn-sky:hover,
.live-chat-btn:hover,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: -6px 8px 14px rgba(30, 31, 30, 0.16) !important;
}

.faq-list .faq-header h4,
.faq-item .faq-header h4 {
  font-size: 17px !important;
  line-height: 1.35 !important;
}

.faq-item {
  border: 1px solid rgba(14, 165, 233, 0.15) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.faq-list {
  display: grid !important;
  gap: 10px !important;
  row-gap: 10px !important;
}

.faq-item + .faq-item {
  margin-top: 10px !important;
}

.faq-item .faq-header {
  padding-left: calc(26px + 10px) !important;
  padding-right: calc(26px + 10px) !important;
}

.faq-item .faq-body {
  background: rgba(216, 220, 225, 0.28) !important;
}

.faq-item .faq-body p {
  padding-top: 22px !important;
  padding-left: calc(26px + 10px) !important;
  padding-right: calc(26px + 10px) !important;
  padding-bottom: 0 !important;
}

.cover-art-slider {
  background: linear-gradient(180deg, var(--brand-white) 0%, #f8fafc 100%) !important;
  color: var(--brand-ink) !important;
}

.cover-art-head h2 {
  color: var(--brand-ink) !important;
}

.cover-art-head p {
  color: var(--brand-ink-soft) !important;
}

.cover-slide-card {
  color: var(--brand-ink) !important;
  text-decoration: none !important;
}

.cover-slide-image {
  aspect-ratio: 0.72 / 1 !important;
  background: var(--brand-white) !important;
  border: 1px solid rgba(14, 165, 233, 0.15) !important;
  box-shadow: var(--shadow-sm) !important;
}

.cover-slide-card h3 {
  color: var(--brand-blue-deep) !important;
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.cover-slide-card p {
  color: var(--brand-ink-soft) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.cover-slide-card:hover h3 {
  color: var(--brand-blue) !important;
}

.cover-slide-card:hover p {
  color: var(--brand-ink) !important;
}

.footer-bottom .footer-copyright,
.footer-bottom .footer-copyright *,
.footer-bottom p {
  font-size: 11px !important;
  line-height: 1.45 !important;
}

.upsell-section,
.portfolio-section,
.numbers-section,
.cover-art-slider {
  padding-top: var(--section-padding-y) !important;
  padding-bottom: var(--section-padding-y) !important;
}

@media (min-width: 701px) {
  .hero[aria-label='Hero section'] {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }
}

@media (max-width: 700px) {
  .upsell-section,
  .portfolio-section,
  .numbers-section,
  .cover-art-slider {
    padding-top: var(--section-padding-y-mobile) !important;
    padding-bottom: var(--section-padding-y-mobile) !important;
  }

  .btn-sky,
  .btn-outline,
  .btn-white,
  .btn-white-outline,
  .nav-book-cta,
  .hero-popup-cta,
  .live-chat-btn,
  .contact-form button,
  .popup-form button,
  a[class*='btn-'] {
    font-size: 14px !important;
    line-height: 1.2 !important;
    padding: 10px 18px !important;
  }

  .cta-buttons,
  .hero-actions {
    align-items: center !important;
  }

  .cta-buttons a[class*='btn-'],
  .hero-actions a[class*='btn-'],
  .hero-popup-cta,
  .contact-form button,
  .popup-form button,
  .hero-form .btn-sky,
  .pricing-card > a[class*='btn-'] {
    width: min(92%, 320px) !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav-book-cta,
  header#siteHeader .btn-sky {
    width: auto !important;
    max-width: none !important;
  }

  .footer .footer-brand,
  .footer .footer-col {
    padding-left: 20px !important;
  }

  .footer .footer-col ul {
    padding-left: 0 !important;
  }

  #pricing .pricing-badge {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: max-content !important;
    align-self: flex-start !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  #testimonials .testimonial-badge-pair {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 32px !important;
    width: 100% !important;
  }

  #testimonials .testimonial-badge {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    gap: 6px !important;
    padding: 9px 8px !important;
    justify-content: center !important;
  }

  #testimonials .testimonial-badge > div:first-child {
    flex: 0 0 auto !important;
    font-size: 17px !important;
    letter-spacing: 1px !important;
  }

  #testimonials .testimonial-badge svg {
    width: 17px !important;
    height: 17px !important;
  }

  #testimonials .testimonial-badge strong {
    display: block !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  #testimonials .testimonial-badge strong + div {
    font-size: 10px !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }

  h1,
  .hero h1,
  .service-hero h1 {
    font-size: clamp(38px, 10vw, 48px) !important;
    line-height: 1.12 !important;
  }

  h2,
  .title h2,
  .cta-band h2 {
    font-size: clamp(31px, 8.5vw, 38px) !important;
    line-height: 1.15 !important;
  }

  h3,
  .card h3,
  .pricing-card h3,
  .contact-info h3,
  .popup-box h3 {
    font-size: 24px !important;
    line-height: 31px !important;
  }

  h4,
  .faq-header h4,
  .hero-form h4 {
    font-size: 21px !important;
    line-height: 29px !important;
  }
}
