@font-face {
  font-family: Afacad;
  src: url("../assets/fonts/Afacad-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: Afacad;
  src: url("../assets/fonts/Afacad-Medium.ttf");
  font-weight: 600;
}

@font-face {
  font-family: Afacad;
  src: url("../assets/fonts/Afacad-SemiBold.ttf");
  font-weight: 700;
}

:root {
  --dark: #020C1B;
  --navy: #0A192F;
  --navy-2: #172A45;
  --cyan: #64FFDA;
  --cyan-dim: #3AECCC;
  --cyan-glow: rgba(100, 255, 218, 0.18);
  --white: #ffffff;
  --text: #CCD6F6;
  --text-muted: rgba(204, 214, 246, 0.55);
  --light: #0D1F38;
  --green: #64FFDA;
  --gradient: linear-gradient(90deg, #64FFDA, #0EA5E9);
  --field-bg: #0A192F;
  --field-border: rgba(100, 255, 218, 0.15);
  --field-focus: rgba(100, 255, 218, 0.40);
  --card-bg: #0D1F38;
  --card-border: rgba(100, 255, 218, 0.10);
  --form-bg: #0D1F38;
  --form-border: rgba(100, 255, 218, 0.10);
  --footer-bg: #06101E;
  --footer-border: rgba(100, 255, 218, 0.08);
  --footer-muted: rgba(204, 214, 246, 0.42);
  --footer-link: rgba(204, 214, 246, 0.62);
  --footer-link-hv: #CCD6F6;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  font-family: Afacad, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -120px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 80px;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 1280px;
  margin: 80px auto auto auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 0 0 auto;
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(100, 255, 218, 0.25);
  border-radius: 999px;
  padding: 6px 10px 6px 14px;
  width: fit-content;
  font-size: 13px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.80);
  background: rgba(100, 255, 218, 0.06);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.badge-new {
  background: rgba(100, 255, 218, 0.12);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.hero-headline {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-headline .line-white {
  color: var(--white);
}

.hero-headline .word-smart {
  background: linear-gradient(90deg, #64FFDA, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .line-cyan {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline .line-teal {
  background: linear-gradient(90deg, #2DD4BF, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-family: Afacad, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-primary img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(100, 255, 218, 0.30);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: Afacad, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cyan);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(100, 255, 218, 0.60);
  background: rgba(100, 255, 218, 0.06);
  transform: translateY(-1px);
}

.btn-secondary img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
  object-fit: cover;
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.proof-clients {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.proof-clients span {
  color: var(--white);
  font-weight: 700;
}

.proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(100, 255, 218, 0.15);
}

.proof-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 16px;
  height: 16px;
  color: #64FFDA;
  font-size: 16px;
  line-height: 1;
}

.proof-score {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.proof-score span {
  color: var(--white);
  font-weight: 700;
}

/* Hero right */
.hero-right {
  position: relative;
  flex: 0 0 auto;
  width: 520px;
  height: 500px;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(100, 255, 218, 0.15);
  pointer-events: none;
}

.ring-2 {
  width: 470px;
  height: 470px;
  border-color: rgba(14, 165, 233, 0.08);
}

.hero-img-wrap {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-46%, -52%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(100, 255, 218, 0.30);
  box-shadow: 0 0 60px rgba(100, 255, 218, 0.15);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
}

.card {
  position: absolute;
  background: rgba(10, 25, 47, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(100, 255, 218, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}

.card-campaign {
  top: 18px;
  right: 0;
  width: 200px;
}

.card-campaign-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.card-campaign-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(100, 255, 218, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-campaign-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.card-campaign-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.card-campaign-sub {
  font-size: 11px;
  color: rgba(204, 214, 246, 0.45);
}

.card-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.card-progress-label {
  font-size: 11px;
  color: rgba(204, 214, 246, 0.4);
}

.card-progress-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.progress-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(100, 255, 218, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 87%;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  border-radius: 999px;
}

.card-surveys {
  bottom: 90px;
  left: -10px;
  width: 190px;
}

.card-surveys-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(204, 214, 246, 0.5);
  margin-bottom: 4px;
}

.green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.card-surveys-count {
  font-size: 34px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.1;
}

.card-surveys-change {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--cyan);
  margin-top: 4px;
}

.card-insights {
  bottom: 18px;
  right: -4px;
  width: 195px;
}

.card-insights-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.card-insights-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(14, 165, 233, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-insights-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.card-insights-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.card-insights-sub {
  font-size: 11px;
  color: rgba(204, 214, 246, 0.4);
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #64FFDA, #0A6654);
}

.bar:nth-child(1) {
  height: 55%
}

.bar:nth-child(2) {
  height: 75%
}

.bar:nth-child(3) {
  height: 45%
}

.bar:nth-child(4) {
  height: 90%
}

.bar:nth-child(5) {
  height: 65%
}

.globe-btn {
  position: absolute;
  bottom: 10px;
  left: 50px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(100, 255, 218, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.globe-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(100, 255, 218, 0.55);
}

.globe-btn img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hero-left>* {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.05s
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.15s
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.25s
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.35s
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.45s
}

.hero-right {
  opacity: 0;
  animation: fadeIn 0.7s ease 0.3s forwards
}

.card-campaign {
  animation: floatY 4s ease-in-out 1s infinite
}

.card-surveys {
  animation: floatY 4.5s ease-in-out 0.5s infinite
}

.card-insights {
  animation: floatY 5s ease-in-out 1.5s infinite
}

@media(max-width:1280px) {
  .hero {
    padding: 0 40px;
    gap: 30px
  }

  .hero-left {
    width: 480px
  }

  .hero-headline {
    font-size: 54px
  }

  .hero-right {
    width: 460px;
    height: 460px
  }

  .ring {
    width: 360px;
    height: 360px
  }

  .ring-2 {
    width: 420px;
    height: 420px
  }

  .hero-img-wrap {
    width: 305px;
    height: 305px
  }
}

@media(max-width:1024px) {
  .hero {
    padding: 60px 32px;
    gap: 20px
  }

  .hero-left {
    width: 400px;
    gap: 22px
  }

  .hero-headline {
    font-size: 44px
  }

  .hero-sub {
    font-size: 15px
  }

  .hero-right {
    width: 400px;
    height: 420px
  }

  .ring {
    width: 300px;
    height: 300px
  }

  .ring-2 {
    width: 358px;
    height: 358px
  }

  .hero-img-wrap {
    width: 260px;
    height: 260px
  }

  .card-campaign {
    top: 14px;
    right: 0;
    width: 175px
  }

  .card-surveys {
    bottom: 80px;
    left: -8px;
    width: 165px
  }

  .card-surveys-count {
    font-size: 30px
  }

  .card-insights {
    bottom: 14px;
    right: -2px;
    width: 170px
  }

  .globe-btn {
    bottom: 8px;
    left: 44px;
    width: 48px;
    height: 48px
  }
}

@media(max-width:768px) {
  .hero {
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 80px 28px 60px;
    gap: 56px;
    text-align: center
  }

  .hero-left {
    width: 100%;
    max-width: 580px;
    align-items: center;
    gap: 22px
  }

  .hero-headline {
    font-size: 42px;
    letter-spacing: -0.3px
  }

  .hero-sub {
    font-size: 16px;
    max-width: 100%
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px
  }

  .hero-proof {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px
  }

  .hero-right {
    position: relative;
    width: 380px;
    height: 400px;
    flex-shrink: 0
  }

  .ring {
    width: 290px;
    height: 290px
  }

  .ring-2 {
    width: 346px;
    height: 346px
  }

  .hero-img-wrap {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
  }

  .card-campaign {
    top: 8px;
    right: 0;
    width: 168px;
    padding: 12px 14px
  }

  .card-surveys {
    bottom: 80px;
    left: 0;
    width: 158px;
    padding: 12px 14px
  }

  .card-surveys-count {
    font-size: 28px
  }

  .card-insights {
    bottom: 10px;
    right: 0;
    width: 165px;
    padding: 12px 14px
  }

  .globe-btn {
    bottom: 6px;
    left: 26px;
    width: 48px;
    height: 48px
  }
}

@media(max-width:480px) {
  .hero {
    padding: 70px 18px 50px;
    gap: 48px
  }

  .hero-left {
    gap: 18px
  }

  .hero-headline {
    font-size: 34px;
    line-height: 1.15
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.65
  }

  .btn-primary, .btn-secondary {
    padding: 12px 22px;
    font-size: 15px
  }

  .hero-right {
    width: 330px;
    height: 360px
  }

  .ring {
    width: 248px;
    height: 248px
  }

  .ring-2 {
    width: 296px;
    height: 296px
  }

  .hero-img-wrap {
    width: 220px;
    height: 220px
  }

  .card-campaign {
    top: 6px;
    right: 0;
    width: 152px;
    padding: 10px 12px
  }

  .card-surveys {
    bottom: 72px;
    left: 0;
    width: 145px;
    padding: 10px 12px
  }

  .card-surveys-count {
    font-size: 24px
  }

  .card-insights {
    bottom: 6px;
    right: 0;
    width: 150px;
    padding: 10px 12px
  }

  .bar-chart {
    height: 36px
  }

  .globe-btn {
    bottom: 4px;
    left: 16px;
    width: 44px;
    height: 44px
  }
}

/* ══════════════════════════════
   STATSBAR
══════════════════════════════ */
.statsbar {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #030E1C;
  border-top: 1px solid rgba(100, 255, 218, 0.08);
  border-bottom: 1px solid rgba(100, 255, 218, 0.08);
  overflow: hidden;
}

.statsbar::before, .statsbar::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.statsbar::before {
  left: 0;
  background: linear-gradient(to right, #030E1C 0%, transparent 100%);
}

.statsbar::after {
  right: 0;
  background: linear-gradient(to left, #030E1C 0%, transparent 100%);
}

.statsbar__inner {
  display: flex;
  align-items: center;
  width: max-content;
  height: 62px;
  padding: 0;
  gap: 0;
  animation: statsTicker 25s linear infinite;
  will-change: transform;
}

.statsbar:hover .statsbar__inner {
  animation-play-state: paused;
}

@keyframes statsTicker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.statsbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  flex-shrink: 0;
  white-space: nowrap;
}

.statsbar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.statsbar__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.statsbar__icon--blue img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.statsbar__icon--green img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.statsbar__icon--pink img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(80%) saturate(500%) hue-rotate(160deg) brightness(110%);
}

.statsbar__icon--indigo img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(500%) hue-rotate(185deg) brightness(110%);
}

.statsbar__icon--amber img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.statsbar__label {
  font-family: Afacad, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.80);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.statsbar__sep {
  font-size: 6px;
  color: rgba(100, 255, 218, 0.28);
  flex-shrink: 0;
  line-height: 1;
  padding: 0 4px;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--light);
  padding: 110px 0;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about__images {
  position: relative;
  flex: 0 0 auto;
  width: 530px;
  height: 560px;
}

.about__img {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img--1 {
  top: 0;
  left: 0;
  width: 290px;
  height: 310px;
  z-index: 1;
  transform: rotate(-1deg);
}

.about__img--2 {
  top: 120px;
  left: 170px;
  width: 210px;
  height: 230px;
  z-index: 2;
  border: 2.5px solid rgba(100, 255, 218, 0.50);
  transform: rotate(0.5deg);
}

.about__img--3 {
  bottom: 0;
  right: 0;
  width: 290px;
  height: 270px;
  border-radius: 22px;
  z-index: 3;
  transform: rotate(0.8deg);
  border: 2px solid rgba(100, 255, 218, 0.08);
}

.about__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 540px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 7px 16px;
  width: fit-content;
}

.about__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.about__badge span {
  font-family: Afacad, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
  white-space: nowrap;
}

.about__heading {
  font-family: Afacad, sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0;
}

.about__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__text {
  font-family: Afacad, sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

.about__stat-card {
  background: rgba(100, 255, 218, 0.04);
  border: 1px solid rgba(100, 255, 218, 0.08);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.about__stat-card:hover {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.18);
  transform: translateY(-2px);
}

.about__stat-number {
  font-family: Afacad, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.about__stat-number--blue {
  color: #64FFDA;
}

.about__stat-number--purple {
  color: #38BDF8;
}

.about__stat-number--green {
  color: #64FFDA;
}

.about__stat-label {
  font-family: Afacad, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.45);
  letter-spacing: 0.01em;
}

.about__images, .about__content>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.about__images {
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about.in-view .about__images {
  opacity: 1;
  transform: translateX(0);
}

.about.in-view .about__content>*:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.10s
}

.about.in-view .about__content>*:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s
}

.about.in-view .about__content>*:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s
}

.about.in-view .about__content>*:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s
}

.about.in-view .about__content>*:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s
}

.about__stat-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.25s, border-color 0.25s
}

.about.in-view .about__stat-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.50s
}

.about.in-view .about__stat-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s
}

.about.in-view .about__stat-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.66s
}

.about.in-view .about__stat-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s
}

@media(max-width:1280px) {
  .about__inner {
    padding: 0 40px;
    gap: 60px
  }

  .about__heading {
    font-size: 46px
  }

  .about__images {
    width: 460px;
    height: 500px
  }

  .about__img--1 {
    width: 255px;
    height: 275px
  }

  .about__img--2 {
    width: 185px;
    height: 205px;
    left: 148px;
    top: 110px
  }

  .about__img--3 {
    width: 255px;
    height: 245px
  }
}

@media(max-width:1024px) {
  .about {
    padding: 90px 0
  }

  .about__inner {
    padding: 0 32px;
    gap: 44px
  }

  .about__heading {
    font-size: 40px
  }

  .about__text {
    font-size: 15.5px
  }

  .about__images {
    width: 380px;
    height: 430px
  }

  .about__img--1 {
    width: 212px;
    height: 230px
  }

  .about__img--2 {
    width: 158px;
    height: 175px;
    left: 124px;
    top: 95px
  }

  .about__img--3 {
    width: 212px;
    height: 210px
  }

  .about__stat-number {
    font-size: 32px
  }
}

@media(max-width:768px) {
  .about {
    padding: 80px 0
  }

  .about__inner {
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
    gap: 60px
  }

  .about__images {
    width: 100%;
    max-width: 420px;
    height: 400px
  }

  .about__img--1 {
    width: 200px;
    height: 215px
  }

  .about__img--2 {
    width: 148px;
    height: 165px;
    left: 116px;
    top: 88px
  }

  .about__img--3 {
    width: 200px;
    height: 195px;
    right: 0;
    bottom: 0
  }

  .about__content {
    max-width: 100%;
    gap: 20px
  }

  .about__heading {
    font-size: 38px
  }

  .about__stats {
    gap: 12px
  }

  .about__stat-card {
    padding: 22px
  }

  .about__stat-number {
    font-size: 30px
  }
}

@media(max-width:480px) {
  .about {
    padding: 64px 0
  }

  .about__inner {
    padding: 0 20px;
    gap: 48px
  }

  .about__heading {
    font-size: 32px
  }

  .about__text {
    font-size: 15px
  }

  .about__images {
    max-width: 340px;
    height: 340px
  }

  .about__img--1 {
    width: 166px;
    height: 178px
  }

  .about__img--2 {
    width: 124px;
    height: 138px;
    left: 96px;
    top: 74px
  }

  .about__img--3 {
    width: 166px;
    height: 162px
  }

  .about__stats {
    gap: 10px
  }

  .about__stat-card {
    padding: 18px;
    border-radius: 14px
  }

  .about__stat-number {
    font-size: 28px
  }

  .about__stat-label {
    font-size: 13px
  }
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--dark);
  padding: 110px 0 120px;
}

.services__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.services__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 7px 18px;
}

.services__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.services__badge span {
  font-family: Afacad, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
}

.services__heading {
  font-family: Afacad, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0;
}

.services__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services__sub {
  font-family: Afacad, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  line-height: 1.65;
  margin: 0;
}

.services__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__row-halves {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(100, 255, 218, 0.08);
  background: rgba(10, 25, 47, 0.85);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(100, 255, 218, 0.18);
  border-color: rgba(100, 255, 218, 0.25);
}

.svc-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card:hover .svc-card__bg {
  opacity: 0.45;
}

.svc-card__body {
  position: relative;
  z-index: 2;
}

.svc-card--wide .svc-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 290px;
}

.svc-card__left {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.svc-card__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 32px 36px 32px 20px;
  align-content: center;
}

.svc-card__primary-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(100, 255, 218, 0.10);
  border: 1px solid rgba(100, 255, 218, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
  width: fit-content;
  font-family: Afacad, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
}

.svc-card__primary-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.svc-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.svc-card__icon--purple {
  background: linear-gradient(135deg, #0A6654, #064D42);
}

.svc-card__icon--pink {
  background: linear-gradient(135deg, #0E7490, #0369A1);
}

.svc-card__icon--blue {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
}

.svc-card__icon--teal {
  background: linear-gradient(135deg, #0D9488, #0891B2);
}

.svc-card__title {
  font-family: Afacad, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}

.svc-card__desc {
  font-family: Afacad, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 360px;
}

.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.svc-tag {
  font-family: Afacad, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--cyan);
  background: rgba(100, 255, 218, 0.07);
  border: 1px solid rgba(100, 255, 218, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.svc-tag:hover {
  background: rgba(100, 255, 218, 0.14);
  border-color: rgba(100, 255, 218, 0.30);
}

.svc-subfeat {
  background: rgba(100, 255, 218, 0.04);
  border: 1px solid rgba(100, 255, 218, 0.08);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.svc-subfeat:hover {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.20);
  transform: translateY(-2px);
}

.svc-subfeat__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-subfeat__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.svc-subfeat__label {
  font-family: Afacad, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.70);
}

.svc-card--half {
  min-height: 280px;
}

.svc-card__body--col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  justify-content: flex-end;
  min-height: 280px;
}

.svc-card--mobile .svc-card__body {
  min-height: 260px;
}

.svc-card__right--col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  grid-template-columns: unset;
  padding: 32px 36px 32px 20px;
}

.svc-mobile-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 20px 32px 36px;
  justify-content: center;
}

.svc-mobile-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(100, 255, 218, 0.06);
  border: 1px solid rgba(100, 255, 218, 0.12);
  border-radius: 12px;
  padding: 11px 18px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}

.svc-mobile-tag:hover {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.25);
}

.svc-mobile-tag--green {
  background: rgba(100, 255, 218, 0.10);
  border-color: rgba(100, 255, 218, 0.22);
}

.svc-mobile-tag--green:hover {
  background: rgba(100, 255, 218, 0.18);
}

.svc-mobile-tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.svc-mobile-tag span {
  font-family: Afacad, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--cyan);
  white-space: nowrap;
}

@keyframes svcFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes svcFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-36px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes svcFadeRight {
  from {
    opacity: 0;
    transform: translateX(36px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes svcScaleIn {
  from {
    opacity: 0;
    transform: scale(0.88)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes svcBadgePop {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(-10px)
  }

  70% {
    transform: scale(1.06) translateY(0)
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes subfeatPop {
  from {
    opacity: 0;
    transform: scale(0.82) translateY(12px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

@keyframes mobilePillSlide {
  from {
    opacity: 0;
    transform: translateX(-20px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.services__badge, .services__heading, .services__sub, .svc-card, .svc-card__primary-badge, .svc-card__icon, .svc-card__title, .svc-card__desc, .svc-card__tags, .svc-subfeat, .svc-mobile-tag {
  opacity: 0
}

.services.in-view .services__badge {
  animation: svcBadgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards
}

.services.in-view .services__heading {
  animation: svcFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards
}

.services.in-view .services__sub {
  animation: svcFadeUp 0.6s ease 0.30s forwards
}

.services.in-view .svc-card--tele {
  animation: svcFadeLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards
}

.services.in-view .svc-card--tele .svc-card__primary-badge {
  animation: svcBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.50s forwards
}

.services.in-view .svc-card--tele .svc-card__icon {
  animation: svcScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.58s forwards, iconFloat 3.5s ease-in-out 1.2s infinite
}

.services.in-view .svc-card--tele .svc-card__title {
  animation: svcFadeUp 0.5s ease 0.64s forwards
}

.services.in-view .svc-card--tele .svc-card__desc {
  animation: svcFadeUp 0.5s ease 0.72s forwards
}

.services.in-view .svc-subfeat:nth-child(1) {
  animation: subfeatPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s forwards
}

.services.in-view .svc-subfeat:nth-child(2) {
  animation: subfeatPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s forwards
}

.services.in-view .svc-subfeat:nth-child(3) {
  animation: subfeatPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards
}

.services.in-view .svc-subfeat:nth-child(4) {
  animation: subfeatPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s forwards
}

.services.in-view .svc-card--marketing {
  animation: svcFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards
}

.services.in-view .svc-card--marketing .svc-card__icon {
  animation: svcScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.60s forwards
}

.services.in-view .svc-card--marketing .svc-card__title {
  animation: svcFadeUp 0.5s ease 0.68s forwards
}

.services.in-view .svc-card--marketing .svc-card__desc {
  animation: svcFadeUp 0.5s ease 0.75s forwards
}

.services.in-view .svc-card--marketing .svc-card__tags {
  animation: svcFadeUp 0.5s ease 0.82s forwards
}

.services.in-view .svc-card--webdev {
  animation: svcFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards
}

.services.in-view .svc-card--webdev .svc-card__icon {
  animation: svcScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.68s forwards, iconFloat 4s ease-in-out 1.6s infinite
}

.services.in-view .svc-card--webdev .svc-card__title {
  animation: svcFadeUp 0.5s ease 0.76s forwards
}

.services.in-view .svc-card--webdev .svc-card__desc {
  animation: svcFadeUp 0.5s ease 0.83s forwards
}

.services.in-view .svc-card--webdev .svc-card__tags {
  animation: svcFadeUp 0.5s ease 0.90s forwards
}

.services.in-view .svc-card--mobile {
  animation: svcFadeRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards
}

.services.in-view .svc-card--mobile .svc-card__icon {
  animation: svcScaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.80s forwards
}

.services.in-view .svc-card--mobile .svc-card__title {
  animation: svcFadeUp 0.5s ease 0.88s forwards
}

.services.in-view .svc-card--mobile .svc-card__desc {
  animation: svcFadeUp 0.5s ease 0.95s forwards
}

.services.in-view .svc-mobile-tag:nth-child(1) {
  animation: mobilePillSlide 0.4s ease 0.82s forwards
}

.services.in-view .svc-mobile-tag:nth-child(2) {
  animation: mobilePillSlide 0.4s ease 0.92s forwards
}

.services.in-view .svc-mobile-tag:nth-child(3) {
  animation: mobilePillSlide 0.4s ease 1.02s forwards
}

.services.in-view .svc-mobile-tag:nth-child(4) {
  animation: mobilePillSlide 0.4s ease 1.12s forwards
}

.services.in-view .services__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9, #38BDF8, #64FFDA);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear 0.8s infinite
}

@media(max-width:1024px) {
  .services__inner {
    padding: 0 28px
  }

  .services__heading {
    font-size: 40px
  }

  .svc-card--wide .svc-card__body {
    min-height: 260px
  }

  .svc-card__left {
    padding: 26px 28px
  }

  .svc-card__right {
    padding: 26px 28px 26px 16px
  }

  .svc-card__title {
    font-size: 20px
  }
}

@media(max-width:768px) {
  .services {
    padding: 80px 0 90px
  }

  .services__inner {
    padding: 0 20px;
    gap: 40px
  }

  .services__heading {
    font-size: 34px
  }

  .services__sub {
    font-size: 15px
  }

  .svc-card--wide .svc-card__body {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .svc-card__left {
    padding: 28px 24px 16px;
    gap: 14px
  }

  .svc-card__right {
    grid-template-columns: 1fr 1fr;
    padding: 16px 24px 28px;
    gap: 10px
  }

  .services__row-halves {
    grid-template-columns: 1fr
  }

  .svc-card--half {
    min-height: 240px
  }

  .svc-card__body--col {
    min-height: 240px;
    padding: 28px 24px
  }

  .svc-card--mobile .svc-card__body {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .svc-mobile-tags {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 24px 24px 12px
  }

  .svc-card__right--col {
    padding: 12px 24px 28px
  }

  .svc-subfeat {
    padding: 16px 14px
  }

  .svc-subfeat__label {
    font-size: 12.5px
  }
}

@media(max-width:480px) {
  .services__heading {
    font-size: 28px
  }

  .svc-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px
  }

  .svc-card__icon img {
    width: 24px;
    height: 24px
  }

  .svc-card__title {
    font-size: 18px
  }

  .svc-card__desc {
    font-size: 13.5px
  }

  .svc-tag {
    font-size: 11.5px;
    padding: 4px 12px
  }

  .svc-card__right {
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .svc-subfeat {
    padding: 14px 12px;
    gap: 10px
  }

  .svc-mobile-tag {
    padding: 9px 14px
  }

  .svc-mobile-tag span {
    font-size: 13px
  }
}

/* ══════════════════════════════
   WORKFLOW
══════════════════════════════ */
.workflow {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--light);
  padding: 110px 0 120px;
  overflow: hidden;
}

.workflow::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.workflow__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.workflow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.workflow__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 8px 20px;
}

.workflow__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.workflow__badge span {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
}

.workflow__heading {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.workflow__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9, #38BDF8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workflow__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

.workflow__steps {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  width: 100%;
}

.wf-step {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.wf-step__card {
  width: 100%;
  background: rgba(10, 25, 47, 0.90);
  border: 1px solid rgba(100, 255, 218, 0.08);
  border-radius: 20px;
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  position: relative;
  cursor: default;
  transition: transform 0.30s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.30s ease, border-color 0.30s ease, background 0.30s ease;
}

.wf-step__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(100, 255, 218, 0.22);
  border-color: rgba(100, 255, 218, 0.30);
  background: rgba(14, 38, 64, 0.95);
}

.wf-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #020C1B;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wf-step__card:hover .wf-step__num {
  transform: scale(1.12);
}

.wf-step__num--1 {
  background: linear-gradient(135deg, #64FFDA, #38BDF8);
}

.wf-step__num--2 {
  background: linear-gradient(135deg, #38BDF8, #0EA5E9);
}

.wf-step__num--3 {
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
}

.wf-step__num--4 {
  background: linear-gradient(135deg, #0D9488, #64FFDA);
}

.wf-step__num--5 {
  background: linear-gradient(135deg, #64FFDA, #0D9488);
}

.wf-step__num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wf-step__card:hover .wf-step__num--1::after {
  border-color: rgba(100, 255, 218, 0.45);
  box-shadow: 0 0 14px rgba(100, 255, 218, 0.4);
}

.wf-step__card:hover .wf-step__num--2::after {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.wf-step__card:hover .wf-step__num--3::after {
  border-color: rgba(14, 165, 233, 0.45);
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.4);
}

.wf-step__card:hover .wf-step__num--4::after {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 0 14px rgba(13, 148, 136, 0.4);
}

.wf-step__card:hover .wf-step__num--5::after {
  border-color: rgba(100, 255, 218, 0.45);
  box-shadow: 0 0 14px rgba(100, 255, 218, 0.4);
}

.wf-step__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wf-step__icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.wf-step__card:hover .wf-step__icon {
  transform: scale(1.18) translateY(-3px);
}

.wf-step[data-step="1"] .wf-step__icon img, .wf-step[data-step="2"] .wf-step__icon img, .wf-step[data-step="3"] .wf-step__icon img, .wf-step[data-step="4"] .wf-step__icon img, .wf-step[data-step="5"] .wf-step__icon img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.wf-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.wf-step__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

.wf-step__arrow {
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wf-step__arrow svg {
  display: block;
  overflow: visible;
}

@keyframes connectorPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(0)
  }

  50% {
    opacity: 0.85;
    transform: translateX(4px)
  }
}

.wf-step__arrow svg {
  animation: connectorPulse 1.8s ease-in-out infinite;
}

@keyframes wfFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes wfBadgePop {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(-8px)
  }

  70% {
    transform: scale(1.06)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes wfCardRise {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes wfNumDrop {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.6)
  }

  70% {
    transform: translateY(4px) scale(1.08)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes wfIconBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg)
  }

  60% {
    transform: scale(1.18) rotate(5deg)
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }
}

@keyframes wfArrowDraw {
  from {
    opacity: 0;
    transform: translateX(-6px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes wfTitleFade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes wfDescFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.workflow__badge, .workflow__heading, .workflow__sub, .wf-step__card, .wf-step__num, .wf-step__icon, .wf-step__title, .wf-step__desc {
  opacity: 0
}

.wf-step__arrow svg {
  opacity: 0
}

.workflow.in-view .workflow__badge {
  animation: wfBadgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards
}

.workflow.in-view .workflow__heading {
  animation: wfFadeUp 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards
}

.workflow.in-view .workflow__sub {
  animation: wfFadeUp 0.55s ease 0.30s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__card {
  animation: wfCardRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.20s forwards
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__card {
  animation: wfCardRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__card {
  animation: wfCardRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__card {
  animation: wfCardRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards
}

.workflow.in-view .wf-step[data-step="5"] .wf-step__card {
  animation: wfCardRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.68s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__num {
  animation: wfNumDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.48s forwards
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__num {
  animation: wfNumDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.58s forwards
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__num {
  animation: wfNumDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.68s forwards
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__num {
  animation: wfNumDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.78s forwards
}

.workflow.in-view .wf-step[data-step="5"] .wf-step__num {
  animation: wfNumDrop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.88s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__icon {
  animation: wfIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.58s forwards
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__icon {
  animation: wfIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.68s forwards
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__icon {
  animation: wfIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.78s forwards
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__icon {
  animation: wfIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.88s forwards
}

.workflow.in-view .wf-step[data-step="5"] .wf-step__icon {
  animation: wfIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.98s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__title {
  animation: wfTitleFade 0.45s ease 0.68s forwards
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__title {
  animation: wfTitleFade 0.45s ease 0.78s forwards
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__title {
  animation: wfTitleFade 0.45s ease 0.88s forwards
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__title {
  animation: wfTitleFade 0.45s ease 0.98s forwards
}

.workflow.in-view .wf-step[data-step="5"] .wf-step__title {
  animation: wfTitleFade 0.45s ease 1.08s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__desc {
  animation: wfDescFade 0.5s ease 0.78s forwards
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__desc {
  animation: wfDescFade 0.5s ease 0.88s forwards
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__desc {
  animation: wfDescFade 0.5s ease 0.98s forwards
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__desc {
  animation: wfDescFade 0.5s ease 1.08s forwards
}

.workflow.in-view .wf-step[data-step="5"] .wf-step__desc {
  animation: wfDescFade 0.5s ease 1.18s forwards
}

.workflow.in-view .wf-step[data-step="1"] .wf-step__arrow svg {
  animation: wfArrowDraw 0.4s ease 0.90s forwards, connectorPulse 1.8s ease-in-out 1.35s infinite
}

.workflow.in-view .wf-step[data-step="2"] .wf-step__arrow svg {
  animation: wfArrowDraw 0.4s ease 1.00s forwards, connectorPulse 1.8s ease-in-out 1.45s infinite
}

.workflow.in-view .wf-step[data-step="3"] .wf-step__arrow svg {
  animation: wfArrowDraw 0.4s ease 1.10s forwards, connectorPulse 1.8s ease-in-out 1.55s infinite
}

.workflow.in-view .wf-step[data-step="4"] .wf-step__arrow svg {
  animation: wfArrowDraw 0.4s ease 1.20s forwards, connectorPulse 1.8s ease-in-out 1.65s infinite
}

@media(max-width:1280px) {
  .workflow__inner {
    padding: 0 40px
  }

  .workflow__heading {
    font-size: 46px
  }

  .wf-step__card {
    padding: 30px 18px 28px
  }

  .wf-step__arrow {
    width: 32px
  }
}

@media(max-width:1024px) {
  .workflow__inner {
    padding: 0 28px;
    gap: 52px
  }

  .workflow__heading {
    font-size: 40px
  }

  .wf-step__num {
    width: 44px;
    height: 44px;
    font-size: 18px
  }

  .wf-step__title {
    font-size: 16px
  }

  .wf-step__desc {
    font-size: 13px
  }

  .wf-step__card {
    padding: 26px 14px 24px;
    gap: 16px
  }

  .wf-step__arrow {
    width: 28px
  }

  .wf-step__icon img {
    width: 32px;
    height: 32px
  }
}

@media(max-width:768px) {
  .workflow {
    padding: 80px 0 90px
  }

  .workflow__inner {
    padding: 0 24px;
    gap: 44px
  }

  .workflow__heading {
    font-size: 36px
  }

  .workflow__steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%
  }

  .wf-step {
    display: contents
  }

  .wf-step__arrow {
    display: none
  }

  .wf-step__card {
    padding: 28px 20px 26px;
    gap: 16px
  }

  .wf-step[data-step="5"] .wf-step__card {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    width: 100%
  }
}

@media(max-width:480px) {
  .workflow {
    padding: 64px 0 72px
  }

  .workflow__inner {
    padding: 0 16px;
    gap: 36px
  }

  .workflow__heading {
    font-size: 30px
  }

  .workflow__sub {
    font-size: 14px
  }

  .workflow__steps {
    grid-template-columns: 1fr
  }

  .wf-step[data-step="5"] .wf-step__card {
    grid-column: span 1;
    max-width: 100%
  }

  .wf-step__card {
    padding: 24px 20px
  }

  .wf-step__num {
    width: 40px;
    height: 40px;
    font-size: 17px
  }
}

/* ══════════════════════════════
   ADVANTAGE
══════════════════════════════ */
.advantage {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--dark);
  padding: 110px 0 120px;
  overflow: hidden;
}

.advantage::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.advantage__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.advantage__left {
  flex: 0 0 auto;
  width: 560px;
}

.advantage__img-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/4.2;
}

.advantage__img-wrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.advantage__quality-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 16, 30, 0.80);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.advantage__quality-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #64FFDA, #0EA5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage__quality-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.advantage__quality-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.advantage__quality-title {
  font-family: Afacad, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.advantage__quality-sub {
  font-family: Afacad, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.50);
}

.advantage__quality-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}

.advantage__quality-stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.advantage__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.advantage__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 8px 20px;
  width: fit-content;
}

.advantage__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.advantage__badge span {
  font-family: Afacad, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
}

.advantage__heading {
  font-family: Afacad, sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0;
}

.advantage__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.advantage__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advantage__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid rgba(100, 255, 218, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  cursor: default;
}

.advantage__item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(100, 255, 218, 0.18);
  border-color: rgba(100, 255, 218, 0.25);
  background: rgba(14, 38, 64, 0.92);
}

.advantage__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.advantage__item:hover .advantage__item-icon {
  transform: scale(1.10) rotate(-4deg);
}

.advantage__item-icon--purple {
  background: rgba(100, 255, 218, 0.10);
  border: 1px solid rgba(100, 255, 218, 0.20);
}

.advantage__item-icon--green {
  background: rgba(14, 165, 233, 0.10);
  border: 1px solid rgba(14, 165, 233, 0.20);
}

.advantage__item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.advantage__item-icon--purple img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.advantage__item-icon--green img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(60%) saturate(500%) hue-rotate(180deg) brightness(110%);
}

.advantage__item-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.advantage__item-title {
  font-family: Afacad, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.advantage__item-desc {
  font-family: Afacad, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

@keyframes advFadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes advSlideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes advBadgePop {
  0% {
    opacity: 0;
    transform: scale(0.72) translateY(-8px)
  }

  70% {
    transform: scale(1.06)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes advItemSlide {
  from {
    opacity: 0;
    transform: translateX(32px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes advCardRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes advGradientShift {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.advantage__left, .advantage__badge, .advantage__heading, .advantage__item, .advantage__quality-card {
  opacity: 0
}

.advantage__quality-stars img {
  opacity: 0
}

.advantage.in-view .advantage__left {
  animation: advSlideLeft 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards
}

.advantage.in-view .advantage__quality-card {
  animation: advCardRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards
}

.advantage.in-view .advantage__quality-stars img:nth-child(1) {
  animation: advBadgePop 0.40s cubic-bezier(0.34, 1.56, 0.64, 1) 0.72s forwards
}

.advantage.in-view .advantage__quality-stars img:nth-child(2) {
  animation: advBadgePop 0.40s cubic-bezier(0.34, 1.56, 0.64, 1) 0.80s forwards
}

.advantage.in-view .advantage__quality-stars img:nth-child(3) {
  animation: advBadgePop 0.40s cubic-bezier(0.34, 1.56, 0.64, 1) 0.88s forwards
}

.advantage.in-view .advantage__quality-stars img:nth-child(4) {
  animation: advBadgePop 0.40s cubic-bezier(0.34, 1.56, 0.64, 1) 0.96s forwards
}

.advantage.in-view .advantage__quality-stars img:nth-child(5) {
  animation: advBadgePop 0.40s cubic-bezier(0.34, 1.56, 0.64, 1) 1.04s forwards
}

.advantage.in-view .advantage__badge {
  animation: advBadgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s forwards
}

.advantage.in-view .advantage__heading {
  animation: advFadeUp 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards
}

.advantage.in-view .advantage__heading-gradient {
  animation: advGradientShift 4s linear 0.9s infinite
}

.advantage.in-view .advantage__item:nth-child(1) {
  animation: advItemSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards
}

.advantage.in-view .advantage__item:nth-child(2) {
  animation: advItemSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.47s forwards
}

.advantage.in-view .advantage__item:nth-child(3) {
  animation: advItemSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.59s forwards
}

.advantage.in-view .advantage__item:nth-child(4) {
  animation: advItemSlide 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.71s forwards
}

@media(max-width:1280px) {
  .advantage__inner {
    padding: 0 40px;
    gap: 60px
  }

  .advantage__left {
    width: 480px
  }

  .advantage__heading {
    font-size: 46px
  }
}

@media(max-width:1024px) {
  .advantage {
    padding: 90px 0 100px
  }

  .advantage__inner {
    padding: 0 32px;
    gap: 44px
  }

  .advantage__left {
    width: 400px
  }

  .advantage__heading {
    font-size: 40px
  }

  .advantage__item {
    padding: 18px 20px;
    gap: 16px
  }

  .advantage__item-title {
    font-size: 16px
  }

  .advantage__item-desc {
    font-size: 13.5px
  }
}

@media(max-width:768px) {
  .advantage {
    padding: 80px 0 90px
  }

  .advantage__inner {
    flex-direction: column;
    padding: 0 24px;
    gap: 52px
  }

  .advantage__left {
    width: 100%;
    max-width: 520px;
    margin: 0 auto
  }

  .advantage__heading {
    font-size: 36px
  }

  .advantage__list {
    gap: 12px
  }

  .advantage__item {
    padding: 16px 18px
  }

  .advantage__quality-card {
    padding: 16px 20px
  }
}

@media(max-width:480px) {
  .advantage {
    padding: 64px 0 72px
  }

  .advantage__inner {
    padding: 0 18px;
    gap: 40px
  }

  .advantage__heading {
    font-size: 30px
  }

  .advantage__item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px
  }

  .advantage__item-icon img {
    width: 20px;
    height: 20px
  }

  .advantage__item-title {
    font-size: 15px
  }

  .advantage__item-desc {
    font-size: 13px
  }
}

/* ══════════════════════════════
   STATSMAP
══════════════════════════════ */
.statsmap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background: var(--dark);
}

.statsmap__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.statsmap__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.40;
}

.statsmap__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.statsmap__card {
  border: 1px solid rgba(100, 255, 218, 0.10);
  border-radius: 18px;
  padding: 10px 36px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
  cursor: default;
}

.statsmap__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.50);
  border-color: rgba(100, 255, 218, 0.22);
  background: rgba(14, 38, 64, 0.88);
}

.statsmap__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.statsmap__card:hover .statsmap__icon {
  transform: scale(1.18) rotate(-5deg);
}

.statsmap__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

img.statsmap__icon--blue {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

img.statsmap__icon--purple {
  filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(500%) hue-rotate(165deg) brightness(110%);
}

img.statsmap__icon--cyan {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

img.statsmap__icon--teal {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.statsmap__number {
  font-family: Afacad, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -1px;
  margin: 0;
}

.statsmap__label {
  font-family: Afacad, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

@keyframes smCardRise {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes smIconBounce {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-20deg)
  }

  65% {
    transform: scale(1.25) rotate(6deg)
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg)
  }
}

@keyframes smNumFade {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes smLabelFade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.statsmap__card, .statsmap__icon, .statsmap__number, .statsmap__label {
  opacity: 0
}

.statsmap.in-view .statsmap__card:nth-child(1) {
  animation: smCardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards
}

.statsmap.in-view .statsmap__card:nth-child(2) {
  animation: smCardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards
}

.statsmap.in-view .statsmap__card:nth-child(3) {
  animation: smCardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.31s forwards
}

.statsmap.in-view .statsmap__card:nth-child(4) {
  animation: smCardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.44s forwards
}

.statsmap.in-view .statsmap__card:nth-child(1) .statsmap__icon {
  animation: smIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.38s forwards
}

.statsmap.in-view .statsmap__card:nth-child(2) .statsmap__icon {
  animation: smIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.51s forwards
}

.statsmap.in-view .statsmap__card:nth-child(3) .statsmap__icon {
  animation: smIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.64s forwards
}

.statsmap.in-view .statsmap__card:nth-child(4) .statsmap__icon {
  animation: smIconBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.77s forwards
}

.statsmap.in-view .statsmap__card:nth-child(1) .statsmap__number {
  animation: smNumFade 0.50s ease 0.52s forwards
}

.statsmap.in-view .statsmap__card:nth-child(2) .statsmap__number {
  animation: smNumFade 0.50s ease 0.65s forwards
}

.statsmap.in-view .statsmap__card:nth-child(3) .statsmap__number {
  animation: smNumFade 0.50s ease 0.78s forwards
}

.statsmap.in-view .statsmap__card:nth-child(4) .statsmap__number {
  animation: smNumFade 0.50s ease 0.91s forwards
}

.statsmap.in-view .statsmap__card:nth-child(1) .statsmap__label {
  animation: smLabelFade 0.45s ease 0.66s forwards
}

.statsmap.in-view .statsmap__card:nth-child(2) .statsmap__label {
  animation: smLabelFade 0.45s ease 0.79s forwards
}

.statsmap.in-view .statsmap__card:nth-child(3) .statsmap__label {
  animation: smLabelFade 0.45s ease 0.92s forwards
}

.statsmap.in-view .statsmap__card:nth-child(4) .statsmap__label {
  animation: smLabelFade 0.45s ease 1.05s forwards
}

@media(max-width:1280px) {
  .statsmap__inner {
    padding: 0 40px;
    gap: 16px
  }

  .statsmap__number {
    font-size: 44px
  }
}

@media(max-width:1024px) {
  .statsmap {
    padding: 80px 0
  }

  .statsmap__inner {
    padding: 0 28px;
    gap: 14px
  }

  .statsmap__card {
    padding: 38px 24px 34px;
    gap: 14px
  }

  .statsmap__number {
    font-size: 38px
  }

  .statsmap__label {
    font-size: 14px
  }
}

@media(max-width:768px) {
  .statsmap {
    padding: 64px 0
  }

  .statsmap__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
    gap: 14px
  }

  .statsmap__card {
    padding: 32px 20px 28px;
    gap: 12px;
    border-radius: 16px
  }

  .statsmap__number {
    font-size: 36px;
    letter-spacing: -0.5px
  }
}

@media(max-width:480px) {
  .statsmap {
    padding: 52px 0
  }

  .statsmap__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
    gap: 12px
  }

  .statsmap__card {
    padding: 26px 16px 24px;
    gap: 10px;
    border-radius: 14px
  }

  .statsmap__icon img {
    width: 28px;
    height: 28px
  }

  .statsmap__icon {
    width: 32px;
    height: 32px
  }

  .statsmap__number {
    font-size: 30px
  }

  .statsmap__label {
    font-size: 13px
  }
}

/* ══════════════════════════════
   IMPACT
══════════════════════════════ */
.impact {
  position: relative;
  width: 100%;
  background: var(--dark);
  padding: 110px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.impact::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.impact__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
}

.impact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.impact__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 8px 20px;
}

.impact__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.impact__badge span {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
}

.impact__heading {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.5px;
  max-width: 680px;
  text-align: center;
}

.impact__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  text-align: center;
}

.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  align-items: start;
}

.impact__dashboard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #030E1C;
  border: 1px solid rgba(100, 255, 218, 0.10);
  display: flex;
  flex-direction: column;
}

.impact__dash-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.impact__dash-footer {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.impact__dash-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.impact__dash-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.impact__dash-bar-wrap {
  width: calc(100% - 56px);
  height: 5px;
  background: rgba(100, 255, 218, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 0 28px 22px;
}

.impact__dash-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.impact.in-view .impact__dash-bar {
  width: 97.3%;
}

.impact__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feat-card {
  background: var(--light);
  border: 1px solid rgba(100, 255, 218, 0.08);
  border-radius: 20px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: default;
  transition: transform 0.30s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.30s ease, border-color 0.30s ease, background 0.30s ease;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(100, 255, 218, 0.18);
  border-color: rgba(100, 255, 218, 0.25);
  background: rgba(14, 38, 64, 0.95);
}

.feat-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.feat-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.feat-card--rt .feat-card__icon {
  background: rgba(100, 255, 218, 0.10);
}

.feat-card--rt .feat-card__icon img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.feat-card--mu .feat-card__icon {
  background: rgba(14, 165, 233, 0.12);
}

.feat-card--mu .feat-card__icon img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(500%) hue-rotate(185deg) brightness(115%);
}

.feat-card--dd .feat-card__icon {
  background: rgba(100, 255, 218, 0.10);
}

.feat-card--dd .feat-card__icon img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.feat-card--ce .feat-card__icon {
  background: rgba(13, 148, 136, 0.15);
}

.feat-card--ce .feat-card__icon img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(60%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.feat-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.feat-card__desc {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.70;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(-8px)
  }

  70% {
    transform: scale(1.05)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.impact__badge, .impact__heading, .impact__sub, .impact__dashboard, .feat-card {
  opacity: 0
}

.impact.in-view .impact__badge {
  animation: badgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards
}

.impact.in-view .impact__heading {
  animation: fadeUp 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards
}

.impact.in-view .impact__sub {
  animation: fadeUp 0.55s ease 0.30s forwards
}

.impact.in-view .impact__heading-gradient {
  animation: gradientShift 5s linear 0.8s infinite
}

.impact.in-view .impact__dashboard {
  animation: slideLeft 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards
}

.impact.in-view .feat-card:nth-child(1) {
  animation: slideRight 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards
}

.impact.in-view .feat-card:nth-child(2) {
  animation: slideRight 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.52s forwards
}

.impact.in-view .feat-card:nth-child(3) {
  animation: slideRight 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.62s forwards
}

.impact.in-view .feat-card:nth-child(4) {
  animation: slideRight 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.72s forwards
}

@media(max-width:1280px) {
  .impact__inner {
    padding: 0 40px
  }

  .impact__heading {
    font-size: 48px
  }
}

@media(max-width:1024px) {
  .impact__inner {
    padding: 0 28px;
    gap: 56px
  }

  .impact__heading {
    font-size: 42px
  }

  .impact__grid {
    gap: 18px
  }

  .feat-card {
    padding: 26px 22px 24px
  }
}

@media(max-width:860px) {
  .impact__grid {
    grid-template-columns: 1fr
  }

  .impact__features {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .impact {
    padding: 72px 0 80px
  }

  .impact__inner {
    padding: 0 20px;
    gap: 44px
  }

  .impact__heading {
    font-size: 34px
  }

  .impact__features {
    grid-template-columns: 1fr
  }
}

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.cta {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 60px;
  z-index: 1;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #020C1B;
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 60%, rgba(100, 255, 218, 0.12) 0%, transparent 65%), radial-gradient(ellipse 55% 65% at 80% 40%, rgba(14, 165, 233, 0.10) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 50% 100%, rgba(13, 148, 136, 0.10) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(100, 255, 218, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 900px;
  width: 100%;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(100, 255, 218, 0.07);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 9px 22px;
}

.cta__badge img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.cta__badge span {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 0.01em;
}

.cta__heading {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  letter-spacing: -1px;
}

.cta__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #38BDF8, #0EA5E9);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  color: var(--navy);
  font-family: Afacad, sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  padding: 20px 52px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 8px;
  letter-spacing: 0.01em;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, opacity 0.25s ease;
  box-shadow: 0 4px 24px rgba(100, 255, 218, 0.25);
}

.cta__btn:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 16px 48px rgba(100, 255, 218, 0.35);
  opacity: 0.92;
}

@keyframes btnRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.cta__badge, .cta__heading, .cta__sub, .cta__btn {
  opacity: 0
}

.cta.in-view .cta__badge {
  animation: badgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards
}

.cta.in-view .cta__heading {
  animation: fadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards
}

.cta.in-view .cta__sub {
  animation: fadeUp 0.55s ease 0.34s forwards
}

.cta.in-view .cta__btn {
  animation: btnRise 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.48s forwards
}

.cta.in-view .cta__heading-gradient {
  animation: gradientShift 5s linear 0.8s infinite
}

@media(max-width:1024px) {
  .cta__heading {
    font-size: 56px
  }

  .cta {
    padding: 100px 48px
  }
}

@media(max-width:768px) {
  .cta {
    padding: 80px 28px
  }

  .cta__heading {
    font-size: 44px;
    letter-spacing: -0.5px
  }

  .cta__sub {
    font-size: 15px
  }

  .cta__btn {
    padding: 18px 40px;
    font-size: 16px
  }
}

@media(max-width:480px) {
  .cta {
    padding: 64px 20px
  }

  .cta__heading {
    font-size: 34px
  }

  .cta__btn {
    padding: 16px 30px;
    font-size: 15px;
    border-radius: 12px
  }
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact {
  position: relative;
  width: 100%;
  background: #040F1E;
  padding: 100px 0 110px;
  overflow: hidden;
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(100, 255, 218, 0.06) 0%, transparent 65%), radial-gradient(ellipse 40% 50% at 85% 30%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: start;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(100, 255, 218, 0.07);
  border: 1px solid rgba(100, 255, 218, 0.20);
  border-radius: 999px;
  padding: 9px 20px;
  width: fit-content;
}

.contact__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.contact__badge span {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--cyan);
}

.contact__heading {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.10;
  letter-spacing: -0.5px;
}

.contact__heading-gradient {
  background: linear-gradient(90deg, #64FFDA, #38BDF8, #0EA5E9);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.70;
  max-width: 420px;
  margin-top: -10px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.info-card:hover {
  transform: translateX(6px);
  border-color: rgba(100, 255, 218, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);
}

.info-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(100, 255, 218, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.info-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.info-card__val {
  font-size: 14px;
  font-weight: 400;
  color: rgba(204, 214, 246, 0.72);
}

.contact__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.__cf_email__ {
  text-decoration: none;
  color: var(--cyan);
}

.social-btn {
  width: 46px;
  height: 46px;
  background: rgba(100, 255, 218, 0.05);
  border: 1px solid rgba(100, 255, 218, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-btn:hover {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.35);
  transform: translateY(-3px) scale(1.08);
}

.social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.contact__form-card {
  background: var(--form-bg);
  border: 1px solid var(--form-border);
  border-radius: 24px;
  padding: 44px 40px 40px;
}

.form__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(204, 214, 246, 0.72);
  letter-spacing: 0.01em;
}

.form__input, .form__select, .form__textarea {
  width: 100%;
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: Afacad, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(204, 214, 246, 0.28);
}

.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--field-focus);
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.10);
}

.form__select-wrap {
  position: relative;
}

.form__select {
  cursor: pointer;
  color: rgba(204, 214, 246, 0.35);
}

.form__select.has-value {
  color: var(--text);
}

.form__select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(100,255,218,0.45)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.form__textarea {
  resize: none;
  height: 130px;
  line-height: 1.6;
}

.form__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #64FFDA, #0EA5E9);
  border: none;
  border-radius: 14px;
  padding: 18px 24px;
  font-family: Afacad, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, opacity 0.25s ease;
  box-shadow: 0 4px 24px rgba(100, 255, 218, 0.20);
  margin-top: 4px;
}

.form__submit img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0);
  flex-shrink: 0;
}

.form__submit:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(100, 255, 218, 0.30);
}

.form__submit:active:not(:disabled) {
  transform: translateY(-1px);
}

.form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form__status {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px 0 0;
  min-height: 20px;
  transition: opacity 0.3s ease;
}

.form__status--success {
  color: var(--cyan);
}

.form__status--error {
  color: #f87171;
}

.contact__badge, .contact__heading, .contact__sub, .info-card, .contact__socials, .contact__form-card {
  opacity: 0
}

.contact.in-view .contact__badge {
  animation: badgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s forwards
}

.contact.in-view .contact__heading {
  animation: slideLeft 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards
}

.contact.in-view .contact__sub {
  animation: slideLeft 0.55s ease 0.28s forwards
}

.contact.in-view .info-card:nth-child(1) {
  animation: slideLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards
}

.contact.in-view .info-card:nth-child(2) {
  animation: slideLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards
}

.contact.in-view .info-card:nth-child(3) {
  animation: slideLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards
}

.contact.in-view .contact__socials {
  animation: fadeUp 0.50s ease 0.66s forwards
}

.contact.in-view .contact__form-card {
  animation: slideRight 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards
}

.contact.in-view .contact__heading-gradient {
  animation: gradientShift 5s linear 0.8s infinite
}

#service_intrested option {
    color: #000;
}

@media(max-width:1100px) {
  .contact__inner {
    padding: 0 40px;
    gap: 44px
  }

  .contact__heading {
    font-size: 44px
  }
}

@media(max-width:900px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px
  }

  .contact__heading {
    font-size: 40px
  }

  .contact__form-card {
    padding: 36px 28px 32px
  }
}

@media(max-width:600px) {
  .contact {
    padding: 72px 0 80px
  }

  .contact__inner {
    padding: 0 20px
  }

  .contact__heading {
    font-size: 34px
  }

  .form__row {
    grid-template-columns: 1fr
  }

  .contact__form-card {
    padding: 28px 20px 26px
  }
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  position: relative;
  width: 100%;
  background: var(--footer-bg);
  padding: 72px 0 0;
  overflow: hidden;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.25), transparent);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer__tagline {
  font-size: 15px;
  font-weight: 400;
  color: var(--footer-muted);
  line-height: 1.75;
  max-width: 260px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__links li {
  display: flex;
  align-items: center;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: var(--footer-link);
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.22s ease, gap 0.22s ease;
  position: relative;
}

.footer__links a::before {
  content: '›';
  font-size: 17px;
  color: var(--cyan);
  opacity: 0.70;
  flex-shrink: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer__links a:hover {
  color: var(--footer-link-hv);
  gap: 14px;
}

.footer__links a:hover::before {
  transform: translateX(3px);
  opacity: 1;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 22px;
  width: 0%;
  height: 1px;
  background: var(--cyan);
  transition: width 0.28s ease;
}

.footer__links a:hover::after {
  width: calc(100% - 22px);
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(80%) saturate(500%) hue-rotate(130deg) brightness(110%);
}

.footer__contact-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--footer-link);
  line-height: 1.55;
  text-decoration: none;
  transition: color 0.22s ease;
}

a.footer__contact-text:hover {
  color: var(--cyan);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: var(--footer-border);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__legal a {
  font-size: 14px;
  font-weight: 400;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer__legal a:hover {
  color: var(--white);
}

.footer__logo {
  background: linear-gradient(90deg, #CCD6F6 30%, #64FFDA 50%, #CCD6F6 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeUp2 {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn2 {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes dividerExpand {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

@keyframes linkSlideIn {
  from {
    opacity: 0;
    transform: translateX(-12px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes contactSlideIn {
  from {
    opacity: 0;
    transform: translateX(12px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes topGlowPulse {
  0%, 100% {
    opacity: 0.5
  }

  50% {
    opacity: 1
  }
}

.footer__brand, .footer__col, .footer__divider, .footer__bottom, .footer__links li, .footer__contact-item {
  opacity: 0
}

.footer.in-view::before {
  animation: topGlowPulse 3s ease-in-out infinite
}

.footer.in-view .footer__brand {
  animation: fadeUp2 0.60s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards
}

.footer.in-view .footer__col:nth-child(2) {
  animation: fadeUp2 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards
}

.footer.in-view .footer__col:nth-child(3) {
  animation: fadeUp2 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards
}

.footer.in-view .footer__col:nth-child(4) {
  animation: fadeUp2 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.30s forwards
}

.footer.in-view .footer__col:nth-child(2) .footer__links li:nth-child(1) {
  animation: linkSlideIn 0.40s ease 0.28s forwards
}

.footer.in-view .footer__col:nth-child(2) .footer__links li:nth-child(2) {
  animation: linkSlideIn 0.40s ease 0.36s forwards
}

.footer.in-view .footer__col:nth-child(2) .footer__links li:nth-child(3) {
  animation: linkSlideIn 0.40s ease 0.44s forwards
}

.footer.in-view .footer__col:nth-child(2) .footer__links li:nth-child(4) {
  animation: linkSlideIn 0.40s ease 0.52s forwards
}

.footer.in-view .footer__col:nth-child(3) .footer__links li:nth-child(1) {
  animation: linkSlideIn 0.40s ease 0.34s forwards
}

.footer.in-view .footer__col:nth-child(3) .footer__links li:nth-child(2) {
  animation: linkSlideIn 0.40s ease 0.42s forwards
}

.footer.in-view .footer__col:nth-child(3) .footer__links li:nth-child(3) {
  animation: linkSlideIn 0.40s ease 0.50s forwards
}

.footer.in-view .footer__col:nth-child(3) .footer__links li:nth-child(4) {
  animation: linkSlideIn 0.40s ease 0.58s forwards
}

.footer.in-view .footer__col:nth-child(4) .footer__contact-item:nth-child(1) {
  animation: contactSlideIn 0.42s ease 0.38s forwards
}

.footer.in-view .footer__col:nth-child(4) .footer__contact-item:nth-child(2) {
  animation: contactSlideIn 0.42s ease 0.48s forwards
}

.footer.in-view .footer__col:nth-child(4) .footer__contact-item:nth-child(3) {
  animation: contactSlideIn 0.42s ease 0.58s forwards
}

.footer.in-view .footer__divider {
  transform-origin: center;
  animation: dividerExpand 0.70s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards
}

.footer.in-view .footer__bottom {
  animation: fadeIn2 0.50s ease 0.70s forwards
}

@media(max-width:1100px) {
  .footer__inner {
    padding: 0 40px
  }

  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px
  }
}

@media(max-width:900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px
  }

  .footer__brand {
    grid-column: span 2
  }
}

@media(max-width:600px) {
  .footer {
    padding: 56px 0 0
  }

  .footer__inner {
    padding: 0 24px
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .footer__brand {
    grid-column: span 1
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px
  }

  .footer__legal {
    gap: 20px;
    flex-wrap: wrap
  }
}