/* ═══════════════════════════════════════════════════════════
   ModeOn — main stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS ────────────────────────────────────────────────── */
@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/AllRoundGothic-XLig.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/AllRoundGothic-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/AllRoundGothic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/AllRoundGothic-Demi.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AllRoundGothic";
  src: url("../fonts/AllRoundGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Stolzl (secondary / body) ────────────────────────────── */
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_regular.otf") format("opentype");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/stolzl_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --p1: #6a06d7;
  --p2: #8932fc;
  --p3: #b408f1;
  --p4: #9125c9;
  --p5: #1b0b2d;
  --p6: #020212;
  --p7: #b098e7;
  --g1: #75ee07;
  --g2: #aefe43;
  --g3: #2ed75a;
  --white: #f2f2f2;
  --fd: "AllRoundGothic", "Outfit", "DM Sans", sans-serif;
  --fb: "Stolzl", "DM Sans", "Outfit", sans-serif;
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--p6);
  color: var(--white);
  font-family: var(--fb);
  overflow-x: hidden;
  cursor: none;
}
a {
  text-decoration: none;
  color: inherit;
}
::selection {
  background: var(--p3);
  color: #fff;
}

/* ── CURSOR ───────────────────────────────────────────────── */
#cur-d {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s;
  mix-blend-mode: normal;
}

/* ── LIQUID BUTTONS ───────────────────────────────────────── */
/* GSAP owns the blob (no CSS transition on width/height).
   Text colour flips via CSS transition with a delay timed to the blob
   sweep — no JS race-conditions. */
.liquid-btn {
  position: relative;
  overflow: hidden;
}
.liquid-btn .blob {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
.liquid-btn > *:not(.blob) {
  position: relative;
  z-index: 2;
}
.liquid-btn > span:not(.blob) {
  position: relative;
  z-index: 2;
  transition: color 0.25s ease 0.2s;   /* delay = blob ~halfway across */
}

/* Light-bg buttons — text starts dark, becomes white on hover (purple bg) */
.btn-main > span:not(.blob),
.btn-send > span:not(.blob) {
  color: #020212;
}
.btn-main:hover > span:not(.blob),
.btn-send:hover > span:not(.blob) {
  color: #fff;
}

/* Ghost button — text always white (sits over dark/coloured bg) */
.btn-ghost > span:not(.blob) {
  color: #fff;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 78px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}
nav.scrolled {
  background: rgba(2, 2, 18, 0.85);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(106, 6, 215, 0.22);
  height: 66px;
}
nav.hidden {
  transform: translateY(-110%);
}

/* When menu is open: nav stays visible but goes transparent
   so it doesn't cover the big menu headlines */
body.menu-open nav,
body.menu-open nav.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  transform: translateY(0) !important; /* force-show even if 'hidden' */
}
.nlogo {
  display: flex;
  align-items: center;
  z-index: 2;
}
.nlogo img {
  height: 30px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
nav.scrolled .nlogo img {
  height: 26px;
}

.nright {
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 2;
}

/* lang switch */
.lang-switch {
  background: transparent;
  border: none;
  padding: 6px 0;
  cursor: none;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.lang-switch:hover {
  color: #fff;
}
.lang-switch .lang-active {
  color: #fff;
}
.lang-switch .lang-sep {
  opacity: 0.4;
}

/* burger */
.burger {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.burger:hover {
  border-color: var(--p3);
  background: rgba(180, 8, 241, 0.08);
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.25s,
    background 0.25s;
}
.burger:hover span {
  background: var(--p7);
}
body.menu-open .burger span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ── SIDE MENU OVERLAY ───────────────────────────────────── */
.sidemenu {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.55s; /* delay hide until close anim ends */
}
.sidemenu.open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.sm-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 80% at 100% 0%,
      rgba(180, 8, 241, 0.4) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 70% at 0% 100%,
      rgba(106, 6, 215, 0.18) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, #1a0a2e 0%, #0d0524 100%);
  clip-path: circle(0% at calc(100% - 80px) 56px);
  transition: clip-path 0.55s cubic-bezier(0.83, 0, 0.17, 1); /* close: snappy */
}
.sidemenu.open .sm-bg {
  clip-path: circle(160% at calc(100% - 80px) 56px);
  transition: clip-path 0.85s cubic-bezier(0.83, 0, 0.17, 1); /* open: slower reveal */
}
.sm-inner {
  position: relative;
  width: 100%;
  height: 100%;
  /* fixed top — labels always clear the close button (78px nav + buffer) */
  padding: 120px 80px 60px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;             /* scroll inside menu if content > viewport */
  overscroll-behavior: contain; /* prevent body-scroll chaining */
  opacity: 0;
  transition: opacity 0.25s ease; /* close: fast fade */
}
.sm-inner::-webkit-scrollbar { display: none; }
.sm-inner { scrollbar-width: none; }
.sidemenu.open .sm-inner {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
} /* open: delayed */

.sm-link {
  display: flex;
  align-items: baseline;
  gap: 32px;
  align-self: flex-end;           /* right-aligned on desktop */
  flex-shrink: 0;
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.25s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 0;
}
.sm-link:hover {
  color: var(--p7);
  transform: translateX(-18px);
}
.sm-num {
  font-family: var(--fb);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
}
.sm-link:hover .sm-num {
  color: var(--p3);
}

.sm-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;             /* push footer to bottom when there's room */
  flex-shrink: 0;               /* never squeeze the footer */
}
.sm-foot-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sm-foot-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s;
}
.sm-foot-col a:hover {
  color: var(--p7);
}
.sm-foot-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}
.sm-foot-label::before {
  content: "[ ";
}
.sm-foot-label::after {
  content: " ]";
}
.sm-tag {
  font-size: 11px;
  color: var(--p7);
  letter-spacing: 0.18em;
  margin-top: 4px;
}

/* Tablet / mid-desktop — labels were colliding with footer columns ~1200–1450px */
@media (max-width: 1450px) and (min-width: 901px) {
  .sm-inner {
    padding: 110px 56px 50px;
  }
  .sm-link {
    font-size: clamp(44px, 5.5vw, 80px);
  }
  .sm-foot {
    gap: 36px;
    padding-top: 28px;
  }
  .sm-foot-col a {
    font-size: 14px;
  }
}

body.menu-open {
  overflow: hidden;
}

/* ═══ HERO ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

/* brighter purple gradient — like brand keyart */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #1a0a2e 0%,
    #2d0e4f 30%,
    #5510a8 65%,
    #7820e0 100%
  );
}
.hero-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  height:100vh
}

.hero-content {
  position: relative;
  z-index: 10;
}
.hero-h1 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.hero-h1 .w1 {
  display: block;
  color: #fff;
}
.hero-h1 .w2 {
  display: block;
  color: #fff;
}
.hero-h1 .w3 {
  display: inline-block;
  color: var(--p7); /* light purple text */
  position: relative;
}
.hero-h1 .w3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 0.11em;
  background: var(--p3); /* hot purple underline */
  border-radius: 0;
}

.hero-dot {
  display: block;
  font-family: var(--fd);
  font-size: clamp(56px, 9.5vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.12);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 60px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.btn-main {
  padding: 18px 44px;
  background: #fff;
  border: none;
  border-radius: 100px;
  color: #020212;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.2s;
}

.btn-ghost {
  padding: 18px 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: #fff;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: none;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.2s;
  backdrop-filter: blur(8px);
}

/* ═══ ABOUT — GREEN SECTION (toxic green theme) ══════════════ */
.about {
  position: relative;
  overflow: hidden;
  padding: 120px 80px;
  background: var(--g1); /* toxic green */
  color: #042222; /* dark green-black text */
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 100% 0%,
      rgba(174, 254, 67, 0.55) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 0% 100%,
      rgba(46, 215, 90, 0.4) 0%,
      transparent 55%
    );
}
.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #042222;
  margin-bottom: 20px;
  display: block;
  opacity: 0.6;
}
.about-left .sec-label::before {
  content: "[ ";
}
.about-left .sec-label::after {
  content: " ]";
}
.about-big {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: #020212;
}
.about-big .accent {
  color: #020212;
  position: relative;
  display: inline-block;
}
.about-big .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.1em;
  background: #0c753d; /* deep green underline */
  border-radius: 0;
}
.accent-line {
  width: 64px;
  height: 3px;
  background: #020212;
  margin-bottom: 36px;
}

.about-right p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(4, 34, 34, 0.85);
  margin-bottom: 20px;
}
.about-right p strong {
  color: #020212;
  font-weight: 600;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  padding: 8px 20px;
  border: 1px solid rgba(4, 34, 34, 0.35);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #042222;
  transition: all 0.25s;
  background: transparent;
}
.tag:hover {
  border-color: #020212;
  color: #020212;
  background: rgba(4, 34, 34, 0.08);
}

/* ═══ SERVICES ═══════════════════════════════════════════════ */
.svc-section {
  position: relative;
  padding: 100px 11vw;          /* horizontal padding shrinks to 0 on scroll */
  background: var(--p6);
  overflow: hidden;
}
.svc-wrap {
  /* full width of section's inner-box; section's padding controls "card" inset */
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #14082b 0%, #0a0420 100%);
  border: 1px solid rgba(106, 6, 215, 0.18);
  border-radius: 28px;
  overflow: hidden;
  will-change: border-radius;
}
.services-header {
  padding: 70px 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.svc-counter {
  font-family: var(--fb);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.svc-counter span {
  color: var(--p7);
  font-weight: 700;
}
.services-h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.services-h2 em {
  font-style: normal;
  color: var(--p7); /* light purple text */
  position: relative;
  display: inline-block;
}
.services-h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.1em;
  background: var(--p2); /* vivid purple underline */
  border-radius: 0;
}

.svc-list {
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  padding: 32px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.35s;
  cursor: none;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(106, 6, 215, 0.18),
    rgba(180, 8, 241, 0.08)
  );
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.svc-row:hover::before {
  transform: translateX(0);
}
.svc-row:hover {
  background: rgba(27, 11, 45, 0.5);
}
.svc-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
  z-index: 1;
}
.svc-row:hover .svc-num {
  color: var(--p7);
}
.svc-center {
  z-index: 1;
}
.svc-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.svc-row:hover .svc-title {
  color: var(--p7);
}
.svc-desc {
  font-size: 15px;
  color: rgba(242, 242, 242, 0.5);
  line-height: 1.6;
  max-width: 560px;
  transition: color 0.3s;
}
.svc-row:hover .svc-desc {
  color: rgba(242, 242, 242, 0.8);
}
.svc-arrow {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.35s;
  flex-shrink: 0;
  z-index: 1;
  color: #fff;
}
.svc-row:hover .svc-arrow {
  border-color: var(--p3);
  background: var(--p3);
  color: #fff;
  transform: rotate(45deg);
}

/* ═══ STATS ══════════════════════════════════════════════════ */
.stats {
  padding: 80px 80px 90px;
  background: linear-gradient(
    135deg,
    var(--p3) 0%,
    var(--p1) 40%,
    #643fd4 100%
  );
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "✦";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--fd);
  font-size: 320px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}
.stats-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.stat {
  text-align: center;
  padding: 60px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat:last-child {
  border-right: none;
}
.stat-n {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
.stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ═══ COMING SOON ════════════════════════════════════════════ */
.cs {
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cs-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 0% 50%,
      rgba(106, 6, 215, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 100% 30%,
      rgba(180, 8, 241, 0.1) 0%,
      transparent 55%
    ),
    var(--p6);
}
.cs-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cs-card {
  border: 1px solid rgba(106, 6, 215, 0.25);
  border-radius: 28px;
  padding: 100px 80px;
  text-align: center;
  background: rgba(27, 11, 45, 0.3);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.cs-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(180, 8, 241, 0.25),
    rgba(106, 6, 215, 0.08),
    rgba(137, 50, 252, 0.2)
  );
  z-index: 0;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  padding: 1px;
}
.cs-star {
  font-family: var(--fd);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    135deg,
    rgba(180, 8, 241, 0.6),
    rgba(137, 50, 252, 0.35)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
  position: relative;
  z-index: 1;
}
.cs-card h3 {
  font-family: var(--fd);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cs-card p {
  font-size: 17px;
  color: rgba(242, 242, 242, 0.6);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cs-card p strong {
  color: var(--p7);
}

/* ═══ PROCESS — GREEN SECTION (dark forest theme) ════════════ */
.process {
  padding: 100px 0;
  background: linear-gradient(180deg, #062f35 0%, #042222 100%);
  border-top: 1px solid rgba(117, 238, 7, 0.12);
  overflow: hidden;
  position: relative;
  color: #fff;
}
.process-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}
.process-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}
.process-h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.04em;
  color: #fff;
}
.process-h2 em {
  font-style: normal;
  color: var(--g1);
  position: relative;
  display: inline-block;
}
.process-h2 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.1em;
  background: #aefe43; /* light green underline */
  border-radius: 0;
}

/* override the shared .sec-label color inside process */
.process .sec-label {
  color: var(--g1);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(117, 238, 7, 0.18);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(4, 34, 34, 0.4);
}
.pstep {
  padding: 52px 40px;
  border-right: 1px solid rgba(117, 238, 7, 0.14);
  position: relative;
  transition: background 0.4s;
}
.pstep:last-child {
  border-right: none;
}
.pstep:hover {
  background: rgba(117, 238, 7, 0.06);
}
.pstep-num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--g1);
  margin-bottom: 32px;
  display: block;
}
.pstep-title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.pstep-body {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242, 242, 242, 0.6);
}
.pstep-dot {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--g1);
  border-radius: 50%;
}

/* ═══ CONTACT ════════════════════════════════════════════════ */
.contact {
  padding: 100px 80px 120px;
  perspective: 1200px;
}
.contact-card {
  transform-origin: center bottom;
  will-change: transform, opacity;
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, #b408f1 0%, #781ad1 45%, #643fd4 100%);
  border-radius: 32px;
  padding: 80px 100px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contact-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  opacity: 0.3;
}

.contact-left {
  position: relative;
  z-index: 1;
}
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  display: block;
}
.contact-label::before {
  content: "[ ";
}
.contact-label::after {
  content: " ]";
}
.contact-h2 {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(30px, 3.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 44px;
}
.cinfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.crow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}
.cicn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.25s;
}
.crow:hover .cicn {
  background: rgba(255, 255, 255, 0.25);
}

.contact-right {
  position: relative;
  z-index: 1;
}
.form-glass {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
}
.ff {
  margin-bottom: 20px;
}
.ff input,
.ff textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--fb);
  font-size: 15px;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s;
}
.ff input::placeholder,
.ff textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.ff input:focus,
.ff textarea:focus {
  border-color: #fff;
}
.ff textarea {
  resize: none;
  height: 76px;
}
/* matches .btn-main visually: pill, same paddings */
.btn-send {
  width: 100%;
  padding: 18px 44px;
  background: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.2s;
  margin-top: 8px;
}

/* ═══ FOOTER ═════════════════════════════════════════════════ */
footer {
  padding: 40px 80px;
  border-top: 1px solid rgba(106, 6, 215, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.flogo {
  display: flex;
  align-items: center;
}
.flogo img {
  height: 24px;
  width: auto;
  display: block;
}
.fcopy {
  font-size: 12px;
  color: rgba(242, 242, 242, 0.35);
  letter-spacing: 0.06em;
}
.flinks {
  display: flex;
  gap: 28px;
}
.flinks a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 242, 242, 0.35);
  transition: color 0.2s;
}
.flinks a:hover {
  color: var(--p7);
}

/* SECTION LABEL shared — default = purple for purple sections */
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--p7);
  margin-bottom: 20px;
  display: block;
}
.sec-label::before {
  content: "[ ";
}
.sec-label::after {
  content: " ]";
}

/* ═══ MOBILE ═════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
    height: 64px;
  }
  nav.scrolled {
    height: 58px;
  }
  .nright {
    gap: 16px;
  }
  .burger {
    width: 42px;
    height: 42px;
  }
  .sm-inner {
    padding: 100px 28px 40px;
  }
  .sm-link {
    align-self: flex-start;           /* left side on mobile */
    font-size: clamp(36px, 10vw, 60px);
    line-height: 1.05;
    gap: 14px;
    padding: 12px 0;                  /* fatter padding = visible spacing between links */
  }
  .sm-num {
    font-size: 11px;
  }
  .sm-foot {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sm-bg {
    clip-path: circle(0% at calc(100% - 42px) 32px);
  }
  .sidemenu.open .sm-bg {
    clip-path: circle(160% at calc(100% - 42px) 32px);
  }
  .hero {
    padding: 100px 20px 70px;
  }
  .about {
    padding: 80px 24px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .svc-section {
    padding: 60px 4vw;
  }
  .svc-wrap {
    border-radius: 20px;
  }
  .services-header {
    padding: 50px 24px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .svc-row {
    padding: 24px 24px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  .svc-arrow {
    display: none;
  }
  .stats {
    padding: 60px 24px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 40px 16px;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .cs {
    padding: 80px 24px;
  }
  .cs-card {
    padding: 60px 28px;
  }
  .process {
    padding: 80px 0;
  }
  .process-inner {
    padding: 0 24px;
  }
  .process-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .pstep {
    border-right: none;
    border-bottom: 1px solid rgba(106, 6, 215, 0.2);
  }
  .pstep:last-child {
    border-bottom: none;
  }
  .contact {
    padding: 40px 16px;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 48px 28px;
    gap: 40px;
  }
  footer {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
