:root {
  --sv-accent: #ff9900;
  --sv-ink: #231f20;
  --sv-surface: #f7f4ef;
  --sv-teal: #0d6b65;
  --sv-line: #e7ddd0;
  --sv-white: #ffffff;
  --sv-muted: #5e5750;
  --sv-shadow: 0 18px 50px rgba(35, 31, 32, 0.08);
  --sv-radius: 24px;
  --sv-shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--sv-ink);
  background:
    radial-gradient(circle at top left, rgba(255, 153, 0, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(13, 107, 101, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, #f4efe7 100%);
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.sv-shell {
  width: min(calc(100% - 32px), var(--sv-shell));
  margin: 0 auto;
}

.sv-main {
  padding-bottom: 48px;
}

.sv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
}

.sv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(35, 31, 32, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--sv-shadow);
}

.sv-brand img {
  width: min(320px, 38vw);
  min-width: 180px;
  display: block;
}

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

.sv-brand__logo {
  object-fit: contain;
}

.sv-brand__mini {
  display: block;
  width: 34px;
  max-width: 100%;
  object-fit: contain;
  min-width: 34px;
  flex: 0 0 34px;
}

.sv-brand__mark {
  display: none;
  width: 64px;
  min-width: 64px;
  object-fit: contain;
}

.sv-header .sv-brand img {
  width: auto;
  min-width: 0;
}

.sv-brand__logo,
.sv-brand__mark {
  display: none !important;
}

.sv-brand__word {
  display: block !important;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

.sv-brand__mini {
  display: block !important;
  width: 34px !important;
  min-width: 34px !important;
}

.sv-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--sv-ink);
}

.sv-nav .menu,
.sv-footer ul,
.sv-list,
.sv-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sv-nav .menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sv-nav .menu > li {
  position: relative;
}

.sv-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
  color: var(--sv-muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.sv-nav .menu > li:hover > a,
.sv-nav .menu > li.current-menu-item > a,
.sv-nav .menu > li.current-menu-ancestor > a {
  color: var(--sv-ink);
}

.sv-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 18px;
  box-shadow: var(--sv-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.sv-nav .sub-menu li a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--sv-muted);
}

.sv-nav .sub-menu li a:hover,
.sv-nav .sub-menu li a:focus-visible {
  background: rgba(255, 153, 0, 0.08);
  color: var(--sv-ink);
}

.sv-nav .menu > li:hover > .sub-menu,
.sv-nav .menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sv-section,
.sv-panel {
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: var(--sv-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--sv-shadow);
  backdrop-filter: blur(14px);
}

.sv-hero {
  padding: 12px 0 0;
}

.sv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.sv-hero__grid > * {
  min-width: 0;
}

.sv-panel,
.sv-section {
  padding: 32px;
}

.sv-panel {
  height: 100%;
}

.sv-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: var(--sv-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--sv-shadow);
  backdrop-filter: blur(14px);
}

.sv-carousel__slide {
  display: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 28px;
  padding: 32px;
  min-height: 560px;
}

.sv-carousel__slide.is-active {
  display: grid;
}

.sv-carousel__copy {
  max-width: 520px;
}

.sv-carousel__media {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 153, 0, 0.14);
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.06), rgba(255, 255, 255, 0.96));
}

.sv-carousel__media img {
  width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
}

.sv-carousel__dots {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.sv-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(35, 31, 32, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.sv-carousel__dot.is-active {
  width: 36px;
  background: var(--sv-accent);
}

.sv-hero-support {
  margin-top: 24px;
}

.sv-carousel--focus .sv-carousel__slide {
  grid-template-columns: 1fr;
  min-height: auto;
  gap: 18px;
}

.sv-carousel--focus .sv-carousel__copy {
  max-width: none;
}

.sv-carousel--focus .sv-carousel__copy h2 {
  margin-bottom: 8px;
}

.sv-carousel--focus .sv-carousel__copy .sv-lead {
  margin-bottom: 0;
}

.sv-carousel--focus .sv-carousel__media {
  padding: 10px;
}

.sv-carousel--focus .sv-carousel__media img {
  width: 100%;
  max-height: none;
}

.sv-panel--accent {
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.18), rgba(13, 107, 101, 0.05));
  border-color: rgba(255, 153, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sv-eyebrow {
  margin: 0 0 12px;
  color: var(--sv-teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.sv-lead,
.sv-panel p,
.sv-section__header p,
.sv-card p,
.sv-footer p,
.sv-form label span,
.sv-form-response,
.sv-audit-results,
.sv-bullets li {
  color: var(--sv-muted);
  line-height: 1.7;
}

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

.sv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.sv-button:hover,
.sv-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 153, 0, 0.18);
}

.sv-button--primary {
  background: var(--sv-accent);
  color: var(--sv-white);
}

.sv-button--secondary {
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--sv-line);
}

.sv-bullets {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  list-style: disc;
}

.sv-mini-grid,
.sv-counter-grid,
.sv-card-grid,
.sv-process-grid,
.sv-two-up,
.sv-footer__grid {
  display: grid;
  gap: 18px;
}

.sv-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.sv-mini-grid article,
.sv-counter,
.sv-card,
.sv-form,
.sv-audit-results {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(35, 31, 32, 0.08);
  background: rgba(255, 255, 255, 0.75);
}

.sv-mini-grid strong,
.sv-counter strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.sv-section {
  margin-top: 28px;
}

.sv-section__header {
  max-width: 760px;
  margin-bottom: 22px;
}

.sv-section__header h2 {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid rgba(255, 153, 0, 0.35);
}

.sv-counter-grid,
.sv-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-counter strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--sv-accent);
}

.sv-logo-board {
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.08), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 153, 0, 0.18);
}

.sv-logo-board img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.sv-logo-marquee {
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(255, 153, 0, 0.18);
  box-shadow: 0 20px 46px rgba(35, 31, 32, 0.09);
}

.sv-logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: sv-logo-marquee 20s linear infinite;
  will-change: transform;
}

.sv-logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 0 0 auto;
}

.sv-logo-marquee__group img {
  flex: 0 0 auto;
  width: auto;
  max-width: 320px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  padding: 4px 8px;
  opacity: 1;
}

@keyframes sv-logo-marquee {
  from {
    transform: translateX(calc(-50% - 18px));
  }
  to {
    transform: translateX(0);
  }
}

.sv-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.85), rgba(13, 107, 101, 0.9));
}

body.home .sv-card-grid .sv-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 153, 0, 0.12);
  border: 2px solid rgba(255, 153, 0, 0.3);
  box-shadow: 0 10px 24px rgba(255, 153, 0, 0.14);
}

.sv-icon::before,
.sv-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-white);
  font-weight: 800;
}

.sv-icon::before {
  content: "✦";
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
}

.sv-icon[data-icon]::before {
  content: attr(data-icon);
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
}

body.home .sv-card-grid .sv-icon::before,
body.home .sv-card-grid .sv-icon[data-icon]::before {
  color: var(--sv-accent);
  font-size: 1.6rem;
}

.sv-mini-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255, 153, 0, 0.14);
  color: var(--sv-accent);
  font-size: 1.15rem;
}

.sv-mini-icon--mark {
  width: 52px;
  height: 52px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.sv-mini-icon--mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.sv-text-link {
  color: var(--sv-teal);
  font-weight: 700;
}

body.home .sv-text-link {
  color: var(--sv-accent);
}

.sv-step {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--sv-accent);
  font-weight: 800;
}

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

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

.sv-card--spacious,
.sv-card--full {
  padding: 24px;
}

.sv-card--full {
  grid-column: 1 / -1;
}

.sv-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  list-style: disc;
  color: var(--sv-muted);
}

.sv-card-grid--pricing {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-price {
  color: var(--sv-accent);
  font-size: 1.6rem;
  font-weight: 800;
}

.sv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sv-form-grid--audit {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sv-form-grid__full {
  grid-column: 1 / -1;
}

.sv-form label {
  display: grid;
  gap: 8px;
}

.sv-form input,
.sv-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(35, 31, 32, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
}

.sv-form input:focus,
.sv-form textarea:focus {
  outline: 2px solid rgba(255, 153, 0, 0.24);
  border-color: rgba(255, 153, 0, 0.5);
}

.sv-form-actions {
  margin-top: 18px;
}

.sv-form-response {
  margin-top: 14px;
  font-weight: 600;
}

.sv-form-response.is-success {
  color: var(--sv-teal);
}

.sv-form-response.is-error {
  color: #b3261e;
}

.sv-audit-results {
  display: none;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.12), rgba(13, 107, 101, 0.04));
}

.sv-audit-results.is-visible {
  display: block;
}

.sv-audit-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.sv-audit-metrics strong {
  display: block;
  font-size: 1.7rem;
  color: var(--sv-ink);
}

.sv-asin-preview {
  font-size: 0.88rem;
  color: var(--sv-teal);
}

.sv-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sv-footer {
  padding: 24px 0 96px;
}

.sv-footer__grid {
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1fr;
  align-items: start;
}

.sv-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.sv-footer p {
  margin-bottom: 10px;
  line-height: 1.65;
}

.sv-footer ul {
  display: grid;
  gap: 8px;
}

.sv-footer a {
  color: var(--sv-muted);
}

.sv-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.sv-footer__logo,
.sv-footer__mark {
  display: none !important;
}

.sv-footer__mini {
  display: block !important;
  width: 56px !important;
  min-width: 56px;
  flex: 0 0 56px;
  max-width: 100%;
  object-fit: contain;
}

.sv-footer__word {
  display: block !important;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

body.home .sv-counter,
body.home .sv-card,
body.home .sv-form,
body.home .sv-audit-results {
  border-color: rgba(255, 153, 0, 0.16);
}

body.home .sv-mini-grid article,
body.home .sv-counter,
body.home .sv-card,
body.home .sv-logo-board,
body.home .sv-logo-marquee,
body.home .sv-form,
body.home .sv-audit-results {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

@media (hover: hover) {
  .sv-nav .menu > li > a:hover,
  .sv-nav .menu > li > a:focus-visible {
    color: var(--sv-ink);
    transform: translateY(-1px);
  }

  .sv-whatsapp:hover,
  .sv-whatsapp:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(35, 31, 32, 0.18);
    filter: saturate(1.04);
  }

  body.home .sv-mini-grid article:hover,
  body.home .sv-mini-grid article:focus-within,
  body.home .sv-counter:hover,
  body.home .sv-counter:focus-within,
  body.home .sv-card:hover,
  body.home .sv-card:focus-within,
  body.home .sv-logo-board:hover,
  body.home .sv-logo-board:focus-within,
  body.home .sv-logo-marquee:hover,
  body.home .sv-logo-marquee:focus-within,
  body.home .sv-form:hover,
  body.home .sv-form:focus-within,
  body.home .sv-audit-results:hover,
  body.home .sv-audit-results:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.3);
    box-shadow: 0 20px 34px rgba(35, 31, 32, 0.1), 0 0 0 1px rgba(255, 153, 0, 0.06);
    background: linear-gradient(180deg, rgba(255, 153, 0, 0.05), rgba(255, 255, 255, 0.94));
  }
}

@media (max-width: 720px) {
  .sv-hero__grid {
    grid-template-columns: 1fr;
  }

  .sv-logo-marquee {
    padding: 18px;
  }

  .sv-logo-marquee__group {
    gap: 28px;
  }

  .sv-logo-marquee__group img {
    height: 72px;
    max-width: 220px;
  }
}

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

.sv-contact-list p,
.sv-contact-list a {
  margin: 0;
  line-height: 1.5;
}

.sv-header .sv-brand img,
.sv-footer__brand img {
  width: auto;
  min-width: 0;
}

.sv-brand__logo,
.sv-brand__mark {
  display: none;
}

.sv-brand__mini {
  display: block;
  width: 34px;
  min-width: 34px;
  flex: 0 0 34px;
}

.sv-brand__word {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

.sv-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sv-footer__logo,
.sv-footer__mark {
  display: none;
}

.sv-footer__mini {
  display: block;
  width: 56px;
}

.sv-footer__word {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

.sv-brand__mark,
.sv-footer__mark {
  display: none;
}

.sv-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.sv-capability-tile {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.09), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 40px rgba(35, 31, 32, 0.05);
}

.sv-capability-tile span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #ff9900;
}

.sv-capability-tile strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: #231f20;
}

body.page-slug-about-us .sv-header .sv-brand img,
body.page-slug-about-us .sv-footer__brand img {
  width: auto;
  min-width: 0;
}

body.page-slug-about-us .sv-brand::before,
body.page-slug-about-us .sv-footer__brand::before {
  display: none;
}

body.page-slug-about-us .sv-brand {
  gap: 12px;
}

body.page-slug-about-us .sv-brand__mark,
body.page-slug-about-us .sv-brand__logo {
  display: none;
}

body.page-slug-about-us .sv-brand__mini {
  display: block;
  width: 34px;
  min-width: 34px;
  flex: 0 0 34px;
}

body.page-slug-about-us .sv-brand__word {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

body.page-slug-about-us .sv-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-slug-about-us .sv-footer__mark,
body.page-slug-about-us .sv-footer__logo {
  display: none;
}

body.page-slug-about-us .sv-footer__mini {
  display: block;
  width: 56px;
}

body.page-slug-about-us .sv-footer__word {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #231f20;
}

body.page-slug-about-us .sv-section__header .sv-eyebrow,
body.page-slug-about-us .sv-inline-icon,
body.page-slug-about-us .sv-card h3,
body.page-slug-about-us .sv-card h2 {
  color: #ff9900;
}

body.page-slug-about-us .sv-card,
body.page-slug-about-us .sv-card--spacious {
  border-color: rgba(255, 153, 0, 0.16);
}

.sv-service-detail {
  display: grid;
  gap: 18px;
}

.sv-service-detail__block {
  display: grid;
  gap: 12px;
}

.sv-service-detail__block h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.sv-service-detail__block p {
  margin-bottom: 0;
}

.sv-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 153, 0, 0.16);
  border-radius: 20px;
}

.sv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.sv-table thead th {
  background: rgba(255, 153, 0, 0.1);
  color: #231f20;
  font-size: 0.9rem;
  text-align: left;
}

.sv-table th,
.sv-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
  vertical-align: top;
}

.sv-table tbody tr:last-child td {
  border-bottom: 0;
}

.sv-table__highlight {
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.16), rgba(255, 244, 227, 0.94));
  color: #231f20;
  font-weight: 700;
}

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

.sv-benefit-stack > div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.08), rgba(255, 255, 255, 0.96));
}

.sv-benefit-stack h3 {
  margin-bottom: 8px;
  color: #231f20;
}

.sv-image-stack {
  display: grid;
  gap: 18px;
}

.sv-insight-figure {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 153, 0, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 153, 0, 0.06), rgba(255, 255, 255, 0.98));
}

.sv-insight-figure img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(35, 31, 32, 0.08);
  background: #fff;
}

.sv-insight-figure figcaption {
  margin-top: 12px;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--sv-muted);
}

.sv-inline-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 153, 0, 0.18), rgba(13, 107, 101, 0.14));
  color: var(--sv-accent);
  font-weight: 800;
}

.sv-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: var(--sv-white);
  box-shadow: var(--sv-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.sv-entry-content > * + * {
  margin-top: 1rem;
}

@media (max-width: 1120px) {
  .sv-counter-grid,
  .sv-card-grid,
  .sv-card-grid--pricing,
  .sv-process-grid,
  .sv-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .sv-nav-toggle {
    display: inline-flex;
  }

  .sv-header__inner {
    align-items: flex-start;
    border-radius: 28px;
  }

  .sv-nav {
    display: none;
    width: 100%;
  }

  .sv-nav.is-open {
    display: block;
  }

  .sv-nav .menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 14px;
  }

  .sv-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .sv-nav .menu > li.menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .sv-carousel__slide,
  .sv-two-up,
  .sv-form-grid,
  .sv-form-grid--audit,
  .sv-footer__grid,
  .sv-card-grid,
  .sv-card-grid--pricing,
  .sv-process-grid,
  .sv-counter-grid {
    grid-template-columns: 1fr;
  }

  .sv-brand img {
    width: auto;
  }

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

  .sv-carousel__slide {
    min-height: auto;
  }

  .sv-carousel__copy {
    max-width: none;
  }

  .sv-carousel__media img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .sv-shell {
    width: min(calc(100% - 20px), var(--sv-shell));
  }

  .sv-panel,
  .sv-section {
    padding: 22px 18px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .sv-header__inner {
    padding: 12px 14px;
  }

  .sv-capability-grid {
    grid-template-columns: 1fr;
  }

  .sv-carousel__slide {
    padding: 22px 18px 72px;
    gap: 18px;
  }

  .sv-carousel__dots {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
