/*
Theme Name: My Theme
Author: Piotr Wawrzeńczyk
Version: 1.0
*/
:root {
  --bg-950: #0e0619;
  --bg-900: #150a28;
  --bg-850: #1a0f32;
  --bg-800: #211440;
  --card: #1d1236;
  --card-hover: #251a47;
  --purple-600: #7c4dff;
  --purple-500: #9366ff;
  --violet-400: #b18cff;
  --mint-400: #5fe9bc;
  --mint-300: #93f5d6;
  --mint-glow: rgba(95, 233, 188, 0.35);
  --white: #ffffff;
  --text-primary: #f4f1fb;
  --text-muted: #a79bc9;
  --text-dim: #7b6e9e;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max-width: 1350px;
  --navbar-width: 1500px;
  --text-paragraph: 16.5px;
  --text-sm: 14px;
  --text-lg: 18px;
  --text-xl: 20px;
}

*:not(ul) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-950);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
.display {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}
.mono {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

::selection {
  background: var(--mint-400);
  color: var(--bg-950);
}

:focus-visible {
  outline: 2px solid var(--mint-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- NOISE + AMBIENT BG ---------- */
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
}
.ambient .b1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle,
    rgba(124, 77, 255, 0.55),
    transparent 70%
  );
  top: -220px;
  left: -160px;
  animation: driftA 26s ease-in-out infinite;
}
.ambient .b2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(95, 233, 188, 0.3), transparent 70%);
  top: 10%;
  right: -180px;
  animation: driftB 22s ease-in-out infinite;
}
.ambient .b3 {
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(147, 102, 255, 0.3),
    transparent 70%
  );
  bottom: -160px;
  left: 30%;
  animation: driftC 30s ease-in-out infinite;
}
@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 80px) scale(1.1);
  }
}
@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-70px, 50px) scale(0.95);
  }
}
@keyframes driftC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.08);
  }
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}
/* ---------- SOCIAL MEDIA ICONS ---------- */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--line);
  color: var(--text-muted);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.social-link svg {
  width: 22px;
  height: 22px;
}
.social-link:hover {
  color: var(--bg-950);
  background: var(--mint-400);
  border-color: var(--mint-400);
  transform: translateY(-2px);
  box-shadow: 0 0 14px var(--mint-glow);
}
/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--purple-600), var(--mint-400));
  width: 0%;
  z-index: 200;
  box-shadow: 0 0 12px var(--mint-glow);
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 6, 25, 0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--navbar-width);
  margin: 0 auto;
  transition: padding 0.3s ease;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .nav-social {
    display: none;
  }
}
header.scrolled nav {
  padding: 13px 32px;
}
.logo {
  width: 220px;
}

.logo .dot {
  color: var(--mint-400);
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: var(--text-lg);
  font-weight: 500;
}
.nav-links a {
  font-weight: 900;
  position: relative;
  padding: 4px 0;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-glow);
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE MENU PANEL ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 32px;
  border-top: 1px solid transparent;
  background: rgba(14, 6, 25, 0.85);
  backdrop-filter: blur(18px);
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
}
.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  padding: 24px 32px 32px;
  border-top: 1px solid var(--line);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu-links a {
  color: var(--text-muted);
}
.mobile-menu-links a:hover {
  color: var(--white);
}
.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu-cta {
  align-self: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 77, 255, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(124, 77, 255, 0.75);
}
.btn-mint {
  background: var(--mint-400);
  color: var(--bg-950);
  box-shadow: 0 8px 24px -8px rgba(95, 233, 188, 0.5);
  z-index: 10;
}
.btn-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(95, 233, 188, 0.7);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--mint-400);
  color: var(--mint-300);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---------- HERO ---------- */
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 233, 188, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(95, 233, 188, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(95, 233, 188, 0);
  }
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 700;
  margin-bottom: 26px;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--mint-300), var(--mint-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline svg {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 14px;
  overflow: visible;
}
.hero h1 .underline svg path {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 1.4s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 46px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-950);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}
.avatars span:first-child {
  margin-left: 0;
}
.trust-row .txt {
  font-size: 13.5px;
  color: var(--text-dim);
}
.trust-row .txt strong {
  color: var(--text-primary);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  transform: scale(0.86);
  animation: spin 40s linear infinite;
}
@keyframes spin {
  to {
    transform: scale(0.86) rotate(360deg);
  }
}

.post-card {
  position: absolute;
  width: 280px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(6px);
}
.post-card .thumb {
  height: 190px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.post-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 60%
  );
  background-size: 220% 100%;
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen {
  0% {
    background-position: 120% 0;
  }
  50% {
    background-position: -40% 0;
  }
  100% {
    background-position: -40% 0;
  }
}
.post-card .body {
  padding: 14px 16px 16px;
}
.post-card .row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.post-card .avatar-sm {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--purple-600);
}
.post-card .handle {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.post-card .cap {
  height: 6px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  margin-bottom: 6px;
}
.post-card .cap.w60 {
  width: 60%;
}
.post-card .cap.w80 {
  width: 80%;
}
.post-card .stats {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-dim);
  align-items: center;
}
.post-card .stats .num {
  font-weight: 600;
  color: var(--mint-300);
}
.post-card.c1 {
  top: -20px;
  left: 10px;
  rotate: -7deg;
  animation-delay: 0s;
  z-index: 2;
}
.post-card.c1 .thumb {
  background: linear-gradient(135deg, #9366ff, #5a2cd1);
}
.post-card.c2 {
  top: 160px;
  right: 0px;
  rotate: 6deg;
  animation-delay: 1.2s;
  z-index: 3;
}
.post-card.c2 .thumb {
  background: linear-gradient(135deg, #5fe9bc, #1f9e77);
}
.post-card.c3 {
  bottom: 0px;
  left: 80px;
  rotate: -3deg;
  animation-delay: 2.4s;
  z-index: 1;
}
.post-card.c3 .thumb {
  background: linear-gradient(135deg, #3a1e6b, #7c4dff);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.badge-float {
  position: absolute;
  background: var(--white);
  color: var(--bg-950);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 20px 44px -12px rgba(0, 0, 0, 0.6);
  z-index: 4;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0.6s;
  top: 80px;
  right: 30px;
}
.badge-float .arrow {
  color: var(--purple-600);
  font-weight: 700;
}

.pulse-line {
  position: absolute;
  bottom: 60px;
  left: -10px;
  width: 200px;
  z-index: 1;
  opacity: 0.9;
}
.pulse-line path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-line 2.4s 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---------- SECTION GENERIC ---------- */
section {
  scroll-margin-top: 50px;
  padding: 120px 0;
}
@media (max-width: 825px) {
  section {
    scroll-margin-top: 350px;
  }
}
.alt-bg {
  background: var(--bg-900);
}
.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.eyebrow-line {
  text-transform: uppercase;
}

.section-head .eyebrow-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mint-300);
  margin-bottom: 18px;
}
.section-head .eyebrow-line::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--mint-400);
  box-shadow: 0 0 8px var(--mint-glow);
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}
.section-head p {
  font-size: var(--text-paragraph);
  color: var(--text-muted);
  line-height: 1.6;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-stagger.in > *:nth-child(1) {
  transition-delay: 0.02s;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.09s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.23s;
}
.reveal-stagger.in > *:nth-child(5) {
  transition-delay: 0.3s;
}
.reveal-stagger.in > *:nth-child(6) {
  transition-delay: 0.37s;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 56px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(95, 233, 188, 0.25);
  border-color: rgba(95, 233, 188, 0.35);
  background: var(--card-hover);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(124, 77, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--violet-400);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: rgba(95, 233, 188, 0.16);
  color: var(--mint-300);
  transform: rotate(-6deg) scale(1.06);
}
.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--white);
}
.service-card p {
  font-size: var(--text-paragraph);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- PROCESS ---------- */
.process-steps-wrapper {
  display: flex;
  justify-content: center;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(var(--steps-count, 5), minmax(140px, 220px));
  gap: 16px;

  margin: auto;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.process-steps .progress-line {
  position: absolute;
  top: 22px;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-600), var(--mint-400));
  box-shadow: 0 0 10px var(--mint-glow);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.process-steps.in .progress-line {
  width: 100%;
}
.step {
  position: relative;
}
.step .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-950);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  color: var(--mint-400);
  font-weight: 600;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.process-steps.in .step .num {
  background: var(--mint-400);
  color: var(--bg-950);
  border-color: var(--mint-400);
  box-shadow: 0 0 18px var(--mint-glow);
}
.step h3 {
  font-size: var(--text-xl);
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--white);
}
.step p {
  font-size: var(--text-paragraph);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- RESULTS ---------- */
.results {
  background: linear-gradient(160deg, var(--bg-850), #2a1858 120%);
  position: relative;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.result {
  text-align: left;
  border-left: 1px solid var(--line-strong);
  padding-left: 22px;
  transition: border-color 0.3s ease;
}
.result:hover {
  border-color: var(--mint-400);
}
.result .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--mint-400);
  margin-bottom: 6px;
  display: block;
  text-shadow: 0 0 30px var(--mint-glow);
}
.result .lbl {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 110px;
  line-height: 0.6;
  color: var(--mint-400);
  margin-bottom: 10px;
  display: block;
  text-shadow: 0 0 40px var(--mint-glow);
}
.testimonial-wrap blockquote {
  font-size: 26px;
  line-height: 1.48;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 28px;
  font-family: "Space Grotesk", sans-serif;
}
.author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author .av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--mint-400));
}
.author .name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.author .role {
  font-size: 13.5px;
  color: var(--text-muted);
}

.mini-metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mini-metric {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.mini-metric:hover {
  border-color: rgba(95, 233, 188, 0.35);
  transform: translateX(4px);
}
.mini-metric .lbl {
  font-size: 14px;
  color: var(--text-muted);
}
.mini-metric .val {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  font-size: 18px;
  color: var(--violet-400);
}
.mini-metric .val.mint {
  color: var(--mint-300);
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(180deg, var(--bg-850), #150a28);
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(95, 233, 188, 0.2), transparent 70%);
  top: -140px;
  right: -90px;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(
    circle,
    rgba(124, 77, 255, 0.25),
    transparent 70%
  );
  bottom: -140px;
  left: -80px;
}
.cta-section h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 16px;
  position: relative;
}
.cta-description {
  color: var(--text-muted);
  font-size: var(--text-paragraph);
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  max-width: 420px;
}
.cta-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 26px;
  position: relative;
}
.cta-form .field {
  margin-bottom: 14px;
}
.cta-form p {
  width: 100%;
}
.cta-form label {
  display: inline-block;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.cta-form textarea {
  height: 100px;
}
.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--mint-400);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--text-dim);
}
.cta-form button {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}
.wpcf7-list-item label input {
  margin-top: 4px;
  width: 24px;
}
iframe {
  width: 100% !important;
}
/* ---------- FOOTER ---------- */
footer {
  padding: 70px 0 36px;
}
.footer-logo {
  width: 200px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 64px;
  width: 100%;
  margin-bottom: 32px;
}
.footer-section-name {
  display: block;
  /* font-family: "JetBrains Mono", monospace; */
  font-weight: 900;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}
.footer-contact-data {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  /* font-family: "JetBrains Mono", sans-serif; */
  color: #fff;
  line-height: 1.25;
  transition: color 0.2s ease;
}
.footer-contact-data:hover {
  color: var(--mint-300);
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-btn {
  margin-top: 20px;
}
.footer-brand hr {
  width: 100%;
  height: 1px;
  align-self: center;
  border-color: var(--line);
}

.footer-cols {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--mint-300);
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-legal-link:hover {
  color: var(--mint-400);
}
.socials {
  display: flex;
  gap: 14px;
}

.policy-content {
  margin-top: 32px;
  margin-left: 25px;
}
.policy-content ol li {
  list-style-position: inside;
}
.policy-header {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 16px;
}
.policy-section {
  padding: 80px 0;
}
.policy-main-point-space {
  margin-bottom: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    height: 440px;
    margin-top: 20px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .process-steps::before,
  .process-steps .progress-line {
    display: none;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }
  .cta-section {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    border-radius: 24px;
  }
}

@media (max-width: 825px) {
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}

@media (max-width: 680px) {
  .lead {
    font-size: 16px;
  }
  .wrap {
    padding: 0 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 60px;
  }
  section {
    padding: 80px 0;
  }

  .hero-ctas {
    justify-content: center;
  }
  .post-card {
    width: 180px;
  }
  .post-card .thumb {
    height: 120px;
  }
  .post-card.c3 {
    left: 40px;
  }
  .footer-cols {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
  .orbit-ring {
    display: none;
  }
  .logo {
    width: 150px;
  }
  .footer-brand {
    gap: 32px;
  }
  .footer-logo {
    width: 180px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
