.heroSection {
  padding: 18px 0 4px;
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.88fr);
  gap: 20px;
}

.heroCopy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 18px 0;
}

.heroCopy h1 {
  margin: 0;
  max-width: 11.5ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  text-wrap: balance;
}

.heroLead {
  max-width: 62ch;
  font-size: 18px;
}

.heroActions,
.heroPills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.heroPills span {
  padding: 11px 14px;
  border: 1px solid rgba(173, 212, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(0, 209, 255, 0.08), rgba(0, 255, 163, 0.07));
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.heroPanel {
  display: grid;
  gap: 18px;
}

.heroAvatar {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(173, 212, 255, 0.14);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.3);
}

.heroPanelBody h2 {
  margin: 12px 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.16;
  text-wrap: balance;
}

.miniStats {
  display: grid;
  gap: 12px;
}

.miniStat,
.processItem,
.trustItem,
.contactCard {
  position: relative;
  padding: 17px;
  border: 1px solid rgba(173, 212, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(0, 209, 255, 0.05), rgba(0, 255, 163, 0.04));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.miniStat::before,
.processItem::before,
.trustItem::before,
.contactCard::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(0, 255, 163, 0.12));
  opacity: 0.7;
  pointer-events: none;
}

.miniStat strong,
.trustItem strong,
.contactCard strong {
  position: relative;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--brand-strong);
}

.miniStat span,
.trustItem p,
.contactCard span {
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.serviceGrid,
.proofGrid,
.contactGrid {
  display: grid;
  gap: 16px;
}

.serviceGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.serviceCard,
.proofCard {
  display: grid;
  gap: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.serviceCard {
  --card-accent: var(--brand);
}

.serviceCard:nth-child(2) {
  --card-accent: var(--accent);
}

.serviceCard:nth-child(3) {
  --card-accent: var(--success);
}

.serviceCard:nth-child(4) {
  --card-accent: #ff9a7a;
}

.serviceCard:hover,
.proofCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
  border-color: rgba(0, 209, 255, 0.14);
}

.serviceCard::before,
.proofCard::before {
  background: linear-gradient(90deg, var(--card-accent, var(--brand)), rgba(255, 255, 255, 0));
}

.serviceCard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.26);
}

.serviceBody {
  display: grid;
  gap: 10px;
}

.serviceBody h3,
.proofCard h3,
.processItem h3 {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 23px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.serviceBody p,
.proofCard p,
.processItem p {
  margin: 0;
}

.splitGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
}

.processList,
.trustList {
  display: grid;
  gap: 12px;
}

.processItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.stepIndex {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.18), rgba(0, 255, 163, 0.18));
  color: #02161d;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

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

.proofCard {
  --card-accent: var(--brand);
}

.proofCard:nth-child(2) {
  --card-accent: var(--accent);
}

.proofCard:nth-child(3) {
  --card-accent: var(--success);
}

.proofCard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.contactShell {
  display: grid;
  gap: 18px;
}

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

.contactCard {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contactCard:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.16), rgba(91, 234, 255, 0.16));
}

.contactCard:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.16), rgba(78, 255, 192, 0.16));
}

.contactCard:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.16), rgba(255, 232, 168, 0.16));
}

.contactCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.24);
  border-color: rgba(0, 209, 255, 0.14);
}

@media (max-width: 1120px) {
  .serviceGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  .heroGrid,
  .splitGrid,
  .proofGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .heroCopy h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.08;
  }

  .heroActions,
  .contactGrid,
  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .heroActions .btn {
    width: 100%;
  }

  .contactGrid {
    display: grid;
  }
}
