/* Blasterr Design – service detail pages */

.bd-service-detail {
  background: #fff;
}

.service-detail-page {
  overflow: hidden;
  background: #fff;
  color: var(--type-color-heading);
}

.service-detail-page *,
.service-detail-page *::before,
.service-detail-page *::after {
  box-sizing: border-box;
}

.service-detail-page h1,
.service-detail-page h2,
.service-detail-page h3,
.service-detail-page h4,
.service-detail-page p {
  text-transform: none;
}

.service-shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

/* Hero */
.service-hero {
  position: relative;
  min-height: 660px;
  padding: 132px 0 74px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 28%, rgba(102, 204, 255, .28), transparent 28%),
    radial-gradient(circle at 14% 12%, rgba(0, 102, 204, .08), transparent 30%),
    linear-gradient(180deg, #eef8ff 0%, #f8fcff 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: -7%;
  bottom: -32%;
  width: 62%;
  height: 86%;
  background: linear-gradient(145deg, rgba(0, 102, 204, .14), rgba(102, 204, 255, .06));
  clip-path: polygon(18% 10%, 100% 0, 100% 100%, 0 100%);
}

.service-side-label {
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: var(--blue-mid);
  font-family: var(--font-heading);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.service-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-breadcrumb li,
.service-breadcrumb a {
  color: var(--type-color-muted);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(0, 48, 87, .34);
}

.service-eyebrow,
.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-mid);
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
}

.service-eyebrow::before,
.service-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px rgba(102, 204, 255, .36);
}

.service-hero h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: var(--fs-hero-title);
  line-height: var(--lh-hero);
  font-weight: 700;
  letter-spacing: var(--ls-hero);
}

.service-hero h1 span {
  color: var(--blue-mid);
}

.service-hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--type-color-body);
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.service-hero-actions,
.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform .26s ease, box-shadow .26s ease, background .26s ease, color .26s ease, border-color .26s ease;
}

.service-btn:hover,
.service-btn:focus-visible {
  transform: translateY(-2px);
}

.service-btn-primary {
  color: #fff !important;
  background: linear-gradient(145deg, var(--blue-light), var(--blue-mid));
  box-shadow: 0 14px 30px rgba(0, 102, 204, .2);
}

.service-btn-primary:hover,
.service-btn-primary:focus-visible {
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(0, 48, 87, .24), 0 0 26px rgba(102, 204, 255, .18);
}

.service-btn-secondary {
  color: var(--blue-dark) !important;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(0, 48, 87, .12);
  box-shadow: 0 10px 24px rgba(0, 48, 87, .06);
}

.service-btn-secondary:hover,
.service-btn-secondary:focus-visible {
  background: #fff;
  color: var(--blue-mid) !important;
}

.service-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  max-width: 680px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-proof-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 700;
}

.service-proof-list i {
  margin-top: .2em;
  color: var(--blue-mid);
  font-size: 13px;
}

.service-hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-shape {
  position: absolute;
  inset: 8% 0 4% 12%;
  border-radius: 44% 56% 52% 48% / 42% 44% 56% 58%;
  background:
    radial-gradient(circle at 28% 24%, rgba(102, 204, 255, .55), transparent 24%),
    linear-gradient(145deg, rgba(0, 102, 204, .28), rgba(0, 48, 87, .08));
  filter: drop-shadow(0 28px 46px rgba(0, 48, 87, .12));
}

.service-hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 48, 87, .2));
}

.service-arculat .service-hero-visual img,
.service-grafika .service-hero-visual img,
.service-shopify .service-hero-visual img {
  width: 94%;
  max-height: 410px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 26px 50px rgba(0, 48, 87, .18);
}

.service-arculat .service-hero-visual img,
.service-grafika .service-hero-visual img {
  aspect-ratio: 4 / 3;
}

.service-shopify .service-hero-visual img {
  aspect-ratio: 1.34 / 1;
}

/* Sub navigation */
.service-switcher {
  position: relative;
  z-index: 3;
  margin-top: -25px;
}

.service-switcher-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 12px 24px;
  border: 1px solid rgba(0, 48, 87, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 36px rgba(0, 48, 87, .09);
}

.service-switcher a {
  position: relative;
  padding: 9px 21px;
  color: var(--type-color-muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none !important;
}

.service-switcher a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background: rgba(0, 48, 87, .12);
}

.service-switcher a:hover,
.service-switcher a:focus-visible,
.service-switcher a.is-active {
  color: var(--blue-mid);
}

.service-switcher a.is-active {
  text-shadow: 0 0 18px rgba(102, 204, 255, .42);
}

/* Shared section typography */
.service-section {
  padding: 96px 0;
}

.service-section-copy {
  max-width: 560px;
}

.service-section-copy h2,
.service-options-heading h2,
.service-section-heading-row h2,
.service-value-title h2,
.service-cta-box h2 {
  margin: 17px 0 22px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  line-height: var(--lh-section);
  font-weight: 700;
  letter-spacing: -.035em;
}

.service-section-copy p,
.service-options-heading p,
.service-option-main p,
.service-benefit-row p,
.service-value-point p,
.service-project-body p,
.service-process-list p,
.service-faq-item p,
.service-cta-box p {
  color: var(--type-color-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

.service-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--blue-mid) !important;
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none !important;
}

.service-text-link i {
  transition: transform .22s ease;
}

.service-text-link:hover i,
.service-text-link:focus-visible i {
  transform: translateX(4px);
}

/* Intro – split content, no cards */
.service-intro-section {
  background: #fff;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.service-benefit-list {
  border-top: 1px solid rgba(0, 48, 87, .12);
}

.service-benefit-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 48, 87, .12);
}

.service-benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-mid);
  background: linear-gradient(145deg, rgba(102, 204, 255, .18), rgba(0, 102, 204, .08));
  box-shadow: 0 0 24px rgba(102, 204, 255, .16);
}

.service-benefit-row h3,
.service-option-item h3,
.service-value-point h3,
.service-project-body h3,
.service-process-list h3 {
  margin: 0 0 8px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.025em;
}

.service-benefit-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

/* Options – editorial rows rather than cards */
.service-options-section {
  background:
    radial-gradient(circle at 86% 22%, rgba(102, 204, 255, .12), transparent 24%),
    linear-gradient(180deg, #f3faff 0%, #edf7ff 100%);
}

.service-options-layout {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 8vw, 118px);
  align-items: start;
}

.service-options-heading {
  position: sticky;
  top: 128px;
}

.service-option-list {
  border-top: 1px solid rgba(0, 48, 87, .14);
}

.service-option-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(190px, .62fr);
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 48, 87, .14);
}

.service-option-number,
.service-process-number {
  color: var(--blue-mid);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .14em;
}

.service-option-main p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
}

.service-option-item ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-option-item li {
  position: relative;
  padding-left: 18px;
  color: var(--blue-dark);
  font-size: 12.8px;
  line-height: 1.55;
  font-weight: 600;
}

.service-option-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(102, 204, 255, .18);
}

/* Dark value band */
.service-value-band {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(102, 204, 255, .15), transparent 28%),
    linear-gradient(115deg, #06345c 0%, #002747 50%, #001f3a 100%);
}

.service-value-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(102, 204, 255, .14);
  box-shadow: 0 0 0 48px rgba(102, 204, 255, .035), 0 0 0 96px rgba(102, 204, 255, .025);
}

.service-value-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.service-kicker-light {
  color: var(--blue-light);
}

.service-value-title h2,
.service-cta-box h2 {
  color: #fff;
}

.service-value-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-value-point {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.service-value-point i {
  position: absolute;
  left: -7px;
  top: 2px;
  color: var(--blue-light);
  background: #05315a;
}

.service-value-point h3 {
  color: #fff;
  font-size: 17px;
}

.service-value-point p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 13.5px;
  line-height: 1.7;
}

/* Projects – the only intentional card group */
.service-projects-section {
  background: #fff;
}

.service-section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.service-section-heading-row > div {
  max-width: 760px;
}

.service-section-heading-row h2 {
  margin-bottom: 0;
}

.service-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-project-card {
  overflow: hidden;
  border: 1px solid rgba(0, 48, 87, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 48, 87, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-project-card:hover,
.service-project-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 48, 87, .12);
}

.service-project-image {
  display: block;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #edf7ff;
}

.service-project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.service-project-card:hover .service-project-image img,
.service-project-card:focus-within .service-project-image img {
  transform: scale(1.035);
}

.service-project-body {
  padding: 24px 24px 26px;
}

.service-project-body > span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-mid);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-project-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

/* Process – open sequence, no card boxes */
.service-process-section {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.service-section-copy-centered {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.service-section-copy-centered .service-kicker {
  justify-content: center;
}

.service-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 48, 87, .12);
}


.service-process-list li {
  min-height: 230px;
  padding: 34px 30px 24px;
  border-right: 1px solid rgba(0, 48, 87, .1);
}

.service-process-list li:first-child {
  padding-left: 0;
}

.service-process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-process-list h3 {
  margin-top: 20px;
  font-size: 20px;
}

.service-process-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
}

/* FAQ */
.service-faq-section {
  padding-top: 84px;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(58px, 8vw, 110px);
  align-items: start;
}

.service-faq-list {
  border-top: 1px solid rgba(0, 48, 87, .12);
}

.service-faq-item {
  border-bottom: 1px solid rgba(0, 48, 87, .12);
}

.service-faq-item summary {
  position: relative;
  padding: 24px 52px 24px 0;
  list-style: none;
  cursor: pointer;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--blue-mid);
  background: rgba(102, 204, 255, .13);
  font-family: var(--font-heading);
  font-size: 19px;
}

.service-faq-item[open] summary::after {
  content: "−";
}

.service-faq-item p {
  max-width: 680px;
  margin: -2px 52px 24px 0;
  font-size: 14.5px;
  line-height: 1.75;
}

/* CTA */
.service-cta-section {
  padding-top: 46px;
  padding-bottom: 78px;
}

.service-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 44px 52px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(102, 204, 255, .16), transparent 25%),
    linear-gradient(120deg, #06365f 0%, #003057 52%, #002541 100%);
  box-shadow: 0 24px 52px rgba(0, 48, 87, .2);
}

.service-cta-box h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 46px);
}

.service-cta-box p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14.5px;
  line-height: 1.72;
}

.service-cta-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.service-btn-ghost {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}

.service-btn-ghost:hover,
.service-btn-ghost:focus-visible {
  color: #fff !important;
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 1120px) {
  .service-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 46px;
  }

  .service-value-points {
    grid-template-columns: 1fr;
  }

  .service-value-point {
    padding-bottom: 18px;
  }
}

@media (max-width: 920px) {
  .service-shell {
    width: min(100% - 44px, 820px);
  }

  .service-side-label {
    display: none;
  }

  .service-hero {
    min-height: auto;
    padding: 118px 0 66px;
  }

  .service-hero-grid,
  .service-intro-grid,
  .service-options-layout,
  .service-value-band-inner,
  .service-faq-grid,
  .service-cta-box {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    max-width: 720px;
  }

  .service-hero-visual {
    min-height: 360px;
  }

  .service-options-heading {
    position: static;
    max-width: 700px;
  }

  .service-project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-process-list {
    grid-template-columns: 1fr 1fr;
  }


  .service-process-list li:nth-child(2) {
    border-right: 0;
  }

  .service-process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 48, 87, .1);
  }

  .service-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .service-shell {
    width: min(100% - 30px, 620px);
  }

  .service-hero {
    padding-top: 104px;
    padding-bottom: 52px;
  }

  .service-breadcrumb {
    display: none;
  }

  .service-hero h1 {
    margin-top: 14px;
    font-size: clamp(38px, 11.2vw, 54px);
    line-height: 1.08;
    letter-spacing: -.045em;
  }

  .service-hero-lead {
    font-size: 15px;
    line-height: 1.72;
  }

  .service-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-btn {
    width: 100%;
  }

  .service-proof-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-hero-visual {
    min-height: 280px;
  }

  .service-hero-shape {
    inset: 12% 0 0 5%;
  }

  .service-hero-visual img {
    max-height: 320px;
  }

  .service-switcher {
    margin-top: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 48, 87, .08);
  }

  .service-switcher-inner {
    width: 100%;
    padding: 12px 15px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-switcher a {
    flex: 0 0 auto;
    padding: 8px 15px;
    white-space: nowrap;
  }

  .service-section {
    padding: 68px 0;
  }

  .service-section-copy h2,
  .service-options-heading h2,
  .service-section-heading-row h2,
  .service-value-title h2,
  .service-cta-box h2 {
    font-size: clamp(31px, 9.4vw, 42px);
    line-height: 1.12;
  }

  .service-intro-grid,
  .service-options-layout,
  .service-faq-grid {
    gap: 44px;
  }

  .service-benefit-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 22px 0;
  }

  .service-benefit-icon {
    width: 42px;
    height: 42px;
  }

  .service-option-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 26px 0;
  }

  .service-option-item ul {
    grid-column: 2;
    margin-top: 4px;
  }

  .service-value-band {
    padding: 64px 0;
  }

  .service-value-band-inner {
    gap: 38px;
  }

  .service-project-grid {
    grid-template-columns: 1fr;
  }

  .service-section-heading-row {
    display: block;
  }

  .service-section-heading-row > .service-text-link {
    margin-top: 0;
  }

  .service-process-list {
    grid-template-columns: 1fr;
  }


  .service-process-list li,
  .service-process-list li:first-child,
  .service-process-list li:last-child {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 48, 87, .1);
  }

  .service-process-list li:last-child {
    border-bottom: 0;
  }

  .service-cta-box {
    gap: 28px;
    padding: 30px 24px;
  }

  .service-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-btn,
  .service-project-card,
  .service-project-image img,
  .service-text-link i {
    transition: none !important;
  }
}

/* ===== V5: wide editorial heroes + concise summary cards ===== */
.service-hero {
  min-height: 720px;
  padding: 132px 0 62px;
}

.service-hero .service-shell {
  width: min(1480px, calc(100% - 76px));
}

.service-hero-grid {
  grid-template-columns: minmax(480px, .9fr) minmax(610px, 1.1fr);
  gap: clamp(42px, 4.5vw, 78px);
}

.service-hero-copy {
  position: relative;
  z-index: 4;
  max-width: 700px;
}

.service-hero h1 {
  max-width: 700px;
  font-size: clamp(52px, 4.55vw, 78px);
}

.service-hero-lead {
  max-width: 620px;
}

.service-proof-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  gap: 18px;
  margin-top: 34px;
}

.service-proof-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.45;
}

.service-proof-list i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  color: var(--blue-mid);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,102,204,.13);
  box-shadow: 0 10px 24px rgba(0,48,87,.07), 0 0 20px rgba(102,204,255,.08);
}

.service-hero-collage {
  position: relative;
  min-height: 540px;
  display: block;
}

.service-hero-collage .service-hero-shape {
  inset: 3% 1% 3% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.86), transparent 23%),
    linear-gradient(145deg, rgba(102,204,255,.38), rgba(0,102,204,.12));
  filter: none;
}

.service-hero-collage::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: 3%;
  width: 82%;
  height: 23%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,48,87,.16), transparent 68%);
  filter: blur(18px);
}

.service-hero-media {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.96);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(0,48,87,.18), 0 0 0 1px rgba(0,102,204,.06);
}

.service-hero-media img,
.service-hero-visual .service-hero-media img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.service-hero-media-1 {
  top: 7%;
  right: 2%;
  width: 82%;
  height: 72%;
  transform: rotate(1.2deg);
}

.service-hero-media-2 {
  left: 0;
  bottom: 2%;
  width: 36%;
  height: 31%;
  transform: rotate(-3deg);
}

.service-hero-media-3 {
  right: 0;
  bottom: 0;
  width: 31%;
  height: 27%;
  transform: rotate(3deg);
}

.service-weboldal .service-hero-media-1 img,
.service-shopify .service-hero-media-1 img {
  object-position: center;
}

.service-shopify .service-hero-media-2 img,
.service-shopify .service-hero-media-3 img {
  object-position: top center;
}

.service-arculat .service-hero-media-1 {
  width: 76%;
  right: 4%;
}

.service-arculat .service-hero-media-2 {
  width: 35%;
  height: 35%;
}

.service-arculat .service-hero-media-3 {
  width: 31%;
  height: 31%;
}

.service-grafika .service-hero-media-1 {
  top: 3%;
  right: 4%;
  width: 69%;
  height: 78%;
}

.service-grafika .service-hero-media-2 {
  width: 29%;
  height: 42%;
  left: 1%;
  bottom: 2%;
}

.service-grafika .service-hero-media-3 {
  width: 30%;
  height: 34%;
  right: 0;
  bottom: -1%;
}

.service-summary-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: end;
  margin-bottom: 34px;
}

.service-summary-heading .service-section-copy {
  max-width: 650px;
}

.service-summary-lead {
  max-width: 560px;
  padding-bottom: 4px;
}

.service-summary-lead p {
  margin: 0 0 18px;
  color: var(--type-color-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-summary-card {
  min-height: 270px;
  padding: 30px 28px 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,48,87,.09);
  box-shadow: 0 18px 44px rgba(0,48,87,.08);
}

.service-summary-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 17px;
  color: var(--blue-mid);
  font-size: 21px;
  background: linear-gradient(145deg, rgba(102,204,255,.2), rgba(0,102,204,.07));
  box-shadow: inset 0 0 0 1px rgba(0,102,204,.08);
}

.service-summary-card h3 {
  margin: 0 0 13px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.025em;
}

.service-summary-card p {
  margin: 0;
  color: var(--type-color-body);
  font-size: 14.5px;
  line-height: 1.72;
}

.service-benefit-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(0,48,87,.1);
  border-bottom: 1px solid rgba(0,48,87,.1);
}

.service-benefit-rail .service-benefit-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  padding: 28px 24px;
  border-bottom: 0;
  border-right: 1px solid rgba(0,48,87,.1);
}

.service-benefit-rail .service-benefit-row:last-child {
  border-right: 0;
}

.service-benefit-rail .service-benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.service-benefit-rail h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.service-benefit-rail p {
  font-size: 12.5px;
  line-height: 1.6;
}

@media (max-width: 1260px) {
  .service-hero-grid {
    grid-template-columns: minmax(420px, .92fr) minmax(520px, 1.08fr);
  }

  .service-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefit-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefit-rail .service-benefit-row:nth-child(2) {
    border-right: 0;
  }

  .service-benefit-rail .service-benefit-row:nth-child(-n+2) {
    border-bottom: 1px solid rgba(0,48,87,.1);
  }
}

@media (max-width: 980px) {
  .service-hero {
    min-height: 0;
  }

  .service-hero .service-shell {
    width: min(100% - 48px, 900px);
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    max-width: 760px;
  }

  .service-hero-collage {
    min-height: 520px;
  }

  .service-summary-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }

  .service-summary-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .service-hero .service-shell {
    width: min(100% - 30px, 620px);
  }

  .service-hero h1 {
    font-size: clamp(40px, 12.2vw, 56px);
  }

  .service-proof-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-proof-list li {
    grid-template-columns: 36px 1fr;
    font-size: 11.7px;
  }

  .service-proof-list i {
    width: 36px;
    height: 36px;
  }

  .service-hero-collage {
    min-height: 410px;
    margin-top: 6px;
  }

  .service-hero-media {
    border-width: 6px;
    border-radius: 18px;
  }

  .service-hero-media-1,
  .service-arculat .service-hero-media-1,
  .service-grafika .service-hero-media-1 {
    top: 3%;
    right: 1%;
    width: 88%;
    height: 65%;
  }

  .service-hero-media-2,
  .service-arculat .service-hero-media-2,
  .service-grafika .service-hero-media-2 {
    left: 1%;
    bottom: 2%;
    width: 47%;
    height: 31%;
  }

  .service-hero-media-3,
  .service-arculat .service-hero-media-3,
  .service-grafika .service-hero-media-3 {
    right: 1%;
    bottom: 0;
    width: 43%;
    height: 28%;
  }

  .service-summary-grid,
  .service-benefit-rail {
    grid-template-columns: 1fr;
  }

  .service-benefit-rail .service-benefit-row,
  .service-benefit-rail .service-benefit-row:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0,48,87,.1);
  }

  .service-benefit-rail .service-benefit-row:last-child {
    border-bottom: 0;
  }
}

/* ===== V6: sharper hero crops, centered summary heads, 2x2 package block ===== */
.service-hero-media img {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.service-hero-media-2 img,
.service-hero-media-3 img {
  object-position: center;
}

.service-summary-card {
  text-align: left;
}

.service-summary-icon {
  margin-left: auto;
  margin-right: auto;
}

.service-summary-card h3 {
  text-align: center;
}

.service-grafika .service-hero-copy {
  max-width: 750px;
}

.service-grafika .service-hero h1 {
  max-width: 750px;
  font-size: clamp(50px, 4.15vw, 72px);
  line-height: 1.045;
}

.service-options-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(102,204,255,.16), transparent 28%),
    linear-gradient(180deg, rgba(232,244,255,.72), rgba(248,252,255,.9));
}

.service-package-heading {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-package-heading .service-kicker {
  justify-content: center;
}

.service-package-heading h2 {
  max-width: 800px;
  margin: 15px auto 14px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.035em;
}

.service-package-heading p {
  max-width: 730px;
  margin: 0 auto;
  color: var(--type-color-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
}

.service-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.service-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 32px 32px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,48,87,.1);
  box-shadow: 0 20px 48px rgba(0,48,87,.08);
}

.service-package-card.is-featured {
  border-color: rgba(0,102,204,.45);
  box-shadow: 0 24px 58px rgba(0,102,204,.13);
}

.service-package-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #5cc7ff, #0066cc);
  box-shadow: 0 10px 22px rgba(0,102,204,.24);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-package-head {
  text-align: center;
}

.service-package-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
  color: var(--blue-mid);
  background: linear-gradient(145deg, rgba(102,204,255,.22), rgba(0,102,204,.08));
  box-shadow: inset 0 0 0 1px rgba(0,102,204,.09), 0 10px 28px rgba(0,102,204,.08);
  font-size: 22px;
}

.service-package-card h3 {
  margin: 0 0 15px;
  color: var(--type-color-heading);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -.03em;
}

.service-package-card > p {
  margin: 0 0 19px;
  color: var(--type-color-body);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.service-package-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-package-card li {
  position: relative;
  padding-left: 21px;
  color: var(--type-color-heading);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.service-package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .53em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
  box-shadow: 0 0 0 5px rgba(102,204,255,.16);
}

.service-package-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  color: var(--blue-mid);
  font-weight: 800;
  text-decoration: none;
}

.service-package-link:hover,
.service-package-link:focus-visible {
  color: var(--blue-dark);
  text-decoration: none;
}

@media (max-width: 900px) {
  .service-package-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .service-package-card {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .service-grafika .service-hero h1 {
    font-size: clamp(39px, 11.2vw, 56px);
  }

  .service-package-heading {
    text-align: left;
  }

  .service-package-heading .service-kicker {
    justify-content: flex-start;
  }

  .service-package-heading h2,
  .service-package-heading p {
    margin-left: 0;
    margin-right: 0;
  }

  .service-package-card {
    padding: 30px 22px 24px;
  }
}


/* ===== V7: sharper mini mockups + mobile cleanup ===== */
.service-hero-media-2,
.service-hero-media-3,
.service-arculat .service-hero-media-2,
.service-arculat .service-hero-media-3,
.service-grafika .service-hero-media-2,
.service-grafika .service-hero-media-3 {
  transform: none !important;
}

.service-hero-media-2 img,
.service-hero-media-3 img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: visible;
  transform: none !important;
}

.service-section-copy h2,
.service-options-heading h2,
.service-section-heading-row h2,
.service-value-title h2,
.service-cta-box h2,
.service-package-heading h2 {
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 767px) {
  /* The desktop service switcher is redundant in the mobile menu and
     previously created a horizontally scrolling strip between sections. */
  .service-switcher {
    display: none !important;
  }

  /* Floating back-to-top control must not cover headings or body copy. */
  .bd-service-detail .go-top {
    display: none !important;
  }

  /* Keep the mobile hero visually clean; the angled desktop plane is not
     needed behind the stacked copy and collage. */
  .service-hero::after {
    display: none;
  }

  .service-section-copy h2,
  .service-options-heading h2,
  .service-section-heading-row h2,
  .service-value-title h2,
  .service-cta-box h2,
  .service-package-heading h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.7vw, 38px);
    line-height: 1.09;
    letter-spacing: -.035em;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .service-summary-heading .service-section-copy h2 {
    font-size: clamp(32px, 9vw, 39px);
    line-height: 1.08;
  }

  .service-summary-heading {
    gap: 28px;
    margin-bottom: 28px;
  }

  .service-section-heading-row > div,
  .service-section-copy,
  .service-package-heading,
  .service-value-title {
    min-width: 0;
  }

  .service-hero-media-2,
  .service-hero-media-3,
  .service-arculat .service-hero-media-2,
  .service-arculat .service-hero-media-3,
  .service-grafika .service-hero-media-2,
  .service-grafika .service-hero-media-3 {
    transform: none !important;
  }
}
