:root {
  --blue: #101bcf;
  --blue-deep: #0916b8;
  --blue-bright: #2475f5;
  --cyan: #40dbe0;
  --mint: #85f0d0;
  --red: #f01914;
  --ink: #292a2d;
  --muted: #687079;
  --paper: #ffffff;
  --soft: #eaf1f2;
  --line: #d5dce0;
  --radius: 26px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section-blue {
  color: #fff;
  background: linear-gradient(118deg, #1020c9 0%, #1023d7 36%, #218ce8 72%, #34d6d3 100%);
}

.site-header { position: absolute; inset: 28px 0 auto; z-index: 20; }
.nav-shell {
  min-height: 76px;
  padding: 9px 12px 9px 18px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(2, 14, 89, .16);
}
.brand { flex: 0 0 auto; }
.brand img { width: 172px; height: 44px; object-fit: contain; }
.desktop-nav { display: flex; gap: 58px; margin: auto; font-size: 14px; font-weight: 500; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.button {
  min-height: 48px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .tab:focus-visible, .service-card:focus-visible, .price-grid button:focus-visible {
  outline: 3px solid #7cf3ef;
  outline-offset: 3px;
}
.button-dark { color: #fff; background: #0d16b8; box-shadow: 0 10px 25px rgba(9, 20, 177, .18); }
.button-light { color: var(--ink); background: #fff; }
.button-outline { color: #fff; border: 1px solid rgba(255,255,255,.8); background: transparent; }
.header-cta { min-width: 210px; border-radius: 999px; }
.menu-button, .mobile-menu { display: none; }

.hero {
  min-height: 738px;
  padding-top: 130px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: .48;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  z-index: 1;
  width: 820px;
  height: 820px;
  right: 16%;
  top: -390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,235,238,.7), rgba(75,235,238,0) 67%);
  filter: blur(12px);
}
.hero-grid {
  min-height: 608px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
}
.hero-copy { z-index: 3; padding-bottom: 88px; }
.eyebrow, .section-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .72;
}
.hero h1 {
  margin: 18px 0 25px;
  font-size: clamp(62px, 7.3vw, 110px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.068em;
  text-transform: uppercase;
}
.hero h1 span { color: transparent; -webkit-text-stroke: 1.45px #fff; }
.hero-text { max-width: 470px; margin: 0; font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; margin-top: 29px; }
.hero-art { align-self: end; height: 608px; position: relative; z-index: 2; pointer-events: none; }
.hero-art .mascot-video {
  width: 1040px;
  max-width: none;
  position: absolute;
  right: -260px;
  bottom: -185px;
  filter: drop-shadow(0 38px 50px rgba(4, 18, 122, .3));
  animation: float 5.6s ease-in-out infinite;
}
.mascot-video {
  display: block;
  height: auto;
  object-fit: contain;
  background: transparent;
  pointer-events: none;
}
.mascot-video::-webkit-media-controls { display: none !important; }
@keyframes float { 50% { transform: translateY(-10px) rotate(.7deg); } }

.benefits {
  min-height: 126px;
  padding: 35px 38px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  align-items: start;
}
.benefits article { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.benefits article > span { font-weight: 800; }
.benefits h3 { margin: 0 0 7px; font-size: 17px; line-height: 1.2; }
.benefits p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.services {
  min-height: 990px;
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/services-bg.jpg") center/cover no-repeat;
  opacity: .11;
}
.services-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) .7px, transparent .9px);
  background-size: 8px 8px;
  opacity: .25;
  mask-image: linear-gradient(#000, rgba(0,0,0,.86) 70%, transparent);
}
.services .container { position: relative; z-index: 1; }
.tabs {
  width: min(500px, 100%);
  margin: 0 auto 58px;
  padding: 5px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(5, 12, 91, .16);
}
.tab { min-height: 40px; padding: 8px 12px; border: 0; border-radius: 10px; color: var(--ink); background: transparent; cursor: pointer; }
.tab.is-active { color: #fff; background: #1122d0; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(470px, .78fr); gap: 72px; align-items: center; }
.service-copy h2, .request-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: .96;
  letter-spacing: -.06em;
}
.service-copy > p { max-width: 620px; margin: 0; line-height: 1.6; }

.service-cards { height: 440px; margin-top: 31px; position: relative; }
.service-card {
  width: 330px;
  min-height: 202px;
  padding: 25px 26px 23px;
  position: absolute;
  overflow: visible;
  border-radius: 16px;
  color: var(--ink);
  box-shadow: 0 24px 42px rgba(4, 14, 81, .28);
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.service-card::after, .service-card::before { content: ""; position: absolute; z-index: -1; border-radius: 50%; background: inherit; }
.service-card span { font-size: 12px; }
.service-card h3 { margin: 44px 0 8px; font-size: 29px; line-height: .96; letter-spacing: -.045em; }
.service-card p { max-width: 270px; margin: 0; font-size: 12px; line-height: 1.35; }
.service-card .card-price-preview { max-width: 285px; font-weight: 750; line-height: 1.28; }
.service-card .card-price-preview small { display: block; margin-top: 5px; font-size: 10px; font-weight: 600; letter-spacing: .01em; opacity: .62; }
.card-white { left: 0; top: 0; z-index: 4; background: #fff; }
.card-white::after { width: 56px; height: 56px; right: -27px; top: 68px; }
.card-mint { left: 335px; top: 54px; z-index: 3; background: var(--mint); }
.card-mint::after { width: 58px; height: 58px; left: 132px; bottom: -28px; }
.card-red { left: 18px; top: 208px; z-index: 2; color: #fff; background: var(--red); }
.card-red::before { width: 56px; height: 56px; right: 86px; top: -27px; }
.card-blue { left: 330px; top: 246px; z-index: 1; color: #fff; background: #2255e8; }
.card-blue::before { width: 58px; height: 58px; left: -27px; top: 72px; }
.rotate-left { transform: rotate(4deg); }
.rotate-right { transform: rotate(10deg); }
.rotate-left-small { transform: rotate(7deg); }
.rotate-right-small { transform: rotate(-9deg); }
.service-card:hover, .service-card.is-selected { filter: brightness(1.03); box-shadow: 0 30px 52px rgba(3, 12, 79, .4); }
.service-card.is-selected { z-index: 20 !important; }
.card-white:hover, .card-white.is-selected { transform: rotate(4deg) translateY(-12px); }
.card-mint:hover, .card-mint.is-selected { transform: rotate(10deg) translateY(-12px); }
.card-red:hover, .card-red.is-selected { transform: rotate(7deg) translateY(-12px); }
.card-blue:hover, .card-blue.is-selected { transform: rotate(-9deg) translateY(-12px); }

.price-board {
  padding: 31px 32px 30px;
  color: var(--ink);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 34px 72px rgba(4, 14, 93, .34);
  transform: rotate(3.6deg);
  transform-origin: center;
}
.price-board h3 { margin: 35px 0 25px; font-size: 49px; line-height: .98; letter-spacing: -.055em; }
.mini-link { margin: 0; font-size: 11px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.price-grid button {
  min-height: 72px;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 3px;
  border: 0;
  border-radius: 11px;
  color: var(--ink);
  text-align: left;
  background: #e7eff0;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.price-grid button:hover { transform: translateY(-2px); }
.price-grid button.is-selected { color: #fff; background: #3579fa; }
.price-grid span, .price-grid small { font-size: 10px; }
.price-grid b { line-height: 1.1; }
.price-grid small { grid-column: 2; }
.board-meta { margin-top: 15px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.board-meta div { padding: 12px; border: 1px solid #3c9eff; border-radius: 10px; }
.board-meta span { display: block; font-size: 9px; }
.board-meta strong { display: block; margin-top: 9px; font-size: 17px; }
.price-board ul { margin: 15px 0 0; padding: 0; list-style: none; font-size: 12px; }
.price-board li { padding: 11px 0; border-bottom: 1px solid #bfc6c9; }
.digital-panel { min-height: 690px; }
.digital-cards .service-card h3 { font-size: 28px; }
.digital-board h3 { max-width: 430px; margin-bottom: 17px; font-size: 43px; }
.board-description { margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.digital-board .full { margin-top: 22px; }
.digital-product-note {
  width: min(560px, 100%);
  margin-top: 22px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.digital-product-note b { text-transform: uppercase; letter-spacing: .08em; }
.digital-product-note span { opacity: .78; text-align: right; }
.product-catalog { margin-top: 18px; }
.product-card {
  min-height: 255px;
  padding: 25px 28px 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #ecfbff 100%);
  box-shadow: 0 24px 55px rgba(4, 17, 103, .26);
  color: #242424;
}
.product-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.product-card__top b { padding: 6px 9px; border-radius: 999px; background: #71ead8; color: #08239a; }
.product-card h3 { margin: 25px 0 11px; font-size: clamp(38px, 4vw, 57px); line-height: .9; letter-spacing: -.055em; }
.product-card p { max-width: 440px; margin: 0 0 22px; color: #5c6267; font-size: 13px; line-height: 1.5; }
.product-card a { width: fit-content; margin-top: auto; color: #1228da; font-size: 12px; font-weight: 800; text-decoration: none; }
.product-card a:hover { text-decoration: underline; }
@media (max-width: 520px) {
  .digital-product-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .digital-product-note span { text-align: left; }
  .product-card { min-height: 225px; padding: 21px 20px 23px; border-radius: 18px; }
  .product-card h3 { margin-top: 22px; font-size: 42px; }
}
.full { width: 100%; }

.process {
  min-height: 650px;
  padding: 112px 110px 100px;
  display: grid;
  grid-template-columns: .48fr 1fr;
  gap: 90px;
  align-items: center;
}
.process-number span { display: block; color: #111ac2; font-size: clamp(150px, 16vw, 245px); font-weight: 800; line-height: .75; letter-spacing: -.12em; }
.process-number i { display: none; }
.section-kicker.dark { color: #5f6770; }
.process-content h2 { margin: 10px 0 20px; font-size: 50px; line-height: 1; letter-spacing: -.045em; }
.process-content > p { max-width: 720px; margin: 0; line-height: 1.65; }
.process-meta { margin-top: 35px; display: grid; grid-template-columns: 1fr 205px; gap: 18px; }
.process-meta div { padding: 14px 15px; border: 1px solid #2799f4; border-radius: 12px; }
.process-meta span { display: block; color: var(--muted); font-size: 10px; }
.process-meta strong { display: block; margin-top: 12px; font-size: 20px; }
.process-track { height: 8px; margin: 28px 0 17px; overflow: hidden; border-radius: 999px; background: #d4d6d7; }
.process-track span { display: block; width: 25%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #1019c4, #238de4); transition: width .35s ease; }
.next-step { float: right; min-width: 226px; }

.request {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.request::before { content: ""; position: absolute; inset: 0; background: url("assets/cta-bg.jpg") center/cover no-repeat; opacity: .13; }
.request-grid { min-height: 860px; padding: 83px 28px 0; position: relative; display: grid; grid-template-columns: 1fr .7fr; gap: 78px; }
.request-copy { min-height: 760px; position: relative; }
.request-copy .section-kicker,
.request-copy h2,
.request-copy > p { position: relative; z-index: 2; }
.request-copy h2 {
  max-width: 700px;
  text-transform: uppercase;
  font-size: clamp(54px, 5.8vw, 84px);
  line-height: .92;
  overflow-wrap: normal;
  word-break: normal;
}
.request-copy h2 span {
  display: inline-block;
  white-space: nowrap;
  color: transparent;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .012em;
  -webkit-text-stroke: 1.2px #fff;
}
.request-copy > p { max-width: 520px; margin: 28px 0 0; font-size: 17px; line-height: 1.65; }
.request-copy .mascot-video {
  width: 900px;
  max-width: none;
  position: absolute;
  z-index: 1;
  left: -170px;
  bottom: -185px;
  filter: drop-shadow(0 34px 48px rgba(4, 15, 112, .34));
  transform-origin: 50% 55%;
  animation: request-swim 9s ease-in-out infinite alternate;
}
@keyframes request-swim {
  0% { transform: translate3d(-40px, 35px, 0) rotate(-6deg); }
  48% { transform: translate3d(150px, -100px, 0) rotate(3deg); }
  100% { transform: translate3d(300px, -25px, 0) rotate(8deg); }
}
.request-form { position: relative; z-index: 3; align-self: center; margin-bottom: 72px; padding: 37px 35px 31px; color: var(--ink); border-radius: 25px; background: #fff; box-shadow: 0 30px 62px rgba(3, 18, 103, .22); }
.request-form h3 { margin: 0 0 26px; font-size: 29px; letter-spacing: -.03em; }
.request-form label { display: block; margin-bottom: 11px; }
.request-form label > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; }
.request-form input, .request-form textarea, .request-form select {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 9px;
  outline: 0;
  background: #e9f0f1;
}
.request-form textarea { min-height: 96px; resize: vertical; }
.request-form input:focus, .request-form textarea:focus, .request-form select:focus { box-shadow: 0 0 0 2px #2334da; }
.consent { display: flex !important; gap: 9px; align-items: flex-start; }
.consent input { width: auto; margin-top: 3px; }
.form-note { margin: 10px 0 0; color: #7a8288; font-size: 10px; line-height: 1.5; }
.form-status { min-height: 18px; margin: 8px 0 0; font-size: 12px; }

.footer { padding: 48px 4px 25px; display: grid; grid-template-columns: 1fr auto; align-items: start; }
.footer img { width: 175px; }
.footer > div:nth-child(2) { text-align: right; }
.footer > div:nth-child(2) span, .footer > div:nth-child(2) a { display: block; font-size: 12px; }
.footer-bottom { grid-column: 1 / -1; margin-top: 43px; padding-top: 24px; display: flex; justify-content: space-between; border-top: 1px solid #d7dde1; color: #9098ae; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
[hidden] { display: none !important; }

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { margin-left: auto; padding: 10px; display: grid; gap: 6px; border: 0; background: transparent; }
  .menu-button span { width: 28px; height: 2px; background: #161a21; }
  .mobile-menu { position: absolute; left: 24px; right: 24px; top: 86px; padding: 20px; display: grid; gap: 15px; border-radius: 15px; background: #fff; box-shadow: 0 20px 45px rgba(3, 14, 85, .25); }
  .hero-grid, .service-layout, .process, .request-grid { grid-template-columns: 1fr; }
  .hero { min-height: 900px; }
  .hero-grid { align-items: start; }
  .hero-copy { padding-bottom: 0; }
  .hero-art { height: 410px; }
  .hero-art .mascot-video { width: 760px; right: -155px; bottom: -145px; }
  .benefits { gap: 28px; padding-inline: 10px; }
  .service-layout { gap: 45px; }
  .service-copy { max-width: 720px; margin-inline: auto; }
  .price-board { width: min(680px, 100%); margin-inline: auto; transform: none; }
  .process { gap: 48px; padding-inline: 42px; }
  .process-number span { font-size: 160px; }
  .request-grid { gap: 20px; padding-inline: 0; }
  .request-copy { min-height: 600px; }
  .request-copy .mascot-video { width: 760px; left: -80px; bottom: -155px; }
  .request-form { width: min(620px, 100%); margin: 0 auto 70px; }
}

@media (max-width: 720px) {
  :root { --radius: 18px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .button { min-height: 44px; padding: 11px 16px; font-size: 12px; }

  .site-header { inset: 10px 0 auto; }
  .nav-shell { min-height: 58px; padding: 7px 9px 7px 13px; border-radius: 13px; }
  .brand img { width: 132px; height: 36px; }
  .menu-button { min-width: 42px; min-height: 42px; place-content: center; border-radius: 10px; }
  .mobile-menu { left: 12px; right: 12px; top: 66px; padding: 18px; gap: 4px; border-radius: 13px; }
  .mobile-menu a { padding: 11px 8px; border-bottom: 1px solid #e5e9ed; }

  .hero { min-height: 770px; padding-top: 92px; }
  .hero-grid { min-height: 678px; display: block; }
  .hero-copy { position: relative; z-index: 4; padding: 20px 2px 0; }
  .eyebrow { font-size: 9px; }
  .hero h1 { margin: 15px 0 20px; max-width: 100%; font-size: clamp(43px, 13.4vw, 58px); line-height: .91; letter-spacing: -.064em; }
  .hero h1 span { -webkit-text-stroke-width: 1px; }
  .hero-text { max-width: 87%; font-size: 12px; line-height: 1.55; }
  .hero-actions { max-width: 330px; margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .hero-art { height: 338px; margin-top: -2px; }
  .hero-art .mascot-video { width: 615px; right: -215px; bottom: -112px; }

  .benefits { width: 100%; min-height: 145px; padding: 26px 12px 24px; display: flex; gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .benefits::-webkit-scrollbar { display: none; }
  .benefits article { min-width: min(78vw, 300px); padding: 17px; grid-template-columns: 30px 1fr; gap: 8px; scroll-snap-align: center; border: 1px solid #e1e6e9; border-radius: 15px; background: #fff; }
  .benefits h3 { font-size: 15px; }

  .services { min-height: auto; padding: 42px 0 56px; }
  .tabs { width: 100%; margin-bottom: 32px; padding: 4px; }
  .tab { min-height: 38px; font-size: 12px; }
  .service-layout { gap: 35px; }
  .service-copy { width: 100%; }
  .service-copy h2 { margin-top: 10px; font-size: clamp(37px, 10.8vw, 46px); line-height: .96; }
  .service-copy > p { font-size: 13px; }
  .service-cards { height: auto; margin-top: 27px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; isolation: isolate; }
  .service-card { width: auto; min-height: 182px; padding: 16px 15px; position: relative; inset: auto; transform: none !important; border-radius: 14px; box-shadow: 0 14px 28px rgba(3, 12, 79, .22); }
  .service-card::before, .service-card::after { width: 34px; height: 34px; display: block; }
  .card-white::after { right: -17px; top: 67px; }
  .card-mint::after { left: 66px; bottom: -17px; }
  .card-red::before { right: 52px; top: -17px; }
  .card-blue::before { left: -17px; top: 67px; }
  .service-card h3, .digital-cards .service-card h3 { margin: 43px 0 7px; font-size: clamp(19px, 5.6vw, 24px); line-height: .94; }
  .service-card p { font-size: 10.5px; }
  .service-card .card-price-preview { line-height: 1.2; }
  .service-card .card-price-preview small { margin-top: 4px; font-size: 8.5px; }
  .service-card:hover, .service-card.is-selected { transform: translateY(-5px) !important; box-shadow: 0 20px 34px rgba(3, 12, 79, .32); }

  .price-board { width: 100%; padding: 22px 16px 20px; border-radius: 17px; }
  .price-board h3, .digital-board h3 { margin: 25px 0 19px; font-size: clamp(36px, 10.5vw, 44px); }
  .price-grid { grid-template-columns: 1fr 1fr; gap: 7px; }
  .price-grid button { min-height: 88px; padding: 11px 10px; grid-template-columns: 19px 1fr; }
  .price-grid b { font-size: 12px; line-height: 1.15; }
  .price-grid small { font-size: 9px; }
  .board-meta { grid-template-columns: 1fr 1fr; gap: 7px; }
  .board-meta div { padding: 11px 10px; }
  .board-meta strong { font-size: 15px; }
  .price-board li { padding: 10px 0; }

  .process { min-height: 590px; padding: 74px 12px 65px; position: relative; display: block; overflow: hidden; }
  .process-number { position: absolute; left: -18px; top: 65px; z-index: 0; opacity: .09; pointer-events: none; }
  .process-number span { font-size: 190px; }
  .process-content { position: relative; z-index: 1; }
  .process-content h2 { max-width: 330px; margin-top: 10px; font-size: clamp(38px, 11.5vw, 48px); }
  .process-content > p { font-size: 13px; }
  .process-meta { margin-top: 27px; grid-template-columns: 1fr 1fr; gap: 8px; }
  .process-meta div { padding: 12px; }
  .process-meta strong { margin-top: 9px; font-size: 16px; }
  .process-track { margin-top: 23px; }
  .next-step { float: none; width: 100%; }

  .request { min-height: auto; }
  .request-grid { min-height: auto; padding: 54px 0 0; gap: 0; }
  .request-copy { min-height: 545px; }
  .request-copy h2 { max-width: 100%; margin-top: 10px; font-size: clamp(43px, 13vw, 56px); line-height: .9; }
  .request-copy h2 span { letter-spacing: .005em; -webkit-text-stroke-width: 1px; }
  .request-copy > p { max-width: 92%; margin-top: 20px; font-size: 13px; line-height: 1.55; }
  .request-copy .mascot-video { width: 620px; left: -170px; bottom: -100px; animation: request-swim-mobile 7.5s ease-in-out infinite alternate; }
  .request-form { width: calc(100% + 24px); margin: 0 -12px 50px; padding: 25px 18px; border-radius: 18px; }
  .request-form h3 { font-size: 25px; }
  .request-form input, .request-form textarea, .request-form select { min-height: 47px; font-size: 16px; }
  .request-form textarea { min-height: 110px; }

  .footer { padding-block: 46px 28px; grid-template-columns: 1fr; gap: 23px; }
  .footer img { width: min(245px, 72vw); }
  .footer > div:nth-child(2) { text-align: left; }
  .footer-bottom { display: grid; gap: 8px; }
}

@keyframes request-swim-mobile {
  0% { transform: translate3d(-35px, 20px, 0) rotate(-5deg); }
  100% { transform: translate3d(125px, -48px, 0) rotate(5deg); }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 42px; }
  .hero-actions { max-width: 100%; }
  .service-card { min-height: 174px; padding-inline: 13px; }
  .service-card h3, .digital-cards .service-card h3 { font-size: 19px; }
  .service-card .card-price-preview { font-size: 9.5px; }
  .price-board h3, .digital-board h3 { font-size: 35px; }
  .request-copy h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .request-copy .mascot-video { animation: none; transform: translate3d(110px, -45px, 0) rotate(2deg); }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Mobile/Safari media fallback and responsive corrections */
.mascot-poster {
  display: none;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.hero-art .mascot-poster {
  width: 1040px;
  max-width: none;
  position: absolute;
  right: -260px;
  bottom: -185px;
  filter: drop-shadow(0 38px 50px rgba(4, 18, 122, .3));
}

.request-copy .mascot-poster {
  position: absolute;
  width: 920px;
  max-width: none;
  left: -160px;
  bottom: -220px;
  filter: drop-shadow(0 34px 44px rgba(4, 17, 112, .28));
}

@media (max-width: 1050px) {
  .hero-art .mascot-poster {
    width: 760px;
    right: -155px;
    bottom: -145px;
  }

  .request-copy .mascot-poster {
    width: 760px;
    left: -80px;
    bottom: -155px;
  }
}

@media (max-width: 720px) {
  /* Transparent WebM is rendered on a black rectangle in iOS WebKit.
     On phones we use the transparent PNG poster instead. */
  .mascot-video { display: none !important; }
  .mascot-poster { display: block; }

  .hero {
    min-height: 724px;
    padding-top: 96px;
  }

  .hero-grid { min-height: 628px; }
  .hero-copy { padding: 14px 2px 0; }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 12.2vw, 51px);
    line-height: .92;
    letter-spacing: -.066em;
  }

  .hero-text {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .hero-art {
    height: 300px;
    margin-top: 4px;
    overflow: visible;
  }

  .hero-art .mascot-poster {
    width: 500px;
    right: -126px;
    bottom: -72px;
  }

  .benefits {
    width: min(calc(100% - 24px), var(--container));
    min-height: 0;
    padding: 26px 0 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .benefits article {
    min-width: 0;
    width: 100%;
    padding: 17px 18px;
    scroll-snap-align: none;
  }

  .request-copy .mascot-poster {
    width: 520px;
    left: -112px;
    bottom: -78px;
  }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 41px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero { min-height: 770px; }
  .hero-grid { min-height: 674px; }
  .hero-art { height: 315px; }
  .hero-art .mascot-poster { width: 475px; right: -122px; bottom: -58px; }
}

.ios-webkit .mascot-video { display: none !important; }
.ios-webkit .mascot-poster { display: block; }

/* =========================================================
   MOBILE COMPOSITION V2
   Rebuilt as an independent vertical composition.
   Desktop styles above remain unchanged.
   ========================================================= */
@media (max-width: 720px) {
  :root { --mobile-pad: 18px; }

  body { background: #fff; }
  .container { width: calc(100% - (var(--mobile-pad) * 2)); }

  /* Header */
  .site-header { inset: 12px 0 auto; }
  .nav-shell {
    min-height: 54px;
    padding: 7px 8px 7px 12px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(5, 18, 87, .14);
  }
  .brand img { width: 118px; height: 32px; }
  .menu-button { min-width: 40px; min-height: 40px; padding: 8px; }
  .menu-button span { width: 24px; }
  .mobile-menu {
    left: var(--mobile-pad);
    right: var(--mobile-pad);
    top: 62px;
    border-radius: 14px;
  }

  /* Hero: text first, mascot as a graphic accent instead of a second block */
  .hero {
    min-height: 700px;
    padding-top: 88px;
    border-radius: 0 0 22px 22px;
  }
  .hero::after { opacity: .34; }
  .hero-glow {
    width: 520px;
    height: 520px;
    right: -230px;
    top: -150px;
    opacity: .7;
  }
  .hero-grid {
    min-height: 612px;
    display: block;
    position: relative;
  }
  .hero-copy {
    position: relative;
    z-index: 5;
    padding: 22px 0 315px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: .18em;
    opacity: .62;
  }
  .hero h1 {
    max-width: 100%;
    margin: 16px 0 20px;
    font-size: clamp(44px, 13vw, 54px);
    line-height: .88;
    letter-spacing: -.065em;
  }
  .hero h1 span {
    display: inline-block;
    font-size: .78em;
    letter-spacing: -.045em;
    -webkit-text-stroke-width: 1px;
  }
  .hero-text {
    max-width: 82%;
    margin: 0;
    font-size: 13px;
    line-height: 1.52;
  }
  .hero-actions {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .hero-actions .button-outline {
    order: -1;
    width: auto;
    min-width: 190px;
    color: var(--ink);
    background: #fff;
    border-color: #fff;
    box-shadow: 0 14px 28px rgba(3, 15, 94, .17);
  }
  .hero-actions .button-light {
    width: auto;
    min-height: 36px;
    padding: 6px 1px;
    color: rgba(255,255,255,.88);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-actions .button-light::after {
    content: "";
    margin-left: 4px;
  }
  .hero-art {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: -8px;
    width: 100%;
    height: 350px;
    margin: 0;
    overflow: visible;
  }
  .hero-art .mascot-poster {
    width: 465px;
    right: -118px;
    bottom: -70px;
    filter: drop-shadow(0 28px 36px rgba(5, 22, 118, .26));
  }

  /* Benefits: compact typographic strip, no cards */
  .benefits {
    width: calc(100% - (var(--mobile-pad) * 2));
    min-height: 0;
    margin: 0 auto;
    padding: 26px 0 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-bottom: 1px solid #e4e8ea;
  }
  .benefits article {
    min-width: 0;
    padding: 0 11px;
    display: block;
    border: 0;
    border-right: 1px solid #e4e8ea;
    border-radius: 0;
    background: transparent;
  }
  .benefits article:first-child { padding-left: 0; }
  .benefits article:last-child { padding-right: 0; border-right: 0; }
  .benefits article > span {
    display: block;
    margin-bottom: 8px;
    color: #121bc2;
    font-size: 11px;
  }
  .benefits h3 {
    margin: 0;
    font-size: 12px;
    line-height: 1.22;
    letter-spacing: -.025em;
  }
  .benefits p { display: none; }

  /* Services */
  .services {
    min-height: auto;
    padding: 42px 0 58px;
    border-radius: 22px;
  }
  .tabs {
    width: 100%;
    margin: 0 auto 42px;
    padding: 4px;
    border-radius: 13px;
  }
  .tab {
    min-height: 42px;
    padding: 8px 9px;
    font-size: 12px;
    line-height: 1.15;
  }
  .service-layout { gap: 30px; }
  .service-copy { width: 100%; margin: 0; }
  .service-copy .section-kicker { font-size: 9px; }
  .service-copy h2 {
    max-width: 360px;
    margin: 10px 0 15px;
    font-size: clamp(37px, 10.8vw, 44px);
    line-height: .94;
  }
  .service-copy > p {
    max-width: 330px;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .service-cards {
    height: auto;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .service-card {
    width: 100%;
    min-height: 112px;
    padding: 15px 16px 14px;
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 9px;
    align-items: start;
    overflow: hidden;
    border-radius: 15px;
    transform: none !important;
    box-shadow: 0 12px 25px rgba(3, 12, 79, .18);
  }
  .service-card::before,
  .service-card::after { display: none !important; }
  .service-card > span {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 3px;
    font-size: 10px;
    opacity: .7;
  }
  .service-card h3,
  .digital-cards .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 8px;
    font-size: 24px;
    line-height: .96;
  }
  .service-card p {
    grid-column: 2;
    grid-row: 2;
    max-width: 100%;
    font-size: 10.5px;
  }
  .service-card .card-price-preview small {
    margin-top: 5px;
    font-size: 9px;
  }
  .service-card:hover,
  .service-card.is-selected {
    transform: none !important;
    box-shadow: 0 16px 30px rgba(3, 12, 79, .25);
  }
  .service-card.is-selected {
    outline: 2px solid rgba(255,255,255,.72);
    outline-offset: -5px;
  }

  /* Pricing becomes a calm detail card after the service list */
  .price-board {
    width: 100%;
    margin: 0;
    padding: 22px 17px 20px;
    border-radius: 18px;
    transform: none;
    box-shadow: 0 20px 42px rgba(3, 14, 88, .22);
  }
  .price-board .mini-link { opacity: .55; }
  .price-board h3,
  .digital-board h3 {
    margin: 20px 0 18px;
    font-size: 36px;
    line-height: .95;
  }
  .price-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .price-grid button {
    min-height: 62px;
    padding: 11px 12px;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
  }
  .price-grid button span { grid-column: 1; }
  .price-grid button b { grid-column: 2; font-size: 12px; }
  .price-grid button small {
    grid-column: 3;
    grid-row: 1;
    font-size: 9px;
    opacity: .7;
  }
  .board-meta {
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .board-meta div { padding: 10px; }
  .board-meta strong { margin-top: 7px; font-size: 14px; }
  .price-board ul { margin-top: 10px; font-size: 11px; }
  .price-board li { padding: 9px 0; }
  .board-description { font-size: 12px; }

  /* Process: number is a label, not a giant background object */
  .process {
    min-height: 0;
    padding: 62px var(--mobile-pad) 62px;
    display: block;
    overflow: visible;
  }
  .process-number {
    position: static;
    margin-bottom: 18px;
    opacity: 1;
  }
  .process-number span {
    font-size: 72px;
    line-height: .78;
    letter-spacing: -.1em;
  }
  .process-content h2 {
    max-width: 340px;
    margin: 10px 0 16px;
    font-size: 38px;
    line-height: .96;
  }
  .process-content > p { font-size: 12.5px; line-height: 1.55; }
  .process-meta {
    margin-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .process-meta div { padding: 11px; }
  .process-meta strong { font-size: 14px; }
  .process-track { margin: 21px 0 13px; }
  .next-step { width: 100%; }

  /* Request: compact visual intro + form, no giant empty mascot scene */
  .request {
    min-height: 0;
    border-radius: 22px 22px 0 0;
  }
  .request-grid {
    min-height: 0;
    padding: 50px 0 0;
    gap: 0;
  }
  .request-copy {
    min-height: 430px;
    overflow: hidden;
  }
  .request-copy h2 {
    max-width: 330px;
    margin: 10px 0 0;
    font-size: clamp(43px, 12vw, 50px);
    line-height: .9;
  }
  .request-copy h2 span {
    font-size: .92em;
    -webkit-text-stroke-width: 1px;
  }
  .request-copy > p {
    max-width: 70%;
    margin-top: 19px;
    font-size: 12.5px;
    line-height: 1.5;
  }
  .request-copy .mascot-poster {
    width: 390px;
    left: auto;
    right: -124px;
    bottom: -60px;
    filter: drop-shadow(0 26px 34px rgba(4, 17, 112, .25));
  }
  .request-form {
    width: calc(100% + (var(--mobile-pad) * 2));
    margin: 0 calc(var(--mobile-pad) * -1) 0;
    padding: 26px var(--mobile-pad) 34px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -16px 35px rgba(3, 18, 103, .14);
  }
  .request-form h3 { font-size: 24px; }
  .request-form input,
  .request-form textarea,
  .request-form select {
    min-height: 47px;
    font-size: 16px;
  }
  .request-form textarea { min-height: 110px; }

  .footer {
    padding: 38px 0 26px;
    gap: 20px;
  }
  .footer img { width: 155px; }
}

@media (max-width: 390px) {
  .hero { min-height: 680px; }
  .hero-copy { padding-bottom: 298px; }
  .hero h1 { font-size: 42px; }
  .hero-art { height: 330px; }
  .hero-art .mascot-poster { width: 438px; right: -120px; bottom: -68px; }
  .benefits h3 { font-size: 11px; }
  .service-card h3,
  .digital-cards .service-card h3 { font-size: 22px; }
  .request-copy { min-height: 410px; }
  .request-copy h2 { font-size: 42px; }
  .request-copy .mascot-poster { width: 365px; right: -118px; }
}

/* --- Mobile hero v6: layered mascot, no dead zone --- */
@media (max-width: 720px) {
  .site-header { inset: 9px 0 auto; }
  .nav-shell { min-height:54px; height:54px; padding:6px 8px 6px 12px; border-radius:13px; }
  .brand img { width:118px; height:32px; }
  .menu-button { min-width:38px; min-height:38px; }
  .menu-button span { width:23px; }

  .hero { min-height: 540px; padding-top:78px; border-radius:0 0 22px 22px; }
  .hero-grid { min-height:462px; position:relative; display:block; overflow:hidden; }
  .hero-copy { position:relative; z-index:7; padding:18px 2px 0; }
  .hero .eyebrow { margin:0 0 12px; font-size:8px; letter-spacing:.2em; }
  .hero h1 { width:100%; max-width:355px; margin:0; font-size:clamp(39px,11.6vw,47px); line-height:.89; letter-spacing:-.068em; }
  .hero h1 span { -webkit-text-stroke-width:.8px; }

  .hero-text { width:57%; max-width:215px; margin:17px 0 0; font-size:10.5px; line-height:1.48; position:relative; z-index:9; }
  .hero-actions { width:160px; max-width:160px; margin:16px 0 0; display:flex; flex-direction:column; align-items:flex-start; gap:9px; position:relative; z-index:10; }
  .hero-actions .button-outline { order:1; width:160px; min-height:43px; padding:10px 12px; background:#fff; color:#22252c; border:0; border-radius:12px; }
  .hero-actions .button-light { order:2; width:auto; min-height:0; padding:0; border-radius:0; background:transparent; color:#fff; font-size:9.8px; justify-content:flex-start; }
  .hero-actions .button-light::after { content:' '; margin-left:4px; }

  .hero-art { position:absolute; z-index:5; right:-2px; top:276px; bottom:auto; width:74%; height:290px; margin:0; overflow:visible; pointer-events:none; }
  .hero-art .mascot-poster { display:block; width:390px; max-width:none; right:-35px; top:0; bottom:auto; filter:drop-shadow(0 22px 34px rgba(4,18,122,.24)); }
  .benefits { padding-top:22px; }
}

@media (max-width: 390px) {
  .hero { min-height:530px; }
  .hero-grid { min-height:452px; }
  .hero h1 { font-size:39px; }
  .hero-text { width:56%; font-size:10.2px; }
  .hero-art { top:274px; width:73%; }
  .hero-art .mascot-poster { width:378px; right:-33px; }
}

/* =========================================================
   MOBILE HERO V7 — composition matched to the approved mockup
   ========================================================= */
@media (max-width: 720px) {
  /* Full-width white navigation bar with a thin blue strip above it */
  .site-header {
    inset: 10px 0 auto;
  }
  .nav-shell.container {
    width: 100%;
    height: 70px;
    min-height: 70px;
    padding: 8px 20px;
    border-radius: 0;
    box-shadow: none;
  }
  .brand img {
    width: 166px;
    height: 46px;
  }
  .menu-button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 4px;
  }
  .menu-button span {
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: #6550b7;
  }
  .mobile-menu {
    left: 12px;
    right: 12px;
    top: 78px;
  }

  /* Hero itself */
  .hero {
    min-height: 550px;
    height: 550px;
    padding-top: 80px;
    border-radius: 0;
  }
  .hero::after { opacity: .42; }
  .hero-glow {
    width: 520px;
    height: 520px;
    right: -250px;
    top: -105px;
    opacity: .72;
  }
  .hero-grid {
    width: 100%;
    min-height: 470px;
    height: 470px;
    margin: 0;
    display: block;
    position: relative;
    overflow: hidden;
  }
  .hero-copy {
    min-height: 470px;
    height: 470px;
    padding: 0;
    position: relative;
    z-index: 3;
  }
  .hero .eyebrow {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 20px;
    margin: 0;
    font-size: 8px;
    letter-spacing: .2em;
    opacity: .46;
  }
  .hero h1 {
    position: absolute;
    z-index: 3;
    top: 86px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: 345px;
    margin: 0;
    font-size: clamp(40px, 10.7vw, 44px);
    line-height: .98;
    letter-spacing: -.055em;
  }
  .hero h1 span {
    display: inline;
    font-size: 1em;
    letter-spacing: -.055em;
    -webkit-text-stroke-width: 1px;
  }

  /* Mascot crosses the headline like in the mockup. */
  .hero-art {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 350px;
    margin: 0;
    overflow: visible;
    pointer-events: none;
  }
  .hero-art .mascot-poster {
    display: block;
    width: 430px;
    max-width: none;
    top: 0;
    right: -106px;
    bottom: auto;
    filter: drop-shadow(0 24px 34px rgba(4,18,122,.22));
  }

  /* Copy and CTA sit on top of the lower part of the mascot. */
  .hero-text {
    position: absolute;
    z-index: 6;
    left: 20px;
    right: 20px;
    bottom: 84px;
    width: auto;
    max-width: 360px;
    margin: 0;
    font-size: 11.2px;
    line-height: 1.6;
  }
  .hero-actions {
    position: absolute;
    z-index: 7;
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
  }
  .hero-actions .button-light,
  .hero-actions .button-outline {
    order: initial;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 9.5px;
    line-height: 1;
    white-space: nowrap;
    justify-content: center;
  }
  .hero-actions .button-light {
    color: #22252c;
    background: #fff;
    border: 0;
    box-shadow: none;
  }
  .hero-actions .button-light::after { content: none; }
  .hero-actions .button-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,.88);
    box-shadow: none;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 540px;
    height: 540px;
  }
  .hero-grid,
  .hero-copy {
    min-height: 460px;
    height: 460px;
  }
  .brand img { width: 158px; }
  .hero h1 {
    top: 84px;
    font-size: 40px;
  }
  .hero-art { top: 24px; }
  .hero-art .mascot-poster {
    width: 412px;
    right: -104px;
  }
  .hero-text {
    bottom: 82px;
    font-size: 10.7px;
  }
  .hero-actions {
    bottom: 20px;
    gap: 52px;
  }
}

/* =========================================================
   MOBILE HERO V8 — text above mascot + Higezstar brand menu
   ========================================================= */
@media (max-width: 720px) {
  /* Keep the mascot as a background/compositional layer. */
  .hero-art { z-index: 4; }
  .hero h1 { z-index: 8; }
  .hero .eyebrow,
  .hero-text,
  .hero-actions { z-index: 8; }

  /* Hamburger matches the Higezstar cyan instead of the stray purple. */
  .menu-button span { background: #12c7d5; }
}

/* MOBILE HERO V9 — fix stacking context: all copy sits above mascot */
@media (max-width: 720px) {
  .hero-copy { z-index: 8; }
  .hero-art { z-index: 4; }
  .menu-button span { background: #12c7d5; }
}


/* =========================================================
   MOBILE V9 CLEAN PUZZLES — based on approved stacked cards
   ========================================================= */
@media (max-width: 720px) {
  .service-layout,
  .service-layout.digital-panel {
    gap: 18px;
  }

  .service-copy {
    padding-right: 0;
  }

  .service-copy h2 {
    max-width: 10ch;
    margin-bottom: 10px;
  }

  .service-copy > p:not(.section-kicker) {
    max-width: 31ch;
    margin-bottom: 18px;
  }

  .service-cards,
  .digital-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .service-card,
  .digital-cards .service-card {
    position: relative;
    min-height: 120px;
    width: 100%;
    border-radius: 18px;
    padding: 16px 18px 14px;
    display: grid;
    grid-template-columns: 56px 1fr 16px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;
    align-items: start;
    overflow: visible;
    box-shadow: 0 12px 28px rgba(7, 17, 84, .16);
    transform: none !important;
    isolation: isolate;
  }

  .service-card > span,
  .digital-cards .service-card > span {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    padding-top: 0;
    margin: 0;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    opacity: .9;
  }

  .service-card h3,
  .digital-cards .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 4px 0 0;
    font-size: 18px;
    line-height: .95;
    letter-spacing: -.05em;
    max-width: 12ch;
  }

  .service-card p,
  .digital-cards .service-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    max-width: 24ch;
    font-size: 10.6px;
    line-height: 1.22;
  }

  .service-card .card-price-preview small,
  .digital-cards .service-card .card-price-preview small {
    display: none;
  }

  .service-card::before,
  .service-card::after,
  .digital-cards .service-card::before,
  .digital-cards .service-card::after {
    content: "";
    position: absolute;
    display: block !important;
    background: inherit;
    box-shadow: none;
  }

  /* right chevron */
  .service-card::after,
  .digital-cards .service-card::after {
    content: "";
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    opacity: .9;
  }

  /* 01: right tab */
  .service-cards .service-card:nth-child(1)::before,
  .digital-cards .service-card:nth-child(1)::before {
    width: 28px;
    height: 46px;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 14px 14px 0;
  }

  /* 02: left tab + bottom tab */
  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before {
    width: 22px;
    height: 36px;
    left: -11px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 14px 0 0 14px;
  }
  .service-cards .service-card:nth-child(2) .puzzle-bottom,
  .digital-cards .service-card:nth-child(2) .puzzle-bottom,
  .service-cards .service-card:nth-child(4) .puzzle-bottom,
  .digital-cards .service-card:nth-child(4) .puzzle-bottom { display:none; }
  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) {
    margin-bottom: 14px;
  }
  .service-cards .service-card:nth-child(2) > h3,
  .digital-cards .service-card:nth-child(2) > h3,
  .service-cards .service-card:nth-child(4) > h3,
  .digital-cards .service-card:nth-child(4) > h3 { max-width: 11ch; }
  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before { z-index: -1; }
  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2) { position: relative; }
  .service-cards .service-card:nth-child(2)::selection,
  .digital-cards .service-card:nth-child(2)::selection { background: transparent; }
  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2) { --bottom-tab-color: inherit; }
  .service-cards .service-card:nth-child(2)::marker,
  .digital-cards .service-card:nth-child(2)::marker { content: none; }
  .service-cards .service-card:nth-child(2) .card-price-preview,
  .digital-cards .service-card:nth-child(2) .card-price-preview { max-width: 22ch; }
  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after,
  .service-cards .service-card:nth-child(4)::after,
  .digital-cards .service-card:nth-child(4)::after { right: 14px; }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) { overflow: visible; }

  .service-cards .service-card:nth-child(2) > span,
  .digital-cards .service-card:nth-child(2) > span,
  .service-cards .service-card:nth-child(4) > span,
  .digital-cards .service-card:nth-child(4) > span { align-self: start; }

  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before { box-shadow: 0 12px 28px rgba(7,17,84,.0); }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2) { --tab-bottom-width: 34px; }

  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after,
  .service-cards .service-card:nth-child(4)::after,
  .digital-cards .service-card:nth-child(4)::after { z-index: 3; }

  .service-cards .service-card:nth-child(2) {
    position: relative;
  }
  .service-cards .service-card:nth-child(2) span,
  .digital-cards .service-card:nth-child(2) span,
  .service-cards .service-card:nth-child(4) span,
  .digital-cards .service-card:nth-child(4) span { position: relative; z-index: 1; }

  .service-cards .service-card:nth-child(2) .card-price-preview,
  .digital-cards .service-card:nth-child(2) .card-price-preview,
  .service-cards .service-card:nth-child(4) .card-price-preview,
  .digital-cards .service-card:nth-child(4) .card-price-preview,
  .service-cards .service-card:nth-child(2) h3,
  .digital-cards .service-card:nth-child(2) h3,
  .service-cards .service-card:nth-child(4) h3,
  .digital-cards .service-card:nth-child(4) h3 { position: relative; z-index: 1; }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) { }

  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before { }

  .service-cards .service-card:nth-child(2) {
    --bottom-tab-x: 76%;
  }
  .service-cards .service-card:nth-child(4) {
    --bottom-tab-x: 72%;
  }
  .service-cards .service-card:nth-child(2) > i,
  .digital-cards .service-card:nth-child(2) > i,
  .service-cards .service-card:nth-child(4) > i,
  .digital-cards .service-card:nth-child(4) > i { display:none; }
  .service-cards .service-card:nth-child(2):not(.x),
  .digital-cards .service-card:nth-child(2):not(.x),
  .service-cards .service-card:nth-child(4):not(.x),
  .digital-cards .service-card:nth-child(4):not(.x) { }
  .service-cards .service-card:nth-child(2)::selection,
  .digital-cards .service-card:nth-child(2)::selection,
  .service-cards .service-card:nth-child(4)::selection,
  .digital-cards .service-card:nth-child(4)::selection { background: transparent; }
  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) { }
  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before,
  .service-cards .service-card:nth-child(4)::before,
  .digital-cards .service-card:nth-child(4)::before { }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) { }
  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after,
  .service-cards .service-card:nth-child(4)::after,
  .digital-cards .service-card:nth-child(4)::after { }

  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before { }

  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after { content: ""; }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2) { }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) {
    position: relative;
  }
  .service-cards .service-card:nth-child(2) .card-bottom-tab,
  .digital-cards .service-card:nth-child(2) .card-bottom-tab,
  .service-cards .service-card:nth-child(4) .card-bottom-tab,
  .digital-cards .service-card:nth-child(4) .card-bottom-tab { display:none; }
  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before { }

  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after { }

  .service-cards .service-card:nth-child(2)::before,
  .digital-cards .service-card:nth-child(2)::before,
  .service-cards .service-card:nth-child(4)::before,
  .digital-cards .service-card:nth-child(4)::before { z-index: 0; }

  .service-cards .service-card:nth-child(2)::after,
  .digital-cards .service-card:nth-child(2)::after,
  .service-cards .service-card:nth-child(4)::after,
  .digital-cards .service-card:nth-child(4)::after { z-index: 4; }

  .service-cards .service-card:nth-child(2),
  .digital-cards .service-card:nth-child(2),
  .service-cards .service-card:nth-child(4),
  .digital-cards .service-card:nth-child(4) { }

  /* 03: right tab */
  .service-cards .service-card:nth-child(3)::before,
  .digital-cards .service-card:nth-child(3)::before {
    width: 24px;
    height: 40px;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 14px 14px 0;
  }

  /* 04: bottom tab */
  .service-cards .service-card:nth-child(4)::before,
  .digital-cards .service-card:nth-child(4)::before {
    width: 36px;
    height: 24px;
    left: 72%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
  }

  .service-card:hover,
  .service-card.is-selected,
  .digital-cards .service-card:hover,
  .digital-cards .service-card.is-selected {
    box-shadow: 0 12px 28px rgba(7, 17, 84, .16);
    transform: none !important;
  }

  .request-copy {
    min-height: 454px;
  }
  .request-copy > p:not(.section-kicker) {
    max-width: 58%;
  }
  .request-copy .mascot-video,
  .request-copy .mascot-poster {
    width: 318px;
    right: -24px;
    left: auto;
    bottom: -8px;
  }
}

@media (max-width: 390px) {
  .service-card,
  .digital-cards .service-card {
    min-height: 112px;
    padding: 15px 16px 13px;
    grid-template-columns: 52px 1fr 14px;
  }
  .service-card > span,
  .digital-cards .service-card > span { font-size: 14px; }
  .service-card h3,
  .digital-cards .service-card h3 { font-size: 16px; }
  .service-card p,
  .digital-cards .service-card p { font-size: 10px; }
  .request-copy { min-height: 438px; }
  .request-copy .mascot-video,
  .request-copy .mascot-poster { width: 300px; right: -28px; }
}


/* =========================================================
   PROCESS V13 — approved Higezstar composition
   ========================================================= */
.process-v13{
  width:min(calc(100% - 40px),1240px);
  margin:0 auto;
  padding:94px 0 96px;
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:44px;
  align-items:center;
  background:#fff;
}
.process-v13__left{min-width:0;padding-left:0}
.process-v13__badge{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:38px;padding:7px 20px;border:1.5px solid #1134ef;border-radius:14px;
  color:#0c29cf;background:#fff;font-size:13px;font-weight:700;line-height:1;
  margin-bottom:34px;
}
.process-v13 h2{
  margin:0;max-width:540px;color:#2c2c2c;
  font-size:clamp(60px,6.1vw,92px);line-height:.93;letter-spacing:-.065em;font-weight:800;
}
.process-v13__left>p{
  max-width:590px;margin:34px 0 0;color:#2c2c2c;font-size:14px;line-height:1.55;
}
.process-v13__meta{display:grid;grid-template-columns:minmax(0,1.8fr) minmax(150px,.85fr);gap:20px;margin-top:38px;max-width:650px}
.process-v13__field{
  min-height:72px;padding:10px 14px 12px;border:1.4px solid #28a6ff;border-radius:8px;background:#fff;
}
.process-v13__field span{display:block;margin-bottom:13px;color:#555;font-size:9px;line-height:1;text-transform:lowercase}
.process-v13__field strong{display:block;color:#333;font-size:18px;line-height:1.1;font-weight:500}
.process-v13__next{
  margin-top:34px;min-width:238px;height:48px;padding:0 30px;border:0;border-radius:7px;
  background:#0c16cf;color:#fff;font:600 13px/1 Manrope,Arial,sans-serif;cursor:pointer;
  transition:transform .2s ease,background .2s ease;
}
.process-v13__next:hover{transform:translateY(-2px);background:#111bdc}
.process-v13__route{position:relative;min-height:520px;align-self:stretch}
.process-v13__route-svg{position:absolute;inset:0;width:100%;height:100%;overflow:visible}
.process-v13__tube-shadow{fill:none;stroke:#123fe8;stroke-width:34;stroke-linecap:round;stroke-linejoin:round;opacity:.15;filter:url(#processRouteShadow)}
.process-v13__tube{fill:none;stroke:url(#processRouteGradient);stroke-width:28;stroke-linecap:round;stroke-linejoin:round;filter:url(#processRouteShadow)}
.process-v13__tube-shine{fill:none;stroke:rgba(255,255,255,.62);stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;transform:translateY(-4px)}
.process-v13__node{
  position:absolute;display:flex;flex-direction:column;align-items:center;gap:6px;
  padding:0;border:0;background:transparent;color:#6b6262;cursor:pointer;z-index:3;
}
.process-v13__node-circle{
  width:78px;height:78px;border-radius:50%;display:grid;place-items:center;
  background:#fff;border:6px solid #f0efef;box-shadow:0 2px 0 #dedddd,0 5px 12px rgba(0,0,0,.06);
  color:#6d6363;font-size:33px;line-height:1;font-weight:800;
}
.process-v13__node-label{
  min-width:78px;padding:7px 12px;border:1px solid #e4e4e4;border-radius:6px;background:#fff;
  color:#7b7474;font-size:10px;line-height:1;text-align:center;box-shadow:0 4px 12px rgba(0,0,0,.03);
}
.process-v13__node.is-active .process-v13__node-circle{
  background:linear-gradient(180deg,#1979ed,#0b4cc6);border-color:#f6f8ff;outline:2px solid #0e63db;
  color:#fff;box-shadow:0 6px 18px rgba(10,71,198,.22);
}
.process-v13__node.is-active .process-v13__node-label{color:#1263d7;border-color:#d7e8ff}
.process-v13__node--1{left:10%;top:2%}
.process-v13__node--2{left:48%;top:18%}
.process-v13__node--3{left:60%;top:59%}
.process-v13__node--4{left:84%;top:66%}

@media(max-width:1050px){
  .process-v13{grid-template-columns:1fr 1fr;gap:24px;padding-top:78px}
  .process-v13 h2{font-size:66px}
  .process-v13__route{min-height:480px}
  .process-v13__node-circle{width:68px;height:68px;font-size:29px}
}

@media(max-width:720px){
  .process-v13{
    width:min(calc(100% - 24px),1240px);padding:62px 0 70px;display:flex;flex-direction:column;gap:12px;align-items:stretch;
  }
  .process-v13__left{display:contents}
  .process-v13__badge{order:1;align-self:flex-start;min-height:34px;margin:0 0 18px;padding:7px 14px;border-radius:12px;font-size:11px}
  .process-v13 h2{order:2;max-width:350px;font-size:clamp(46px,14.5vw,62px);line-height:.92;margin:0}
  .process-v13__left>p{order:3;max-width:350px;margin:20px 0 4px;font-size:12px;line-height:1.55}
  .process-v13__route{order:4;min-height:360px;height:360px;margin-top:8px;overflow:visible}
  .process-v13__route-svg{inset:-10px -2px 0;width:calc(100% + 4px);height:100%}
  .process-v13__tube-shadow{stroke-width:30}
  .process-v13__tube{stroke-width:24}
  .process-v13__tube-shine{stroke-width:2.6;transform:translateY(-3px)}
  .process-v13__node-circle{width:58px;height:58px;border-width:5px;font-size:25px}
  .process-v13__node-label{min-width:62px;padding:6px 8px;font-size:9px}
  .process-v13__node--1{left:7%;top:2%}
  .process-v13__node--2{left:47%;top:18%}
  .process-v13__node--3{left:57%;top:58%}
  .process-v13__node--4{left:82%;top:65%}
  .process-v13__meta{order:5;grid-template-columns:1.7fr .85fr;gap:10px;max-width:none;margin:6px 0 0}
  .process-v13__field{min-height:66px;padding:9px 11px 11px;border-radius:8px}
  .process-v13__field span{margin-bottom:12px;font-size:8px}
  .process-v13__field strong{font-size:15px}
  .process-v13__next{order:6;width:100%;height:48px;margin:14px 0 0;border-radius:8px;font-size:12px}
}

@media(max-width:390px){
  .process-v13__route{min-height:336px;height:336px}
  .process-v13__node-circle{width:54px;height:54px;font-size:23px}
  .process-v13__node--2{left:45%}
  .process-v13__node--4{left:80%}
}

/* =========================================================
   DIGITAL SERVICE TARIFFS
   ========================================================= */
.tariffs {
  position: relative;
  padding: 104px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 4%, rgba(34, 203, 239, .16), transparent 26%),
    #f5f7f8;
  color: #292929;
}
.tariffs__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}
.tariffs__head > div:first-child { max-width: 820px; }
.tariffs .section-kicker { margin-bottom: 18px; color: #102bd7; }
.tariffs h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.065em;
}
.tariffs__head > div:first-child > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: #62676b;
  font-size: 14px;
  line-height: 1.55;
}
.tariff-period {
  flex: 0 0 auto;
  display: flex;
  padding: 5px;
  border: 1px solid #cbd2d6;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
}
.tariffs__controls { flex: 0 0 auto; display: grid; gap: 12px; justify-items: end; }
.tariff-navigation { display: flex; align-items: center; gap: 14px; }
.tariff-status { display: flex; align-items: center; gap: 10px; color: #5e666a; font-size: 10px; font-weight: 700; }
.tariff-status > span { white-space: nowrap; }
.tariff-status > span b { color: #1429dc; font-size: 14px; }
.tariff-status > i { position: relative; width: 94px; height: 3px; overflow: hidden; border-radius: 999px; background: #d8dee1; }
.tariff-status > i > b {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1429dc, #22bfd2);
  transform: scaleX(.25);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}
.tariff-arrows { display: flex; gap: 7px; }
.tariff-arrows button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid #cbd2d6;
  border-radius: 50%;
  background: #fff;
  color: #1727d9;
  font: 500 20px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.tariff-arrows button:hover { transform: translateY(-2px); border-color: #1727d9; background: #1727d9; color: #fff; }
.tariff-period__button {
  min-height: 46px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #45494c;
  font: 650 12px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
}
.tariff-period__button span {
  margin-left: 5px;
  color: #14a9c7;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.tariff-period__button.is-active { background: #111fd1; color: #fff; }
.tariff-period__button.is-active span { color: #7ceaf4; }
.tariff-carousel {
  position: relative;
}
.tariff-side-arrow {
  position: absolute;
  top: 48%;
  z-index: 12;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 0;
  place-items: center;
  border: 1px solid #c9d1d6;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #1429dc;
  box-shadow: 0 14px 34px rgba(15, 30, 66, .14);
  font: 500 25px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .22s ease, background .22s ease, color .22s ease, opacity .22s ease;
}
.tariff-side-arrow--prev { left: 12px; }
.tariff-side-arrow--next { right: 12px; }
.tariff-side-arrow:hover:not(:disabled) {
  background: #1429dc;
  color: #fff;
  transform: translateY(-50%) scale(1.07);
}
.tariff-side-arrow:disabled {
  opacity: .28;
  cursor: default;
}
.tariff-side-arrow svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tariff-grid {
  display: flex;
  gap: 12px;
  padding: 5px 2px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  perspective: 1200px;
  cursor: grab;
  touch-action: pan-x pan-y pinch-zoom;
}
.tariff-grid::-webkit-scrollbar { display: none; }
.tariff-grid.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.tariff-grid.is-animating .tariff-card::after {
  opacity: .42;
  transform: translateX(620%) skewX(-16deg);
}
.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 24px 22px 20px;
  overflow: hidden;
  border: 1px solid #d6dde0;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(11, 34, 63, .06);
  flex: 0 0 calc((100% - 24px) / 3);
  scroll-snap-align: start;
  transform: translateY(var(--lift, 8px)) rotateY(var(--tilt, 0deg)) scale(var(--card-scale, .97));
  transform-origin: center center;
  opacity: var(--card-opacity, .82);
  transition: transform .26s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, border-color .2s ease, box-shadow .2s ease;
  will-change: transform, opacity;
}
.tariff-card::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: -15%;
  bottom: -15%;
  left: -48%;
  width: 25%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  opacity: 0;
  transform: translateX(0) skewX(-16deg);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .14s ease;
}
.tariff-card.is-current {
  --lift: 0px;
  --tilt: 0deg;
  --card-scale: 1;
  --card-opacity: 1;
  z-index: 2;
  box-shadow: 0 28px 58px rgba(11, 34, 63, .12);
}
.tariff-card.is-current:not(.tariff-card--featured) { border-color: #aebad0; }
.tariff-card.is-focus-pop { animation: tariff-focus-pop .34s cubic-bezier(.22, 1, .36, 1); }
@keyframes tariff-focus-pop {
  0% { transform: translateY(8px) scale(.97); }
  55% { transform: translateY(-8px) scale(1.015); }
  100% { transform: translateY(0) scale(1); }
}
.tariff-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tariff-card__top span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #cbd4d8;
  border-radius: 50%;
  font-size: 10px;
}
.tariff-card__top p { margin: 0; color: #6c7377; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.tariff-card h3 { margin: 34px 0 12px; font-size: clamp(28px, 2.2vw, 38px); line-height: .95; letter-spacing: -.05em; }
.tariff-card__lead { min-height: 58px; margin: 0; color: #697075; font-size: 12px; line-height: 1.45; }
.tariff-card__price { display: flex; align-items: flex-end; gap: 7px; margin-top: 24px; white-space: nowrap; }
.tariff-card__price strong { font-size: clamp(31px, 2.45vw, 42px); line-height: .9; letter-spacing: -.055em; }
.tariff-card__price span { padding-bottom: 3px; color: #747a7e; font-size: 11px; }
.tariff-card__period { margin: 9px 0 23px; color: #8a9195; font-size: 9px; }
.tariff-card > ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; font-size: 11px; }
.tariff-card > ul li { position: relative; padding-left: 20px; line-height: 1.35; }
.tariff-card > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 9px;
  height: 5px;
  border-left: 1.7px solid #123fe8;
  border-bottom: 1.7px solid #123fe8;
  transform: rotate(-45deg);
}
.tariff-more { margin: 22px 0 18px; border-top: 1px solid #dce1e4; }
.tariff-more summary { padding: 15px 0 0; color: #5b6165; font-size: 10px; cursor: pointer; list-style: none; }
.tariff-more summary::-webkit-details-marker { display: none; }
.tariff-more summary::after { content: "+"; float: right; color: #142adc; font-size: 16px; line-height: .7; }
.tariff-more[open] summary::after { content: "−"; }
.tariff-more div { padding-top: 12px; }
.tariff-more p { display: flex; justify-content: space-between; gap: 12px; margin: 0; padding: 8px 0; border-bottom: 1px solid #e4e8ea; font-size: 9px; line-height: 1.25; }
.tariff-more b { text-align: right; }
.tariff-card__button {
  display: grid;
  min-height: 50px;
  margin-top: auto;
  padding: 0 12px;
  place-items: center;
  border: 1.5px solid #1024d9;
  border-radius: 11px;
  color: #1024d9;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.tariff-card__button:hover { transform: translateY(-2px); background: #1024d9; color: #fff; }
.tariff-card--featured {
  border: 2px solid #21bfd1;
  background: #fff;
  color: #292929;
  box-shadow: 0 22px 48px rgba(13, 78, 105, .12);
}
.tariff-card--featured .tariff-card__top p,
.tariff-card--featured .tariff-card__lead,
.tariff-card--featured .tariff-card__price span,
.tariff-card--featured .tariff-card__period,
.tariff-card--featured .tariff-more summary { color: #697075; }
.tariff-card--featured .tariff-card__top p { color: #0aa4b7; font-weight: 800; }
.tariff-card--featured .tariff-card__top span,
.tariff-card--featured .tariff-more,
.tariff-card--featured .tariff-more p { border-color: #dce1e4; }
.tariff-card--featured > ul li::before { border-color: #0bafc1; }
.tariff-card--featured .tariff-card__button { border-color: #1024d9; background: #1024d9; color: #fff; }
.tariff-card--featured .tariff-card__button:hover { background: #0bafc1; border-color: #0bafc1; }
.tariff-card--corporate::before {
  display: none;
}
.tariff-card--corporate > * { position: relative; z-index: 1; }
.tariff-compare { margin-top: 22px; border: 1px solid #d4dade; border-radius: 18px; background: #fff; }
.tariff-compare > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; cursor: pointer; list-style: none; }
.tariff-compare > summary::-webkit-details-marker { display: none; }
.tariff-compare > summary span { font-size: 13px; font-weight: 750; }
.tariff-compare > summary span::after { content: "+"; display: inline-block; margin-left: 10px; color: #1025dd; font-size: 19px; vertical-align: -1px; }
.tariff-compare[open] > summary span::after { content: "−"; }
.tariff-compare > summary small { color: #868d91; font-size: 10px; }
.tariff-compare__scroll { overflow-x: auto; border-top: 1px solid #e0e5e7; }
.tariff-compare table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 10px; }
.tariff-compare th, .tariff-compare td { padding: 14px 18px; border-bottom: 1px solid #e5e9eb; text-align: left; }
.tariff-compare thead th { color: #787f83; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.tariff-compare tbody th { width: 34%; font-weight: 600; }
.tariff-compare td:nth-child(3) { color: #1028dc; font-weight: 800; }
.tariffs__note { margin: 16px 4px 0; color: #83898d; font-size: 9px; }

@media (max-width: 1100px) {
  .tariff-card { flex-basis: calc((100% - 12px) / 2); }
  .tariff-card { min-height: 570px; }
  .tariff-card h3 { font-size: 38px; }
  .tariff-card__price strong { font-size: 40px; }
}

@media (max-width: 720px) {
  .tariffs { padding: 70px 0 64px; }
  .tariffs__inner { width: calc(100% - 24px); }
  .tariffs__head { display: block; margin-bottom: 28px; }
  .tariffs h2 { font-size: clamp(46px, 13vw, 62px); }
  .tariffs__head > div:first-child > p:last-child { margin-top: 16px; font-size: 12px; }
  .tariff-period { width: 100%; margin-top: 22px; }
  .tariffs__controls { width: 100%; display: block; }
  .tariff-period__button { flex: 1; padding-inline: 9px; }
  .tariff-arrows { display: none; }
  .tariff-status { display: none; }
  .tariff-side-arrow { display: none; }
  .tariff-grid { gap: 10px; margin-inline: -12px; padding: 0 12px 12px; }
  .tariff-grid::-webkit-scrollbar { display: none; }
  .tariff-card { flex: 0 0 min(86vw, 340px); min-height: 560px; padding: 22px 20px 18px; scroll-snap-align: center; border-radius: 21px; }
  .tariff-card h3 { margin-top: 30px; font-size: 36px; }
  .tariff-card__top p { max-width: 150px; white-space: normal; text-align: right; line-height: 1.2; }
  .tariff-card__lead { min-height: 52px; }
  .tariff-card__price strong { font-size: 39px; }
  .tariff-compare { margin-top: 14px; }
  .tariff-compare > summary { align-items: flex-start; padding: 18px; }
  .tariff-compare > summary small { max-width: 130px; text-align: right; }
  .tariffs__note { line-height: 1.45; }
}


/* V13 final polish */
@media(min-width:721px){
  .process-v13{padding:76px 18px 78px;box-sizing:border-box}
  .process-v13__route{min-height:470px}
  .process-v13__next{float:none!important;margin-left:0!important}
}
.process-v13__badge{gap:4px}
.process-v13__badge b{font:inherit}
@media(max-width:720px){
  .process-v13__next{float:none!important;margin-left:0!important}
}
