:root {
  --bg: #070b09;
  --panel: #0d1411;
  --panel-2: #101915;
  --text: #e8f4ee;
  --muted: #98aca2;
  --accent: #00ff6d;
  --accent-dim: #0fd76a;
  --border: #183126;
  --radius: 16px;
  --content-max: 1200px;
  --content-gutter: 2.5rem;
  --section-gap-desktop: 120px;
  --section-gap-tablet: 80px;
  --section-gap-mobile: 60px;
  --contact-title-size: 156px;
  /* Typography (mobile) */
  --fs-h1-mobile: 40px;
  --fs-h1-mobile-sm: 24px;
  --fs-h2-mobile: 32px;
  --fs-h2-case-mobile: 40px;
  --fs-h2-process-mobile: 40px;
  --fs-h2-faq-mobile: 36px;
  --fs-h3-mobile: 20px;
  --fs-h3-case-mobile: 26px;
  --fs-h4-mobile: 1.35rem;
  --fs-description-mobile: 15px;
  --fs-description-mobile-sm: 12px;
  --fs-body-mobile: 15px;
  --fs-body-small-mobile: 13px;
  --fs-faq-question-mobile: 16px;
  --fs-faq-answer-mobile: 15px;

  /* Typography (desktop + mobile) */
  --fs-faq-question: 18px;
  --fs-process-num: clamp(2rem, 4.2vw, 3.2rem);
  --fs-process-step-h3: clamp(2rem, 4.5vw, 3.4rem);
  --fs-process-step-h4: clamp(1.05rem, 1.8vw, 1.5rem);
  --fs-process-step-p: clamp(0.95rem, 1.25vw, 1.45rem);
  --fs-whyus-card-h3: 36px;
  --fs-about-stat-h3: 40px;
  --fs-testimonial-quote: 26px;

  --fs-process-num-mobile: clamp(2rem, 4.2vw, 3.2rem);
  --fs-process-step-h3-mobile: clamp(2rem, 4.5vw, 3.4rem);
  --fs-process-step-h4-mobile: clamp(1.05rem, 1.8vw, 1.5rem);
  --fs-process-step-p-mobile: clamp(0.95rem, 1.25vw, 1.45rem);
  --fs-whyus-card-h3-mobile: 36px;
  --fs-about-stat-h3-mobile: 40px;
  --fs-testimonial-quote-mobile: 26px;
}

/* Case Studies Section */
.section-case {
  margin-top: 120px;
}

.case-wrap {
  position: relative;
}

.case-head {
  text-align: center;
  margin-bottom: 60px;
}

.case-head .services-kicker {
  margin-bottom: 12px;
}

.case-head h2 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-h2, 40px);
  font-weight: 400;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-thumb {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #0f1214;
}

.case-thumb-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.case-meta {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 18px;
  padding: 20px 20px 20px;
  background: linear-gradient(180deg, rgba(16, 19, 17, 0.92), rgba(9, 13, 11, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(126, 248, 117, 0.12);
  color: #9fffa5;
  font-size: 9px;
  padding: 2px 7px;
  margin-bottom: 0;
  font-family: "Unbounded", "Inter", sans-serif;
}

.case-meta h3 {
  margin: 0;
  font-size: var(--fs-h3, 20px);
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.case-meta p {
  margin: 0;
  color: #9fa7a2;
  font-size: var(--fs-body, 16px);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.case-stats strong {
  display: block;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 700;
}

.case-stats span {
  display: block;
  margin-top: 2px;
  color: #8f9993;
  font-size: 11px;
}

.case-cta-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.case-cta {
  width: 198px;
  min-width: 198px;
  height: 42px;
  grid-template-columns: 148px 50px;
}

.case-cta .hero-cta-text {
  width: 148px;
  height: 42px;
  font-size: 11px;
}

.case-cta .hero-cta-icon {
  width: 50px;
  height: 42px;
  font-size: 13px;
}

@media (max-width: 780px) {
  .case-head h2 {
    font-size: var(--fs-h2-case-mobile, 40px);
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-thumb {
    border-radius: 16px;
  }

  .case-meta h3 {
    font-size: var(--fs-h3-case-mobile, 26px);
  }

  .case-meta p {
    font-size: var(--fs-body-mobile, var(--fs-body, 16px));
  }

  .case-stats strong {
    font-size: 38px;
  }
}

/* Testimonials Section */
.section-testimonials {
  margin-top: 120px;
}

.section-testimonials .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.testimonials-wrap {
  position: relative;
  min-height: 720px;
}

.testimonials-bg-word {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(231, 236, 232, 0.24);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

.testimonials-glow {
  position: absolute;
  inset: 0 12% auto 12%;
  top: 0;
  height: 210px;
  background: radial-gradient(55% 100% at 50% 0%, rgba(126, 248, 117, 0.38), rgba(126, 248, 117, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-marquee {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  height: 540px;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: testimonialsUp 22s linear infinite;
}

.testimonial-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(13, 17, 15, 0.78), rgba(9, 12, 10, 0.72));
  padding: 12px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.testimonial-stars {
  margin: 0 0 6px;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-size: 11px;
}

.testimonial-quote {
  margin: 0 0 2px;
  color: rgba(126, 248, 117, 0.5);
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-testimonial-quote, 26px);
  line-height: 1;
}

.testimonial-copy {
  margin: 0 0 10px;
  color: #dfdfdf;
  font-size: var(--fs-body, 16px);
  line-height: 1.45;
}

.testimonial-author {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.testimonials-cta-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.testimonials-cta {
  width: 216px;
  min-width: 216px;
  height: 46px;
  grid-template-columns: 166px 50px;
}

.testimonials-cta .hero-cta-text {
  width: 166px;
  height: 46px;
}

.testimonials-cta .hero-cta-icon {
  width: 50px;
  height: 46px;
}

@keyframes testimonialsUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@media (max-width: 780px) {
  .testimonials-wrap {
    min-height: 640px;
  }

  .testimonials-marquee {
    height: 480px;
  }

  .testimonial-copy {
    font-size: var(--fs-body-mobile, 15px);
  }

  .testimonial-quote {
    font-size: var(--fs-testimonial-quote-mobile, var(--fs-testimonial-quote, 26px));
  }
}

/* Why Us Section */
.section-whyus {
  margin-top: 120px;
}

.whyus-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.whyus-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.whyus-head h2 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-h2, 40px);
  font-weight: 400;
}

.whyus-head p {
  margin: 0;
  font-size: var(--fs-body, 16px);
  color: #b7beb9;
  max-width: 48ch;
  justify-self: end;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 12px;
}

.whyus-card {
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  position: relative;
}

.whyus-card-image {
  min-height: 360px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.48)),
    url("./asset/specialy_01.avif");
  background-size: cover;
  background-position: center;
}

.whyus-badge-num {
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.whyus-card-image .whyus-badge-num,
.whyus-card-image h3,
.whyus-card-image p {
  color: #f2f2f2;
}

.whyus-card-image .whyus-badge-num,
.whyus-card-dark .whyus-badge-num {
  color: var(--accent);
}

.whyus-card-image h3 {
  margin: 12px 0 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-whyus-card-h3, 36px);
  line-height: 1;
  font-weight: 400;
  max-width: 9ch;
}

.whyus-card-image p {
  margin: 20px 0 0;
  max-width: 58ch;
  font-size: var(--fs-body, 16px);
}

.whyus-card-dark {
  min-height: 360px;
  background: #1f1d1d;
  padding: 20px;
}

.whyus-card-dark h3 {
  margin: 12px 0 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-whyus-card-h3, 36px);
  line-height: 1;
  font-weight: 400;
}

.whyus-card-dark p {
  margin: 20px 0 0;
  color: #d3d3d3;
  font-size: var(--fs-body, 16px);
}

.whyus-circle-card {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(21, 24, 22, 0.5), rgba(12, 15, 13, 0.34)),
    url("./asset/speciality_bg.avif");
  background-size: cover;
  background-position: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whyus-circle {
  position: relative;
  width: min(380px, 92%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02) 65%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
}

.whyus-chip {
  position: absolute;
  left: 50%;
  --chip-rot: 0deg;
  transform: translate(-50%, -220px) rotate(var(--chip-rot));
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #03210f;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  font-family: "Satoshi", "Inter", sans-serif;
  font-weight: 500;
}

.whyus-circle-card.in-view .whyus-chip {
  animation: dropChip 0.6s ease forwards;
}

.whyus-circle-card.in-view .whyus-chip:nth-child(1) {
  --chip-rot: -16deg;
  animation-delay: 0.02s;
  top: 10%;
  left: 36%;
  transform: translate(-50%, 0) rotate(-20deg);
}
.whyus-circle-card.in-view .whyus-chip:nth-child(2) { --chip-rot: 0deg; animation-delay: 0.08s; top: 18%; left: 66%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(3) { --chip-rot: -12deg; animation-delay: 0.14s; top: 28%; left: 34%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(4) { --chip-rot: 10deg; animation-delay: 0.2s; top: 36%; left: 68%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(5) { --chip-rot: 0deg; animation-delay: 0.26s; top: 46%; left: 35%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(6) { --chip-rot: 8deg; animation-delay: 0.32s; top: 55%; left: 66%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(7) { --chip-rot: -9deg; animation-delay: 0.38s; top: 64%; left: 34%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(8) { --chip-rot: 0deg; animation-delay: 0.44s; top: 72%; left: 64%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(9) { --chip-rot: -6deg; animation-delay: 0.5s; top: 80%; left: 36%; }
.whyus-circle-card.in-view .whyus-chip:nth-child(10) { --chip-rot: 7deg; animation-delay: 0.56s; top: 88%; left: 60%; }

.whyus-card-green {
  min-height: 360px;
  background: var(--accent);
  color: #07120c;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.whyus-card-green h3 {
  margin: 8px 0 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-whyus-card-h3, 36px);
  line-height: 1;
  font-weight: 400;
  max-width: 12ch;
}

.whyus-card-green .whyus-badge-num {
  position: static;
  color: #03190c;
  margin: 0;
}

.whyus-card-green p {
  margin: auto 0 0;
  font-size: var(--fs-body, 16px);
  color: #0a2b18;
}

@keyframes dropChip {
  0% {
    transform: translate(-50%, -220px) rotate(var(--chip-rot));
    opacity: 0;
  }
  80% {
    transform: translate(-50%, 8px) rotate(var(--chip-rot));
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0) rotate(var(--chip-rot));
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .whyus-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whyus-head p {
    justify-self: start;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-card-image,
  .whyus-card-dark,
  .whyus-circle-card,
  .whyus-card-green {
    min-height: 320px;
  }

  .whyus-head p {
    font-size: var(--fs-body-mobile, var(--fs-body, 16px));
  }

  .whyus-card-image p,
  .whyus-card-dark p,
  .whyus-card-green p {
    font-size: var(--fs-body-mobile, var(--fs-body, 16px));
  }

  .whyus-card-image h3,
  .whyus-card-dark h3,
  .whyus-card-green h3 {
    font-size: var(--fs-whyus-card-h3-mobile, var(--fs-whyus-card-h3, 36px));
  }
}

/* FAQ Section */
.section-faq {
  margin-top: 120px;
}

.faq-head {
  text-align: center;
  margin-bottom: 60px;
}

.faq-head .services-kicker {
  margin-bottom: 12px;
}

.faq-head h2 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-h2-faq, 36px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  position: relative;
  border-radius: 22px;
  background: #0a0d0c;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(126, 248, 117, 0.24);
  background: #0c100e;
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: #e9ecea;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: var(--fs-faq-question, 18px);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.faq-toggle {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0a1f14;
  line-height: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  margin-right: 6px;
}

.faq-toggle .faq-chevron {
  display: block;
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  transform: translateY(0.5px);
}

.faq-item:hover .faq-toggle {
  box-shadow: 0 0 10px rgba(126, 248, 117, 0.45);
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: #b9bfbc;
  font-size: var(--fs-body, 16px);
  line-height: 1.5;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  padding: 0 16px 16px;
}

.faq-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.faq-cta.promo-link {
  font-size: 12px;
  font-weight: 400;
}

@media (max-width: 780px) {
  .faq-cta-wrap {
    margin-top: 36px;
  }

  .faq-head h2 {
    font-size: var(--fs-h2-faq-mobile, 36px);
  }

  .faq-question {
    font-size: var(--fs-faq-question-mobile, 16px);
    min-height: 64px;
    padding: 12px 14px;
  }

  .faq-question::after {
    width: 74px;
  }

  .faq-toggle {
    width: 36px;
    height: 36px;
    margin-right: 4px;
  }

  .faq-toggle .faq-chevron {
    width: 12px;
    height: 8px;
    transform: translateY(0.5px);
  }

  .faq-answer {
    font-size: var(--fs-faq-answer-mobile, 15px);
    padding: 0 14px;
  }

  .faq-item.open .faq-answer {
    padding: 0 14px 14px;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 5%, rgba(0, 255, 109, 0.19), transparent 30%),
    radial-gradient(circle at 85% 28%, rgba(0, 255, 109, 0.12), transparent 35%),
    linear-gradient(180deg, #060907 0%, #060907 35%, #040604 100%);
  z-index: -1;
}

.container {
  width: min(var(--content-max), calc(100% - var(--content-gutter)));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

main {
  display: block;
}

.section::before {
  content: none;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 11, 9, 0) 0%, rgba(7, 11, 9, 0.95) 58%, #070b09 100%);
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
}

.header.scrolled {
  background: rgba(7, 11, 9, 0.34);
  border-color: rgba(126, 248, 117, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(8, 12, 10, 0.44);
  border: 1px solid rgba(126, 248, 117, 0.12);
}

.nav-link {
  color: #cfd7d2;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  color: #f8fffb;
  background: rgba(126, 248, 117, 0.16);
  box-shadow: inset 0 0 0 1px rgba(126, 248, 117, 0.22);
}

.nav-cta {
  justify-self: end;
  text-decoration: none;
}

.nav-mobile-cta {
  display: none !important;
}

.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 38px;
  align-items: center;
}

.hero-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.05;
  max-width: 13ch;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero-lead {
  max-width: 46ch;
  line-height: 1.5;
}

.accent {
  color: var(--accent);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 18px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #03210f;
  box-shadow: 0 8px 24px rgba(0, 255, 109, 0.22);
}

.btn-primary:hover {
  background: var(--accent-dim);
}

.btn-ghost {
  background: rgba(10, 19, 15, 0.9);
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.phone-mockup {
  background: linear-gradient(160deg, #101915, #0c130f);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 14px;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.mockup-top {
  width: 92px;
  height: 6px;
  border-radius: 100px;
  margin: 4px auto 14px;
  background: #293e32;
}

.mockup-body {
  min-height: 335px;
  border-radius: 20px;
  border: 1px solid #23382c;
  padding: 20px;
  background:
    radial-gradient(circle at 86% 7%, rgba(0, 255, 109, 0.18), transparent 40%),
    #0f1613;
}

.mini-bars {
  margin-top: 22px;
  display: grid;
  gap: 9px;
}

.mini-bars span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 109, 0.7), rgba(0, 255, 109, 0.15));
}

.hero-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 255, 109, 0.18);
  filter: blur(50px);
  right: 12%;
  top: -20px;
  z-index: -1;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.logo-row {
  margin-top: 18px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(90px, 1fr));
  align-items: center;
}

.logo-row img {
  width: 100%;
  max-height: 26px;
  opacity: 0.8;
}

.section-head h2,
.campaign-grid h2,
.testimonial h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
}

.cards-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #101a15, #0b110e);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 156px;
  display: flex;
  flex-direction: column;
}

.card:hover,
.media-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  max-width: 27ch;
}

.card h3 {
  margin: 0 0 8px;
  line-height: 1.15;
  min-height: 48px;
  letter-spacing: -0.01em;
}

.campaign-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.work-copy {
  max-width: 42ch;
  line-height: 1.55;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.campaign-stats div {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0d1411;
  padding: 14px;
}

.campaign-stats h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.5rem;
}

.showcase-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr;
  grid-auto-rows: 165px;
  gap: 12px;
}

.media-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    linear-gradient(150deg, rgba(0, 255, 109, 0.17), transparent 55%),
    #0d1411;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.media-card.tall {
  grid-row: span 2;
}

.testimonial {
  text-align: center;
}

.testimonial blockquote {
  max-width: 620px;
  margin: 12px auto;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.process-card {
  padding: 18px 16px;
  background: #0d1411;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card span {
  color: var(--accent);
  font-weight: 700;
}

.accent-card {
  background: linear-gradient(145deg, rgba(0, 255, 109, 0.15), #0d1411 45%);
}

.section-contact {
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: -25% -15% auto 35%;
  height: 90%;
  background:
    radial-gradient(ellipse 65% 55% at 72% 28%, rgba(126, 248, 117, 0.07), transparent 58%),
    radial-gradient(ellipse 50% 45% at 48% 55%, rgba(0, 255, 109, 0.04), transparent 52%);
  pointer-events: none;
  z-index: 0;
}

.contact-shell {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
}

.contact-form-wrap {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-form-wrap .contact-form {
  flex: 1 1 auto;
  width: 100%;
}

.contact-title {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--contact-title-size, 156px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-title-line {
  display: block;
  width: 100%;
  line-height: 0.88;
  padding: 0;
  color: var(--text);
}

/* Editorial overlap: second line pulls up into the first (matches reference art) */
.contact-title .contact-title-accent {
  margin-top: -0.16em;
  position: relative;
  z-index: 1;
  color: var(--accent);
}

@media (max-width: 1320px) and (min-width: 1025px) {
  .contact-title {
    font-size: min(var(--contact-title-size, 156px), 11.5vw);
    line-height: 0.82;
  }
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(28, 30, 28, 0.96), rgba(14, 17, 15, 0.98));
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9aa6a0;
  line-height: 1.2;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(10, 13, 11, 0.92);
  color: var(--text);
  padding: 14px 16px;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(232, 244, 238, 0.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(126, 248, 117, 0.42);
  box-shadow: 0 0 0 3px rgba(126, 248, 117, 0.1);
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #050806;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 26px rgba(0, 255, 109, 0.22);
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-form .form-success {
  margin: -2px 0 0;
  font-size: 14px;
  text-align: center;
}

.form-success {
  min-height: 20px;
  color: var(--accent);
  margin: 0;
}

.promo-card {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: min(290px, calc(100% - 24px));
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0f1613;
  padding: 16px;
  z-index: 120;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  animation: slideIn 0.45s ease;
}

.section-hero {
  padding-top: 76px;
  padding-bottom: 60px;
}

.section-trust {
  padding-top: 112px;
  padding-bottom: 54px;
  position: relative;
  z-index: 1;
}

.section-agency {
  padding-top: 0;
  padding-bottom: 0;
  overflow: visible;
  position: relative;
  z-index: 3;
}

.section-agency .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.agency-wrap {
  position: relative;
  overflow: visible;
  z-index: 4;
  padding-bottom: 0;
}

.agency-stage {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(7, 11, 9, 1) 0%,
      rgba(15, 23, 18, 0.94) 16%,
      rgba(75, 183, 86, 0.7) 52%,
      rgba(126, 248, 117, 0.9) 78%,
      rgba(126, 248, 117, 0.96) 100%
    ),
    #0a120d;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.agency-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 220px;
  background: linear-gradient(180deg, rgba(7, 11, 9, 1) 0%, rgba(7, 11, 9, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.agency-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(7, 11, 9, 0) 0%, rgba(7, 11, 9, 0.76) 52%, rgba(7, 11, 9, 0.97) 82%, #070b09 100%);
  pointer-events: none;
  z-index: 5;
}

.agency-image {
  position: relative;
  width: min(820px, 92%);
  height: auto;
  object-fit: contain;
  z-index: 4;
}

.agency-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.agency-marquee::before,
.agency-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(12vw, 132px);
  pointer-events: none;
  z-index: 3;
  filter: blur(6px);
}

.agency-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 18, 13, 0.96) 0%,
    rgba(10, 18, 13, 0.72) 42%,
    rgba(10, 18, 13, 0) 100%
  );
}

.agency-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(10, 18, 13, 0.96) 0%,
    rgba(10, 18, 13, 0.72) 42%,
    rgba(10, 18, 13, 0) 100%
  );
}

.agency-track {
  display: inline-flex;
  gap: 56px;
  min-width: 200%;
  animation: agencyMarquee 14s linear infinite;
}

.agency-track span {
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  color: rgba(244, 255, 247, 0.9);
  letter-spacing: -0.03em;
}

.agency-badge {
  position: absolute;
  left: calc((100vw - min(var(--content-max), calc(100vw - var(--content-gutter)))) / 2);
  bottom: 0;
  transform: translateY(50%);
  width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 29, 29, 0.4), rgba(31, 29, 29, 0.22));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.16);
  padding: 40px 12px;
  z-index: 6;
}

.agency-badge h4,
.agency-badge p {
  margin: 0;
  text-align: center;
}

.agency-badge h4 {
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
}

.agency-badge p {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.agency-avatars {
  margin: 10px 0 4px;
  display: flex;
  justify-content: center;
}

.agency-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  margin-left: -7px;
  border: none;
  background: #d3d9d5;
  object-fit: cover;
}

.agency-avatars img:first-child {
  margin-left: 0;
}

.section-services {
  padding: 150px 40px 100px;
}

.services-wrap {
  position: relative;
}

.services-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(0, 255, 109, 0.28) 0 13%, rgba(0, 255, 109, 0) 18%),
    radial-gradient(circle at 50% 62%, rgba(0, 255, 109, 0.22) 0 24%, rgba(0, 255, 109, 0) 29%),
    radial-gradient(circle at 50% 62%, rgba(0, 255, 109, 0.17) 0 35%, rgba(0, 255, 109, 0) 40%),
    radial-gradient(circle at 50% 62%, rgba(0, 255, 109, 0.13) 0 46%, rgba(0, 255, 109, 0) 51%);
  mask-image: radial-gradient(circle, #000 0 56%, rgba(0, 0, 0, 0.14) 70%, transparent 92%);
  -webkit-mask-image: radial-gradient(circle, #000 0 56%, rgba(0, 0, 0, 0.14) 70%, transparent 92%);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.services-wrap::after {
  content: none;
}

.services-head,
.services-grid {
  position: relative;
  z-index: 1;
}

.services-head {
  display: block;
  margin-bottom: 60px;
}

.services-kicker {
  display: inline-block;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 9px;
  font-style: normal;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(126, 248, 117, 0.12);
  color: #94ff9a;
  margin-bottom: 12px;
}

.services-head h2 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--fs-h2, 40px);
  font-style: normal;
  letter-spacing: -0.03em;
}

.services-cta {
  width: 250px;
  min-width: 250px;
  grid-template-columns: 200px 50px;
}

.services-cta .hero-cta-text {
  width: 200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.services-grid::before {
  content: none;
}

.service-card {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 375px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(31, 29, 29, 0.4), rgba(31, 29, 29, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.16);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #7ef875;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.service-card h3 {
  margin: 16px 0 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--fs-h3, 20px);
  letter-spacing: -0.03em;
  color: var(--text);
}

.service-card p {
  margin: auto 0 18px;
  color: #c9c9c9;
  font-size: var(--fs-body-small, 13px);
  line-height: 1.45;
}

.service-link {
  color: #f2f2f2;
}

.service-link.promo-link {
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 600;
}

.service-link.promo-link:hover {
  color: #ffffff;
}

.section-network {
  padding-top: 0;
  padding-bottom: 0;
}

.network-wrap {
  position: relative;
}

.network-head {
  text-align: center;
}

.network-head .services-kicker {
  margin-bottom: 12px;
}

.network-head h2 {
  margin: 0 0 20px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-h2, 40px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.network-sub {
  margin: 0 0 60px;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.05rem);
  color: #d2d6d5;
}

.network-marquee {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  background: transparent;
}

.network-marquee::before,
.network-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(10vw, 90px);
  pointer-events: none;
  z-index: 2;
}

.network-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #070b09 0%, rgba(7, 11, 9, 0) 100%);
}

.network-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #070b09 0%, rgba(7, 11, 9, 0) 100%);
}

.network-track {
  display: flex;
  width: max-content;
  animation: networkMarquee 18s linear infinite;
}

.network-set {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.network-logo {
  width: 158px;
  height: 76px;
  object-fit: contain;
  border-radius: 22px;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(25, 28, 31, 0.94), rgba(22, 24, 27, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-about {
  position: relative;
}

.section-about .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-wrap {
  position: relative;
}

.about-stage {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  min-height: 860px;
  padding: 28px 24px 26px;
  background: #070b09;
}

.about-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  z-index: 0;
}

.about-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      45.1% 44.7% at 52.6% 42.8%,
      rgb(18 255 0 / 45%) 0%,
      rgb(16 255 0 / 34%) 26%,
      rgba(126, 248, 117, 0.14) 48%,
      rgba(126, 248, 117, 0) 68%
    ),
    radial-gradient(
      62% 60% at 52.6% 42.8%,
      rgba(7, 11, 9, 0) 40%,
      rgba(7, 11, 9, 0.28) 66%,
      rgba(7, 11, 9, 0.74) 100%
    ),
    radial-gradient(120% 110% at 50% 52%, rgba(7, 11, 9, 0) 52%, rgba(7, 11, 9, 0.56) 78%, rgba(7, 11, 9, 0.9) 100%),
    linear-gradient(180deg, rgba(7, 11, 9, 0.58) 0%, rgba(7, 11, 9, 0.16) 26%, rgba(7, 11, 9, 0.72) 74%, rgba(7, 11, 9, 0.92) 100%);
  filter: saturate(1.24) contrast(1.08);
  z-index: 1;
}

.about-stats,
.about-cards,
.about-tags {
  position: relative;
  z-index: 2;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px;
}

.about-stat {
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(233, 242, 236, 0.07), rgba(171, 186, 176, 0.02));
  border: none;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  opacity: 0;
  transform: translateY(34px) scale(0.84);
  box-shadow: none;
}

.about-stat + .about-stat {
  margin-left: -12px;
}

.about-stat h3 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--fs-about-stat-h3, 40px);
  line-height: 1;
  font-style: normal;
}

.about-stat p {
  margin: 6px 0 0;
  font-size: var(--fs-body, 16px);
  color: #d6dbd8;
}

.about-stat.in-view-stat {
  animation: aboutStatIn 0.72s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.about-cards {
  margin-top: 300px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-card {
  border-radius: 20px;
  border: none;
  background:
    linear-gradient(180deg, rgba(26, 33, 29, 0.34), rgba(12, 18, 15, 0.22)),
    radial-gradient(circle at 50% 0%, rgba(126, 248, 117, 0.08), rgba(126, 248, 117, 0) 56%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 18px 18px 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(126, 248, 117, 0.12) inset;
}

.about-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #7ef875;
  background: rgba(126, 248, 117, 0.08);
  border: none;
}

.about-card h4 {
  margin: 16px 0 10px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--fs-h4, 20px);
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: #bfc5c2;
  font-size: var(--fs-body, 16px);
  line-height: 1.45;
}

.about-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.about-tags span {
  border-radius: 999px;
  border: none;
  background: rgba(17, 20, 19, 0.8);
  padding: 10px 18px;
  font-size: 1rem;
  color: #d8ddd9;
}

.section-work {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-proof {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-testimonial {
  padding-top: 62px;
  padding-bottom: 62px;
}

.section-process {
  padding-top: 56px;
  padding-bottom: 64px;
}


.promo-thumb {
  height: 120px;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(0, 255, 109, 0.25), transparent 60%),
    #09100d;
  border: 1px solid #20382b;
}

.full {
  width: 100%;
  margin-top: 8px;
}

.close-promo {
  position: absolute;
  right: 8px;
  top: 6px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hero should animate in from the top (not from below) */
.hero-center.reveal {
  /* Prevent wrapper from using generic .reveal motion */
  opacity: 1;
  transform: none;
}

/* Animate only the main hero text + CTA from the top */
.hero-center.reveal .hero-title,
.hero-center.reveal .hero-subtext,
.hero-center.reveal .hero-cta-wrap {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-center.reveal.in-view .hero-title,
.hero-center.reveal.in-view .hero-subtext,
.hero-center.reveal.in-view .hero-cta-wrap {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes agencyMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes networkMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@keyframes aboutStatIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.84);
    filter: saturate(0.9);
  }
  65% {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}


@media (max-width: 1024px) {
  .cards-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .campaign-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-title {
    font-size: clamp(56px, 14vw, 96px);
    line-height: 0.84;
  }

  .contact-title-line {
    line-height: 0.9;
  }

  .contact-title .contact-title-accent {
    margin-top: -0.14em;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .menu-btn {
    display: inline-flex;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
  }

  .cards-grid,
  .process-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .section-network {
    padding-top: 84px;
    padding-bottom: 54px;
  }

  .network-head h2 {
    margin-bottom: 12px;
    font-size: var(--fs-h2-mobile, 2rem);
  }

  .network-sub {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .network-set {
    gap: 8px;
    padding-right: 8px;
  }

  .network-logo {
    width: 122px;
    height: 58px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .about-stage {
    min-height: auto;
    padding: 20px 14px;
    border-radius: 0;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-stat + .about-stat {
    margin-left: 0;
  }

  .about-stat p {
    font-size: var(--fs-body-mobile, 0.78rem);
    margin-top: 3px;
  }

  .about-stat h3 {
    font-size: var(--fs-about-stat-h3-mobile, var(--fs-about-stat-h3, 40px));
  }

  .about-cards {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .about-card h4 {
    font-size: var(--fs-h4-mobile, 1.35rem);
  }

  .about-card p {
    font-size: var(--fs-body-mobile, 0.95rem);
  }

  .about-tags {
    margin-top: 14px;
    gap: 8px;
  }

  .about-tags span {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .showcase-grid {
    grid-auto-rows: 138px;
  }

  .media-card.tall {
    grid-row: span 1;
  }

  .campaign-stats {
    grid-template-columns: 1fr;
  }

  .section-hero {
    padding-top: 46px;
    padding-bottom: 34px;
  }

  .hero-copy h1 {
    font-size: 1.95rem;
    max-width: 12ch;
  }

  .hero-copy p {
    font-size: 0.92rem;
    max-width: 36ch;
  }

  .hero-lead {
    max-width: 30ch;
    line-height: 1.45;
  }

  .phone-mockup {
    max-width: 310px;
    padding: 12px;
    border-radius: 24px;
  }

  .mockup-body {
    min-height: 255px;
    padding: 14px;
  }

  .mockup-body h3 {
    margin: 6px 0;
    font-size: 1rem;
  }

  .mockup-body p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .section-trust,
  .section-services,
  .section-work,
  .section-proof,
  .section-testimonial,
  .section-process,
  .section-contact {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .services-head {
    flex-direction: column;
    align-items: start;
    margin-bottom: 16px;
  }

  .services-cta {
    width: 250px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    min-height: 270px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .service-card p {
    font-size: 14px;
  }

  .section-head h2,
  .campaign-grid h2,
  .testimonial h2 {
    font-size: 1.7rem;
    max-width: 12ch;
  }

  .contact-title {
    font-size: clamp(36px, 11vw, 64px);
    line-height: 0.86;
  }

  .contact-title-line {
    line-height: 0.92;
  }

  .contact-title .contact-title-accent {
    margin-top: -0.12em;
  }

  .contact-form {
    padding: 22px 20px 20px;
    gap: 18px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .card {
    padding: 12px;
    border-radius: 12px;
  }

  .card h3 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    min-height: 38px;
  }

  .card p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.35;
    max-width: 21ch;
  }

  .card {
    min-height: 128px;
  }

  .process-card h3 {
    margin: 6px 0;
    font-size: 1rem;
  }

  .process-card p {
    margin: 0;
    font-size: 0.8rem;
  }

  .work-copy {
    max-width: 32ch;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .contact-submit {
    padding: 14px 18px;
    font-size: 13px;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .promo-card {
    right: 12px;
    bottom: 12px;
    width: min(250px, calc(100% - 20px));
    padding: 12px;
  }

  .promo-thumb {
    height: 90px;
  }
}

/* Screenshot-accurate hero override */
.section-hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-center {
  position: relative;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-rings {
  position: absolute;
  inset: -140px 0 auto 0;
  height: 580px;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 50% 48%, rgba(23, 29, 26, 0.9) 0 22%, transparent 22.5%),
    radial-gradient(circle at 50% 48%, rgba(20, 26, 23, 0.75) 0 34%, transparent 34.5%),
    radial-gradient(circle at 50% 48%, rgba(16, 21, 19, 0.65) 0 46%, transparent 46.5%),
    radial-gradient(circle at 50% 48%, rgba(11, 16, 14, 0.5) 0 58%, transparent 58.5%);
}

.hero-title {
  position: relative;
  margin: 180px 0 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-h1, 52px);
  line-height: 0.9em;
  font-weight: 400;
  letter-spacing: -3px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-line {
  display: block;
}

.hero-line-2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.accent-chip {
  display: inline-block;
  background: var(--accent);
  color: #0a130f;
  padding: 0.02em 0.13em;
  border-radius: 1px;
  font-weight: 700;
  transform: rotate(1.7deg);
  transform-origin: center;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent);
  border: none;
  transform: translateY(1px);
  overflow: hidden;
}

.hero-icon svg {
  width: 34px;
  height: 34px;
  fill: #0f1f15;
}

.hero-icon img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  transform: rotate(350deg) scale(0.94);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-icon img + svg {
  display: none;
}

.hero-subtext {
  margin: 20px 0 0;
  color: #c9c9c9;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: var(--fs-description, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  max-width: 62ch;
  text-wrap: balance;
  z-index: 1;
}

.hero-cta-wrap {
  margin-top: 32px;
  margin-bottom: 56px;
  z-index: 1;
}

.hero-mid-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  width: 100%;
  height: 52%;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(7, 11, 9, 0) 0%, rgba(7, 11, 9, 0.7) 58%, #070b09 100%);
  z-index: 0;
  pointer-events: none;
}

.split-cta {
  border-radius: 999px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
}

.hero-cta {
  width: 217px;
  height: 50px;
  min-width: 217px;
  padding: 0;
  display: grid;
  grid-template-columns: 167px 50px;
  align-items: stretch;
  gap: 0;
}

.hero-cta-text {
  line-height: 1;
}

.hero-cta .hero-cta-text {
  width: 167px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 400;
}

.hero-cta .hero-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: transparent;
  color: #03210f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  transform: rotate(-35deg);
  transition: transform 0.22s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  width: 6px;
  height: 48px;
  transform: translateY(-50%);
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-cta:hover {
  box-shadow: none !important;
}

.hero-cta:hover::before {
  opacity: 1;
}

.hero-cta:hover .hero-cta-icon {
  transform: rotate(0deg);
}

.form-cta {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

.promo-card {
  right: clamp(10px, 2vw, 22px);
  bottom: clamp(10px, 2vw, 22px);
  width: min(336px, calc(100vw - 24px));
  min-height: 150px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(31, 29, 29, 0.46), rgba(31, 29, 29, 0.24));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f1f1f1;
  padding: 6px;
  display: grid;
  grid-template-columns: 138px 1fr;
  overflow: visible;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.28);
}

.promo-thumb {
  width: 138px;
  height: 138px;
  min-height: 138px;
  border-radius: 14px;
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03)),
    url("./asset/specialy_01.avif");
  background-size: cover;
  background-position: center;
}

.promo-content {
  padding: 6px 10px 6px 12px;
}

.promo-copy {
  margin: 0 0 10px;
  color: #f1f1f1;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.promo-link {
  color: #f1f1f1;
  text-decoration: none;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: static;
  overflow: visible;
  line-height: 1;
  transition: font-weight 0.15s ease;
}

.promo-link-text {
  width: auto;
  height: auto;
  display: inline;
}

.promo-link > span:not(.promo-link-text) {
  margin-left: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transform: rotate(-35deg);
  transform-origin: center;
  border-radius: 999px;
  border: 1px solid #ffffff1a;
  background: transparent;
  color: currentColor;
  transition: font-weight 0.15s ease, transform 0.15s ease;
}

.promo-link:hover {
  font-weight: 700;
  color: #ffffff;
}

.promo-link:hover > span:not(.promo-link-text) {
  font-weight: 700;
  transform: rotate(0deg);
  background: var(--accent);
  color: #000;
}

.close-promo {
  right: 6px;
  top: -18px;
  width: 34px;
  height: 34px;
  border: 1.5px solid #f2f2f2;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.6);
  color: #f2f2f2;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 3;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .hero-subtext {
    font-size: 17px;
    max-width: 52ch;
  }

  .hero-icon {
    width: 56px;
    height: 56px;
  }

  .hero-icon svg,
  .hero-icon img {
    width: 56px;
    height: 56px;
  }

  .promo-card {
    width: min(336px, calc(100vw - 24px));
    grid-template-columns: 138px 1fr;
  }

  .promo-thumb {
    min-height: 138px;
  }

  .promo-content {
    padding: 6px 10px 6px 12px;
  }

  .promo-copy {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .promo-link {
    font-size: 13px;
  }

  .close-promo {
    top: -18px;
    right: 6px;
    width: 34px;
    height: 34px;
    font-size: 1.5rem;
    border-width: 1.5px;
  }
}

/* Final hard overrides: mobile hero/menu stability */
@media (max-width: 992px) {
  .nav {
    position: fixed !important;
    top: 78px;
    right: 0;
    left: auto;
    bottom: auto;
    width: min(248px, 68vw);
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-height: min(420px, calc(100vh - 96px));
    overflow-y: auto;
    padding: 10px 0.9rem 14px;
    transform: translateX(110%) !important;
    border: 1px solid rgba(126, 248, 117, 0.18);
    border-top: 1px solid rgba(126, 248, 117, 0.14);
    gap: 3px;
    align-content: flex-start;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(12, 18, 15, 0.74) 0%, rgba(9, 14, 12, 0.62) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 16px 36px rgba(0, 0, 0, 0.45);
  }

  .nav.open {
    transform: translateX(0) !important;
  }

  .nav-link {
    padding: 7px 10px;
  }

  .nav-mobile-cta {
    display: none;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr 48px;
    margin-top: 8px;
    border-radius: 12px;
  }

  .nav.open .nav-mobile-cta {
    display: grid !important;
  }

  .nav-mobile-cta .hero-cta-text,
  .nav-mobile-cta .hero-cta-icon {
    width: auto;
    height: 42px;
  }

}

@media (max-width: 640px) {
  .section-hero {
    padding: 0;
  }

  .hero-title {
    margin-top: 72px !important;
    font-size: var(--fs-h1-mobile-sm, 24px) !important;
    line-height: 1em;
    letter-spacing: -0.6px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-subtext {
    font-size: var(--fs-description-mobile-sm, 12px) !important;
    max-width: 28ch;
    line-height: 1.4;
  }

  .hero-line-2 {
    gap: 4px;
    white-space: normal;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-icon,
  .hero-icon svg,
  .hero-icon img {
    width: 34px !important;
    height: 34px !important;
  }

  .split-cta.hero-cta {
    width: 174px !important;
    min-width: 174px !important;
    height: 42px !important;
    grid-template-columns: 124px 50px !important;
    align-items: center;
  }

  .split-cta.hero-cta .hero-cta-text {
    width: 124px !important;
    height: 100% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
  }

  .split-cta.hero-cta .hero-cta-icon {
    width: 50px !important;
    height: 100% !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
  }

  .hero-cta::before {
    right: 50px !important;
    height: 34px !important;
  }
}

/* Unified responsive layer for header/hero/buttons */
@media (max-width: 1200px) {
  .container {
    width: calc(100% - 2rem);
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto auto;
    column-gap: 12px;
  }

  .nav {
    justify-self: center;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero-title {
    margin-top: 130px;
    font-size: 46px;
    letter-spacing: -2px;
  }

  .hero-subtext {
    font-size: 16px;
    max-width: 48ch;
  }

  .hero-icon {
    width: 50px;
    height: 50px;
  }

  .hero-icon svg,
  .hero-icon img {
    width: 50px;
    height: 50px;
  }

  .hero-cta {
    width: 196px;
    min-width: 196px;
    height: 46px;
    grid-template-columns: 146px 50px;
  }

  .hero-cta .hero-cta-text {
    width: 146px;
    height: 46px;
    font-size: 12px;
  }

  .hero-cta .hero-cta-icon {
    width: 50px;
    height: 46px;
  }
}

@media (max-width: 992px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    justify-self: end;
  }

  .hero-center {
    padding-top: 30px;
  }

  .hero-title {
    margin-top: 92px;
    font-size: var(--fs-h1-mobile, 40px);
    line-height: 0.94em;
  }

  .hero-subtext {
    font-size: var(--fs-description-mobile, 15px);
    max-width: 40ch;
  }

  .hero-cta-wrap {
    margin-top: 22px;
    margin-bottom: 46px;
  }

  .split-cta.hero-cta {
    width: 186px;
    min-width: 186px;
    height: 44px;
    grid-template-columns: 136px 50px;
  }

  .split-cta.hero-cta .hero-cta-text {
    width: 136px;
    height: 44px;
    font-size: 12px;
  }

  .split-cta.hero-cta .hero-cta-icon {
    width: 50px;
    height: 44px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 1.25rem);
  }

  .header {
    border-bottom: none;
  }

  .logo img {
    height: 30px;
  }

  .nav {
    inset: 74px 0 auto 0;
    padding: 10px 0.9rem 14px;
    gap: 3px;
  }

  .nav-link {
    font-size: 12px;
    padding: 7px 10px;
  }

  .hero-center {
    padding-top: 14px;
  }

  .hero-title {
    margin-top: 70px;
    font-size: var(--fs-h1-mobile-sm, 24px);
    letter-spacing: -1.2px;
    gap: 0;
  }

  .hero-subtext {
    margin-top: 12px;
    font-size: var(--fs-description-mobile-sm, 12px);
    line-height: 1.45;
    max-width: 31ch;
  }

  .hero-icon {
    width: 42px;
    height: 42px;
  }

  .hero-icon svg,
  .hero-icon img {
    width: 42px;
    height: 42px;
  }

  .hero-cta-wrap {
    margin-top: 18px;
    margin-bottom: 34px;
  }

  .split-cta.hero-cta {
    width: 174px;
    min-width: 174px;
    height: 42px;
    grid-template-columns: 124px 50px;
  }

  .split-cta.hero-cta .hero-cta-text {
    width: 124px;
    height: 42px;
    font-size: 11px;
  }

  .split-cta.hero-cta .hero-cta-icon {
    width: 50px;
    height: 42px;
    font-size: 13px;
  }

  .hero-cta::before {
    right: 50px;
    height: 36px;
  }

  .promo-card {
    right: 8px;
    bottom: 8px;
    width: min(336px, calc(100vw - 16px));
  }
}

@media (max-width: 780px) {
  .hero-cta-wrap {
    margin-bottom: 40px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 30px;
    margin-top: 70px;
    letter-spacing: -1px;
    line-height: 0.95em;
  }

  .hero-subtext {
    font-size: 12px;
    max-width: 28ch;
    line-height: 1.4;
  }

  .hero-line-2 {
    gap: 6px;
  }

  .hero-icon {
    width: 34px;
    height: 34px;
    transform: translateY(1px);
  }

  .hero-icon svg,
  .hero-icon img {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 780px) {
  .section-hero {
    padding: 0;
  }

  .section-agency {
    padding-bottom: 0;
  }

  .agency-stage {
    min-height: 250px;
    border-radius: 20px;
  }

  .agency-track {
    gap: 32px;
  }

  .agency-badge {
    width: 210px;
    left: 10px;
    bottom: 0;
    transform: translateY(46%);
    border-radius: 18px;
    padding: 24px 10px;
  }

  .agency-badge h4 {
    font-size: 11px;
  }

  .agency-avatars img {
    width: 24px;
    height: 24px;
    margin-left: -6px;
    border: none;
  }

  .agency-badge p {
    font-size: 9px;
    margin-top: 6px;
  }

  .section-services {
    padding-top: 84px;
  }

  .services-head {
    margin-bottom: 40px;
  }

  .services-kicker {
    font-size: 9px;
    margin-bottom: 10px;
  }

  .services-head h2 {
    font-size: var(--fs-h2-mobile, 32px);
    letter-spacing: -0.02em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    min-height: 260px;
    height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: var(--fs-h3-mobile, 20px);
    margin-top: 14px;
  }

  .service-card p {
    font-size: var(--fs-body-small-mobile, 13px);
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .hero-center {
    min-height: auto;
  }

  .hero-title {
    margin-top: 92px;
    font-size: 38px;
    line-height: 0.95em;
    letter-spacing: -1.5px;
    gap: 2px;
  }

  .hero-subtext {
    margin-top: 14px;
    font-size: 14px;
    max-width: 30ch;
  }

  .hero-cta-wrap {
    margin-top: 18px;
  }

  .hero-cta {
    min-width: 190px;
    padding: 7px 9px 7px 16px;
    font-size: 12px;
    gap: 10px;
  }

  .hero-cta-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-cta::before {
    right: 40px;
  }

  .hero-icon {
    width: 42px;
    height: 42px;
    transform: translateY(2px);
  }

  .hero-icon svg,
  .hero-icon img {
    width: 42px;
    height: 42px;
  }

  .hero-mid-gradient {
    bottom: 0;
    height: 46%;
  }

  .hero-rings {
    inset: -120px -10% auto -10%;
    height: 500px;
  }

  .promo-card {
    right: 10px;
    bottom: 10px;
    width: min(336px, calc(100vw - 20px));
    grid-template-columns: 138px 1fr;
    border-radius: 18px;
  }

  .promo-thumb {
    min-height: 138px;
    border-radius: 14px;
  }

  .promo-content {
    padding: 6px 10px 6px 12px;
  }

  .promo-copy {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .promo-link {
    font-size: 13px;
  }

  .close-promo {
    top: -18px;
    right: 6px;
    width: 34px;
    height: 34px;
    font-size: 1.5rem;
    border-width: 1.5px;
  }
}

@media (max-width: 640px) {
  .agency-badge {
    width: 186px;
    left: 8px;
    transform: translateY(44%);
    border-radius: 16px;
    padding: 20px 9px;
  }

  .agency-badge h4 {
    font-size: 10px;
  }

  .agency-badge p {
    font-size: 8px;
    margin-top: 5px;
  }

  .section-services {
    padding-top: 76px;
  }

  .services-head {
    margin-bottom: 32px;
  }

  .services-kicker {
    font-size: 9px;
    margin-bottom: 8px;
    padding: 5px 10px;
  }

  .services-head h2 {
    font-size: var(--fs-h2-mobile, 28px);
    letter-spacing: -0.01em;
  }

  .services-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 236px;
    padding: 16px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: var(--fs-h3-mobile, 20px);
    margin-top: 12px;
  }

  .service-card p {
    font-size: var(--fs-body-small-mobile, 13px);
    line-height: 1.4;
    margin-bottom: 12px;
  }
}

/* Global spacing system: single gap between sections */
.section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
}

.section + .section {
  margin-top: var(--section-gap-desktop);
}

.section-hero + .section-agency {
  margin-top: 0;
}

/* Final lock: mobile menu drawer must open fully everywhere */
@media (max-width: 992px) {
  .header,
  .nav-wrap {
    overflow: visible;
  }

  .menu-btn {
    position: relative;
    z-index: 140;
  }

  .nav {
    position: fixed !important;
    top: 78px !important;
    right: 10px !important;
    left: auto !important;
    bottom: auto !important;
    width: min(248px, 68vw) !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: min(420px, calc(100vh - 96px)) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    padding: 10px 0.9rem 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(126, 248, 117, 0.18) !important;
    background: linear-gradient(180deg, rgba(12, 18, 15, 0.74) 0%, rgba(9, 14, 12, 0.62) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 16px 36px rgba(0, 0, 0, 0.45) !important;
    transform: translateX(calc(100% + 16px)) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: 130 !important;
  }

  .nav.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 640px) {
  .nav {
    right: 8px !important;
    width: min(238px, 72vw) !important;
  }
}

/* Final Process Step Section */
.section-process {
  margin-top: var(--section-gap-desktop);
  --process-progress: 0%;
}

.process-head {
  text-align: center;
}

.process-head .services-kicker {
  margin-bottom: 12px;
}

.process-head h2 {
  margin: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-weight: 400;
  font-size: var(--fs-h2, 40px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--text);
}

.process-head p {
  margin: 20px auto 0;
  max-width: 52ch;
  color: #d8dcdf;
  font-size: var(--fs-body, 16px);
  line-height: 1.45;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
  position: relative;
  min-height: 480px;
  margin-top: 60px;
}

.process-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.process-cta.promo-link {
  font-size: 12px;
  font-weight: 400;
}

.process-visual-stick {
  position: sticky;
  top: 98px;
  height: fit-content;
}

.process-visual {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, rgba(50, 20, 90, 0.18), rgba(7, 11, 9, 0) 66%);
}

.shape-cluster {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.shape-cluster span {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(215, 148, 255, 0.9), rgba(53, 23, 109, 0.92));
  box-shadow: 0 0 18px rgba(136, 51, 255, 0.35);
}

.section-process[data-active-step="1"] .shape-1,
.section-process[data-active-step="2"] .shape-2,
.section-process[data-active-step="3"] .shape-3,
.section-process[data-active-step="4"] .shape-4 {
  opacity: 1;
  transform: scale(1);
}

.shape-1 span:nth-child(1) { left: 14%; top: 20%; width: 52px; height: 22px; transform: rotate(-20deg); }
.shape-1 span:nth-child(2) { left: 37%; top: 12%; width: 34px; height: 58px; transform: rotate(-26deg); }
.shape-1 span:nth-child(3) { left: 62%; top: 32%; width: 46px; height: 18px; transform: rotate(24deg); }
.shape-1 span:nth-child(4) { left: 28%; top: 46%; width: 40px; height: 16px; transform: rotate(34deg); }
.shape-1 span:nth-child(5) { left: 54%; top: 58%; width: 30px; height: 44px; transform: rotate(-16deg); }

.shape-2 span:nth-child(1),
.shape-2 span:nth-child(2),
.shape-2 span:nth-child(3),
.shape-2 span:nth-child(4) { width: 92px; height: 92px; border-radius: 0; }
.shape-2 span:nth-child(1) { left: 18%; top: 18%; border-radius: 90px 0 0 0; }
.shape-2 span:nth-child(2) { left: 48%; top: 18%; border-radius: 0 90px 0 0; }
.shape-2 span:nth-child(3) { left: 18%; top: 49%; border-radius: 0 0 0 90px; }
.shape-2 span:nth-child(4) { left: 48%; top: 49%; border-radius: 0 0 90px 0; }

.shape-3 span { width: 12px; height: 42px; border-radius: 20px; }
.shape-3 span:nth-child(1) { left: 26%; top: 20%; transform: rotate(-38deg); }
.shape-3 span:nth-child(2) { left: 45%; top: 30%; transform: rotate(30deg); }
.shape-3 span:nth-child(3) { left: 62%; top: 20%; transform: rotate(-18deg); }
.shape-3 span:nth-child(4) { left: 22%; top: 56%; transform: rotate(22deg); }
.shape-3 span:nth-child(5) { left: 44%; top: 62%; transform: rotate(-42deg); }
.shape-3 span:nth-child(6) { left: 64%; top: 54%; transform: rotate(18deg); }

.shape-4 span:nth-child(1) { left: 24%; top: 20%; width: 180px; height: 180px; border-radius: 50%; border: 5px solid rgba(208, 160, 255, 0.82); background: transparent; box-shadow: none; }
.shape-4 span:nth-child(2) { left: 34%; top: 36%; width: 70px; height: 70px; clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.shape-4 span:nth-child(3) { left: 53%; top: 52%; width: 70px; height: 70px; clip-path: polygon(50% 100%, 100% 0%, 0% 0%); }
.shape-4 span:nth-child(4) { left: 24%; top: 50%; width: 180px; height: 8px; border-radius: 999px; background: rgba(203, 149, 255, 0.85); box-shadow: none; }

.process-steps {
  position: sticky;
  top: 98px;
  height: 480px;
  min-height: 480px;
}

.process-step {
  position: absolute;
  inset: 0;
  padding: 0 12px 0 0;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.process-step.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.process-num {
  margin: 0 0 8px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-process-num, clamp(2rem, 4.2vw, 3.2rem));
  line-height: 1;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-process-step-h3, clamp(2rem, 4.5vw, 3.4rem));
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.process-step h4 {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: var(--fs-process-step-h4, clamp(1.05rem, 1.8vw, 1.5rem));
  font-weight: 400;
}

.process-step p {
  margin: 0 0 10px;
  color: #ececec;
  font-size: var(--fs-process-step-p, clamp(0.95rem, 1.25vw, 1.45rem));
  line-height: 1.45;
  max-width: 62ch;
}

.process-markers {
  display: none;
}

.process-steps::after,
.process-steps::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  border-radius: 999px;
}

.process-steps::after {
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
}

.process-steps::before {
  height: var(--process-progress);
  background: var(--accent);
  box-shadow: 0 0 10px rgba(126, 248, 117, 0.45);
  z-index: 2;
}

@media (max-width: 780px) {
  .process-head h2 {
    font-size: var(--fs-h2-process-mobile, 40px);
  }

  .process-head p {
    margin-top: 16px;
    font-size: var(--fs-body-mobile, 16px);
  }

  .process-num {
    font-size: var(--fs-process-num-mobile, var(--fs-process-num, clamp(2rem, 4.2vw, 3.2rem)));
  }

  .process-step h3 {
    font-size: var(--fs-process-step-h3-mobile, var(--fs-process-step-h3, clamp(2rem, 4.5vw, 3.4rem)));
  }

  .process-step h4 {
    font-size: var(--fs-process-step-h4-mobile, var(--fs-process-step-h4, clamp(1.05rem, 1.8vw, 1.5rem)));
  }

  .process-step p {
    font-size: var(--fs-process-step-p-mobile, var(--fs-process-step-p, clamp(0.95rem, 1.25vw, 1.45rem)));
  }

  .process-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    margin-top: 24px;
  }

  .process-cta-wrap {
    margin-top: 36px;
  }

  .process-visual-stick {
    position: relative;
    top: auto;
  }

  .process-visual {
    min-height: 200px;
  }

  .process-step {
    position: static;
    padding-right: 10px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .process-steps::after,
  .process-steps::before {
    display: none;
  }

  .process-step + .process-step {
    margin-top: 18px;
  }

  .process-steps {
    position: static;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .process-markers {
    display: none;
  }
}

/* Site footer */
.site-footer {
  margin-top: var(--section-gap-desktop);
  padding: 0 0 48px;
  background: #000000;
  position: relative;
  z-index: 2;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-panel {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #141615 0%, #0f1210 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-panel-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto) minmax(0, 1.15fr);
  gap: 36px 40px;
  padding: 32px 36px 36px;
  align-items: stretch;
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7, 9, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: #f0f4f2;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-contact-card:hover {
  border-color: rgba(126, 248, 117, 0.28);
  background: rgba(12, 18, 14, 0.9);
  transform: translateY(-1px);
}

.footer-contact-card-static {
  cursor: default;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(126, 248, 117, 0.1);
}

.footer-contact-icon--wa svg {
  display: block;
  width: 23px;
  height: 23px;
}

.footer-contact-text {
  min-width: 0;
  word-break: break-word;
}

.footer-col-menu {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 0;
}

.footer-heading {
  margin: 0 0 20px;
  flex-shrink: 0;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: none;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

.footer-links li {
  flex-shrink: 0;
}

.footer-links a {
  color: #e8f4ee;
  text-decoration: none;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-brand {
  min-width: 0;
  padding-top: 2px;
}

.footer-brand-logo {
  display: inline-block;
  line-height: 0;
}

.footer-brand-logo img {
  height: auto;
  width: auto;
  max-width: min(168px, 100%);
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.footer-brand-copy {
  margin: 18px 0 0;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #a8b3ad;
  max-width: 42ch;
}

.footer-panel-social {
  padding: 26px 28px 30px;
  text-align: center;
}

.footer-follow {
  margin: 0 0 18px;
  font-family: "Unbounded", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a0c0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f2f6f4;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-btn:hover {
  border-color: rgba(126, 248, 117, 0.45);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(126, 248, 117, 0.12);
  transform: translateY(-2px);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  margin-top: 4px;
}

.footer-copyright {
  margin: 0;
  text-align: center;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 12px;
  color: #8f9a94;
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .footer-panel-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px 30px;
  }

  .footer-col-menu {
    min-height: 0;
  }

  .footer-links {
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }

  .footer-brand-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 36px;
  }

  .footer-panel-top {
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .footer-panel-social {
    padding: 22px 18px 26px;
    border-radius: 20px;
  }

  .footer-contact-card {
    padding: 14px 14px;
    font-size: 13px;
  }
}

/* Guide-aligned: section rhythm on tablet / mobile + safe layout */
@media (max-width: 992px) and (min-width: 781px) {
  .section + .section {
    margin-top: var(--section-gap-tablet);
  }

  .section-hero + .section-agency {
    margin-top: 0;
  }

  .site-footer {
    margin-top: var(--section-gap-tablet);
  }

  .section-process {
    margin-top: var(--section-gap-tablet);
  }
}

@media (max-width: 780px) {
  .section + .section {
    margin-top: var(--section-gap-mobile);
  }

  .section-hero + .section-agency {
    margin-top: 0;
  }

  .site-footer {
    margin-top: var(--section-gap-mobile);
    padding-bottom: max(36px, env(safe-area-inset-bottom, 0px));
  }

  .section-process {
    margin-top: var(--section-gap-mobile);
  }

  .testimonials-wrap {
    min-height: min(560px, 85vh);
  }

  .testimonials-marquee {
    height: min(440px, 70vh);
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.25rem);
  }

  .contact-title,
  .contact-intro {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .faq-question span:first-child {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 992px) {
  .nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
