/* SERVICES DETAIL — ported from css/style.css */
.sv-blocks-section {
  background: var(--bg);
}
.sv-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.sv-block:first-of-type {
  border-top: none;
  padding-top: 60px;
}
.sv-block:last-of-type {
  border-bottom: 1px solid var(--border);
}
.sv-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(110, 229, 48, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.sv-block:hover::before {
  opacity: 1;
}
.sv-block.flip .sv-block-text {
  order: 2;
}
.sv-block.flip .sv-block-visual {
  order: 1;
}
.sv-block-text {
  position: relative;
  padding-top: 40px;
}
.sv-block-num {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--ff-s);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: 1;
  color: rgba(110, 229, 48, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.02em;
}
.sv-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.sv-block-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-g);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: rgba(110, 229, 48, 0.04);
  flex-shrink: 0;
}
.sv-block-icon svg {
  width: 22px;
  height: 22px;
}
.sv-block-name {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.sv-block-desc {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 540px;
  position: relative;
  z-index: 1;
}
.sv-block-deliv {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.sv-block-deliv-title {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.sv-deliv-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding: 0;
  margin: 0;
}
.sv-deliv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(240, 240, 244, 0.82);
}
.sv-deliv-check {
  color: var(--green);
  font-size: 0.9rem;
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 1px;
  filter: drop-shadow(0 0 6px rgba(110, 229, 48, 0.4));
}
.sv-block-visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOCKUP 1: WEB DESIGN */
.sv-vis-design {
  position: relative;
  width: 100%;
  height: 100%;
}
.sv-vis-bw {
  position: absolute;
  inset: 8% 4% 8% 4%;
  background: linear-gradient(180deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(110, 229, 48, 0.06);
  overflow: hidden;
}
.sv-vis-bw-top {
  height: 32px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}
.sv-vis-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.sv-vis-dot:nth-child(1) {
  background: rgba(255, 95, 87, 0.5);
}
.sv-vis-dot:nth-child(2) {
  background: rgba(255, 189, 46, 0.5);
}
.sv-vis-dot:nth-child(3) {
  background: rgba(110, 229, 48, 0.7);
}
.sv-vis-bw-url {
  margin-left: 14px;
  font-size: 0.7rem;
  color: var(--grey);
  font-family: var(--ff-b);
  background: rgba(0, 0, 0, 0.25);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex: 1;
  letter-spacing: 0.02em;
}
.sv-vis-bw-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: calc(100% - 32px);
}
.sv-vis-hero {
  flex: 1;
  background: linear-gradient(135deg, rgba(110, 229, 48, 0.1), rgba(110, 229, 48, 0.02));
  border: 1px solid rgba(110, 229, 48, 0.18);
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.sv-vis-hero::before {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 229, 48, 0.18), transparent);
}
.sv-vis-tag {
  font-family: var(--ff-h);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.sv-vis-line {
  background: linear-gradient(90deg, rgba(240, 240, 244, 0.4), rgba(240, 240, 244, 0.05));
  height: 8px;
  border-radius: 2px;
}
.sv-vis-line.lg {
  width: 80%;
  height: 12px;
}
.sv-vis-line.mid {
  width: 55%;
  height: 8px;
}
.sv-vis-cta-pill {
  width: 80px;
  height: 22px;
  border-radius: 4px;
  background: var(--green);
  margin-top: 6px;
  box-shadow: 0 0 14px rgba(110, 229, 48, 0.4);
}
.sv-vis-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  height: 70px;
}
.sv-vis-grid3 span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.sv-vis-grid3 span:nth-child(2) {
  background: rgba(110, 229, 48, 0.06);
  border-color: rgba(110, 229, 48, 0.18);
}
.sv-vis-deco-circle {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 100px;
  height: 100px;
  border: 1px dashed rgba(110, 229, 48, 0.25);
  border-radius: 50%;
  z-index: -1;
}

/* MOCKUP 2: WEB DEVELOPMENT */
.sv-vis-dev {
  position: relative;
  width: 100%;
  height: 100%;
}
.sv-vis-cw {
  position: absolute;
  inset: 6% 4% 6% 4%;
  background: linear-gradient(180deg, #0a0a10, #06060a);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(110, 229, 48, 0.06);
  overflow: hidden;
}
.sv-vis-cw-top {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}
.sv-vis-tab {
  font-family: var(--ff-b);
  font-size: 0.72rem;
  color: var(--grey);
  padding: 10px 16px;
  border-right: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.sv-vis-tab.on {
  color: var(--white);
  background: rgba(110, 229, 48, 0.05);
  border-bottom: 2px solid var(--green);
}
.sv-vis-cw-body {
  padding: 16px 14px;
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  line-height: 1.7;
}
.sv-vis-code-row {
  display: flex;
  white-space: pre;
}
.sv-vis-code-row .ln {
  color: var(--dim);
  width: 22px;
  flex-shrink: 0;
  font-size: 0.7rem;
  text-align: right;
  margin-right: 12px;
  user-select: none;
}
.sv-vis-code-row .cm {
  color: rgba(110, 229, 48, 0.5);
  font-style: italic;
}
.sv-vis-code-row .sel {
  color: #d4b8ff;
}
.sv-vis-code-row .kw {
  color: #6ec6ff;
}
.sv-vis-code-row .val {
  color: var(--green);
}
.sv-vis-cursor {
  position: absolute;
  bottom: 18%;
  left: 22%;
  width: 2px;
  height: 13px;
  background: var(--green);
  animation: sv-blink 1s steps(2) infinite;
  box-shadow: 0 0 8px rgba(110, 229, 48, 0.6);
}
@keyframes sv-blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* MOCKUP 3: WORDPRESS */
.sv-vis-wp {
  width: 84%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 0 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.sv-vis-wp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
}
.sv-vis-wp-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 0.68rem;
}
.sv-vis-wp-crumb {
  color: var(--grey);
  flex: 1;
}
.sv-vis-wp-pub {
  background: var(--green);
  color: #000;
  padding: 5px 12px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.68rem;
}
.sv-vis-wp-block {
  margin: 12px 14px 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.sv-vis-wp-block.sel {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(110, 229, 48, 0.12);
}
.sv-vis-wp-block.ghost {
  border-style: dashed;
  background: transparent;
  justify-content: center;
  color: var(--dim);
  cursor: pointer;
}
.sv-vis-wp-handle {
  width: 14px;
  height: 18px;
  background-image: radial-gradient(circle, var(--dim) 1px, transparent 1px);
  background-size: 6px 6px;
  flex-shrink: 0;
}
.sv-vis-wp-label {
  font-family: var(--ff-b);
  font-size: 0.78rem;
  color: var(--white);
  flex: 1;
}
.sv-vis-wp-label.dim {
  color: var(--dim);
  font-size: 0.74rem;
  flex: none;
}
.sv-vis-wp-bar-line {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.sv-vis-wp-bar-line.lg {
  width: 100%;
  margin-top: 4px;
}
.sv-vis-wp-bar-line.mid {
  width: 70%;
}
.sv-vis-wp-bar-line.sm {
  width: 50%;
  margin-left: auto;
}
.sv-vis-wp-plus {
  font-size: 1.2rem;
  color: var(--dim);
}

/* MOCKUP 4: SHOPIFY */
.sv-vis-shopify {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sv-vis-phone {
  width: 220px;
  aspect-ratio: 9 / 18;
  background: linear-gradient(180deg, #15151c, #0a0a12);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6), inset 0 0 0 6px #050508, 0 0 0 1px rgba(110, 229, 48, 0.08);
  position: relative;
  padding: 12px;
  overflow: hidden;
}
.sv-vis-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 14px;
  background: #000;
  border-radius: 10px;
  z-index: 2;
}
.sv-vis-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg2);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.sv-vis-phone-bar {
  padding: 28px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--white);
}
.sv-vis-phone-back {
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
}
.sv-vis-phone-title {
  font-family: var(--ff-h);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sv-vis-phone-cart {
  color: var(--grey);
}
.sv-vis-product-img {
  margin: 12px;
  height: 130px;
  background: linear-gradient(135deg, rgba(110, 229, 48, 0.18), rgba(110, 229, 48, 0.04));
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.sv-vis-product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08), transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(110, 229, 48, 0.04) 8px, rgba(110, 229, 48, 0.04) 9px);
}
.sv-vis-product-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #000;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 1;
}
.sv-vis-product-info {
  padding: 0 14px 4px;
}
.sv-vis-product-name {
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 4px;
}
.sv-vis-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sv-vis-product-price {
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
}
.sv-vis-product-stars {
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 1px;
  opacity: 0.8;
}
.sv-vis-product-cta {
  margin: 14px 12px;
  padding: 11px;
  background: var(--green);
  color: #000;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px rgba(110, 229, 48, 0.3);
}
.sv-vis-deco-square {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(110, 229, 48, 0.25);
  bottom: 5%;
  right: 5%;
  z-index: -1;
  transform: rotate(15deg);
}

/* MOCKUP 5: AI CREATIVES */
.sv-vis-ai {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-vis-ai-blob {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(110, 229, 48, 0.45), rgba(110, 229, 48, 0.1) 40%, transparent 70%);
  filter: blur(20px);
  animation: sv-ai-pulse 6s ease-in-out infinite;
}
.sv-vis-ai-blob.alt {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 60% 50%, rgba(143, 245, 74, 0.35), rgba(143, 245, 74, 0.05) 50%, transparent 75%);
  animation-delay: 2.5s;
  transform: translate(60px, -40px);
}
@keyframes sv-ai-pulse {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08) translate(10px, -8px);
    opacity: 1;
  }
}
.sv-vis-ai-net {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  max-width: 320px;
  max-height: 320px;
}
.sv-vis-ai-prompt {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-g);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--ff-b);
  font-size: 0.74rem;
  color: var(--grey);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 2;
}
.sv-vis-ai-prompt-cur {
  color: var(--green);
  animation: sv-blink 1s steps(2) infinite;
  font-weight: 700;
}

/* MOCKUP 6: EMAIL */
.sv-vis-email {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-vis-email-card {
  width: 90%;
  max-width: 340px;
  background: linear-gradient(180deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  position: relative;
}
.sv-vis-email-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--green);
  border-radius: 0 0 4px 4px;
}
.sv-vis-email-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.78rem;
  align-items: baseline;
}
.sv-vis-email-key {
  font-family: var(--ff-h);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  min-width: 56px;
}
.sv-vis-email-val {
  color: var(--grey);
}
.sv-vis-email-val.strong {
  color: var(--white);
  font-weight: 500;
}
.sv-vis-email-divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0 16px;
}
.sv-vis-email-hero {
  background: linear-gradient(120deg, rgba(110, 229, 48, 0.12), rgba(110, 229, 48, 0.02));
  border: 1px solid var(--border-g);
  padding: 20px 16px;
  border-radius: 6px;
  text-align: center;
  font-family: var(--ff-h);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.sv-vis-email-h {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.sv-vis-email-line {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin-bottom: 6px;
}
.sv-vis-email-line.short {
  width: 65%;
  margin-bottom: 16px;
}
.sv-vis-email-cta {
  display: inline-block;
  padding: 9px 16px;
  background: var(--green);
  color: #000;
  font-weight: 600;
  font-size: 0.74rem;
  border-radius: 4px;
  margin-bottom: 14px;
}
.sv-vis-email-foot {
  font-family: var(--ff-s);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--grey);
  text-align: right;
}

/* MOCKUP 7: SOCIAL MEDIA */
.sv-vis-social {
  width: 80%;
  max-width: 320px;
}
.sv-vis-ig-handle {
  font-family: var(--ff-h);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.sv-vis-ig-handle::before {
  content: "@";
  color: var(--green);
  margin-right: 1px;
}
.sv-vis-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--border);
  padding: 4px;
  border-radius: 4px;
}
.sv-vis-ig-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.sv-vis-ig-tile.t1 {
  background: linear-gradient(135deg, rgba(110, 229, 48, 0.4), rgba(80, 192, 24, 0.1));
}
.sv-vis-ig-tile.t2.wb-mono {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-g);
}
.sv-vis-ig-tile.t2 span {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  color: var(--green);
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(110, 229, 48, 0.5);
}
.sv-vis-ig-tile.t3 {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent), var(--bg3);
}
.sv-vis-ig-tile.t3::after {
  content: "";
  position: absolute;
  inset: 30%;
  border: 1px solid rgba(110, 229, 48, 0.5);
  border-radius: 50%;
}
.sv-vis-ig-tile.t4 {
  background: repeating-linear-gradient(45deg, rgba(110, 229, 48, 0.08) 0, rgba(110, 229, 48, 0.08) 4px, transparent 4px, transparent 8px), var(--bg2);
}
.sv-vis-ig-tile.t5 {
  background: linear-gradient(180deg, rgba(110, 229, 48, 0.18), rgba(110, 229, 48, 0.02));
}
.sv-vis-ig-tile.t5::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  border-radius: 2px;
  background: var(--green);
}
.sv-vis-ig-tile.t6 {
  background: var(--bg3);
}
.sv-vis-ig-tile.t6::after {
  content: "";
  position: absolute;
  inset: 20% 30%;
  background: var(--green);
  opacity: 0.55;
  transform: rotate(45deg);
}
.sv-vis-ig-tile.t7 {
  background: linear-gradient(225deg, rgba(143, 245, 74, 0.25), transparent);
}
.sv-vis-ig-tile.t8 {
  background: var(--bg2);
}
.sv-vis-ig-tile.t8::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transform: rotate(45deg);
}
.sv-vis-ig-tile.t9 {
  background: radial-gradient(circle at 70% 70%, rgba(110, 229, 48, 0.3), transparent 60%), var(--bg3);
}

/* MOCKUP 8: SEO */
.sv-vis-seo {
  width: 90%;
  max-width: 380px;
  background: linear-gradient(180deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  position: relative;
}
.sv-vis-seo-label {
  font-family: var(--ff-h);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sv-vis-seo-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 140px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.sv-vis-seo-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--green), var(--green3));
  border-radius: 3px 3px 0 0;
  opacity: 0.75;
  transition: all 0.3s ease;
}
.sv-vis-seo-bar.peak {
  opacity: 1;
  box-shadow: 0 0 18px rgba(110, 229, 48, 0.5);
}
.sv-vis-seo-axis {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--ff-h);
  font-size: 0.55rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}
.sv-vis-seo-axis span {
  flex: 1;
  text-align: center;
}
.sv-vis-seo-mag {
  position: absolute;
  bottom: 28%;
  right: -8%;
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.sv-vis-seo-mag svg {
  width: 38px;
  height: 38px;
  position: absolute;
  opacity: 0.18;
}
.sv-vis-seo-mag-pct {
  font-family: var(--ff-d);
  font-size: 1.05rem;
  color: var(--green);
  letter-spacing: 0.02em;
  z-index: 1;
}

@media (max-width: 1200px) {
  .sv-block-num {
    font-size: clamp(6rem, 12vw, 9rem);
  }
  .sv-deliv-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .sv-block {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 70px 0;
  }
  .sv-block.flip .sv-block-text {
    order: 2;
  }
  .sv-block.flip .sv-block-visual {
    order: 1;
  }
  .sv-block-visual {
    aspect-ratio: 1 / 0.65;
    max-width: 540px;
    margin: 0 auto;
  }
  .sv-block-num {
    font-size: 8rem;
    top: -10px;
  }
}
@media (max-width: 900px) {
  .sv-block {
    padding: 60px 0;
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .sv-block {
    padding: 50px 0;
  }
  .sv-block-num {
    font-size: 6rem;
  }
  .sv-block-name {
    font-size: 1.7rem;
  }
  .sv-block-head {
    flex-wrap: wrap;
  }
  .sv-block-visual {
    aspect-ratio: 1 / 0.78;
  }
  .sv-vis-phone {
    width: 180px;
  }
  .sv-vis-seo-mag {
    width: 56px;
    height: 56px;
    right: -4%;
  }
  .sv-vis-seo-mag-pct {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .sv-block {
    padding: 44px 0;
  }
  .sv-block-num {
    font-size: 5rem;
    top: -5px;
    left: -2px;
  }
  .sv-block-icon {
    width: 38px;
    height: 38px;
  }
}
