/* PERFOZI — page-home.css — Home page — pain screen, marquee, hero, industry cards, testimonials */

/* ── HOME PAIN SCREEN ── */
#pain-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
#pain-screen.exit {
  opacity: 0;
  pointer-events: none;
}
#pain-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
}
#pain-screen::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.pain-logo {
  position: absolute;
  top: 32px;
  left: 5%;
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.pain-logo em {
  color: var(--cyan);
  font-style: normal;
}
.pain-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pain-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--br2);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 44px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--cc);
}
.pain-table {
  width: 100%;
  border: 1px solid var(--br);
  border-radius: 16px;
  overflow: hidden;
  background: var(--s1);
  margin-bottom: 48px;
}
.pain-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--br);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pain-row:last-child {
  border-bottom: none;
}
.pain-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pain-row:hover {
  background: var(--s2);
  padding-left: 44px;
}
.pain-row:hover::before {
  transform: scaleY(1);
}
.pain-row:hover .pr-text .ph {
  color: var(--white);
}
.pain-row:hover .pr-text .ps {
  color: var(--t1);
}
.pain-row:hover .pr-arr {
  opacity: 1;
  transform: translateX(0);
}
.pr-n {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--t4);
  min-width: 28px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.pr-text {
  font-family: var(--fb);
  font-size: 17px;
  font-weight: 400;
  color: var(--t3);
  line-height: 1.4;
  flex: 1;
}
.pr-text .ph {
  color: var(--t2);
  font-weight: 600;
  transition: color 0.3s;
}
.pr-text .ps {
  color: var(--t3);
  font-style: italic;
  transition: color 0.3s;
}
.pr-arr {
  color: var(--cyan);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.3s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}
/* Arrow SVG */
.arr-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.35s;
}
.btn-p:hover .arr-svg {
  transform: translate(3px, -3px);
}
/* Marquee */
.marquee-wrap {
  background: var(--s1);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: ticker 38s linear infinite;
}
.m-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 52px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.m-arr {
  color: var(--cyan);
}
/* Main content reveal */
#main-content {
  opacity: 0;
  transition: opacity 0.6s ease 0.1s;
}
#main-content.visible {
  opacity: 1;
}
#main-nav {
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#main-nav.visible {
  transform: translateY(0);
}
/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  margin-top: 20px;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.055) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.3;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--br2);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--cc);
}
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(58px, 8.5vw, 120px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -3.5px;
  margin-bottom: 30px;
}
.hero-h1 em {
  color: var(--cyan);
  font-style: normal;
}
.h1-dim {
  color: var(--t4);
}
.h1-white {
  color: var(--white);
}
.h1-cyan {
  color: var(--cyan);
}
.h1-stroke {
  -webkit-text-stroke: 2px rgba(0, 212, 255, 0.3);
  color: transparent;
}
.hero-sub {
  font-family: var(--fb);
  font-size: 19px;
  color: var(--t1);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 44px;
}
.hero-sub em {
  font-style: italic;
  color: var(--cyan);
}
.hero-sub strong {
  font-weight: 600;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: inline-flex;
  border: 1px solid var(--br);
  border-radius: 14px;
  overflow: hidden;
  background: var(--s1);
  max-width: 680px;
  width: 100%;
}
.hs {
  flex: 1;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--br);
  transition: background 0.3s;
}
.hs:last-child {
  border-right: none;
}
.hs:hover {
  background: var(--s2);
}
.hs-n {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}
.hs-n em {
  color: var(--cyan);
  font-style: normal;
}
.hs-l {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t2);
  margin-top: 5px;
  font-weight: 400;
}
/* Services home grid */
.svc-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--br);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 52px;
}
/* Resources / Dedicated Teams section */
.res-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.res-kickers {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.res-k {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--ca);
  border: 1px solid var(--cb);
  border-radius: 4px;
  padding: 4px 12px;
}
.res-h {
  font-family: var(--fh);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 0.97;
  margin-bottom: 22px;
}
.res-h .cyn {
  color: var(--cyan);
}
.res-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--br);
  margin: 32px 0;
}
.res-feat {
  background: var(--s2);
  padding: 24px 22px;
  transition: background 0.35s;
}
.res-feat:hover {
  background: var(--s3);
}
.res-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ca);
  border: 1px solid var(--cb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.res-feat-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.res-feat-desc {
  font-family: var(--fb);
  font-size: 13px;
  color: var(--t1);
  line-height: 1.6;
  font-weight: 400;
}
.res-panel {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.res-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.04) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.res-panel-hd {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--br);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.res-panel-hd span {
  color: var(--t3);
  font-weight: 400;
}
.rp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--br);
  transition: background 0.25s;
}
.rp-row:last-child {
  border-bottom: none;
}
.rp-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--cb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan);
  background: var(--ca);
  flex-shrink: 0;
}
.rp-info {
  flex: 1;
  min-width: 0;
}
.rp-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.rp-role {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t2);
  font-weight: 400;
  margin-top: 2px;
}
.rp-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.rp-tag {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--cyan);
  background: var(--ca);
  border: 1px solid var(--cb);
  border-radius: 100px;
  padding: 2px 8px;
}
.rp-rate {
  text-align: right;
  flex-shrink: 0;
}
.rp-main {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.rp-sub {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--t3);
  font-weight: 400;
  margin-top: 2px;
  white-space: nowrap;
}
.res-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.rms {
  background: var(--s3);
  border: 1px solid var(--br);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  transition: border-color 0.3s;
}
.rms:hover {
  border-color: var(--cb);
}
.rms-n {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
}
.rms-n.cy {
  color: var(--cyan);
}
.rms-l {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t2);
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.4;
}
/* Testimonials */
.testi-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.testi-card {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testi-card:hover {
  border-color: var(--cb);
  transform: translateY(-5px);
}
.testi-card.big {
  background: var(--s3);
  border-color: var(--cb);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.t-qm {
  font-family: var(--fh);
  font-size: 80px;
  font-weight: 800;
  color: rgba(0, 212, 255, 0.05);
  line-height: 0.8;
  display: block;
  margin-bottom: 4px;
}
.t-metric {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ca);
  border: 1px solid var(--cb);
  color: var(--cyan);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.t-text {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 22px;
}
.testi-card.big .t-text {
  font-size: 16px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0066cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
}
.t-role {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t2);
  margin-top: 2px;
  font-weight: 400;
}
/* CTA section */
.cta-sec {
  padding: 120px 5%;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--br);
}
.cta-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-h2 {
  font-family: var(--fh);
  font-size: clamp(44px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.93;
  margin-bottom: 22px;
}
.cta-h2 em {
  color: var(--cyan);
  font-style: normal;
}
.cta-sub {
  font-family: var(--fb);
  font-size: 18px;
  color: var(--t1);
  line-height: 1.7;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto 44px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Industry cards */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--br);
  margin-top: 52px;
}
.ind-card {
  background: var(--s2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.ind-card:hover {
  background: var(--s3);
  transform: translateY(-2px);
}
.ind-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ind-card:hover::after {
  transform: scaleX(1);
}
.ind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.ind-card:hover::before {
  opacity: 1;
}
.ind-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.04) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.ind-card:hover .ind-card-grad {
  opacity: 1;
}
.ind-bg-num {
  position: absolute;
  right: -8px;
  bottom: -16px;
  font-family: var(--fh);
  font-size: 100px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -3px;
}
.ind-inner {
  position: relative;
  z-index: 1;
}
.ind-emoji {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}
.ind-name {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.ind-desc {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--t1);
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 18px;
}
.ind-chips {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.ic {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--t2);
  border: 1px solid var(--br);
  border-radius: 100px;
  padding: 3px 12px;
  transition: all 0.3s;
  white-space: nowrap;
}
.ind-card:hover .ic {
  border-color: var(--cb);
  color: var(--cyan);
}
/* section label */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sec-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cyan);
}
/* Section styles */
.sec {
  padding: 120px 5%;
}
.sec-alt {
  background: var(--s1);
}
.sec-dark {
  background: var(--black);
}
.sec-mid {
  background: var(--s2);
}
.body-lg {
  font-family: var(--fb);
  font-size: 18px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
}
.body-md {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
}
.body-sm {
  font-family: var(--fb);
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
  font-weight: 400;
}
.svc-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.svc-featured {
  background: var(--s2);
  border: 1px solid var(--cb);
  border-radius: 16px;
  padding: 44px;
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.svc-featured:hover {
  background: var(--s3);
}
.svc-feat-bg {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.04) 0%,
    transparent 55%
  );
  pointer-events: none;
}
.svc-new {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--cyan);
  color: var(--black);
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.svc-f-n {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.svc-f-title {
  font-family: var(--fh);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 14px;
}
.svc-f-desc {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}
.svc-f-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-f-tag {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--t2);
  background: var(--s3);
  border: 1px solid var(--br);
  border-radius: 100px;
  padding: 4px 12px;
}
.svc-met {
  margin-bottom: 22px;
}
.svc-met-lbl {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
}
.svc-met-val {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.svc-met-val em {
  color: var(--cyan);
  font-style: normal;
}
.svc-met-sub {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t3);
  font-weight: 400;
  margin-top: 4px;
}
/* USP Strip */
.usp-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--br);
}
.usp-c {
  background: var(--s1);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.usp-c:hover {
  background: var(--s2);
}
.usp-c::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.usp-c:hover::after {
  transform: scaleX(1);
}
.usp-c::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.usp-c:hover::before {
  opacity: 1;
}
.usp-big {
  font-family: var(--fh);
  font-size: 52px;
  font-weight: 800;
  color: var(--t4);
  line-height: 1;
  margin-bottom: 18px;
}
.usp-title {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
}
.usp-txt {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.75;
  font-weight: 400;
}
.cyn {
  color: var(--cyan);
}
.body-md {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.8;
}
/* buttons */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: var(--cyan);
  color: var(--black);
  border: none;
  border-radius: 8px;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-p svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-p:hover {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(0, 212, 255, 0.22);
}
.btn-p:hover svg {
  transform: translate(3px, -3px);
}
.btn-p-lg {
  padding: 17px 40px;
  font-size: 14px;
}
.btn-s {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--br);
  border-radius: 8px;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.1px;
}
.btn-s:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--cyan);
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.btn-ghost:hover {
  gap: 10px;
}
/* ── SERVICE CARDS (home svc-grid) ── */
.svc-card {
  background: var(--s1);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover {
  background: var(--s2);
  transform: translateY(-2px);
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-n {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.svc-name {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.svc-desc {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.75;
  font-weight: 400;
}
.svc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.svc-tag {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--t2);
  background: var(--s3);
  border: 1px solid var(--br);
  border-radius: 100px;
  padding: 4px 12px;
  transition: all 0.25s;
}
.svc-card:hover .svc-tag {
  border-color: var(--cb);
  color: var(--t1);
}

/* ── FEATURED SERVICE RIGHT PANEL ── */
.svc-f-right {
  border-left: 1px solid var(--br);
  padding-left: 44px;
  position: relative;
  z-index: 1;
}

/* ── KPI / ACCOUNTABILITY SECTION ── */
.kpi-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.kpi-left {
  background: var(--s1);
  padding: 100px 60px 100px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--br);
}
.kpi-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.kpi-watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-family: var(--fh);
  font-size: 180px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -8px;
}
.kpi-big-num {
  font-family: var(--fh);
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -5px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.kpi-big-num em {
  color: var(--cyan);
  font-style: normal;
}
.kpi-big-label {
  font-family: var(--fb);
  font-size: 19px;
  color: var(--t2);
  font-weight: 400;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.kpi-promise {
  background: var(--s2);
  border: 1px solid var(--cb);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.kpi-promise-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kpi-promise-txt {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
}
.kpi-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.kpi-right {
  background: var(--s2);
  padding: 80px 5% 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kpi-right-label {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.kpi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--br);
  gap: 14px;
}
.kpi-row:last-child {
  border-bottom: none;
}
.kpi-row-l {
  flex: 1;
  min-width: 0;
}
.kpi-row-name {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.kpi-row-desc {
  font-family: var(--fb);
  font-size: 12px;
  color: var(--t3);
  font-weight: 400;
}
.kpi-bw {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  margin-top: 9px;
  overflow: hidden;
}
.kpi-bf {
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.4), var(--cyan));
  border-radius: 100px;
}
.kpi-val {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

/* ── PROCESS SECTION HEADER ── */
.proc-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 88px;
}

/* ── SECTION WATERMARK ── */
.sec-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fh);
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -8px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 80px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--cyan),
    rgba(0, 212, 255, 0.1),
    transparent
  );
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--br);
}
.tl-item:last-child {
  border-bottom: none;
}
.tl-num {
  position: absolute;
  left: -80px;
  top: 52px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--cb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.tl-item:hover .tl-num {
  background: var(--cyan);
  color: var(--black);
  border-color: var(--cyan);
  transform: scale(1.1);
}
.tl-phase {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.tl-title {
  font-family: var(--fh);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.tl-desc {
  font-family: var(--fb);
  font-size: 15px;
  color: var(--t1);
  line-height: 1.8;
  font-weight: 400;
}
.tl-box {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.4s;
}
.tl-item:hover .tl-box {
  border-color: var(--cb);
}
.tl-box-ttl {
  font-family: var(--fb);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.tl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tl-list li {
  display: flex;
  gap: 10px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--t1);
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.5;
}
.chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ca);
  border: 1px solid var(--cb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.tl-tools {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--br);
}
.tl-badge {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--t2);
  background: var(--s3);
  border: 1px solid var(--br);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ── INDUSTRY SECTION ── */
.ind-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 40px;
}
.ind-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--br);
  margin-bottom: 2px;
}
.ind-grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--br);
}

/* ── PAIN HINT ── */
.pain-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.pain-hint-txt {
  font-family: var(--fb);
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.pain-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--t3), transparent);
  animation: linebeat 2s infinite;
}
@keyframes linebeat {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── PAIN ROW LINK ── */
a.pain-row {
  text-decoration: none;
  color: inherit;
}

/* Responsive home */
@media (max-width: 1100px) {
  .svc-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pf-hamburger {
    display: flex;
  }
  .pf-btn-cta {
    display: none;
  }
}
@media (max-width: 960px) {
  .res-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-featured {
    grid-template-columns: 1fr;
  }
  .svc-f-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--br);
    padding-top: 32px;
  }
  .kpi-section {
    grid-template-columns: 1fr;
  }
  .kpi-left {
    border-right: none;
    border-bottom: 1px solid var(--br);
  }
  .proc-hdr {
    grid-template-columns: 1fr;
  }
  .tl-item {
    grid-template-columns: 1fr;
  }
  .tl-box {
    margin-top: 24px;
  }
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ind-grid-top,
  .ind-grid-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .pf-actions .btn-ghost {
    display: none;
  }
  .hero-wrap {
    padding-top: 0;
  }
  .res-h,
  .hs-n,
  .cta-h2,
  .svc-f-title,
  .svc-name,
  .ind-name,
  .tl-title,
  .kpi-big-num {
    letter-spacing: 0;
  }
}
@media (max-width: 700px) {
  .timeline {
    padding-left: 0;
  }
  .timeline::before {
    display: none;
  }
  .tl-num {
    position: static;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .ind-grid,
  .ind-grid-top,
  .ind-grid-bottom {
    grid-template-columns: 1fr;
  }
  .usp-strip {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
  }
  .hs {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--br);
  }
  .hs:nth-child(odd) {
    border-right: 1px solid var(--br);
  }
  .hs:nth-child(even) {
    border-right: none;
  }
  .hs:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
