/* =============================================
   styles.css — Service: Website & Digital
   MUHAZU Global
   ============================================= */

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ============================================= */
/* SECTION 01 — HERO                             */
/* ============================================= */

/* ---- Hero load animations ---- */
@keyframes sv-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes sv-fade-scale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes sv-bg-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1);    }
}

.sv-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sv-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: sv-bg-zoom 1200ms ease-out forwards;
}

.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.sv-hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 5% 88px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* ---- Eyebrow ---- */
.sv-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #CCF045;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
}

/* ---- H1 ---- */
.sv-h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  max-width: 580px;
  margin: 0;
}

/* ---- Para ---- */
.sv-hero-para {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.80);
  max-width: 460px;
  line-height: 1.75;
  margin: 0;
}

/* ---- Stat badge ---- */
.sv-stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 24px;
  margin-top: 8px;
  gap: 3px;
}

.sv-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1;
}

.sv-stat-plus {
  font-size: 1.4rem;
  font-weight: 700;
}

.sv-stat-label {
  font-size: 0.72rem;
  color: #888888;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- Load animations (triggered by .is-loaded on body) ---- */
.sv-anim-1,
.sv-anim-2,
.sv-anim-3,
.sv-anim-4 {
  opacity: 0;
}

body.is-loaded .sv-anim-1 {
  animation: sv-fade-up 400ms ease forwards;
  animation-delay: 0ms;
}

body.is-loaded .sv-anim-2 {
  animation: sv-fade-up 650ms ease forwards;
  animation-delay: 120ms;
}

body.is-loaded .sv-anim-3 {
  animation: sv-fade-up 500ms ease forwards;
  animation-delay: 260ms;
}

body.is-loaded .sv-anim-4 {
  animation: sv-fade-scale 400ms ease forwards;
  animation-delay: 380ms;
}

body.is-loaded .sv-anim-5 {
  animation: sv-fade-up 800ms ease forwards;
  animation-delay: 500ms;
}

/* ---- Big decorative stat (bleeds off hero bottom) ---- */
.sv-hero-big-stat {
  position: absolute;
  bottom: -0.12em;
  left: 55%;
  font-size: clamp(9rem, 20vw, 19rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}

/* ---- Hero responsive ---- */
@media (max-width: 768px) {
  .sv-hero {
    min-height: 420px;
  }

  .sv-hero-content {
    padding: 100px 5% 52px;
    gap: 12px;
  }

  .sv-h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .sv-h1 br {
    display: none;
  }

  .sv-hero-para {
    font-size: 0.875rem;
  }

  .sv-hero-big-stat {
    font-size: clamp(4.5rem, 18vw, 6.5rem);
    bottom: -0.1em;
  }
}

@media (max-width: 480px) {
  .sv-hero-content {
    padding: 90px 5% 44px;
  }

  .sv-h1 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .sv-hero-big-stat {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }
}

/* ============================================= */
/* SECTION 02 — SERVICE FEATURE SPLIT            */
/* ============================================= */

/* ---- Scroll reveal base ---- */
.sv-reveal-left,
.sv-reveal-right,
.sv-reveal-up {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--sv-delay, 0ms);
}

.sv-reveal-left  { transform: translateX(-28px); }
.sv-reveal-right { transform: translateX(28px);  }
.sv-reveal-up    { transform: translateY(14px);  }

.sv-reveal-left.is-visible,
.sv-reveal-right.is-visible,
.sv-reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Section wrapper ---- */
.sv-split {
  background: #ffffff;
  padding: 100px 5%;
}

.sv-split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Left col ---- */
.sv-split-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-split-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.25;
  max-width: 460px;
  margin: 0 0 16px;
}

.sv-split-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555555;
  max-width: 460px;
  margin: 0 0 36px;
}

/* ---- Feature blocks ---- */
.sv-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
}

.sv-feature--divided {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sv-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f4f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0D0D0D;
  margin-top: 2px;
}

.sv-feature-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-feature-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.sv-feature-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* ---- Right col: image stack ---- */
.sv-image-stack {
  position: relative;
  height: 480px;
  flex-shrink: 0;
  overflow: hidden;
}

@keyframes sv-stack-explode-mob {
  0%   { transform: scale(1);    opacity: 0; }
  2%   { transform: scale(1);    opacity: 1; }
  14%  { transform: scale(1.15); opacity: 1; }
  28%  { transform: scale(1.5);  opacity: 0; }
  100% { transform: scale(1.5);  opacity: 0; }
}

@keyframes sv-stack-explode {
  0%   { transform: scale(1);   opacity: 0; }
  2%   { transform: scale(1);   opacity: 1; }
  14%  { transform: scale(1.4); opacity: 1; }
  28%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.sv-stack-img {
  position: absolute;
  width: 50%;
  height: auto;
  animation: sv-stack-explode 18s linear infinite;
}

.sv-stack-img--1 { top: 0;     right: 0;   z-index: 1; animation-delay:   0s; }
.sv-stack-img--2 { bottom: 0;  left: 0;    z-index: 2; animation-delay:  -3s; }
.sv-stack-img--3 { top: 28%;   right: 2%;  z-index: 3; animation-delay:  -6s; }
.sv-stack-img--4 { top: 4%;    left: 4%;   z-index: 4; animation-delay:  -9s; }
.sv-stack-img--5 { bottom: 4%; right: 8%;  z-index: 5; animation-delay: -12s; }
.sv-stack-img--6 { top: 52%;   left: 18%;  z-index: 6; animation-delay: -15s; }

@media (prefers-reduced-motion: reduce) {
  .sv-stack-img { animation: none; opacity: 1; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .sv-split-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sv-image-stack {
    height: 360px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .sv-stack-img--3 {
    right: 0;
  }
}

@media (max-width: 768px) {
  .sv-split {
    padding: 64px 5%;
  }

  .sv-image-stack {
    height: 240px;
    overflow: visible;
  }

  /* All images fill container and cycle in place */
  .sv-stack-img--1,
  .sv-stack-img--2,
  .sv-stack-img--3,
  .sv-stack-img--4,
  .sv-stack-img--5,
  .sv-stack-img--6 {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
  }

  /* Smaller, slower explode for mobile */
  .sv-stack-img {
    animation-name: sv-stack-explode-mob;
    animation-duration: 30s;
  }

  .sv-stack-img--1 { animation-delay:   0s; }
  .sv-stack-img--2 { animation-delay:  -5s; }
  .sv-stack-img--3 { animation-delay: -10s; }
  .sv-stack-img--4 { animation-delay: -15s; }
  .sv-stack-img--5 { animation-delay: -20s; }
  .sv-stack-img--6 { animation-delay: -25s; }
}

@media (max-width: 480px) {
  .sv-image-stack {
    height: 200px;
    overflow: visible;
  }
}

/* ============================================= */
/* SECTION 02B — PORTFOLIO MOCKUP GRID           */
/* ============================================= */

@keyframes sv-pf-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes sv-pf-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.sv-portfolio {
  background: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.sv-portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.sv-portfolio-head {
  margin-bottom: 52px;
}

.sv-portfolio-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
}

.sv-portfolio-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
}

.sv-portfolio-h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.2;
  margin: 0;
}

/* ---- Marquee rows ---- */
.sv-pf-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 16px;
}

.sv-pf-row:last-child {
  margin-bottom: 0;
}

.sv-pf-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

.sv-pf-track--left {
  animation: sv-pf-left 36s linear infinite;
}

.sv-pf-track--right {
  animation: sv-pf-right 36s linear infinite;
}

.sv-pf-row:hover .sv-pf-track {
  animation-play-state: paused;
}

.sv-pf-item {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0D0D0D;
}

.sv-pf-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .sv-portfolio        { padding: 56px 0 64px; }
  .sv-portfolio-head   { margin-bottom: 36px; }
  .sv-portfolio-h2     { font-size: 1.5rem; }
  .sv-pf-item          { width: clamp(200px, 72vw, 280px); }
}

@media (max-width: 480px) {
  .sv-portfolio        { padding: 48px 0 52px; }
  .sv-pf-item          { width: clamp(180px, 80vw, 240px); }
}

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

/* ============================================= */
/* SECTION 03 — MARQUEE (watermark style)        */
/* ============================================= */

@keyframes sv-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sv-marquee {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

/* Bottom fade */
.sv-marquee::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 2;
}

.sv-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: sv-marquee-scroll 100s linear infinite;
  will-change: transform;
}

.sv-marquee-item {
  font-size: 9vw;
  font-weight: 800;
  color: #0D0D0D;
  opacity: 0.08;
  padding: 0 2vw;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.sv-marquee-sep {
  font-weight: 400;
  margin: 0 0.5vw;
}

@media (prefers-reduced-motion: reduce) {
  .sv-marquee-track {
    animation-play-state: paused;
  }
}

/* ============================================= */
/* SECTION 04 — STATS + HEADING (circle layout)  */
/* ============================================= */

.sv-stats {
  background: #ffffff;
  padding: 80px 5% 120px;
}

.sv-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Heading block ---- */
.sv-stats-head {
  margin-bottom: 80px;
}

.sv-stats-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #0D0D0D;
  line-height: 1.2;
  max-width: 580px;
  margin: 0 0 14px;
}

.sv-stats-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #666666;
  max-width: 540px;
  margin: 0;
}

/* ---- 3 overlapping circles ---- */
.sv-circles {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sv-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-circle + .sv-circle {
  margin-left: -60px;
}

.sv-circle--outline {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.sv-circle--lime {
  background: #CCF045;
  position: relative;
  z-index: 1;
}

/* ---- Circle content ---- */
.sv-circle-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  gap: 8px;
}

.sv-circle-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.sv-circle-number span:first-child {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0D0D0D;
}

.sv-circle-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #0D0D0D;
}

.sv-circle-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0;
}

.sv-circle-body {
  font-size: 0.82rem;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.sv-circle--lime .sv-circle-body {
  color: rgba(0, 0, 0, 0.65);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .sv-circle {
    width: 280px;
    height: 280px;
  }

  .sv-circle + .sv-circle {
    margin-left: -40px;
  }

  .sv-circle-number span:first-child {
    font-size: 2.5rem;
  }

  .sv-circle-suffix {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .sv-circles {
    flex-direction: column;
    gap: 16px;
  }

  .sv-circle {
    width: 260px;
    height: 260px;
  }

  .sv-circle + .sv-circle {
    margin-left: 0;
  }

  .sv-stats       { padding: 64px 5% 72px; }
  .sv-stats-h2    { font-size: 1.5rem; }
  .sv-stats-head  { margin-bottom: 52px; }
}

@media (max-width: 400px) {
  .sv-circle {
    width: 220px;
    height: 220px;
  }

  .sv-circle-number span:first-child { font-size: 2.2rem; }
  .sv-circle-suffix                  { font-size: 1.3rem; }
}

/* ============================================= */
/* SECTION 06 — STACKED SCROLL CARDS             */
/* ============================================= */

.sv-cards {
  background: #EBEBF5;
  padding: 80px 0 60px;
}

.sv-cards-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Each card */
.sv-card {
  display: grid;
  grid-template-columns: 45% 55%;
  height: 60vh;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,0.06);
  transform-origin: top center;
  margin-top: 20px;
  position: relative;
}

/* Description column */
.sv-card__desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  gap: 22px;
  position: relative;
}

/* Eyebrow tag */
.sv-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #CCF045;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid #CCF045;
  margin: 0;
}

/* Title */
.sv-card__title {
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
}

/* Body */
.sv-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
  margin: 0;
}

/* CTA split button */
.sv-card-cta {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  width: fit-content;
  margin-top: 4px;
}

.sv-card-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #CCF045;
  color: #0D0D0D;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.sv-card-cta-label {
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 200ms ease;
}

.sv-card-cta:hover .sv-card-cta-icon  { background: #d4f55e; }
.sv-card-cta:hover .sv-card-cta-label { background: rgba(255,255,255,0.15); }

/* Watermark number */
.sv-card__num {
  position: absolute;
  bottom: 28px;
  left: 56px;
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Figure column */
.sv-card__fig {
  position: relative;
  overflow: hidden;
}

.sv-card__fig img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Graphic figure (no photo — Card 3) */
.sv-card__fig--graphic {
  background: linear-gradient(135deg, #CCF045 0%, #b8da00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-card__fig-icon {
  color: rgba(0,0,0,0.16);
}

/* Spacer after last card */
.sv-cards-spacer {
  height: 60vh;
}

/* Mobile */
@media (max-width: 900px) {
  .sv-cards { padding: 48px 0 0; }

  .sv-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    border-radius: 14px;
    transform: none !important;
  }

  .sv-card__fig       { height: auto; order: -1; }
  .sv-card__fig--graphic { height: 200px; }

  .sv-card__fig img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .sv-card__desc {
    padding: 40px 28px 52px;
    gap: 18px;
  }

  .sv-card__num { bottom: 16px; left: 28px; font-size: 4rem; }
  .sv-cards-spacer { height: 48px; }
}

@media (max-width: 600px) {
  .sv-card__title { font-size: 1.45rem; }
  .sv-card__text  { font-size: 0.875rem; }
  .sv-card__desc  { padding: 32px 20px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-card { transform: none !important; }
}

/* ============================================= */
/* SECTION 07 — GROW FASTER / SERVICE LINKS      */
/* ============================================= */

.sv-grow {
  background: #ffffff;
  padding: 110px 5%;
}

.sv-grow-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 80px;
  align-items: start;
}

.sv-grow-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
}

.sv-grow-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
}

.sv-grow-h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0D0D0D;
  margin: 0;
  max-width: 380px;
}

/* ---- Arrow link list ---- */
.sv-arrow-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.sv-arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  border: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  color: #0D0D0D;
  text-decoration: none;
  transition: padding-left 200ms ease, border-color 200ms ease, background 200ms ease;
}

.sv-arrow-links .sv-arrow-link:first-child {
  border-top-color: rgba(0, 0, 0, 0.10);
}

.sv-arrow-link:hover {
  padding-left: 24px;
  border-color: #CCF045;
  background: rgba(204, 240, 69, 0.06);
}

.sv-arrow-link-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 200ms ease;
}

.sv-arrow-link:hover .sv-arrow-link-text {
  color: #0D0D0D;
}

.sv-arrow-link-icon {
  font-size: 1.25rem;
  color: #CCF045;
  flex-shrink: 0;
  margin-left: 16px;
  display: inline-block;
  transition: transform 200ms ease;
}

.sv-arrow-link:hover .sv-arrow-link-icon {
  transform: translate(3px, -3px);
}

/* ---- Image ---- */
.sv-grow-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* ---- Reveal delay support ---- */
.sv-reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease calc(var(--sv-delay, 0ms)),
              transform 600ms ease calc(var(--sv-delay, 0ms));
}

.sv-reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.sv-reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.sv-reveal-up.is-visible,
.sv-reveal-left.is-visible,
.sv-reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .sv-grow-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sv-grow-h2 { max-width: none; }

  .sv-grow        { padding: 80px 5%; }
}

@media (max-width: 600px) {
  .sv-grow            { padding: 64px 5%; }
  .sv-grow-h2         { font-size: 1.7rem; }
  .sv-arrow-link      { padding: 16px 0; }
  .sv-arrow-link-text { font-size: 0.925rem; }
}

@media (max-width: 400px) {
  .sv-grow-h2         { font-size: 1.5rem; }
  .sv-arrow-link-text { font-size: 0.875rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-arrow-link,
  .sv-arrow-link-icon,
  .sv-reveal-up,
  .sv-reveal-left,
  .sv-reveal-right {
    transition: none;
  }
}

/* ============================================= */
/* SECTION 08 — TESTIMONIALS CAROUSEL            */
/* ============================================= */

.sv-testimonials {
  background: #F9F9F7;
  padding: 110px 0 0;
  overflow: hidden;
}

.sv-testi-head {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sv-testi-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
}

.sv-testi-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
}

.sv-testi-h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: #0D0D0D;
  margin: 0 0 20px;
}

.sv-testi-para {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 36px;
}

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

.sv-proof-avatars {
  display: flex;
  align-items: center;
}

.sv-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #F9F9F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0D0D0D;
  margin-left: -10px;
  flex-shrink: 0;
}

.sv-avatar:first-child { margin-left: 0; }

.sv-avatar--lime { background: #CCF045; }
.sv-avatar--dark { background: #0D0D0D; color: #CCF045; }
.sv-avatar--gray { background: #D4D4D4; }

.sv-proof-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.sv-proof-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sv-rating-score {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0D0D0D;
}

.sv-stars {
  display: flex;
  gap: 2px;
}

.sv-star {
  font-size: 13px;
  color: #F5A623;
}

.sv-proof-label {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 500;
}

/* ---- Carousel ---- */
.sv-carousel-outer {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.sv-carousel-outer:active { cursor: grabbing; }

.sv-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  padding-bottom: 80px;
}

/* ---- Single testimonial card ---- */
.sv-testi-card {
  width: 360px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 28px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sv-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-card-score {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0D0D0D;
}

.sv-card-stars {
  display: flex;
  gap: 2px;
}

.sv-card-star {
  font-size: 13px;
  color: #F5A623;
}

.sv-card-body {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.72);
}

.sv-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.sv-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sv-author-avatar--lime { background: #CCF045; color: #0D0D0D; }
.sv-author-avatar--dark { background: #0D0D0D; color: #CCF045; }
.sv-author-avatar--gray { background: #D4D4D4; color: #0D0D0D; }

.sv-author-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.sv-author-role {
  display: block;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 0;
}

/* ---- Reduced motion: static 3-col grid ---- */
@media (prefers-reduced-motion: reduce) {
  .sv-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding: 0 5% 80px;
    box-sizing: border-box;
  }

  .sv-testi-card { width: auto; }

  /* Hide duplicate sets — keep only first 3 cards */
  .sv-carousel-track .sv-testi-card:nth-child(n+4) { display: none; }
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .sv-testimonials  { padding-top: 80px; }
  .sv-testi-head    { padding-bottom: 52px; }
  .sv-testi-card    { width: 300px; }
}

@media (max-width: 600px) {
  .sv-testimonials  { padding-top: 64px; }
  .sv-testi-card    { width: 280px; padding: 22px; }
  .sv-testi-h2      { font-size: 1.7rem; }
}

/* ============================================= */
/* SECTION 09 — CTA BANNER                       */
/* ============================================= */

.sv-cta-banner {
  background: #F4F4F2;
  padding: 110px 5%;
}

.sv-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Left: copy ---- */
.sv-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0D0D0D;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 2px solid #CCF045;
}

.sv-cta-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CCF045;
  flex-shrink: 0;
}

.sv-cta-h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  font-weight: 800;
  color: #0D0D0D;
  line-height: 1.18;
  margin: 0 0 20px;
}

.sv-cta-para {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.52);
  margin: 0;
  max-width: 440px;
}

/* ---- Right: proof + button ---- */
.sv-cta-action {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sv-cta-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sv-cta-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sv-cta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #F4F4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: -10px;
  flex-shrink: 0;
}

.sv-cta-avatars .sv-cta-avatar:first-child {
  margin-left: 0;
}

.sv-cta-proof-count {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D0D0D;
  margin: 0;
}

.sv-cta-proof-label {
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.45);
  margin: 3px 0 0;
}

/* ---- CTA Button ---- */
.sv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CCF045;
  color: #0D0D0D;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: background 200ms ease, box-shadow 200ms ease, gap 200ms ease;
}

.sv-cta-btn:hover {
  background: #d4f55e;
  box-shadow: 0 8px 28px rgba(204, 240, 69, 0.30);
  gap: 14px;
}

.sv-cta-btn-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sv-cta-btn-arrow {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.sv-cta-btn:hover .sv-cta-btn-arrow {
  transform: translate(3px, -3px);
}

.sv-cta-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.28);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .sv-cta-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sv-cta-banner { padding: 80px 5%; }
  .sv-cta-para   { max-width: none; }
}

@media (max-width: 600px) {
  .sv-cta-banner    { padding: 64px 5%; }
  .sv-cta-h2        { font-size: 1.7rem; }
  .sv-cta-btn       { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .sv-cta-h2        { font-size: 1.5rem; }
  .sv-cta-proof     { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-cta-btn,
  .sv-cta-btn-arrow { transition: none; }
}

/* ================================================ */
/* SECTION 08B — PRICING                            */
/* ================================================ */

.sv-pricing {
  background: #0D0D0D;
  padding: 120px 5%;
}

.sv-pricing-inner {
  max-width: 1160px;
  margin: 0 auto;
}

/* Head */
.sv-pricing-head {
  text-align: center;
  margin-bottom: 48px;
}

.sv-pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CCF045;
  margin: 0 0 14px;
}

.sv-pricing-h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 16px;
}

.sv-pricing-para {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Toggle */
.sv-billing-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}

.sv-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  overflow: visible;
}

.sv-toggle-btn {
  padding: 10px 28px;
  border-radius: 999px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
  background: transparent;
  color: rgba(255,255,255,0.5);
}

.sv-toggle-btn.is-active {
  background: #CCF045;
  color: #0D0D0D;
  font-weight: 600;
}

.sv-toggle-btn:hover:not(.is-active) {
  color: #FFFFFF;
}

.sv-toggle-btn--care {
  position: relative;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@keyframes sv-care-glow {
  0%, 100% { box-shadow: 0 0 8px 2px rgba(204,240,69,0.25); }
  50%       { box-shadow: 0 0 22px 8px rgba(204,240,69,0.6), 0 0 48px 18px rgba(204,240,69,0.2); }
}

.sv-toggle-btn--care.is-active {
  animation: sv-care-glow 1.6s ease-in-out infinite;
}

.sv-toggle-care-icon {
  flex-shrink: 0;
  color: rgba(204,240,69,0.5);
  transition: color 220ms ease, filter 220ms ease;
}

.sv-toggle-btn--care:not(.is-active) .sv-toggle-care-icon {
  animation: sv-star-pulse 2s ease-in-out infinite;
}

.sv-toggle-btn--care.is-active .sv-toggle-care-icon {
  color: #0D0D0D;
  filter: none;
  animation: none;
}

@keyframes sv-star-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.25); }
}

.sv-pricing-badge {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(204,240,69,0.1);
  color: #CCF045;
  border: 1px solid rgba(204,240,69,0.25);
  border-radius: 999px;
  padding: 4px 14px;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.sv-pricing-badge.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Grid */
.sv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

/* Card base */
.sv-pc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: transform 300ms ease, border-color 300ms ease;
}

.sv-pc:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.16);
}

/* Featured card — lime */
.sv-pc--featured {
  background: #CCF045;
  border-color: #CCF045;
  transform: scale(1.03);
  z-index: 1;
}

.sv-pc--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: #CCF045;
}

/* Popular badge */
.sv-pc-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #0D0D0D;
  color: #CCF045;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  border: 2px solid #CCF045;
}

/* Card head */
.sv-pc-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sv-pc-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #CCF045;
}

.sv-pc--featured .sv-pc-icon {
  background: rgba(0,0,0,0.1);
  color: #0D0D0D;
}

.sv-pc-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.sv-pc--featured .sv-pc-name {
  color: rgba(0,0,0,0.55);
}

/* Price */
.sv-pc-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.sv-pc-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}

.sv-pc--featured .sv-pc-currency {
  color: #0D0D0D;
}

.sv-pc-amount {
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sv-pc--featured .sv-pc-amount {
  color: #0D0D0D;
}

.sv-pc-amount.is-switching {
  opacity: 0;
  transform: translateY(-6px);
}

.sv-pc-period {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  transition: opacity 180ms ease;
  text-align: center;
}

.sv-pc--featured .sv-pc-period {
  color: rgba(0,0,0,0.5);
}

/* CTA button */
.sv-pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  margin-bottom: 28px;
}

.sv-pc-cta:hover {
  background: #CCF045;
  border-color: #CCF045;
  color: #0D0D0D;
}

.sv-pc-cta-icon {
  display: flex;
  align-items: center;
  transition: transform 200ms ease;
}

.sv-pc-cta:hover .sv-pc-cta-icon {
  transform: translateX(3px);
}

.sv-pc--featured .sv-pc-cta {
  background: #0D0D0D;
  border-color: #0D0D0D;
  color: #CCF045;
}

.sv-pc--featured .sv-pc-cta:hover {
  background: rgba(0,0,0,0.82);
}

/* Divider */
.sv-pc-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.sv-pc--featured .sv-pc-divider {
  background: rgba(0,0,0,0.12);
}

/* Feature list */
.sv-pc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.sv-pc-features--hidden {
  display: none;
}

.sv-pc-feat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
}

.sv-feat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sv-pc-feat.included .sv-feat-icon {
  background: rgba(204,240,69,0.15);
  color: #CCF045;
}

.sv-pc-feat.included {
  color: rgba(255,255,255,0.85);
}

.sv-pc-feat.excluded .sv-feat-icon {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.2);
}

.sv-pc-feat.excluded {
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}

/* Featured card feature overrides */
.sv-pc--featured .sv-pc-feat.included .sv-feat-icon {
  background: rgba(0,0,0,0.12);
  color: #0D0D0D;
}

.sv-pc--featured .sv-pc-feat.included {
  color: #0D0D0D;
}

.sv-pc--featured .sv-pc-feat.excluded .sv-feat-icon {
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.28);
}

.sv-pc--featured .sv-pc-feat.excluded {
  color: rgba(0,0,0,0.28);
  text-decoration-color: rgba(0,0,0,0.1);
}

/* Bottom note */
.sv-pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 960px) {
  .sv-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .sv-pc--featured {
    transform: scale(1);
  }

  .sv-pc--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .sv-pricing       { padding: 80px 5%; }
  .sv-pc            { padding: 28px 24px; }
  .sv-pc-amount     { font-size: 2.6rem; }
  .sv-toggle-btn    { padding: 9px 20px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sv-pc,
  .sv-pc-amount,
  .sv-pc-period,
  .sv-toggle-btn,
  .sv-pc-cta,
  .sv-pc-cta-icon { transition: none; }
}

/* ---- Comparison Table ---- */

.sv-compare {
  margin-top: 72px;
}

.sv-compare-h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 36px;
  line-height: 1.2;
  text-align: center;
}

.sv-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

/* Header row */
.sv-compare-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sv-ct-label-col {
  text-align: left;
  padding: 0 24px 24px 0;
  width: 36%;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.sv-ct-plan-col {
  text-align: center;
  padding: 0 12px 24px;
  vertical-align: bottom;
}

.sv-ct-plan-col--feat {
  background: rgba(204,240,69,0.04);
  border-left: 1px solid rgba(204,240,69,0.15);
  border-right: 1px solid rgba(204,240,69,0.15);
  border-radius: 0;
}

.sv-ct-plan-name {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.sv-ct-plan-col--feat .sv-ct-plan-name {
  color: #CCF045;
}

.sv-ct-plan-price {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.sv-ct-plan-col--feat .sv-ct-plan-price {
  color: #CCF045;
}

.sv-ct-plan-period {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

/* Body rows */
.sv-compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sv-compare-table tbody tr:last-child {
  border-bottom: none;
}

.sv-compare-table tbody td {
  padding: 18px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  vertical-align: middle;
}

.sv-compare-table tbody td:first-child {
  padding-right: 24px;
}

.sv-compare-table tbody td:not(:first-child) {
  text-align: center;
}

.sv-ct-col--feat {
  background: rgba(204,240,69,0.04);
  border-left: 1px solid rgba(204,240,69,0.15);
  border-right: 1px solid rgba(204,240,69,0.15);
  padding-left: 12px;
  padding-right: 12px;
}

/* Check / dash / value */
.sv-ct-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(204,240,69,0.12);
  color: #CCF045;
  font-size: 0.65rem;
  font-weight: 800;
}

.sv-ct-dash {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
}

.sv-ct-val {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.sv-ct-col--feat .sv-ct-val {
  color: #CCF045;
}

/* Mobile */
@media (max-width: 600px) {
  .sv-compare-h3 { font-size: 1.3rem; margin-bottom: 24px; }
  .sv-compare     { margin-top: 56px; }
  .sv-compare-table tbody td { padding: 15px 0; font-size: 0.8rem; }
  .sv-ct-plan-price { font-size: 1.6rem; }
}
