/* ===================================================================== 
services.css — Galaxywing Services Page All classes prefixed .sv-* · Scoped · No pollution Palette: navy #09102e / #0b1436 · green #7ACC0D · white ===================================================================== */



:root {
  --sv-navy: #09102e;
  --sv-navy-2: #0b1436;
  --sv-navy-3: #121b47;
  --sv-green: #7ACC0D;
  --sv-green-2: #5fa008;
  --sv-green-soft: rgba(122, 204, 13, 0.18);
  --sv-ink: #0b1330;
  --sv-muted: #5a6275;
  --sv-line: rgba(9, 16, 46, 0.08);
  --sv-line-dark: rgba(255, 255, 255, 0.12);
  --sv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --sv-ease-sm: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MAIN wrapper ===== */
.sv-main {
  display: block;
  overflow: hidden;
  background: #fff;
}

/* ============================================================= 1. HERO ============================================================= */
.sv-hero {
  position: relative;
  min-height: 720px;
  padding: 90px 0 90px;
  background: var(--sv-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(9, 16, 46, 0.55) 0%, rgba(9, 16, 46, 0.85) 55%, rgba(9, 16, 46, 0.95) 100%), linear-gradient(180deg, rgba(9, 16, 46, 0.4) 0%, rgba(9, 16, 46, 0.7) 100%);
  z-index: 1;
}

.sv-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, transparent 75%);
  z-index: 2;
  pointer-events: none;
}

.sv-hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sv-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: sv-float 14s ease-in-out infinite;
}

.sv-orb-1 {
  width: 360px;
  height: 360px;
  top: 10%;
  left: 8%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.55), transparent 65%);
}

.sv-orb-2 {
  width: 440px;
  height: 440px;
  bottom: 6%;
  right: 6%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.4), transparent 65%);
  animation-delay: -5s;
}

.sv-orb-3 {
  width: 300px;
  height: 300px;
  top: 52%;
  left: 46%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3), transparent 70%);
  animation-delay: -8s;
  opacity: 0.4;
}

@keyframes sv-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.08);
  }
}

.sv-hero-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.sv-star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  animation: sv-twinkle 3.5s ease-in-out infinite;
}

.sv-star-1 {
  top: 12%;
  left: 18%;
  animation-delay: 0s;
}

.sv-star-2 {
  top: 28%;
  left: 78%;
  animation-delay: -1s;
}

.sv-star-3 {
  top: 62%;
  left: 12%;
  animation-delay: -2s;
}

.sv-star-4 {
  top: 78%;
  left: 85%;
  animation-delay: -0.4s;
}

.sv-star-5 {
  top: 18%;
  left: 88%;
  width: 2px;
  height: 2px;
  animation-delay: -1.5s;
}

.sv-star-6 {
  top: 70%;
  left: 38%;
  width: 2px;
  height: 2px;
  animation-delay: -2.2s;
}

.sv-star-7 {
  top: 40%;
  left: 92%;
  animation-delay: -0.8s;
}

.sv-star-8 {
  top: 88%;
  left: 22%;
  width: 2px;
  height: 2px;
  animation-delay: -1.2s;
}

@keyframes sv-twinkle {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.sv-hero .container {
  position: relative;
  z-index: 5;
}

.sv-hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.sv-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.4);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.sv-eyebrow-pill i {
  color: var(--sv-green);
  font-size: 14px;
}

.sv-hero-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(41.6px, 6vw, 80px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 22px;
}

.sv-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.15vw, 18.4px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 36px;
}

.sv-hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 70px;
}

.sv-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s var(--sv-ease);
  backdrop-filter: blur(10px);
}

.sv-chip i {
  color: var(--sv-green);
  font-size: 14px;
}

.sv-chip:hover {
  background: rgba(122, 204, 13, 0.14);
  border-color: rgba(122, 204, 13, 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.sv-chip-hot {
  position: relative;
}

.sv-chip-hot-pill {
  background: var(--sv-green);
  color: var(--sv-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.96px;
  padding: 2px 7px;
  border-radius: 5px;
  margin-left: 2px;
}

.sv-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  text-decoration: none;
  animation: sv-bounce 2.5s ease-in-out infinite;
}

.sv-scroll-cue-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(122, 204, 13, 0.9));
}

.sv-scroll-cue:hover {
  color: var(--sv-green);
}

@keyframes sv-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ============================================================= 2. INTRO STRIP — DARK ribbon ============================================================= */
.sv-intro {
  padding: var(--sec-py-sm) 0;
  background: var(--sv-navy);
  position: relative;
}

.sv-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(122, 204, 13, 0.06), transparent 60%);
  pointer-events: none;
}

.sv-intro-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.sv-intro-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.sv-intro-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.2), rgba(122, 204, 13, 0.06));
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: var(--sv-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sv-intro-text {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.sv-intro-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ============================================================= SECTION HEAD (shared) ============================================================= */
.sv-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.sv-section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.1);
  color: var(--sv-green-2);
  border: 1px solid rgba(122, 204, 13, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sv-section-eyebrow-dark {
  background: rgba(122, 204, 13, 0.14);
  color: #c6f27a;
  border-color: rgba(122, 204, 13, 0.4);
}

.sv-section-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: var(--sv-navy);
  margin: 0 0 16px;
}

.sv-section-head-dark .sv-section-title {
  color: #fff;
}

.sv-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--sv-muted);
  margin: 0;
}

.sv-section-sub-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================= 3. SERVICES OVERVIEW — LIGHT, asymmetric grid ============================================================= */
.sv-overview {
  padding: var(--sec-py-lg) 0;
  background: #f7f8fb;
  position: relative;
}

.sv-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.sv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--sv-line);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease), border-color 0.4s var(--sv-ease);
  box-shadow: 0 1px 0 rgba(9, 16, 46, 0.03);
}

.sv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sv-green), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s var(--sv-ease);
}

.sv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(9, 16, 46, 0.18);
  border-color: rgba(122, 204, 13, 0.45);
}

.sv-card:hover::before {
  opacity: 1;
}

.sv-card-wide {
  grid-column: span 3;
}

.sv-card-ai,
.sv-card-mkt,
.sv-card-brand {
  grid-column: span 2;
}

.sv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.sv-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sv-navy) 0%, var(--sv-navy-3) 100%);
  color: #fff;
  font-size: 24px;
  transition: all 0.4s var(--sv-ease);
}

.sv-card:hover .sv-card-icon {
  background: linear-gradient(135deg, var(--sv-green) 0%, var(--sv-green-2) 100%);
  color: var(--sv-navy);
  transform: rotate(-4deg);
}

.sv-card-num {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  color: rgba(9, 16, 46, 0.12);
  transition: color 0.4s var(--sv-ease);
}

.sv-card:hover .sv-card-num {
  color: rgba(122, 204, 13, 0.3);
}

.sv-card-hot {
  background: var(--sv-green);
  color: var(--sv-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(122, 204, 13, 0.4);
}

.sv-card-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: var(--sv-navy);
  margin: 0 0 10px;
}

.sv-card-wide .sv-card-title {
  font-size: 34px;
}

.sv-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--sv-muted);
  margin: 0 0 22px;
}

.sv-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}

.sv-card-chip {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(9, 16, 46, 0.05);
  color: var(--sv-navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s var(--sv-ease);
}

.sv-card:hover .sv-card-chip {
  background: rgba(122, 204, 13, 0.12);
  color: var(--sv-green-2);
}

.sv-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--sv-navy);
}

.sv-card-cta i {
  transition: transform 0.3s var(--sv-ease);
}

.sv-card:hover .sv-card-cta {
  color: var(--sv-green-2);
}

.sv-card:hover .sv-card-cta i {
  transform: translateX(6px);
}

/* ============================================================= 4. SERVICE DEEP-DIVES — alternating ============================================================= */
.sv-details {
  background: #fff;
}

.sv-detail {
  position: relative;
  padding: var(--sec-py-lg) 0;
  overflow: hidden;
}

.sv-detail-light {
  background: #fff;
}

.sv-detail-dark {
  background: var(--sv-navy);
  color: #fff;
}

.sv-detail-dark-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sv-detail-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.sv-detail-orb-a {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.45), transparent 65%);
}

.sv-detail-orb-b {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3), transparent 70%);
}

.sv-detail-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 75%);
}

.sv-detail .container {
  position: relative;
  z-index: 2;
}

.sv-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.sv-detail-row-rev .sv-detail-visual {
  order: 2;
}

.sv-detail-row-rev .sv-detail-content {
  order: 1;
}

.sv-detail-visual {
  position: relative;
  min-height: 380px;
}

.sv-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(9, 16, 46, 0.35);
  aspect-ratio: 4 / 3;
  background: #0b1436;
}

.sv-detail-light .sv-visual-card {
  border: 1px solid var(--sv-line);
}

.sv-detail-dark .sv-visual-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sv-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--sv-ease);
}

.sv-visual-card:hover img {
  transform: scale(1.04);
}

.sv-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(9, 16, 46, 0.25) 0%, rgba(9, 16, 46, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.sv-visual-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sv-green), var(--sv-green-2));
  color: var(--sv-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(122, 204, 13, 0.4);
}

.sv-visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sv-green);
  color: var(--sv-navy);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(122, 204, 13, 0.4);
}

.sv-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.5;
}

.sv-visual-orb-a {
  width: 180px;
  height: 180px;
  top: -40px;
  left: -40px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.6), transparent 70%);
}

.sv-visual-orb-b {
  width: 220px;
  height: 220px;
  bottom: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(9, 16, 46, 0.25), transparent 70%);
}

.sv-detail-dark .sv-visual-orb-b {
  background: radial-gradient(circle, rgba(122, 204, 13, 0.3), transparent 70%);
}

/* Content side */
.sv-detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.1);
  color: var(--sv-green-2);
  border: 1px solid rgba(122, 204, 13, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sv-detail-eyebrow i {
  font-size: 14px;
}

.sv-detail-dark .sv-detail-eyebrow {
  background: rgba(122, 204, 13, 0.14);
  color: #c6f27a;
  border-color: rgba(122, 204, 13, 0.4);
}

.sv-detail-hot {
  background: var(--sv-green);
  color: var(--sv-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.28px;
  padding: 2px 7px;
  border-radius: 5px;
  margin-left: 4px;
}

.sv-detail-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(30.4px, 3.2vw, 46.4px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: var(--sv-navy);
  margin: 0 0 18px;
}

.sv-detail-dark .sv-detail-title {
  color: #fff;
}

.sv-detail-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--sv-muted);
  margin: 0 0 26px;
}

.sv-detail-dark .sv-detail-desc {
  color: rgba(255, 255, 255, 0.72);
}

.sv-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-navy);
}

.sv-detail-dark .sv-detail-list li {
  color: rgba(255, 255, 255, 0.88);
}

.sv-detail-list i {
  color: var(--sv-green);
  font-size: 20px;
  line-height: 1.4;
  flex-shrink: 0;
}

.sv-detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.sv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--sv-ease);
  line-height: 1;
}

.sv-btn i {
  transition: transform 0.3s var(--sv-ease);
}

.sv-btn:hover i {
  transform: translateX(4px);
}

.sv-btn-primary {
  background: linear-gradient(135deg, var(--sv-green), var(--sv-green-2));
  color: var(--sv-navy);
  border-color: var(--sv-green);
  box-shadow: 0 10px 28px rgba(122, 204, 13, 0.35);
}

.sv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(122, 204, 13, 0.45);
  color: var(--sv-navy);
}

.sv-btn-ghost {
  background: transparent;
  color: var(--sv-navy);
  border-color: rgba(9, 16, 46, 0.2);
}

.sv-btn-ghost:hover {
  background: var(--sv-navy);
  color: #fff;
  border-color: var(--sv-navy);
}

.sv-btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.sv-btn-ghost-dark:hover {
  background: #fff;
  color: var(--sv-navy);
  border-color: #fff;
}

.sv-btn-lg {
  padding: 18px 34px;
  font-size: 15.5px;
}

/* ============================================================= 7. STATS STRIP — LIGHT ribbon ============================================================= */
.sv-stats {
  padding: 34px 0;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  border-top: 0;
  border-bottom: 0;
}

.sv-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}

.sv-stat {
  flex: 1;
  text-align: center;
}

.sv-stat-num {
  display: block;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(28.8px, 3vw, 38.4px);
  font-weight: 700;
  line-height: 1;
  color: #09102e;
  letter-spacing: -0.32px;
  margin-bottom: 4px;
}

.sv-stat-plus {
  color: #09102e;
}

.sv-stat-star {
  color: #09102e;
  margin-left: 4px;
}

.sv-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: rgba(9, 16, 46, 0.7);
  text-transform: uppercase;
}

.sv-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(9, 16, 46, 0.18);
}

/* ============================================================= 8. FINAL CTA — FINALE ============================================================= */
.sv-final-cta {
  padding: var(--sec-py-lg) 0;
  background: #fff;
}

.sv-final-card {
  position: relative;
  border-radius: 32px;
  padding: 90px 48px;
  background: linear-gradient(135deg, var(--sv-navy) 0%, var(--sv-navy-2) 60%, #113c17 100%);
  overflow: hidden;
  text-align: center;
  color: #fff;
  box-shadow: 0 40px 80px -30px rgba(9, 16, 46, 0.4);
}

.sv-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sv-final-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.sv-final-orb-a {
  width: 440px;
  height: 440px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.55), transparent 65%);
  opacity: 0.6;
}

.sv-final-orb-b {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.4), transparent 70%);
  opacity: 0.55;
}

.sv-final-orb-c {
  width: 260px;
  height: 260px;
  top: 30%;
  left: 55%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.28), transparent 70%);
  opacity: 0.5;
  animation: sv-float 14s ease-in-out infinite;
}

.sv-final-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, transparent 75%);
}

.sv-final-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

/* Big flying rocket — left side decoration */
.sv-final-rocket {
  position: absolute;
  left: 4%;
  top: 50%;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  transform: translateY(-50%) rotate(-18deg);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 60px rgba(122, 204, 13, 0.35));
  animation: sv-rocket-fly 6s ease-in-out infinite;
}

.sv-rocket-svg {
  width: 100%;
  height: auto;
  display: block;
}

.sv-rocket-flames {
  transform-origin: 100px 245px;
  animation: sv-rocket-flame 0.18s ease-in-out infinite alternate;
}

.sv-rocket-trail {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60%;
  height: 14px;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 204, 13, 0.55) 40%, rgba(255, 210, 74, 0.45) 70%, transparent 100%);
  filter: blur(8px);
  border-radius: 999px;
  transform: translateY(-50%);
}

@keyframes sv-rocket-fly {

  0%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(-18deg);
  }

  50% {
    transform: translateY(-58%) translateX(-6px) rotate(-18deg);
  }
}

@keyframes sv-rocket-flame {
  0% {
    transform: scaleY(1) scaleX(1);
    opacity: 0.95;
  }

  100% {
    transform: scaleY(1.15) scaleX(0.92);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sv-final-rocket,
  .sv-rocket-flames {
    animation: none;
  }
}

@media (max-width: 991px) {
  .sv-final-rocket {
    left: 50%;
    top: -10%;
    width: 140px;
    transform: translateX(-50%) rotate(0deg);
    opacity: 0.55;
  }

  @keyframes sv-rocket-fly {

    0%,
    100% {
      transform: translateX(-50%) translateY(0) rotate(0deg);
    }

    50% {
      transform: translateX(-50%) translateY(-6px) rotate(0deg);
    }
  }
}

@media (max-width: 575px) {
  .sv-final-rocket {
    display: none;
  }
}

.sv-final-script {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--sv-green);
  letter-spacing: 0.16px;
  margin-bottom: 14px;
}

.sv-final-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(35.2px, 4.4vw, 57.6px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 20px;
}

.sv-final-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 36px;
  max-width: 640px;
}

.sv-final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 26px;
}

.sv-final-reassure {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: 100%;
}

.sv-final-reassure i {
  color: var(--sv-green);
}

/* ============================================================= 5. CLIENT PROOF — LIGHT, 3 case-study cards ============================================================= */
.sv-proof {
  padding: var(--sec-py-lg) 0;
  background: #f7f8fb;
}

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

.sv-proof-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sv-line);
  border-radius: 20px;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.45s var(--sv-ease), box-shadow 0.45s var(--sv-ease), border-color 0.45s var(--sv-ease);
}

.sv-proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px -22px rgba(9, 16, 46, 0.18);
  border-color: rgba(122, 204, 13, 0.4);
}

.sv-proof-pill {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  color: var(--sv-navy);
  background: var(--sv-green-soft);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122, 204, 13, 0.35);
}

.sv-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sv-proof-num {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--sv-navy);
  transition: color 0.45s var(--sv-ease);
}

.sv-proof-card:hover .sv-proof-num {
  background: linear-gradient(135deg, var(--sv-green) 0%, #c6f27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sv-proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--sv-muted);
}

.sv-proof-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--sv-ink);
  margin: 0;
}

.sv-proof-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--sv-line);
}

.sv-proof-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--sv-green);
  font-size: 13px;
}

.sv-proof-cite {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-style: normal;
  color: var(--sv-muted);
  letter-spacing: 0.16px;
}

/* ============================================================= 6. PRICING BAND — DARK navy gradient, 4 tiles ============================================================= */
.sv-pricing {
  position: relative;
  padding: var(--sec-py-lg) 0;
  background: linear-gradient(160deg, var(--sv-navy) 0%, var(--sv-navy-2) 55%, var(--sv-navy-3) 100%);
  color: #fff;
  overflow: hidden;
}

.sv-pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sv-pricing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}

.sv-pricing-orb-a {
  width: 420px;
  height: 420px;
  top: -120px;
  left: 4%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.45), transparent 65%);
}

.sv-pricing-orb-b {
  width: 360px;
  height: 360px;
  bottom: -140px;
  right: 6%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.32), transparent 70%);
}

.sv-pricing .container {
  position: relative;
  z-index: 2;
}

.sv-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.sv-price-tile {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(122, 204, 13, 0.55);
  border-radius: 18px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.45s var(--sv-ease), border-color 0.45s var(--sv-ease), background 0.45s var(--sv-ease);
}

.sv-price-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.55);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.sv-price-tile-hot {
  border-left-color: var(--sv-green);
  background: linear-gradient(160deg, rgba(122, 204, 13, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.sv-price-hot-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.24px;
  color: var(--sv-navy);
  background: var(--sv-green);
  padding: 4px 9px;
  border-radius: 999px;
}

.sv-price-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sv-green);
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.28);
}

.sv-price-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sv-price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sv-price-from {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.sv-price-num {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--sv-green);
}

.sv-price-num-talk {
  font-size: 26px;
  color: #fff;
}

.sv-price-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.sv-price-reassure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  padding-top: 8px;
}

.sv-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.sv-price-badge i {
  color: var(--sv-green);
  font-size: 15px;
}

/* ============================================================= 7. SERVICES FAQ — LIGHT, zero-JS accordion ============================================================= */
.sv-faq {
  position: relative;
  padding: var(--sec-py-lg) 0;
  background: radial-gradient(800px 520px at 92% 8%, rgba(122, 204, 13, 0.16), transparent 62%), radial-gradient(700px 480px at 8% 95%, rgba(91, 109, 255, 0.10), transparent 62%), linear-gradient(180deg, #fdfaf2 0%, #f3ecdc 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Faded dotted grid */
.sv-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.07) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Soft accent stroke top — adds polish */
.sv-faq::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122, 204, 13, 0.45) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.sv-faq>.container {
  position: relative;
  z-index: 1;
}

.sv-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sv-faq-item {
  background: #fff;
  border: 1px solid var(--sv-line);
  border-left: 3px solid rgba(122, 204, 13, 0.35);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.35s var(--sv-ease), box-shadow 0.35s var(--sv-ease);
}

.sv-faq-item[open] {
  border-left-color: var(--sv-green);
  box-shadow: 0 18px 40px -22px rgba(9, 16, 46, 0.14);
}

.sv-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--sv-navy);
  transition: color 0.3s var(--sv-ease);
}

.sv-faq-q::-webkit-details-marker {
  display: none;
}

.sv-faq-q::marker {
  content: '';
}

.sv-faq-q:hover {
  color: var(--sv-green-2);
}

.sv-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sv-green-soft);
  color: var(--sv-green-2);
  font-size: 14px;
  transition: transform 0.35s var(--sv-ease), background 0.35s var(--sv-ease), color 0.35s var(--sv-ease);
}

.sv-faq-item[open] .sv-faq-icon {
  background: var(--sv-green);
  color: var(--sv-navy);
  transform: rotate(45deg);
}

.sv-faq-a {
  padding: 0 26px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--sv-muted);
}

.sv-faq-a p {
  margin: 0;
}

/* ============================================================= RESPONSIVE ============================================================= */
@media (max-width: 1199px) {
  .sv-cards-grid {
    gap: 20px;
  }

  .sv-card-wide {
    grid-column: span 3;
  }

  .sv-detail-row {
    gap: 50px;
  }
}

@media (max-width: 991px) {

  /* Section padding — tablet */
  .sv-overview,
  .sv-detail,
  .sv-proof,
  .sv-pricing,
  .sv-faq {
    padding: var(--sec-py-md) 0;
  }

  .sv-final-cta {
    padding: var(--sec-py-md) 0;
  }

  .sv-hero {
    min-height: 420px;
    padding: 75px 0 65px;
  }

  /* Cards → 2 col tablet */
  .sv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sv-card-wide,
  .sv-card-ai,
  .sv-card-mkt,
  .sv-card-brand {
    grid-column: span 1;
  }

  /* Detail rows stack */
  .sv-detail-row,
  .sv-detail-row-rev {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .sv-detail-row-rev .sv-detail-visual,
  .sv-detail-row-rev .sv-detail-content {
    order: initial;
  }

  .sv-detail-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  /* Proof → stays 3 col shrinking, fall to 1 col on 767 */
  .sv-proof-grid {
    gap: 20px;
  }

  /* Pricing → 2x2 */
  .sv-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stats stay 4 across but smaller */
  .sv-stat-divider {
    height: 44px;
  }

  /* Intro stays horizontal */
  .sv-intro-card {
    padding: 22px 24px;
    gap: 16px;
  }

  .sv-intro-text {
    font-size: 13.5px;
  }

  .sv-final-card {
    padding: 70px 32px;
    border-radius: 26px;
  }
}

@media (max-width: 767px) {

  /* Section padding — mobile */
  .sv-overview,
  .sv-detail,
  .sv-proof,
  .sv-pricing,
  .sv-faq {
    padding: var(--sec-py-sm) 0;
  }

  .sv-final-cta {
    padding: var(--sec-py-md) 0;
  }

  .sv-hero {
    min-height: 380px;
    padding: 60px 0 50px;
  }

  .sv-section-head {
    margin-bottom: 42px;
  }

  /* Cards 1 col */
  .sv-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv-card {
    padding: 30px 26px;
  }

  .sv-card-title {
    font-size: 26px;
  }

  .sv-card-wide .sv-card-title {
    font-size: 28px;
  }

  /* Proof 1 col */
  .sv-proof-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing stays 2 col on small tablets, will collapse below */
  .sv-price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Stats: 2x2 */
  .sv-stats-row {
    flex-wrap: wrap;
    gap: 30px 10px;
  }

  .sv-stat {
    flex: 1 1 40%;
    min-width: 40%;
  }

  .sv-stat-divider {
    display: none;
  }

  /* Intro stack */
  .sv-intro-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
  }

  .sv-intro-divider {
    width: 100%;
    height: 1px;
  }

  /* Hero */
  .sv-hero-chips {
    margin-bottom: 48px;
  }

  .sv-chip {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  /* Detail */
  .sv-detail-list li {
    font-size: 14.5px;
  }

  .sv-detail-ctas {
    gap: 10px;
  }

  .sv-btn {
    padding: 13px 22px;
    font-size: 14px;
  }

  /* FAQ */
  .sv-faq-q {
    font-size: 16px;
    padding: 20px 22px;
  }

  .sv-faq-a {
    padding: 0 22px 22px;
  }

  /* Final card */
  .sv-final-card {
    padding: 56px 24px;
    border-radius: 22px;
  }

  .sv-final-script {
    font-size: 26px;
  }

  .sv-final-sub {
    font-size: 15.5px;
  }
}

@media (max-width: 575px) {

  /* Section padding — small */
  .sv-overview,
  .sv-detail,
  .sv-proof,
  .sv-pricing,
  .sv-faq {
    padding: var(--sec-py-sm) 0;
  }

  .sv-final-cta {
    padding: var(--sec-py-sm) 0;
  }

  .sv-intro {
    padding: var(--sec-py-sm) 0;
  }

  .sv-stats {
    padding: var(--sec-py-sm) 0;
  }

  .sv-hero {
    min-height: 340px;
    padding: 50px 0 44px;
  }

  .sv-eyebrow-pill {
    font-size: 11px;
    padding: 7px 14px;
  }

  .sv-hero-chips {
    gap: 8px;
  }

  .sv-chip {
    padding: 7px 12px;
    font-size: 12px;
  }

  .sv-chip-hot-pill {
    font-size: 9px;
    padding: 1px 6px;
  }

  .sv-card {
    padding: 26px 22px;
  }

  .sv-card-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .sv-card-num {
    font-size: 34px;
  }

  .sv-detail-title {
    font-size: 28px;
  }

  .sv-section-title {
    font-size: 28px;
  }

  /* Pricing collapses to 1 col on very small */
  .sv-price-grid {
    grid-template-columns: 1fr;
  }

  .sv-price-reassure {
    flex-direction: column;
    gap: 10px;
  }

  .sv-proof-num {
    font-size: 44px;
  }

  .sv-proof-card {
    padding: 28px 24px;
  }

  .sv-stat-num {
    font-size: 30.4px;
  }

  .sv-stat-label {
    font-size: 11.5px;
  }

  .sv-final-card {
    padding: 44px 20px;
    border-radius: 18px;
  }

  .sv-final-title {
    font-size: 30.4px;
  }

  .sv-final-script {
    font-size: 24px;
  }

  .sv-btn {
    width: 100%;
    justify-content: center;
  }

  .sv-final-ctas .sv-btn {
    width: auto;
  }
}

/* ============================================================= MOTION PREFERENCE ============================================================= */
@media (prefers-reduced-motion: reduce) {

  .sv-orb,
  .sv-star,
  .sv-scroll-cue,
  .sv-final-orb-c {
    animation: none !important;
  }

  .sv-card,
  .sv-proof-card,
  .sv-price-tile,
  .sv-faq-item,
  .sv-faq-icon,
  .sv-btn,
  .sv-chip,
  .sv-visual-card img,
  .sv-card-cta i,
  .sv-btn i,
  .sv-card-icon,
  .sv-proof-num {
    transition: none !important;
  }

  .sv-card:hover,
  .sv-proof-card:hover,
  .sv-price-tile:hover,
  .sv-btn-primary:hover,
  .sv-chip:hover {
    transform: none !important;
  }
}

/* ============================================================= SERVICES HERO — FEATURE CLUSTER (Avone-style rebuild) Centered headline on top, 3-col composite cluster below ============================================================= */
.sv-hero-feat {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 10px 0 40px;
}

.sv-feat-top {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.sv-feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.4);
  color: #c6f27a;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 24px rgba(122, 204, 13, 0.18);
}

.sv-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 0 0 rgba(122, 204, 13, 0.6);
  animation: sv-feat-pulse 1.8s ease-in-out infinite;
}

@keyframes sv-feat-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(122, 204, 13, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(122, 204, 13, 0);
  }
}

.sv-feat-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(56px, 7.4vw, 108px);
  line-height: 1.02;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 20px;
}

.sv-feat-title-em {
  display: inline-block;
  background: linear-gradient(90deg, #7ACC0D 0%, #c6f27a 50%, #7ACC0D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.sv-feat-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19.2px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 34px;
  line-height: 1.55;
}

.sv-feat-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sv-feat-btn-primary,
.sv-feat-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.32px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.sv-feat-btn-primary {
  background: linear-gradient(135deg, #7ACC0D 0%, #5ea60a 100%);
  color: #09102e;
  box-shadow: 0 12px 32px rgba(122, 204, 13, 0.32);
}

.sv-feat-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(122, 204, 13, 0.46);
  color: #09102e;
}

.sv-feat-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.sv-feat-btn-ghost:hover {
  border-color: #7ACC0D;
  color: #c6f27a;
  transform: translateY(-2px);
}

/* --- CLUSTER GRID --- */
.sv-feat-cluster {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.sv-feat-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.sv-feat-card {
  position: relative;
  border-radius: 20px;
  padding: 28px 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(5, 10, 24, 0.24);
  display: flex;
  flex-direction: column;
  color: #fff;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(18, 27, 52, 0.98) 0%, rgba(10, 17, 34, 0.98) 100%);
}

.sv-feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%);
  pointer-events: none;
}

.sv-feat-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8ccb2e 0%, #c9ec8f 100%);
  pointer-events: none;
  opacity: 0.9;
}

.sv-feat-card>* {
  position: relative;
  z-index: 1;
}

/* Left column - senior team card */
.sv-feat-card-senior {
  justify-content: space-between;
  gap: 18px;
  min-height: 220px;
}

.sv-feat-zig {
  width: 44px;
  height: 14px;
  display: block;
  margin-bottom: 8px;
  filter: none;
  opacity: 0.9;
}

.sv-feat-card-h {
  font-family: 'Fraunces', 'Publico Banner', serif;
  font-weight: 600;
  font-size: 24.32px;
  line-height: 1.16;
  margin: 0;
  color: #fff;
  max-width: 12ch;
}

.sv-feat-card-h em {
  font-style: italic;
  color: #9fd63f;
}

.sv-feat-card-note {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.56px;
  text-transform: uppercase;
  color: rgba(216, 225, 240, 0.62);
  margin-top: 0;
}

.sv-feat-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sv-feat-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sv-feat-stat-n {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20.8px;
  color: #fff;
}

.sv-feat-stat-n i {
  color: #7ACC0D;
  font-size: 13.6px;
  margin-left: 2px;
}

.sv-feat-stat-l {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(219, 228, 242, 0.62);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.sv-feat-stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
}

/* Left column - big number */
.sv-feat-card-number {
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  min-height: 210px;
}

.sv-feat-big-num {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(72px, 8vw, 112px);
  line-height: 0.88;
  color: #b7ea5a;
  text-shadow: none;
}

.sv-feat-big-num sup {
  font-size: 7.2px;
  vertical-align: super;
  top: -4.8px;
}

.sv-feat-big-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(226, 233, 245, 0.74);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

/* Center browser card */
.sv-feat-col-center {
  justify-content: stretch;
}

.sv-feat-browser {
  background: #121a34;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(5, 10, 24, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.sv-feat-browser-bar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%), #121a34;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.sv-feat-browser-dots {
  display: inline-flex;
  gap: 6px;
}

.sv-feat-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.sv-feat-browser-dots span:nth-child(1) {
  background: #e0685a;
}

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

.sv-feat-browser-dots span:nth-child(3) {
  background: #7ACC0D;
}

.sv-feat-browser-brand {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: 1.28px;
  color: #f7f9ff;
  font-size: 13px;
}

.sv-feat-browser-nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}

.sv-feat-browser-nav span {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(226, 233, 245, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.96px;
}

.sv-feat-browser-canvas {
  flex: 1;
  padding: 48px 32px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: linear-gradient(180deg, #f6f8fc 0%, #edf2f8 100%);
}

.sv-feat-mockup-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #6e829f;
  margin-bottom: 14px;
}

.sv-feat-mockup-title {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 51.2px);
  line-height: 0.96;
  letter-spacing: -0.32px;
  color: #11203d;
  margin: 0 0 16px;
  text-wrap: balance;
}

.sv-feat-mockup-title em {
  font-style: normal;
  color: #71a81f;
}

.sv-feat-mockup-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #55657e;
  max-width: 360px;
  margin: 0 0 24px;
  line-height: 1.65;
}

.sv-feat-mockup-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  background: #11203d;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(17, 32, 61, 0.16);
}

/* Right column - AI division */
.sv-feat-card-ai {
  justify-content: space-between;
  min-height: 220px;
}

.sv-feat-card-ic {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 20px;
  color: #a5d84b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: none;
}

.sv-feat-card-p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(226, 233, 245, 0.7);
  margin: 16px 0 0;
  max-width: 19ch;
}

/* Right column - performance gauge */
.sv-feat-card-perf {
  min-height: 200px;
  padding-bottom: 20px;
}

.sv-feat-gauge {
  position: relative;
  margin-top: 12px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sv-feat-gauge svg {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.sv-feat-gauge-min,
.sv-feat-gauge-max {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(226, 233, 245, 0.72);
  letter-spacing: 1.28px;
}

.sv-feat-gauge-min {
  bottom: 8px;
  left: 12%;
}

.sv-feat-gauge-max {
  top: 16px;
  right: 12%;
  color: #d7f7a2;
}

/* Responsive */
@media (max-width: 1199px) {
  .sv-feat-cluster {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 16px;
  }

  .sv-feat-card {
    padding: 22px;
  }

  .sv-feat-browser {
    min-height: 400px;
  }

  .sv-feat-card-h {
    max-width: none;
  }
}

@media (max-width: 991px) {
  .sv-hero-feat {
    gap: 40px;
  }

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

  .sv-feat-col-center {
    grid-column: 1 / -1;
    order: -1;
  }

  .sv-feat-browser {
    min-height: 360px;
  }

  .sv-feat-title {
    font-size: clamp(48px, 7vw, 80px);
  }
}

@media (max-width: 767px) {
  .sv-feat-cluster {
    grid-template-columns: 1fr;
  }

  .sv-feat-col-center {
    order: 0;
  }

  .sv-feat-browser {
    min-height: 320px;
  }

  .sv-feat-browser-nav {
    display: none;
  }

  .sv-feat-title {
    font-size: clamp(41.6px, 9vw, 60.8px);
  }

  .sv-feat-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sv-feat-btn-primary,
  .sv-feat-btn-ghost {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .sv-feat-card {
    padding: 20px;
    min-height: 180px;
  }

  .sv-feat-stats {
    gap: 10px;
  }

  .sv-feat-big-num {
    font-size: 64px;
  }

  .sv-feat-mockup-title {
    font-size: 32px;
  }

  .sv-feat-card-ic {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-feat-dot {
    animation: none;
  }

  .sv-feat-btn-primary:hover,
  .sv-feat-btn-ghost:hover {
    transform: none;
  }
}

/* ============================================================= SERVICES HERO — CREATIVE REBUILD Split layout: morphing headline LEFT, orbital galaxy RIGHT ============================================================= */
.sv-hero-split {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  min-height: 540px;
}

.sv-hero-col-left {
  min-width: 0;
  position: relative;
  z-index: 6;
}

.sv-hero-col-right {
  min-width: 0;
  position: relative;
  z-index: 4;
}

/* Live-status eyebrow pill */
.sv-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 0 0 rgba(122, 204, 13, 0.6);
  animation: sv-live-pulse 1.8s ease-in-out infinite;
}

@keyframes sv-live-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(122, 204, 13, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(122, 204, 13, 0);
  }
}

/* Morphing headline */
.sv-hero-title-morph {
  margin-bottom: 22px;
  font-size: clamp(38.4px, 5vw, 73.6px);
  line-height: 1.08;
}

.sv-morph {
  position: relative;
  display: inline-block;
  min-width: 320px;
  min-height: 17.6px;
  vertical-align: baseline;
}

.sv-morph-item {
  position: absolute;
  top: 0;
  left: 0;
  font-family: inherit;
  font-style: italic;
  background: linear-gradient(135deg, #9fe441 0%, #7ACC0D 50%, #5fa008 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  animation: sv-morph-cycle 17s infinite;
  will-change: opacity, transform;
}

.sv-morph-item:nth-child(1) {
  animation-delay: 0s;
  position: relative;
}

.sv-morph-item:nth-child(2) {
  animation-delay: 3.4s;
}

.sv-morph-item:nth-child(3) {
  animation-delay: 6.8s;
}

.sv-morph-item:nth-child(4) {
  animation-delay: 10.2s;
}

.sv-morph-item:nth-child(5) {
  animation-delay: 13.6s;
}

@keyframes sv-morph-cycle {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  4% {
    opacity: 1;
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
  }

  24% {
    opacity: 0;
    transform: translateY(-14px);
  }

  100% {
    opacity: 0;
    transform: translateY(-14px);
  }
}

/* CTA row */
.sv-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 34px 0 32px;
}

.sv-hero-btn-primary,
.sv-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s var(--sv-ease);
}

.sv-hero-btn-primary {
  background: var(--sv-green);
  color: var(--sv-navy);
  box-shadow: 0 16px 38px -12px rgba(122, 204, 13, 0.6);
}

.sv-hero-btn-primary:hover {
  background: #8edc19;
  color: var(--sv-navy);
  transform: translateY(-2px);
  box-shadow: 0 20px 46px -12px rgba(122, 204, 13, 0.7);
}

.sv-hero-btn-primary i {
  transition: transform 0.25s ease;
}

.sv-hero-btn-primary:hover i {
  transform: translateX(4px);
}

.sv-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.sv-hero-btn-ghost:hover {
  background: rgba(122, 204, 13, 0.14);
  border-color: rgba(122, 204, 13, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.sv-hero-btn-ghost i {
  transition: transform 0.25s ease;
}

.sv-hero-btn-ghost:hover i {
  transform: translateY(3px);
}

/* Trust row */
.sv-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sv-hero-stars-row {
  color: #ffc12a;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 193, 42, 0.35);
}

.sv-hero-proof span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.16px;
}

.sv-hero-proof span strong {
  color: #fff;
  font-weight: 700;
}

/* ========= ORBITAL SERVICE GALAXY (right column) ========= */
.sv-orbit {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

/* Dashed rotating rings */
.sv-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(122, 204, 13, 0.25);
  pointer-events: none;
}

.sv-orbit-ring-outer {
  inset: 0;
  animation: sv-orbit-spin 60s linear infinite;
}

.sv-orbit-ring-mid {
  inset: 14%;
  border-style: solid;
  border-color: rgba(122, 204, 13, 0.12);
  animation: sv-orbit-spin 80s linear infinite reverse;
}

.sv-orbit-ring-inner {
  inset: 28%;
  border-style: dashed;
  border-color: rgba(122, 204, 13, 0.35);
  animation: sv-orbit-spin 40s linear infinite;
}

.sv-orbit-ring-outer::before {
  content: '';
  position: absolute;
  top: -5px;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 14px #7ACC0D;
}

.sv-orbit-ring-inner::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9fe441;
  box-shadow: 0 0 10px #9fe441;
}

@keyframes sv-orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Central brand sphere */
.sv-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 36%, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(122, 204, 13, 0.25) 0%, transparent 55%), linear-gradient(135deg, #09102e 0%, #0b1436 55%, #121b47 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 4;
  border: 2px solid rgba(122, 204, 13, 0.65);
  box-shadow: 0 20px 60px -10px rgba(122, 204, 13, 0.55), 0 0 0 6px rgba(9, 16, 46, 0.4), inset 0 0 30px rgba(122, 204, 13, 0.15);
  animation: sv-orbit-pulse 4s ease-in-out infinite;
}

.sv-orbit-center i {
  font-size: 30px;
  margin-bottom: 4px;
  color: #7ACC0D;
  filter: drop-shadow(0 0 12px rgba(122, 204, 13, 0.6));
}

.sv-orbit-center-label {
  font-family: 'Publico Banner', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(15px, 1.25vw, 18px);
  letter-spacing: -0.16px;
  line-height: 1;
  color: #ffffff;
}

.sv-orbit-center-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  color: #7ACC0D;
  margin-top: 7px;
  padding: 0 12px;
  text-align: center;
  white-space: nowrap;
}

.sv-orbit-center-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.45) 0%, transparent 55%);
  filter: blur(20px);
  z-index: -1;
  animation: sv-orbit-pulse 4s ease-in-out infinite;
}

@keyframes sv-orbit-pulse {

  0%,
  100% {
    box-shadow: 0 20px 60px -10px rgba(122, 204, 13, 0.55), 0 0 0 6px rgba(9, 16, 46, 0.4), inset 0 0 30px rgba(122, 204, 13, 0.15);
  }

  50% {
    box-shadow: 0 24px 70px -8px rgba(122, 204, 13, 0.8), 0 0 0 10px rgba(122, 204, 13, 0.12), inset 0 0 40px rgba(122, 204, 13, 0.25);
  }
}

/* Service nodes around the ring */
.sv-orbit-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 14px;
  background: rgba(9, 16, 46, 0.88);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
  transition: all 0.3s var(--sv-ease);
  white-space: nowrap;
  z-index: 5;
  animation: sv-node-float 5.5s ease-in-out infinite;
}

.sv-orbit-node i {
  color: #7ACC0D;
  font-size: 16px;
}

.sv-orbit-node:hover {
  background: var(--sv-green);
  color: var(--sv-navy);
  border-color: var(--sv-green);
  transform: scale(1.06);
  box-shadow: 0 20px 40px -12px rgba(122, 204, 13, 0.55);
}

.sv-orbit-node:hover i {
  color: var(--sv-navy);
}

.sv-orbit-node-hot {
  display: inline-block;
  background: var(--sv-green);
  color: var(--sv-navy);
  font-size: 9.5px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 1.28px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.sv-orbit-node:hover .sv-orbit-node-hot {
  background: var(--sv-navy);
  color: var(--sv-green);
}

/* Node positions — evenly distributed around the orbit */
.sv-orbit-node-1 {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.sv-orbit-node-2 {
  top: 28%;
  right: -2%;
  animation-delay: -1.1s;
}

.sv-orbit-node-3 {
  bottom: 14%;
  right: 8%;
  animation-delay: -2.2s;
}

.sv-orbit-node-4 {
  bottom: 14%;
  left: 8%;
  animation-delay: -3.3s;
}

.sv-orbit-node-5 {
  top: 28%;
  left: -2%;
  animation-delay: -4.4s;
}

@keyframes sv-node-float {

  0%,
  100% {
    transform: translate(var(--tx, 0), 0);
  }

  50% {
    transform: translate(var(--tx, 0), -8px);
  }
}

.sv-orbit-node-1 {
  --tx: -50%;
}

.sv-orbit-node-1:hover {
  transform: translateX(-50%) scale(1.06);
}

/* Hide background banner slightly on new layout (keep overlay cosmic) */
.sv-hero {
  background-image: linear-gradient(135deg, rgba(9, 16, 46, 0.55), rgba(11, 20, 54, 0.7)), url('../images/banner-7.webp');
  background-blend-mode: normal;
}

/* Scroll-cue position */
.sv-hero .sv-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

/* ============================================================= RESPONSIVE — creative hero ============================================================= */
@media (max-width: 1199px) {
  .sv-hero-split {
    gap: 36px;
  }

  .sv-morph {
    min-width: 260px;
  }
}

@media (max-width: 991px) {
  .sv-hero-split {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .sv-hero-col-left {
    order: 1;
  }

  .sv-hero-col-right {
    order: 2;
  }

  .sv-morph {
    min-width: 0;
    width: 100%;
    text-align: center;
    display: block;
  }

  .sv-morph-item:nth-child(1) {
    position: absolute;
  }

  .sv-morph-item {
    left: 50%;
    transform: translate(-50%, 18px);
  }

  @keyframes sv-morph-cycle {
    0% {
      opacity: 0;
      transform: translate(-50%, 18px);
    }

    4% {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    20% {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    24% {
      opacity: 0;
      transform: translate(-50%, -14px);
    }

    100% {
      opacity: 0;
      transform: translate(-50%, -14px);
    }
  }

  .sv-hero-cta-row,
  .sv-hero-proof {
    justify-content: center;
  }

  .sv-orbit {
    max-width: 420px;
  }

  .sv-hero {
    min-height: 820px;
  }

  .sv-hero .sv-scroll-cue {
    display: none;
  }
}

@media (max-width: 767px) {
  .sv-hero {
    min-height: auto;
    padding: 70px 0 80px;
  }

  .sv-orbit {
    max-width: 340px;
  }

  .sv-orbit-node {
    padding: 8px 12px;
    font-size: 11.5px;
    gap: 6px;
  }

  .sv-orbit-node i {
    font-size: 14px;
  }

  .sv-orbit-center {
    width: clamp(140px, 42%, 168px);
  }

  .sv-orbit-center i {
    font-size: 24px;
  }

  .sv-orbit-center-label {
    font-size: 14px;
  }

  .sv-orbit-center-sub {
    font-size: 9px;
    letter-spacing: 0.96px;
  }

  .sv-hero-btn-primary,
  .sv-hero-btn-ghost {
    padding: 13px 22px;
    font-size: 13.5px;
  }
}

@media (max-width: 575px) {
  .sv-orbit {
    max-width: 300px;
  }

  .sv-orbit-node span {
    display: none;
  }

  .sv-orbit-node {
    padding: 10px;
    border-radius: 50%;
  }

  .sv-orbit-node i {
    font-size: 18px;
  }

  .sv-orbit-node-hot {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sv-orbit-ring,
  .sv-orbit-center,
  .sv-orbit-center-glow,
  .sv-orbit-node,
  .sv-morph-item,
  .sv-live-dot {
    animation: none !important;
  }

  .sv-morph-item {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .sv-morph-item:not(:first-child) {
    display: none;
  }
}

/* ============================================================= SERVICES OVERVIEW — BENTO GRID 5 cards, each with a unique mini-visualization ============================================================= */
.sv-bento {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 22px;
}

/* Grid placement */
.sv-bento-design {
  grid-column: 1 / 8;
  grid-row: 1;
}

.sv-bento-ai {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.sv-bento-dev {
  grid-column: 1 / 5;
  grid-row: 2;
}

.sv-bento-mkt {
  grid-column: 5 / 8;
  grid-row: 2;
}

.sv-bento-brand {
  grid-column: 1 / 13;
  grid-row: 3;
}

/* Shared card shell */
.sv-bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px -28px rgba(9, 16, 46, 0.2);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(9, 16, 46, 0.06);
}

.sv-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -30px rgba(9, 16, 46, 0.3);
}

/* Backgrounds per card */
.sv-bento-design {
  background: linear-gradient(135deg, #f7f8fb 0%, #eef1f7 100%);
}

.sv-bento-dev {
  background: linear-gradient(160deg, #0b1436 0%, #09102e 100%);
  border-color: rgba(255, 255, 255, 0.04);
}

.sv-bento-mkt {
  background: #ffffff;
}

.sv-bento-mkt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7ACC0D 0%, rgba(122, 204, 13, 0) 100%);
}

.sv-bento-brand {
  background: linear-gradient(90deg, #fefce8 0%, #fdf2f8 100%);
}

.sv-bento-ai {
  background: linear-gradient(160deg, #09102e 0%, #0b1436 50%, #152054 100%);
  border-color: rgba(255, 255, 255, 0.06);
  padding: 40px 40px;
}

.sv-bento-ai::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.35) 0%, rgba(122, 204, 13, 0) 60%);
  pointer-events: none;
}

/* Design & Marketing cards: split left-content / right-visual */
.sv-bento-design,
.sv-bento-mkt,
.sv-bento-dev,
.sv-bento-brand {
  flex-direction: row;
  align-items: center;
}

.sv-bento-design .sv-bento-body,
.sv-bento-mkt .sv-bento-body,
.sv-bento-dev .sv-bento-body,
.sv-bento-brand .sv-bento-body {
  flex: 1 1 50%;
  min-width: 0;
}

.sv-bento-design .sv-bento-visual,
.sv-bento-mkt .sv-bento-visual,
.sv-bento-dev .sv-bento-visual,
.sv-bento-brand .sv-bento-visual {
  flex: 1 1 50%;
  min-width: 0;
}

/* AI card: visual on top, body on bottom */
.sv-bento-ai {
  flex-direction: column;
  justify-content: space-between;
}

.sv-bento-ai .sv-bento-visual {
  flex: 1 1 auto;
  width: 100%;
}

.sv-bento-ai .sv-bento-body {
  width: 100%;
}

/* Body text primitives */
.sv-bento-body {
  position: relative;
  z-index: 2;
}

.sv-bento-eyebrow {
  display: inline-block;
  font-size: 11.52px;
  font-weight: 600;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  color: #5fa008;
  margin-bottom: 14px;
}

.sv-bento-eyebrow-dark {
  color: #9dd33a;
}

.sv-bento-title {
  font-family: "Publico Banner", "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  color: #09102e;
  margin: 0 0 12px;
  letter-spacing: -0.16px;
}

.sv-bento-title em {
  font-style: italic;
  font-weight: 500;
}

.sv-bento-title-dark {
  color: #ffffff;
}

.sv-bento-sub {
  font-size: 15.2px;
  line-height: 1.5;
  color: #4b536b;
  margin: 0 0 18px;
  max-width: 42ch;
}

.sv-bento-sub-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* CTAs */
.sv-bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.72px;
  font-weight: 600;
  color: #5fa008;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.sv-bento-cta i {
  transition: transform 0.3s ease;
}

.sv-bento-cta:hover {
  color: #3f7d00;
  gap: 12px;
}

.sv-bento-cta:hover i {
  transform: translateX(3px);
}

.sv-bento-cta-dark {
  color: #9dd33a;
}

.sv-bento-cta-dark:hover {
  color: #c6ec6b;
}

.sv-bento-cta-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.38);
  color: #9dd33a;
}

.sv-bento-cta-pill:hover {
  background: rgba(122, 204, 13, 0.22);
  color: #c6ec6b;
}

/* Ribbon (AI card) */
.sv-bento-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 140, 40, 0.18), rgba(122, 204, 13, 0.18));
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #ffd48a;
  font-size: 11.2px;
  font-weight: 600;
  letter-spacing: 1.28px;
  text-transform: uppercase;
}

.sv-bento-ribbon i {
  color: #ff9a3c;
}

/* ============================ CARD 1 — DESIGN: faux browser + handoff arrow + code brackets ============================ */
.sv-bento-visual-design {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-left: 20px;
}

.sv-bv-browser {
  flex: 0 1 220px;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 18px 40px -16px rgba(9, 16, 46, 0.25);
  border: 1px solid rgba(9, 16, 46, 0.08);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center left;
}

.sv-bento-design:hover .sv-bv-browser {
  transform: rotate(-2deg);
}

.sv-bv-chrome {
  height: 22px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f2f4f9;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
}

.sv-bv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.sv-bv-dot-r {
  background: #ff5f57;
}

.sv-bv-dot-y {
  background: #febc2e;
}

.sv-bv-dot-g {
  background: #28c840;
}

.sv-bv-layout {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: calc(100% - 22px);
}

.sv-bv-hero {
  height: 28%;
  border-radius: 6px;
  background: linear-gradient(90deg, #09102e 0%, #1b2b66 100%);
}

.sv-bv-cols {
  flex: 1;
  display: flex;
  gap: 8px;
}

.sv-bv-col {
  flex: 1;
  border-radius: 6px;
  background: #e7eaf2;
}

.sv-bv-col:last-child {
  background: rgba(122, 204, 13, 0.22);
}

.sv-bv-footer {
  height: 14%;
  border-radius: 6px;
  background: #dde1ec;
}

.sv-bv-handoff {
  flex: 0 0 auto;
  color: #7ACC0D;
  font-size: 22.4px;
  animation: svBvDrift 2.4s ease-in-out infinite;
}

@keyframes svBvDrift {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

.sv-bv-code {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(9, 16, 46, 0.08);
  color: #09102e;
  font-size: 17.6px;
}

/* ============================ CARD 2 — AI: chatbot mockup ============================ */
.sv-bento-visual-ai {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
  margin-bottom: 18px;
}

.sv-ai-chat {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-ai-bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14.08px;
  line-height: 1.4;
  backdrop-filter: blur(6px);
}

.sv-ai-bubble-user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-right-radius: 4px;
}

.sv-ai-bubble-ai {
  align-self: flex-start;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.28);
  color: #eaf7d1;
  border-bottom-left-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sv-ai-avatar {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, #7ACC0D, #5fa008);
  color: #09102e;
  font-size: 13.6px;
}

.sv-ai-msg {
  flex: 1;
}

.sv-ai-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(122, 204, 13, 0.1);
  border: 1px solid rgba(122, 204, 13, 0.22);
}

.sv-ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ACC0D;
  animation: svAiTyping 1.3s ease-in-out infinite;
}

.sv-ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.sv-ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes svAiTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.sv-bento-body-ai {
  margin-top: auto;
}

/* ============================ CARD 3 — DEVELOPMENT: IDE snippet with blinking cursor ============================ */
.sv-bento-visual-dev {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sv-dev-ide {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  background: #050a1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.sv-dev-chrome {
  height: 22px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-dev-code {
  margin: 0;
  padding: 14px 16px;
  font-family: "JetBrains Mono", "Fira Code", Menlo, monospace;
  font-size: 12.48px;
  line-height: 1.7;
  color: #e6e9f2;
  white-space: pre;
  overflow: hidden;
}

.sv-dev-line {
  display: block;
}

.sv-dev-kw {
  color: #7ACC0D;
}

.sv-dev-fn {
  color: #8cb9ff;
}

.sv-dev-str {
  color: #f5d68f;
}

.sv-dev-var {
  color: #e6e9f2;
}

.sv-dev-caret {
  display: inline-block;
  width: 7px;
  height: 15.2px;
  margin-left: 2px;
  vertical-align: -2px;
  background: #7ACC0D;
  animation: svDevBlink 1s steps(1) infinite;
}

@keyframes svDevBlink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ============================ CARD 4 — MARKETING: growth chart ============================ */
.sv-bento-visual-mkt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.sv-mkt-chart {
  width: 100%;
  max-width: 230px;
  height: 120px;
  overflow: visible;
}

.sv-mkt-pt {
  fill: #ffffff;
  stroke: #7ACC0D;
  stroke-width: 2;
}

.sv-mkt-pt-last {
  fill: #7ACC0D;
  animation: svMktPulse 2s ease-in-out infinite;
  transform-origin: 195px 10px;
}

@keyframes svMktPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(122, 204, 13, 0.55));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(122, 204, 13, 0.75));
  }
}

.sv-mkt-stat {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 28px -14px rgba(9, 16, 46, 0.3);
  border: 1px solid rgba(122, 204, 13, 0.25);
}

.sv-mkt-stat i {
  color: #7ACC0D;
  font-size: 16px;
}

.sv-mkt-num {
  font-family: "Publico Banner", "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 21.6px;
  color: #09102e;
  letter-spacing: -0.16px;
}

.sv-mkt-pct {
  color: #7ACC0D;
}

/* ============================ CARD 5 — BRANDING: brand-system preview ============================ */
.sv-bento-visual-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding-left: 20px;
}

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

.sv-brand-swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 6px 14px -6px rgba(9, 16, 46, 0.25);
}

.sv-brand-swatch-navy {
  background: #0b1436;
}

.sv-brand-swatch-green {
  background: #7ACC0D;
}

.sv-brand-swatch-white {
  background: #ffffff;
  border: 1px solid rgba(9, 16, 46, 0.12);
}

.sv-brand-swatch-deep {
  background: #09102e;
}

.sv-brand-aa {
  font-family: "Publico Banner", "Fraunces", Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 35.2px;
  line-height: 1;
  color: #09102e;
  letter-spacing: -0.32px;
}

.sv-brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #7ACC0D, #5fa008);
  color: #09102e;
  font-size: 16px;
  box-shadow: 0 8px 18px -8px rgba(122, 204, 13, 0.5);
}

.sv-brand-bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(9, 16, 46, 0.18);
}

.sv-brand-bar-h1 {
  width: 90px;
  height: 7px;
  background: rgba(9, 16, 46, 0.32);
}

.sv-brand-bar-h2 {
  width: 60px;
}

.sv-brand-bar-body {
  width: 110px;
  height: 4px;
  opacity: 0.55;
}

/* ============================ RESPONSIVE ============================ */

@media (max-width: 991.98px) {
  .sv-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .sv-bento-ai {
    grid-column: 1 / 3;
    grid-row: auto;
    order: -1;
    min-height: 420px;
  }

  .sv-bento-design {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .sv-bento-dev {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .sv-bento-mkt {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .sv-bento-brand {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 767.98px) {
  .sv-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv-bento-card {
    grid-column: 1 / -1 !important;
    padding: 26px 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .sv-bento-ai {
    order: -1;
    padding: 28px 26px;
  }

  .sv-bento-ai .sv-bento-visual {
    min-height: 200px;
  }

  .sv-bento-design .sv-bento-visual,
  .sv-bento-mkt .sv-bento-visual,
  .sv-bento-dev .sv-bento-visual,
  .sv-bento-brand .sv-bento-visual {
    padding-left: 0;
    margin-top: 8px;
  }

  .sv-bento-visual-design {
    justify-content: center;
  }

  .sv-bento-visual-dev {
    justify-content: center;
  }

  .sv-bento-title {
    font-size: 23.2px;
  }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {

  .sv-bento-card,
  .sv-bv-browser,
  .sv-bv-handoff,
  .sv-ai-typing span,
  .sv-mkt-pt-last,
  .sv-dev-caret {
    transition: none !important;
    animation: none !important;
  }

  .sv-dev-caret {
    opacity: 1;
  }
}

/* Hide the old sv-cards-grid styles if they ever render */
.sv-cards-grid {
  display: none;
}

/* ============================================================= BENTO CARD SERVICE-BADGE (top-left icon tile for recognition) ============================================================= */
.sv-bento-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa008 100%);
  color: #09102e;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px -10px rgba(122, 204, 13, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.3s ease, color 0.3s ease;
}

.sv-bento-badge i {
  line-height: 1;
  color: inherit;
  display: block;
}

/* Dark variant — for cards on dark backgrounds (AI + Dev) */
.sv-bento-badge-dark {
  background: linear-gradient(135deg, #0f1d4f 0%, #09102e 100%);
  color: #7ACC0D;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(122, 204, 13, 0.45);
}

/* Hover: badge tilts + dark variant flips to green */
.sv-bento-card:hover .sv-bento-badge {
  transform: rotate(-6deg) scale(1.08);
}

.sv-bento-card:hover .sv-bento-badge-dark {
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa008 100%);
  color: #09102e;
}

@media (max-width: 767px) {
  .sv-bento-badge {
    width: 40px;
    height: 40px;
    font-size: 17px;
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-bento-card:hover .sv-bento-badge {
    transform: none;
  }
}

/* ============================================================ SERVICES PROJECTS — cream-bg horizontal-scroll cards (.svp-*) ============================================================ */

.svp {
  position: relative;
  background: #ece9e3;
  /* cream / warm light */
  padding: 90px 0 100px;
  overflow: hidden;
}

.svp-container {
  max-width: 1840px;
  padding-left: 64px;
  padding-right: 0;
  /* row bleeds off the right edge */
}

/* Header: heading left, paragraph right */
.svp-head {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-right: 64px;
}

.svp-title {
  font-family: 'Inter', 'Fraunces', sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #0a0a0f;
  margin: 0;
}

.svp-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a4a55;
  margin: 0 0 12px;
  max-width: 540px;
  justify-self: end;
}

/* Static grid — 5 boxes in a row, no slider */
.svp-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 28px 64px 28px 0;
}

/* Card base */
.svp-card {
  position: relative;
  border-radius: 28px;
  background: #f7f5f0;
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-height: 540px;
  /* Soft idle shadow — gives gentle depth even at rest */
  box-shadow: 0 1px 2px rgba(10, 10, 15, 0.04), 0 8px 16px rgba(10, 10, 15, 0.04);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, background 0.5s ease;
}

.svp-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  /* lifts to pure white on hover */
  box-shadow: 0 4px 8px rgba(10, 10, 15, 0.05), 0 28px 56px rgba(10, 10, 15, 0.16), 0 0 0 1px rgba(122, 204, 13, 0.18);
  /* subtle brand-green ring */
}

/* Floating circular arrow icon — CENTERED, peeking out Position alternates: TEXT-FIRST cards → arrow at TOP (↗); IMAGE-FIRST cards → arrow at BOTTOM (↘) */
.svp-card-arrow {
  position: absolute;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(10, 10, 15, 0.04), 0 8px 18px rgba(10, 10, 15, 0.10);
  transition: background 0.35s ease, color 0.35s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.svp-card-text .svp-card-arrow {
  top: -28px;
  transform: translateX(-50%);
}

.svp-card-image .svp-card-arrow {
  bottom: -28px;
  top: auto;
  transform: translateX(-50%);
}

/* On card OR arrow hover, arrow flips to brand green and rotates with bouncy spring */
.svp-card-text:hover .svp-card-arrow,
.svp-card-text .svp-card-arrow:hover {
  background: #7ACC0D;
  color: #06091c;
  transform: translateX(-50%) rotate(45deg) scale(1.1);
  box-shadow: 0 4px 10px rgba(122, 204, 13, 0.25), 0 14px 28px rgba(122, 204, 13, 0.35);
}

.svp-card-image:hover .svp-card-arrow,
.svp-card-image .svp-card-arrow:hover {
  background: #7ACC0D;
  color: #06091c;
  transform: translateX(-50%) rotate(45deg) scale(1.1);
  box-shadow: 0 4px 10px rgba(122, 204, 13, 0.25), 0 14px 28px rgba(122, 204, 13, 0.35);
}

/* Text blocks */
.svp-card-text-top {
  padding: 54px 26px 18px;
  text-align: center;
}

.svp-card-text-bottom {
  padding: 22px 26px 50px;
  text-align: center;
}

.svp-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: #0a0a0f;
  margin: 0 0 10px;
  transition: color 0.35s ease;
}

.svp-card-title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1.5px;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  transition: background-size 0.35s ease;
}

.svp-card:hover .svp-card-title a {
  background-size: 100% 1.5px;
}

.svp-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #5a5a65;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.35s ease;
}

.svp-card:hover .svp-card-sub {
  color: #2a2a35;
}

/* Image area — consistent sizing across both card variants */
.svp-card-img {
  margin: 14px;
  border-radius: 22px;
  overflow: hidden;
  background: #1f1f24;
  position: relative;
  aspect-ratio: 4 / 4.4;
  flex: 0 0 auto;
}

.svp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s ease;
  filter: saturate(0.95);
}

.svp-card:hover .svp-card-img img {
  transform: scale(1.06);
  filter: saturate(1.15);
}

/* Subtle dark vignette on the image, lifts on hover */
.svp-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.18) 100%);
  pointer-events: none;
  transition: opacity 0.45s ease;
  opacity: 0.85;
}

.svp-card:hover .svp-card-img::after {
  opacity: 0.4;
}

/* TEXT-FIRST card → image flush at bottom (no top margin so text/image gap is just the text padding) */

.svp-card-text .svp-card-img {
  margin-top: 0;
}

/* IMAGE-FIRST card → image flush at top (no bottom margin so image/text gap is just the text padding) */
.svp-card-image .svp-card-img-top {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1399px) {
  .svp-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .svp-card {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .svp {
    padding: 70px 0 80px;
  }

  .svp-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .svp-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
    padding-right: 0;
  }

  .svp-sub {
    justify-self: start;
    max-width: 100%;
  }

  .svp-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 0;
  }

  .svp-card-img {
    aspect-ratio: 4 / 3.4;
    max-height: 320px;
  }

}

@media (max-width: 767px) {

  /* On mobile every card follows the same layout regardless of text-first / image-first desktop variants: 1. Image  2. Title  3. Sub text  4. Button (arrow) No dead space, equal gaps. */
  .svp-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 0;
  }

  .svp-card {
    min-height: 0 !important;
    overflow: hidden;
    padding-bottom: 22px;
  }

  /* Force image to top in both variants */
  .svp-card-img,
  .svp-card-img-top {
    order: 1 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    aspect-ratio: 16 / 10 !important;
    max-height: none !important;
    width: 100%;
  }

  /* Force text block to follow image */
  .svp-card-text-top,
  .svp-card-text-bottom {
    order: 2 !important;
    padding: 18px 22px 6px !important;
    text-align: left !important;
  }

  .svp-card-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .svp-card-sub {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Arrow turns into a flush in-flow "button" at the bottom of every card */
  .svp-card-arrow,
  .svp-card-text .svp-card-arrow,
  .svp-card-image .svp-card-arrow {
    order: 3 !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 14px 22px 0 !important;
    align-self: flex-start;
    width: 44px;
    height: 44px;
    font-size: 16px;
    background: #7ACC0D;
    color: #06091c;
    box-shadow: 0 6px 16px rgba(122, 204, 13, 0.28);
  }

  .svp-card-text:hover .svp-card-arrow,
  .svp-card-text .svp-card-arrow:hover,
  .svp-card-image:hover .svp-card-arrow,
  .svp-card-image .svp-card-arrow:hover {
    transform: rotate(45deg) scale(1.08) !important;
  }
}

@media (max-width: 575px) {
  .svp-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .svp-card-img,
  .svp-card-img-top {
    aspect-ratio: 16 / 10 !important;
  }

  .svp-card-title {
    font-size: 20px;
  }

}

/* ============================================================ MID-BANNER — About Our Agency (.svm-*) ============================================================ */

.svm {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #5b2ee8;

  /* SOLID purple — no gradient, no pattern */
}

/* Image painted directly on the section, left 42% */
.svm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42%;
  background-image: url('../images/midboxbanner.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1a1a1f;
  z-index: 0;
}

.svm-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 640px;
}

.svm-photo {
  /* Empty placeholder column — the bg image lives on .svm::before */
  min-height: 640px;
}

.svm-content {
  position: relative;
  background: #5b2ee8;
  /* SOLID purple */
  color: #fff;
  display: flex;
  align-items: center;
}

.svm-pattern {
  display: none;
}

.svm-inner {
  position: relative;
  z-index: 1;
  padding: 80px 90px;
  width: 100%;
}

.svm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 26px;
}

.svm-eyebrow-line {
  display: inline-block;
  width: 56px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.svm-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.24px;
  color: #fff;
  margin: 0 0 22px;
}

.svm-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px;
  max-width: 760px;
}

.svm-checks {
  margin: 0 0 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svm-checks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}

.svm-checks li i {
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.svm-cta-row {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.svm-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 16px 28px;
  border-radius: 999px;
  background: #0a0a0f;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform 0.25s ease, gap 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.svm-cta:hover {
  transform: translateY(-2px);
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.svm-cta i {
  font-size: 16px;
}

/* SINCE 2015 badge */
.svm-since {
  position: relative;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
}

.svm-since-burst {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.svm-since-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.56px;
  margin-bottom: 4px;
}

.svm-since-year {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.64px;
}

/* Responsive */
@media (max-width: 991px) {
  .svm {
    min-height: 0;
  }

  .svm::before {
    position: relative;
    width: 100%;
    height: 480px;
    padding-bottom: 0;
    display: block;
  }

  .svm-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .svm-photo {
    display: none;
  }

  .svm-inner {
    padding: 60px 32px;
    max-width: 100%;
  }



}

@media (max-width: 767px) {
  .svm::before {
    height: 240px;
  }
}

@media (max-width: 575px) {
  .svm::before {
    height: 200px;
  }

  .svm-inner {
    padding: 50px 24px;
  }

  .svm-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .svm-since {
    width: 110px;
    height: 110px;
  }

  .svm-since-year {
    font-size: 28px;
  }
}

/* ============================================================ NEW SERVICES HERO (.svh-*) — full-bleed photo right, copy left, chrome doodle decoration, rotating circular badge, logo marquee ============================================================ */
.svh {
  position: relative;
  background: #06091c;
  color: #fff;
  padding: 90px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.svh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svh-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Soft left-side gradient — keeps headline legible without dimming the banner image */
.svh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 9, 28, 0.78) 0%, rgba(6, 9, 28, 0.55) 30%, rgba(6, 9, 28, 0.10) 55%, transparent 80%);
}

/* Light rays sweep from top-left */
.svh-rays {
  position: absolute;
  top: -50px;
  left: -150px;
  width: 1100px;
  height: 1100px;
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(from 130deg at 0% 0%, transparent 0deg, rgba(122, 204, 13, 0.18) 22deg, rgba(122, 204, 13, 0.05) 28deg, transparent 32deg, rgba(122, 204, 13, 0.22) 42deg, rgba(122, 204, 13, 0.08) 50deg, transparent 60deg, rgba(122, 204, 13, 0.30) 70deg, rgba(122, 204, 13, 0.10) 78deg, transparent 90deg, rgba(122, 204, 13, 0.18) 100deg, transparent 120deg);
  filter: blur(2px);
  mask-image: radial-gradient(800px 600px at 0% 0%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(800px 600px at 0% 0%, #000 0%, transparent 70%);
}

.svh>.container {
  position: relative;
  z-index: 2;
}

.svh-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
  min-height: 640px;
  padding-bottom: 90px;
}

/* Left copy ------------------------------------------------- */
.svh-copy {
  position: relative;
}

.svh-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(122, 204, 13, 0.45);
  background: rgba(122, 204, 13, 0.10);
  color: #c5f07a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.svh-tagline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 12px #7ACC0D;
  animation: svhTagPulse 1.6s ease-in-out infinite;
}

@keyframes svhTagPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svh-tagline-dot {
    animation: none;
  }
}

.svh-title {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 800;
  font-size: clamp(30px, 5.6vw, 84px);
  line-height: 1.2;
  letter-spacing: -0.32px;
  color: #fff;
  margin: 0 0 26px;
}

.svh-title em {
  font-style: italic;
}

.svh-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 0 32px;
}

.svh-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px 18px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa908 100%);
  color: #06091c;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2.88px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(122, 204, 13, 0.35);
  transition: transform .25s ease, gap .25s ease, box-shadow .25s ease;
}

.svh-cta:hover {
  transform: translateY(-3px);
  gap: 16px;
  box-shadow: 0 22px 48px rgba(122, 204, 13, 0.5);
}

.svh-cta i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #06091c;
  color: #7ACC0D;
  font-size: 13px;
}

/* Right column — circular rotating badge floating over the banner */
.svh-photo-wrap {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 720px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating circular badge */
.svh-badge {
  position: relative;
  margin-right: 30px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a4d 0%, #06091c 100%);
  border: 2px solid rgba(122, 204, 13, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  transition: transform .35s ease, box-shadow .35s ease;
}

.svh-badge:hover {
  transform: scale(1.04);
  box-shadow: 0 36px 70px rgba(122, 204, 13, 0.35);
}

.svh-badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: svhBadgeSpin 14s linear infinite;
}

@keyframes svhBadgeSpin {
  to {
    transform: rotate(360deg);
  }
}

.svh-badge-core {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: #06091c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform .3s ease, color .3s ease, background .3s ease;
}

.svh-badge:hover .svh-badge-core {
  background: #7ACC0D;
  color: #06091c;
  transform: rotate(45deg);
}

/* Bottom logo / trust marquee ------------------------------ */
.svh-marquee {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, #7ACC0D 0%, #5fa908 100%);
  border-top: 2px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  padding: 18px 0;
}

.svh-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: svhMarquee 40s linear infinite;
  width: max-content;
  padding-left: 36px;
}

@keyframes svhMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.svh-m-logo {
  display: inline-flex;
  align-items: center;
  height: 38px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  /* logos go monochrome white */
  opacity: 0.95;
}

.svh-m-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.svh-m-fb {
  filter: none;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.svh-m-fb>i {
  font-size: 22px;
  color: #fff;
}

.svh-m-google>i {
  font-size: 20px;
  color: #fff;
}

.svh-m-fb .svh-m-stars {
  display: inline-flex;
  gap: 1px;
  margin-left: 4px;
  font-size: 10px;
  color: #fff;
}

.svh-m-sep {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  flex-shrink: 0;
}

/* Trust stamp badges (CSS-rendered) */
.svh-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  transition: transform .25s ease;
}

.svh-stamp::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.6);
}

.svh-stamp-a {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.64px;
  line-height: 1.05;
}

.svh-stamp-b {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.28px;
  line-height: 1.1;
  margin-top: 1px;
  opacity: 0.92;
}

.svh-stamp-trust {
  background: rgba(220, 38, 38, 0.85);
  border-color: #fff;
}

.svh-stamp-satisfied {
  background: rgba(34, 197, 94, 0.85);
}

.svh-stamp-guarantee {
  background: rgba(34, 197, 94, 0.85);
}

.svh-stamp-247 {
  background: rgba(255, 255, 255, 0.15);
}

@media (prefers-reduced-motion: reduce) {

  .svh-doodle,
  .svh-badge-svg,
  .svh-marquee-track {
    animation: none;
  }
}

/* Responsive ------------------------------------------------ */
@media (max-width: 1399px) {
  .svh-title {
    font-size: clamp(30px, 5.6vw, 48px);
    line-height: 1.2;
  }

  .svp-title {
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.2;
  }

  .svm-title {
    font-size: clamp(30px, 4.4vw, 50px);
  }
}

@media (max-width: 1199px) {
  .svh-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .svh-photo-wrap {
    max-width: 100%;
  }

  .svh-badge {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: -28px;
  }

  .svh-badge-core {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .svp-title {
    font-size: clamp(30px, 4.5vw, 38px);
  }

  .svm-inner {
    padding: 0px 60px 0px 0px;
  }

  .sv-price-num {
    font-size: 25px;
  }

  .sv-final-rocket {
    display: none;
  }
section.svh {
    padding-bottom: 0;
}
.svp-card {
    min-height: auto;
}
section.svp .svp-row {
    gap: 65px 25px !important;
    padding: 0;
}
.svp-card {
        margin-bottom: 0;
    }
section.svm {
    padding: 0;
}
}

@media (max-width: 991px) {
  .svh {
    padding-top: 60px;
  }

  .svh-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 30px;
    padding-bottom: 80px;
  }

  .svh-photo-wrap {
    max-width: 560px;
    margin: 0 auto;
    min-height: 220px;
  }

.svm-inner {
        padding: 60px 32px;
    }

.svh-tagline {
    padding: 8px 10px 8px 10px;
    font-size: 11px;
}

}

@media (max-width: 767px) {
  .svh-photo-wrap {
    min-height: 180px;
  }

  .svh-badge {
    width: 130px;
    height: 130px;
  }

  .svh-badge-core {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }
section.svp .svp-row {
        gap: 25px 25px !important;
    }
.svm-checks li {
    gap: 10px;
    font-size: 16px;
}


}

@media (max-width: 575px) {
  .svh-photo-wrap {
    min-height: 160px;
  }

  .svh-badge {
    width: 120px;
    height: 120px;
  }

  .svh-marquee {
    padding: 14px 0;
  }

  .svh-m-logo {
    height: 28px;
  }

  .svh-m-fb {
    font-size: 14px;
  }

  .svh-m-fb>i {
    font-size: 18px;
  }

  .svh-stamp {
    width: 50px;
    height: 50px;
  }

  .svh-stamp-a {
    font-size: 8px;
  }

  .svh-stamp-b {
    font-size: 6.5px;
  }

  .svh-doodle {
    width: 56px;
    height: 64px;
  }

  .svh-cta {
    padding: 14px 22px 14px 24px;
    font-size: 11px;
    gap: 10px;
  }

  .svh-cta i {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
.svm-inner {
        padding: 50px 16px;
    }







}