﻿:root {
  --bg: #f6f8fb;
  --ink: #101820;
  --muted: #5e6876;
  --line: #dfe6ee;
  --brand: #03a9d9;
  --brand-dark: #027fa6;
  --accent: #f3b33d;
  --panel: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img,
video,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.site-menu-toggle {
  display: none;
}

.main-nav a {
  text-decoration: none;
  color: #263241;
}

.nav-button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.74)),
    url("../img/hero-bg.jpg") center/cover;
}

.hero > *,
.section,
.trust-section,
.contact-section,
.site-header,
.site-footer {
  max-width: 100%;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  color: transparent;
  background: linear-gradient(90deg, #08c4df, #118cff, #7a2cff, #08c4df);
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientText 4s linear infinite;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

@keyframes gradientText {
  from { background-position: 0% center; }
  to { background-position: 260% center; }
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-panel span {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section,
.trust-section,
.contact-section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.trust-section {
  background:
    radial-gradient(circle at 8% 90%, rgba(0, 210, 255, .08), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(122, 44, 255, .08), transparent 34%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 54%, #f4efff 100%);
}

.trust-carousel {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  overflow: visible;
}

.trust-track {
  display: grid;
  width: 100%;
  min-width: 0;
}

.trust-track .trust-card {
  grid-area: 1 / 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .34s ease, transform .34s ease;
}

.trust-track .trust-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.trust-card {
  position: relative;
  width: min(1440px, 100%);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  margin: 0 auto;
  padding: clamp(42px, 5.4vw, 78px) clamp(28px, 5.6vw, 78px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(248, 254, 255, .96), rgba(255, 255, 255, .96), rgba(247, 240, 255, .96)) padding-box,
    linear-gradient(120deg, rgba(8, 196, 223, .72), rgba(35, 92, 255, .45), rgba(122, 44, 255, .72)) border-box;
  box-shadow: 0 28px 90px rgba(29, 71, 137, .12);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 88%, rgba(0, 210, 255, .24), transparent 34%),
    radial-gradient(circle at 92% 6%, rgba(137, 73, 255, .22), transparent 36%),
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.7), #000 22%, #000 80%, rgba(0,0,0,.72));
  pointer-events: none;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: radial-gradient(circle at 82% 12%, rgba(122, 44, 255, .08), transparent 34%);
  pointer-events: none;
}

.trust-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.trust-card > strong,
.trust-option-mark strong {
  position: relative;
  z-index: 1;
  color: transparent;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .9;
}

.trust-option-mark {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.trust-option-mark span {
  width: clamp(82px, 8vw, 110px);
  height: clamp(82px, 8vw, 110px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 140, 255, .22);
  border-radius: 28px;
  color: #118cff;
  background:
    radial-gradient(circle at 72% 20%, rgba(122, 44, 255, .18), transparent 36%),
    rgba(255, 255, 255, .58);
  box-shadow:
    0 22px 48px rgba(17, 140, 255, .14),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.trust-option-mark svg {
  width: 42px;
  height: 42px;
  display: block;
  fill: currentColor;
}

.trust-option-mark strong {
  position: relative;
  font-size: clamp(38px, 4vw, 58px);
  text-align: left;
  letter-spacing: -.04em;
}

.trust-option-mark strong::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #08c4df, #7a2cff);
}

.trust-option-mark p {
  max-width: 230px;
  margin: -2px 0 0;
  color: #2f3f58;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.45;
}

.trust-card h2 {
  max-width: 840px;
  margin: 0 0 18px;
  color: #071326;
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.gradient-word {
  color: transparent;
  background: linear-gradient(100deg, #08c4df, #118cff 45%, #7a2cff);
  -webkit-background-clip: text;
  background-clip: text;
}

.trust-card p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 25px);
  line-height: 1.48;
}

.trust-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 11px 22px 11px 13px;
  border: 1px solid rgba(17, 140, 255, .18);
  border-radius: 999px;
  color: #071326;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 34px rgba(33, 92, 180, .08);
  backdrop-filter: blur(14px);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 900;
}

.trust-chip-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #118cff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .35)),
    linear-gradient(135deg, rgba(8, 196, 223, .26), rgba(122, 44, 255, .22));
  border: 1px solid rgba(17, 140, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
}

.trust-chip-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.trust-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-controls > button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 140, 255, .24);
  border-radius: 50%;
  color: #062947;
  background: rgba(255, 255, 255, .9);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(16, 24, 32, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trust-controls > button:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 44, 255, .34);
  box-shadow: 0 18px 42px rgba(16, 24, 32, .12);
}

.trust-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 41, 71, .24);
  cursor: pointer;
  transition: width .18s ease, background .18s ease;
}

.trust-dots button.is-active {
  width: 30px;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section h2,
.contact-section h2 {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  animation: none;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.service-grid,
.project-grid,
.social-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.service-card,
.project-card,
.contact-form,
.social-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-grid article,
.service-card {
  padding: 24px;
}

.service-card {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  border-color: rgba(8, 196, 223, .46);
  box-shadow: 0 18px 44px rgba(16, 24, 32, .08);
  transform: translateY(-3px);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 246px;
  padding: 26px;
  border-color: rgba(0, 174, 255, .22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 4%, rgba(122, 44, 255, .13), transparent 34%),
    radial-gradient(circle at 4% 96%, rgba(8, 196, 223, .16), transparent 36%),
    rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(20, 60, 110, .07);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 44, 255, .035) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .72;
  pointer-events: none;
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 174, 255, .28);
  border-radius: 15px;
  color: #127dff;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 14px 34px rgba(35, 92, 255, .11);
  backdrop-filter: blur(12px);
}

.service-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin-bottom: 22px;
}

.service-card-action {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 126, 255, .22);
  border-radius: 999px;
  color: #07182c;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 10px 28px rgba(33, 92, 180, .08);
  backdrop-filter: blur(10px);
}

.service-card-action b {
  display: inline-block;
  color: #235cff;
  transition: transform .2s ease;
}

.service-card:hover .service-card-action b {
  transform: translateX(4px);
}

.service-quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.service-quick-links a {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(0, 174, 255, .24);
  border-radius: 16px;
  color: #07182c;
  text-decoration: none;
  background:
    radial-gradient(circle at 96% 6%, rgba(122, 44, 255, .12), transparent 32%),
    rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(20, 60, 110, .055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-quick-links a:hover {
  border-color: rgba(35, 92, 255, .42);
  box-shadow: 0 18px 46px rgba(20, 60, 110, .09);
  transform: translateY(-2px);
}

.service-quick-links strong {
  font-size: 15px;
  font-weight: 900;
}

.service-quick-links span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-grid h3,
.project-card h3 {
  margin: 0 0 10px;
}

.service-grid p,
.project-card span,
.contact-section p {
  color: var(--muted);
  line-height: 1.65;
}

.projects-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 44, 255, .12), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(8, 196, 223, .14), transparent 32%),
    #f8fbff;
}

.projects-section .section-heading p:not(.eyebrow),
.media-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

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

.media-card {
  overflow: hidden;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 60px rgba(16, 24, 32, .08);
}

.media-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef7ff;
}

.media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.media-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  background: transparent;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.media-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #071426;
}

.play-mark {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
  box-shadow: 0 18px 34px rgba(17, 140, 255, .28);
}

.play-mark::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 14px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
}

.media-card div:last-child {
  padding: 18px;
}

.media-card p {
  margin: 0 0 8px;
  color: #118cff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-card h3 {
  margin: 0 0 8px;
}

.media-card span {
  color: var(--muted);
  line-height: 1.6;
}

.project-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-showcase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-showcase-card > div:last-child {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-showcase-card .media-thumb img {
  object-fit: cover;
}

.project-showcase-card .project-card-actions-minimal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px 20px;
  margin-top: auto;
}

.project-showcase-card .project-card-actions-minimal .project-detail-button {
  margin-top: 0;
}

.project-card-price {
  align-self: flex-start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 174, 255, .28);
  box-shadow: 0 10px 24px rgba(12, 82, 160, .08);
  color: #061527;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.project-card-actions-minimal a {
  white-space: nowrap;
}

.project-demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #061527;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 174, 255, .28);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(33, 92, 180, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-demo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(33, 92, 180, .14);
}

.project-demo-cta {
  border: 1px solid rgba(0, 174, 255, .35);
  background: rgba(255, 255, 255, .84);
  color: #061527;
}

.project-showcase-card h3,
.project-showcase-card p,
.project-showcase-card span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}

.project-card-actions .project-detail-button,
.project-card-actions .project-link {
  margin-top: 0;
}

.project-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand-dark);
  font-weight: 800;
}

.project-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 38px;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(17, 140, 255, .28);
  border-radius: 999px;
  color: #071426;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 26px rgba(16, 24, 32, .08);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.project-detail-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.project-detail-button:hover {
  border-color: rgba(122, 44, 255, .42);
  box-shadow: 0 16px 32px rgba(17, 140, 255, .13);
  transform: translateY(-1px);
}

.project-public-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0 80px;
}

.project-public-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-public-breadcrumb a {
  color: #118cff;
  text-decoration: none;
}

.project-public-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(17, 140, 255, .28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 92%, rgba(8, 196, 223, .18), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(122, 44, 255, .16), transparent 36%),
    linear-gradient(135deg, #f8feff 0%, #fff 48%, #f6f0ff 100%);
  box-shadow: 0 28px 80px rgba(24, 64, 120, .12);
}

.project-public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 82%, transparent);
  pointer-events: none;
}

.project-public-copy,
.project-public-gallery {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.project-public-copy h1 {
  max-width: 700px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
}

.project-public-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}

.project-public-tags,
.project-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-public-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(17, 140, 255, .24);
  border-radius: 999px;
  color: #071426;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 12px 28px rgba(33, 92, 180, .08);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.project-public-gallery {
  display: grid;
  gap: 12px;
}

.project-public-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(16, 24, 32, .13);
}

.project-public-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.project-public-thumbs button {
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.project-public-thumbs button.is-active {
  border-color: #118cff;
  box-shadow: 0 10px 22px rgba(17, 140, 255, .16);
}

.project-public-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.project-public-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 22px;
  margin-top: 24px;
}

.project-public-detail article,
.project-public-meta,
.project-public-cta {
  border: 1px solid rgba(8, 196, 223, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 70px rgba(24, 64, 120, .08);
}

.project-public-detail article {
  padding: clamp(24px, 4vw, 42px);
}

.project-public-detail h2,
.project-public-cta h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.project-public-detail article > p:not(.eyebrow),
.project-public-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.project-public-meta {
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 24px;
}

.project-public-meta span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-public-meta strong {
  color: var(--ink);
  font-size: 18px;
}

.project-public-cta {
  margin-top: 24px;
  padding: clamp(26px, 5vw, 52px);
  background:
    radial-gradient(circle at 8% 90%, rgba(8, 196, 223, .18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(122, 44, 255, .16), transparent 34%),
    #fff;
}

.project-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 18px;
  overscroll-behavior: contain;
}

.project-detail-modal.is-open {
  display: grid;
}

.project-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 38, .72);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.project-detail-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 8%, rgba(122, 44, 255, .12), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(8, 196, 223, .16), transparent 34%),
    #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
}

.project-detail-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 14px 14px -56px auto;
  border: 1px solid rgba(8, 196, 223, .25);
  border-radius: 50%;
  color: #071426;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 28px rgba(16, 24, 32, .12);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(22px, 4vw, 44px);
}

.project-detail-media {
  min-width: 0;
}

.project-detail-main-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(8, 196, 223, .2);
  border-radius: 18px;
  background: #f4fbff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, .09);
}

.project-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.project-detail-thumbs button {
  min-width: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.project-detail-thumbs button.is-active {
  border-color: #118cff;
}

.project-detail-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.project-detail-content {
  min-width: 0;
  align-self: center;
}

.project-detail-content h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.project-detail-client {
  margin: 0 0 18px;
  color: #118cff;
  font-weight: 900;
}

.project-detail-description {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.project-detail-video,
.project-detail-visit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #08c4df, #118cff 50%, #7a2cff);
  box-shadow: 0 18px 34px rgba(17, 140, 255, .22);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.project-detail-visit {
  color: #071426;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(8, 196, 223, .28);
}

.project-detail-open {
  overflow: hidden;
  touch-action: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
  overscroll-behavior: contain;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 28, .72);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(86vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 18px;
  background: #071426;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.video-modal-panel h2 {
  margin: 0;
  padding: 16px 58px 14px 18px;
  color: #fff;
  font-size: clamp(18px, 3vw, 24px);
}

.video-modal-player {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-modal-player video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.video-fallback {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 140, 255, .9);
  font-weight: 800;
  text-decoration: none;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-open {
  overflow: hidden;
  touch-action: none;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1480px;
  margin-inline: auto;
}

.contact-section h2 {
  max-width: 620px;
  font-size: clamp(34px, 3vw, 48px);
}

.contact-section > div > p {
  max-width: 640px;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.contact-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-social-links .social-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(16,24,32,.14);
  border-radius: 14px;
  color: #101820;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(16, 24, 32, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-social-links .social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(16,24,32,.32);
  box-shadow: 0 20px 42px rgba(16, 24, 32, .14);
}

.contact-social-links .instagram {
  background: #fff;
}

.contact-social-links .mail {
  background: #fff;
}

.mail-logo {
  width: 26px;
  height: 18px;
  border: 2px solid #101820;
  border-radius: 5px;
  position: relative;
  box-sizing: border-box;
  background: transparent;
  overflow: hidden;
}

.mail-flap {
  position: absolute;
  width: 16px;
  height: 16px;
  border-left: 2px solid #101820;
  border-bottom: 2px solid #101820;
  transform: rotate(-45deg);
  top: -6px;
  left: 3px;
  box-sizing: border-box;
}

.instagram-logo {
  width: 24px;
  height: 24px;
  border: 2px solid #101820;
  border-radius: 7px;
  position: relative;
  box-sizing: border-box;
  background: transparent;
}

.instagram-circle {
  width: 10px;
  height: 10px;
  border: 2px solid #101820;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  box-sizing: border-box;
}

.instagram-dot {
  width: 3px;
  height: 3px;
  background: #101820;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 4px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form textarea {
  resize: none;
}

.message-compose {
  position: relative;
  display: block;
}

.message-compose textarea {
  min-height: 130px;
  padding-right: 56px;
  padding-bottom: 48px;
}

.attach-control {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #4f5d6d;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(16, 24, 32, .1);
  transition: transform .16s ease, color .16s ease, border-color .16s ease;
}

.attach-control:hover {
  color: var(--brand-dark);
  border-color: rgba(3, 169, 217, .46);
  transform: translateY(-1px);
}

.attach-control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.attach-control input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-alert.success {
  color: #12643f;
  background: #ecfff6;
}

.form-alert.error {
  color: #a92b2b;
  background: #fff0f0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(280px, 1.3fr);
  gap: clamp(22px, 5vw, 64px);
  padding: 24px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-brand strong {
  font-size: 22px;
}

.footer-brand span,
.footer-faq p {
  color: rgba(255, 255, 255, .72);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-faq {
  display: grid;
  gap: 10px;
}

.footer-faq h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.footer-faq details {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.footer-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.footer-faq p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.manual-client-page {
  background: #e9eff5;
}

.client-manual {
  width: min(980px, calc(100% - 28px));
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(16, 24, 32, .12);
}

.client-manual-hero {
  padding: clamp(34px, 6vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, #101820 0%, #163044 62%, #03a9d9 100%);
}

.client-manual-hero .brand {
  color: #fff;
  margin-bottom: 28px;
}

.client-manual-hero p,
.client-manual-hero span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.client-manual-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
}

.client-manual-body {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 44px);
}

.client-manual-body article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.client-manual-body h2 {
  margin: 0 0 12px;
  color: #075775;
}

.client-manual-body li {
  margin: 8px 0;
  line-height: 1.6;
}

.client-manual-footer {
  padding: 18px clamp(24px, 5vw, 44px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #f8fafc;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@page {
  size: A4;
  margin: 12mm;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .manual-client-page {
    background: #fff !important;
  }

  .client-manual {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .client-manual-hero {
    background: #081b3a !important;
    color: #fff !important;
    padding: 28px 34px;
  }

  .client-manual-hero h1 {
    font-size: 34px;
  }

  .client-manual-body {
    padding: 28px 34px 54px;
  }

  .client-manual-body article {
    break-inside: avoid;
    page-break-inside: avoid;
    background: #fbfdff !important;
  }

  .client-manual-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f8fafc !important;
  }
}

@media (max-width: 920px) {
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .media-grid,
  .social-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 22px;
  }

  .site-header,
  .site-footer {
    align-items: center;
    flex-direction: row;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 24, 32, .14);
  }

  .site-menu-open .main-nav {
    display: flex;
  }

  .hero {
    min-height: auto;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    padding: 48px 18px 38px;
    gap: 28px;
    overflow: hidden;
  }

  .hero > div,
  .hero-actions,
  .hero-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-panel,
  .service-grid,
  .project-grid,
  .media-grid,
  .project-detail-layout,
  .social-faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
  }

  .button,
  .project-detail-button,
  .project-detail-video,
  .project-detail-visit,
  .contact-form button {
    width: 100%;
  }

  .project-detail-modal {
    padding: 10px;
  }

  .project-detail-panel {
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .project-detail-layout {
    padding: 20px;
  }

  .project-detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-detail-description {
    font-size: 16px;
  }

  .project-public-page {
    width: min(100% - 24px, 760px);
    padding: 24px 0 56px;
  }

  .project-public-hero,
  .project-public-detail {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .project-public-copy h1 {
    font-size: clamp(34px, 12vw, 52px);
    overflow-wrap: anywhere;
  }

  .project-public-actions .button,
  .project-public-actions button,
  .project-public-actions a {
    width: 100%;
  }

  .project-public-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .trust-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-carousel {
    width: 100%;
  }

  .trust-card {
    align-items: start;
    min-height: auto;
    gap: 24px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .trust-card > strong,
  .trust-option-mark strong {
    font-size: clamp(42px, 14vw, 72px);
  }

  .trust-option-mark {
    min-width: 0;
    align-items: flex-start;
  }

  .trust-option-mark span {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .trust-option-mark svg {
    width: 32px;
    height: 32px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .video-modal-panel h2 {
    padding: 14px 54px 12px 14px;
  }

  .video-modal-player {
    aspect-ratio: 9 / 16;
    max-height: 72dvh;
  }

  .trust-card h2 {
    font-size: clamp(30px, 10vw, 42px);
    overflow-wrap: anywhere;
  }

  .trust-card p {
    font-size: 16px;
  }

  .trust-highlights {
    gap: 10px;
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .trust-highlights span {
    width: 100%;
    min-height: 50px;
    padding: 9px 14px 9px 10px;
  }

  .trust-chip-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .trust-chip-icon svg {
    width: 16px;
    height: 16px;
  }

.client-manual {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}

.service-page {
  overflow-x: hidden;
}

.service-hero,
.service-detail,
.service-process,
.service-faq-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.service-hero {
  padding: 92px 0 56px;
}

.service-hero h1,
.service-detail h2,
.service-process h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.04;
}

.service-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.service-tags,
.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.service-tags span {
  border: 1px solid rgba(8, 196, 223, .34);
  border-radius: 999px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(8, 196, 223, .12), rgba(122, 44, 255, .08));
  color: var(--ink);
  font-weight: 800;
}

.service-detail,
.service-process,
.service-faq-section {
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(8, 196, 223, .22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(122, 44, 255, .12), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(8, 196, 223, .12), transparent 30%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 22px 60px rgba(16, 24, 32, .07);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 30px;
}

.service-detail h2,
.service-process h2,
.service-faq-section h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.service-benefits {
  display: grid;
  gap: 14px;
}

.service-benefits article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.service-benefits article span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
}

.service-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-steps article {
  min-width: 150px;
  flex: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.service-steps strong {
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
}

.service-steps span {
  color: var(--ink);
  font-weight: 800;
}

.service-faq-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 28px;
}

.service-faq-heading h2 {
  margin: 0;
  color: var(--ink);
}

.service-faq-list {
  display: grid;
  gap: 12px;
}

.service-faq-list article {
  padding: 18px;
  border: 1px solid rgba(8, 196, 223, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}

.service-faq-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 17px;
}

.service-faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

@media (max-width: 760px) {
  .service-hero,
  .service-detail,
  .service-process,
  .service-faq-section {
    width: min(100% - 28px, 1120px);
  }

  .service-hero {
    padding-top: 48px;
  }

  .service-detail,
  .service-faq-section {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Heroes individuales de servicios. */
.service-page {
  background:
    radial-gradient(circle at 2% 28%, rgba(8, 196, 223, .12), transparent 34%),
    radial-gradient(circle at 96% 14%, rgba(122, 44, 255, .12), transparent 32%),
    linear-gradient(135deg, #f7fcff 0%, #fff 48%, #f7f1ff 100%);
}

.service-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 8vw, 96px) 0 clamp(44px, 6vw, 70px);
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 4vw, 42px) -2vw auto auto;
  width: min(48vw, 720px);
  height: min(48vw, 720px);
  background:
    linear-gradient(rgba(0, 126, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 126, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 0 44%, transparent 72%);
  pointer-events: none;
}

.service-hero-copy,
.service-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-hero h1 {
  max-width: 720px;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.service-hero > p:not(.eyebrow),
.service-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #42516a;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
}

.service-cta {
  margin-top: 8px;
}

.service-visual {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  overflow: visible;
}

.service-device {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: 5%;
  width: min(82%, 560px);
  min-height: 390px;
  padding: 22px;
  border: 1px solid rgba(0, 126, 255, .18);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow:
    0 36px 90px rgba(23, 58, 120, .14),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
  animation: serviceDeviceFloat 7s ease-in-out infinite;
}

.service-device-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #56708f;
  font-size: 13px;
  font-weight: 900;
}

.service-device-top span {
  margin-right: auto;
  color: #061527;
}

.service-device-top i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #08c4df, #235cff);
  box-shadow: 0 0 16px rgba(35, 92, 255, .35);
}

.service-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-metric,
.service-chart,
.service-mini-card,
.service-visual-card,
.service-flow span {
  border: 1px solid rgba(0, 126, 255, .14);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 36px rgba(29, 71, 137, .08);
  backdrop-filter: blur(14px);
}

.service-metric,
.service-chart {
  min-height: 128px;
  border-radius: 20px;
  padding: 18px;
}

.service-metric span,
.service-mini-card span,
.service-visual-card span {
  display: block;
  color: #607083;
  font-size: 13px;
  font-weight: 800;
}

.service-metric strong,
.service-visual-card strong {
  display: block;
  margin-top: 10px;
  background: linear-gradient(135deg, #08c4df, #118cff 48%, #7a2cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .95;
}

.service-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.service-chart span {
  flex: 1;
  min-height: 30px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #08c4df, #235cff 56%, #7a2cff);
  box-shadow: 0 10px 20px rgba(35, 92, 255, .16);
}

.service-mini-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 14px;
  border-radius: 18px;
}

.service-mini-card b {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(8, 196, 223, .2), rgba(122, 44, 255, .18));
  border: 1px solid rgba(17, 140, 255, .22);
}

.service-visual-card {
  position: absolute;
  z-index: 4;
  width: min(32vw, 176px);
  min-width: 148px;
  padding: 18px;
  border-radius: 22px;
  overflow: visible;
}

.service-float-one {
  top: 0;
  left: 4%;
  transform: rotate(-6deg);
}

.service-float-two {
  right: 1%;
  bottom: 138px;
  transform: rotate(5deg);
}

.service-float-two strong {
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
}

.service-float-two span {
  margin-top: 6px;
}

.service-flow {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 6%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-flow span {
  position: relative;
  padding: 14px 18px;
  border-radius: 18px;
  color: #10233d;
  font-weight: 900;
}

.service-flow span + span::before {
  content: "\2192";
  position: absolute;
  left: -15px;
  color: #118cff;
}

@keyframes serviceDeviceFloat {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

@keyframes serviceCardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.service-float-one,
.service-float-two {
  animation: serviceCardFloat 6.5s ease-in-out infinite;
}

.service-float-two {
  animation-delay: -2.2s;
}

.service-hero .button.primary {
  box-shadow: 0 18px 44px rgba(35, 92, 255, .22);
}

@media (max-width: 980px) {
  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 22px;
    padding-top: 46px;
  }

  .service-visual {
    min-height: 430px;
  }

  .service-device {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 320px;
    transform: none;
    animation: none;
  }

  .service-float-one {
    top: -12px;
    left: auto;
    right: 18px;
  }

  .service-float-two {
    display: none;
  }
}

@media (max-width: 620px) {
  .service-hero,
  .service-detail,
  .service-process,
  .service-faq-section {
    width: min(100% - 28px, 1120px);
  }

  .service-hero h1 {
    font-size: clamp(36px, 12vw, 52px);
  }

  .service-tags {
    gap: 10px;
    margin: 22px 0;
  }

  .service-tags span {
    max-width: 100%;
    padding: 9px 12px;
    font-size: 13px;
  }

  .service-visual {
    min-height: auto;
  }

  .service-device {
    padding: 16px;
    border-radius: 22px;
  }

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

  .service-chart {
    min-height: 96px;
  }

  .service-visual-card {
    display: none;
  }

  .service-flow {
    position: relative;
    right: auto;
    margin-top: 14px;
    justify-content: flex-start;
  }

  .service-flow span {
    padding: 10px 12px;
    font-size: 13px;
  }

  .service-flow span + span::before {
    display: none;
  }
}

/* Banner premium de compra/alquiler y prueba social. */
.trust-section {
  background:
    radial-gradient(circle at 8% 90%, rgba(0, 210, 255, .10), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(122, 44, 255, .10), transparent 34%),
    linear-gradient(135deg, #f7fcff 0%, #ffffff 50%, #f5efff 100%);
}

.trust-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 4.8vw, 58px) clamp(30px, 5vw, 66px);
  border: 1px solid transparent;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(248, 254, 255, .96), rgba(255, 255, 255, .94), rgba(245, 239, 255, .94)) padding-box,
    linear-gradient(135deg, rgba(0, 184, 255, .56), rgba(122, 53, 255, .58)) border-box;
  box-shadow: 0 26px 76px rgba(24, 64, 120, .12);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 85%, rgba(0, 210, 255, .28), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(137, 73, 255, .24), transparent 36%),
    linear-gradient(rgba(0, 174, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
  mask-image: linear-gradient(to right, transparent, black 16%, black 86%, transparent);
  pointer-events: none;
}

.trust-card > strong,
.trust-option-mark {
  position: relative;
  z-index: 1;
}

.trust-card > strong {
  width: fit-content;
  font-size: clamp(62px, 8vw, 122px);
  letter-spacing: -0.08em;
}

.trust-option-mark {
  min-width: 0;
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 14px;
}

.trust-option-mark span {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 174, 255, .28);
  box-shadow: 0 18px 45px rgba(0, 174, 255, .16);
}

.trust-option-mark strong {
  font-size: clamp(38px, 4vw, 54px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.trust-card h2,
.trust-card p,
.trust-highlights {
  position: relative;
  z-index: 1;
}

.trust-card h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #101722;
}

.trust-card p {
  max-width: 790px;
  color: #243044;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.trust-highlights {
  gap: 12px;
  margin-top: 26px;
}

.trust-highlights span {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #061527;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(0, 140, 255, .28);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(33, 92, 180, .08);
}

@media (max-width: 820px) {
  .trust-card {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    gap: 24px;
  }

  .trust-card > strong {
    font-size: clamp(58px, 18vw, 96px);
  }

  .trust-option-mark span {
    width: 76px;
    height: 76px;
    border-radius: 20px;
  }

  .trust-option-mark strong {
    font-size: 40px;
  }

  .trust-card h2 {
    font-size: clamp(31px, 9vw, 44px);
  }
}
