/* =========================================================
   Speed Up TI — "Brutal Precision"
   ========================================================= */

:root {
  --bg: #09090b;
  --surface: #131316;
  --elevated: #1c1c21;
  --border: rgba(255, 255, 255, .06);

  --accent: #4a9eff;
  /* electric blue — match Instagram */
  --accent-dim: #3d7fd8;
  --accent-glow: rgba(74, 158, 255, .07);

  --text: #f0eff4;
  --text-2: #a1a1aa;
  --text-3: #8b8b94;

  --font-h: 'Inter', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 14px;
}

/* --- Reset ------------------------------------------------ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dim) transparent
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px
}

/* --- Focus states (a11y) ---------------------------------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px
}

body::-webkit-scrollbar {
  width: 6px
}

body::-webkit-scrollbar-thumb {
  background: var(--accent-dim);
  border-radius: 99px
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%
}

/* --- Noise grain overlay ---------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: .4;
  mix-blend-mode: overlay
}

/* --- Progress --------------------------------------------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #e0bbff, var(--accent));
  z-index: 10001;
  transition: width .1s linear
}

/* --- Container -------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

.section {
  padding: 7rem 0
}

.section--alt {
  background: var(--surface)
}

/* --- Header ----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background .3s, backdrop-filter .3s
}

.header.scrolled {
  background: rgba(9, 9, 11, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center
}

.logo__img {
  height: 32px;
  width: auto
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-size: .9rem
}

.nav a {
  color: var(--text-3);
  transition: color .2s;
  position: relative
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -.25rem;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .3s var(--ease)
}

.nav a:hover {
  color: var(--text)
}

.nav a:hover::after {
  width: 100%
}

.nav__cta {
  padding: .45rem 1.1rem;
  border: 1px solid var(--accent-dim);
  color: var(--accent) !important;
  border-radius: 6px;
  font-family: var(--font-m);
  font-size: .8rem;
  transition: all .25s;
  box-shadow: 0 0 15px rgba(74, 158, 255, .08)
}

.nav__cta::after {
  display: none
}

.nav__cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  box-shadow: 0 0 25px rgba(74, 158, 255, .25)
}

.menu-toggle {
  display: none;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 6px
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 3rem;
  overflow: hidden
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%)
}

.hero__spotlight {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 158, 255, .08), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .08s, top .08s;
  filter: blur(60px);
  z-index: 0
}

/* Ambient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 158, 255, .07), transparent 65%);
  filter: blur(80px);
  animation: orb-drift 18s ease-in-out infinite;
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .05), transparent 65%);
  filter: blur(80px);
  animation: orb-drift 22s ease-in-out infinite reverse;
  pointer-events: none
}

@keyframes orb-drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(30px, -40px) scale(1.08)
  }

  66% {
    transform: translate(-20px, 30px) scale(.94)
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.hero__tag {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .85rem;
  background: var(--accent-glow);
  border: 1px solid rgba(74, 158, 255, .15);
  border-radius: 99px
}

.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: tag-pulse 2s ease-in-out infinite
}

@keyframes tag-pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(74, 158, 255, .4)
  }

  50% {
    opacity: .6;
    box-shadow: 0 0 0 6px rgba(74, 158, 255, 0)
  }
}

/* --- Logo hover ------------------------------------------- */
.logo {
  transition: opacity .2s
}

.logo:hover {
  opacity: .8
}

.hero__title {
  font-family: var(--font-h);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 2rem
}

.hero__line {
  display: block;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  opacity: 0;
  transform: translateY(40px);
  animation: line-in .8s var(--ease) forwards
}

.hero__line:nth-child(2) {
  animation-delay: .15s
}

.hero__line:nth-child(3) {
  animation-delay: .3s
}

.hero__line--muted {
  color: var(--text-3);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem)
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #e0bbff, var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@keyframes line-in {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0
}

/* --- Hero code block -------------------------------------- */
.hero__code {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  animation: code-in 1s var(--ease) .6s forwards;
  pointer-events: none
}

.hero__code-bar {
  height: 28px;
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border)
}

.hero__code-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.hero__code-bar span:nth-child(1) {
  background: #ff5f57
}

.hero__code-bar span:nth-child(2) {
  background: #ffbd2e
}

.hero__code-bar span:nth-child(3) {
  background: #28c840
}

.hero__code-bar em {
  font-style: normal;
  font-family: var(--font-m);
  font-size: .6rem;
  color: var(--text-3);
  margin-left: auto
}

.hero__code pre {
  margin: 0;
  padding: 1.25rem;
  font-family: var(--font-m);
  font-size: .75rem;
  line-height: 1.8;
  color: var(--text-2);
  overflow: hidden
}

.hero__code pre .kw {
  color: var(--accent)
}

.hero__code pre .fn {
  color: #e0bbff
}

.hero__code pre .str {
  color: #7dd3fc
}

.hero__code pre .cm {
  color: var(--text-3)
}

.hero__code pre .op {
  color: var(--text-3)
}

@keyframes code-in {
  to {
    opacity: .7
  }
}

/* --- Scroll indicator ------------------------------------- */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  opacity: .4;
  transition: opacity .3s
}

.hero__scroll:hover {
  opacity: .7
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text-3);
  border-radius: 11px;
  position: relative
}

.hero__scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite
}

@keyframes scroll-dot {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
  }

  50% {
    opacity: .3;
    transform: translateX(-50%) translateY(8px)
  }
}

.hero__scroll-text {
  font-family: var(--font-m);
  font-size: .6rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .12em
}

.hero__stats {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 3rem;
  margin-top: auto;
  padding-top: 4rem
}

.hero__stat {
  display: flex;
  flex-direction: column
}

.hero__stat-val {
  font-family: var(--font-m);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text)
}

.hero__stat-lbl {
  font-size: .75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .15rem
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .3s var(--ease)
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  position: relative;
  overflow: hidden
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent), #e0bbff, var(--accent));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity .4s
}

.btn--primary:hover {
  box-shadow: 0 0 40px rgba(74, 158, 255, .35), 0 0 80px rgba(74, 158, 255, .1);
  transform: translateY(-2px)
}

.btn--primary:hover::before {
  opacity: 1
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
  position: relative;
  overflow: hidden
}

.btn--ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(74, 158, 255, .03));
  opacity: 0;
  transition: opacity .3s
}

.btn--ghost:hover {
  border-color: var(--accent-dim);
  color: var(--text);
  box-shadow: 0 0 20px rgba(74, 158, 255, .06)
}

.btn--ghost:hover::after {
  opacity: 1
}

.btn--full {
  width: 100%;
  justify-content: center
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem
}

/* --- Marquee ---------------------------------------------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1rem 0;
  background: var(--surface);
  position: relative
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent)
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--surface), transparent)
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: scroll-x 25s linear infinite;
  width: max-content;
  will-change: transform
}

.marquee__track span {
  font-family: var(--font-m);
  font-size: .85rem;
  color: var(--text-3);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color .3s
}

.marquee:hover .marquee__track span {
  color: var(--accent-dim)
}

.marquee:hover .marquee__track {
  animation-play-state: paused
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%)
  }
}

/* --- Section titles --------------------------------------- */
.section__title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  padding-top: .75rem
}

.section__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px
}

.section__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #e0bbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* section ambient orb */
.section {
  position: relative
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 158, 255, .18), transparent)
}

/* stagger children */
.bento__card,
.niche,
.work,
.price-card {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .4s, box-shadow .4s
}

.bento__card.is-visible,
.niche.is-visible,
.work.is-visible,
.price-card.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.section__sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.7
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0)
}

/* --- Bento Grid ------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem
}

.bento__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: border-color .4s, transform .15s, box-shadow .4s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden
}

.bento__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(74, 158, 255, .2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s
}

.bento__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(74, 158, 255, .03), transparent);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none
}

.bento__card:hover {
  border-color: rgba(74, 158, 255, .18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(74, 158, 255, .04)
}

.bento__card:hover::before {
  opacity: 1
}

.bento__card:hover::after {
  opacity: 1
}

.bento__number {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: .08em
}

.bento__card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.25
}

.bento__card p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: .95rem
}

.bento__list {
  list-style: none;
  margin-top: 1.25rem;
  padding: 0
}

.bento__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .5rem;
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.5
}

.bento__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-dim)
}

/* --- Niche Cards ------------------------------------------ */
.niches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem
}

.niche {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color .4s, transform .3s, box-shadow .4s;
  position: relative
}

.niche:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 158, 255, .2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 30px rgba(74, 158, 255, .06)
}

.niche::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(74, 158, 255, .2), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none
}

.niche:hover::before {
  opacity: 1
}

.niche__head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1rem
}

.niche__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(74, 158, 255, .08);
  border: 1px solid rgba(74, 158, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .4s
}

.niche:hover .niche__icon-wrap {
  background: rgba(74, 158, 255, .14);
  border-color: rgba(74, 158, 255, .25);
  box-shadow: 0 0 20px rgba(74, 158, 255, .1)
}

.niche__head svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: filter .4s, transform .3s
}

.niche:hover .niche__head svg {
  filter: drop-shadow(0 0 6px rgba(74, 158, 255, .5));
  transform: scale(1.05)
}

.niche__head h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700
}

.niche ul {
  list-style: none;
  margin-bottom: 1.25rem;
  flex-grow: 1
}

.niche ul li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: .35rem;
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.5
}

.niche ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-dim)
}

.niche__cta {
  font-family: var(--font-b);
  font-size: .82rem;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(74, 158, 255, .25);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  min-height: 44px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-weight: 600;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 2
}

.niche__cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(74, 158, 255, .25)
}

.niche__cta svg {
  color: currentColor
}

/* --- Works / Portfolio ------------------------------------ */
.works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.work {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: all .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden
}

.work::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(74, 158, 255, .1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none
}

.work::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none
}

.work:hover {
  border-color: rgba(74, 158, 255, .15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4), 0 0 50px rgba(74, 158, 255, .04);
  transform: translateY(-4px)
}

.work:hover::before {
  opacity: 1
}

.work:hover::after {
  opacity: 1
}

.work__preview {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.work__screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease)
}

.work:hover .work__screenshot {
  transform: scale(1.03)
}

.work__meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 1rem 1.25rem .25rem
}

.work__tag {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--accent-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  flex: 1
}

.work__arrow {
  color: var(--text-3);
  transition: color .3s, transform .3s
}

.work:hover .work__arrow {
  color: var(--accent);
  transform: translate(3px, -3px)
}

.work__name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .35rem;
  padding: 0 1.25rem
}

.work__desc {
  color: var(--text-2);
  line-height: 1.6;
  font-size: .85rem;
  padding: 0 1.25rem 1.25rem
}

.work__badge {
  font-family: var(--font-m);
  font-size: .65rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-right: .5rem
}

.work__badge--live {
  background: rgba(74, 222, 128, .12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .2)
}

.work__badge--result {
  background: rgba(74, 158, 255, .1);
  color: var(--accent);
  border: 1px solid rgba(74, 158, 255, .2)
}

/* --- Pricing ---------------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch
}

.price-card:nth-child(1) {
  grid-column: auto
}

.price-card:nth-child(2) {
  grid-column: auto
}

.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform
}

.price-card:hover {
  border-color: rgba(74, 158, 255, .12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.price-card--featured {
  border-color: rgba(74, 158, 255, .35);
  background: linear-gradient(180deg, rgba(74, 158, 255, .06), var(--bg));
  position: relative
}

.price-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), rgba(139, 92, 246, .3), var(--accent));
  background-size: 200% 200%;
  animation: border-shimmer 4s ease-in-out infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0
}

@keyframes border-shimmer {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

.price-card__badge {
  position: absolute;
  top: -.65rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--bg);
  padding: .3rem .85rem;
  border-radius: 99px;
  font-family: var(--font-m);
  font-size: .7rem;
  font-weight: 700;
  z-index: 1
}

.price-card h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem
}

.price-card__value {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem
}

.price-card__value small {
  font-size: .75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .05em
}

.price-card__value strong {
  font-family: var(--font-h);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text)
}

.price-card__value span {
  font-size: .85rem;
  color: var(--text-3);
  margin-top: .15rem
}

.price-card__parcel {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: .35rem;
  text-transform: none;
  letter-spacing: 0
}

.price-card__sub {
  font-size: .85rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  margin-top: -.5rem
}

.pricing__divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0 .5rem
}

.pricing__divider::before,
.pricing__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent)
}

.pricing__divider span {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--text-3);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap
}

.price-card--maintenance {
  grid-column: 1 / -1
}

.maintenance-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem
}

.mtier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.mtier--mid {
  border-color: rgba(74, 158, 255, .3);
  background: linear-gradient(180deg, rgba(74, 158, 255, .05), var(--surface))
}

.mtier--top {
  border-color: rgba(167, 139, 250, .25);
  background: linear-gradient(180deg, rgba(167, 139, 250, .04), var(--surface))
}

.mtier__badge {
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-m);
  font-size: .6rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 99px;
  white-space: nowrap
}

.mtier__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem
}

.mtier__name {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text)
}

.mtier__price {
  display: flex;
  align-items: baseline;
  gap: .2rem
}

.mtier__price strong {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text)
}

.mtier--mid .mtier__price strong {
  color: var(--accent)
}

.mtier__price span {
  font-size: .75rem;
  color: var(--text-3)
}

.mtier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin: 0
}

.mtier ul li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.4
}

.mtier ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5
}

.mtier--mid ul li::before {
  opacity: 1
}

@media(max-width:768px) {
  .maintenance-tiers {
    grid-template-columns: 1fr
  }
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1
}

.price-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55rem;
  color: var(--text-2);
  font-size: .9rem
}

.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .35em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  border-radius: 0
}

.price-card ul li.disabled {
  opacity: .35;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, .2)
}

.price-card ul li.disabled::before {
  content: '✕';
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border: none;
  transform: none;
  background: none;
  font-size: .7rem;
  color: rgba(255, 80, 80, .6);
  font-weight: 700
}

.price-card ul li.includes-prev {
  padding-left: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: .8rem;
  font-family: var(--font-m);
  letter-spacing: .03em;
  margin-bottom: .75rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(74, 158, 255, .15)
}

.price-card ul li.includes-prev::before {
  display: none
}

/* --- CTA -------------------------------------------------- */
.cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 158, 255, .08), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: cta-glow 6s ease-in-out infinite
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, .06), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  animation: cta-glow 8s ease-in-out infinite reverse
}

.cta__content {
  position: relative;
  z-index: 1
}

.cta__badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--accent);
  border: 1px solid rgba(74, 158, 255, .25);
  background: rgba(74, 158, 255, .06);
  padding: .35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em
}

@keyframes cta-glow {

  0%,
  100% {
    opacity: .7;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.15)
  }
}

.cta__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem
}

.cta__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #e0bbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.cta__sub {
  font-size: 1.05rem;
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 440px
}

.cta__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(74, 158, 255, .15);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.cta__card-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--font-h)
}

.cta__card-header svg {
  color: var(--accent);
  flex-shrink: 0
}

.cta__card-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0
}

.cta__card-divider::before,
.cta__card-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.cta__card-divider span {
  font-size: .75rem;
  color: var(--text-3);
  white-space: nowrap
}

.cta__card-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 1rem
}

.cta__contacts {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  z-index: 1
}

.cta__contact {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-2);
  font-size: .85rem;
  transition: color .3s;
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all .25s var(--ease)
}

.cta__contact svg {
  color: var(--accent-dim);
  flex-shrink: 0
}

.cta__contact:hover {
  color: var(--accent);
  border-color: rgba(74, 158, 255, .12);
  background: rgba(74, 158, 255, .04)
}

.cta__contact:hover svg {
  color: var(--accent)
}

.cta__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border)
}

.cta__trust-item {
  display: flex;
  flex-direction: column;
  gap: .1rem
}

.cta__trust-item strong {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent)
}

.cta__trust-item span {
  font-size: .7rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .04em
}

.cta__trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border)
}

/* --- Footer ----------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 0 0 4.5rem
}

.footer__map {
  margin-bottom: 2rem
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-2);
  padding: 2rem 0
}

.footer__logo {
  display: inline-block;
  margin-bottom: .75rem
}

.footer__desc {
  color: var(--text-2);
  margin-bottom: .5rem;
  font-size: .85rem
}

.footer__address {
  color: var(--text-3);
  font-size: .8rem;
  line-height: 1.6
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  text-align: center;
  align-items: center
}

.footer__links a {
  color: var(--text-3);
  transition: color .2s;
  font-size: .85rem;
  padding: .5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.footer__links a:hover {
  color: var(--accent)
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: var(--text-3)
}

/* --- WhatsApp --------------------------------------------- */
.wpp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 15px rgba(37, 211, 102, .35);
  transition: transform .3s, box-shadow .3s, bottom .4s var(--ease)
}

.wpp svg {
  width: 26px;
  height: 26px
}

.wpp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 25px rgba(37, 211, 102, .5)
}

.wpp--pulse {
  animation: wpp-ring 1s ease-out 3
}

@keyframes wpp-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* --- Floating CTA Bar (time-based) ----------------------- */
.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: .85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 9997;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  font-size: .9rem
}

.float-bar.is-visible {
  transform: translateY(0)
}

.float-bar span {
  color: var(--text-2)
}

.float-bar strong {
  color: var(--text)
}

.float-bar__btn {
  padding: .45rem 1.1rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-family: var(--font-m);
  font-size: .8rem;
  font-weight: 700;
  transition: box-shadow .3s
}

.float-bar__btn:hover {
  box-shadow: 0 0 20px rgba(74, 158, 255, .3)
}

.float-bar__close {
  background: 0;
  border: 0;
  color: var(--text-3);
  font-size: 1.3rem;
  cursor: pointer;
  padding: .25rem .5rem;
  transition: color .2s
}

.float-bar__close:hover {
  color: var(--text)
}

/* --- Social Proof Notification --------------------------- */
.social-proof {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  color: var(--text-2);
  z-index: 9996;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s
}

.social-proof.is-visible {
  transform: translateX(0);
  opacity: 1
}

.social-proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: proof-pulse 1.5s ease-in-out infinite
}

.social-proof strong {
  color: var(--text)
}

@keyframes proof-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)
  }
}

/* --- Modal ------------------------------------------------ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(8px)
}

.modal__box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  transform: translateY(20px) scale(.97);
  transition: transform .4s var(--ease);
  overflow: hidden
}

.modal.is-open .modal__box {
  transform: translateY(0) scale(1)
}

.modal__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(74, 158, 255, .2), transparent)
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: 0;
  border: 0;
  color: var(--text-3);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all .2s
}

.modal__close:hover {
  background: var(--elevated);
  color: var(--text)
}

.modal__header {
  margin-bottom: 1.5rem
}

.modal__tag {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-block;
  margin-bottom: .75rem;
  padding: .2rem .6rem;
  background: var(--accent-glow);
  border: 1px solid rgba(74, 158, 255, .15);
  border-radius: 6px
}

.modal__header h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.modal__header p {
  color: var(--text-2);
  font-size: .95rem
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: .35rem
}

.modal__field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2)
}

.modal__optional {
  color: var(--text-3);
  font-weight: 400
}

.modal__field input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none
}

.modal__field input:focus {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow)
}

.modal__field input[aria-invalid="true"] {
  border-color: #fb7185;
  box-shadow: 0 0 0 3px rgba(251, 113, 133, .12)
}

.modal__field input::placeholder {
  color: var(--text-3)
}

.modal__error {
  display: block;
  min-height: 1rem;
  font-size: .75rem;
  color: #fda4af
}

.modal__submit {
  margin-top: .5rem
}

.modal__trust {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: .5rem
}

.consent-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10002;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(19, 19, 22, .96);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px)
}

.consent-banner[hidden] {
  display: none
}

.consent-banner__content {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  max-width: 760px
}

.consent-banner__title {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text)
}

.consent-banner__text {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-2)
}

.consent-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end
}

.consent-banner__btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: .7rem 1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s
}

.consent-banner__btn:hover {
  border-color: var(--accent-dim);
  color: var(--accent)
}

.consent-banner__btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg)
}

.consent-banner__btn--primary:hover {
  background: #6eb2ff;
  color: var(--bg)
}

/* --- Reveal animation for [data-animate] compat ----------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0)
}

/* --- Bento icons ------------------------------------------ */
.bento__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: filter .4s, transform .3s
}

.bento__card:hover .bento__icon {
  filter: drop-shadow(0 0 10px rgba(74, 158, 255, .5));
  transform: scale(1.1)
}

/* --- Testimonials ----------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .4s, box-shadow .4s
}

.testimonial.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.testimonial:hover {
  border-color: rgba(74, 158, 255, .15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.testimonial__stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: .1em;
  display: flex;
  gap: 2px
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: #facc15
}

.testimonial__text {
  color: var(--text-2);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  position: relative;
  padding-left: 1.5rem
}

.testimonial__text::before {
  content: '\201C';
  position: absolute;
  left: -.25rem;
  top: -.5rem;
  font-size: 3rem;
  font-family: var(--font-h);
  color: var(--accent-dim);
  opacity: .3;
  font-style: normal;
  line-height: 1
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: .15rem
}

.testimonial__name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text)
}

.testimonial__role {
  font-size: .8rem;
  color: var(--text-3)
}

/* --- Portfolio browser bar -------------------------------- */
.work__preview-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: 1
}

.work__preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.work__preview-dot:nth-child(1) {
  background: #ff5f57
}

.work__preview-dot:nth-child(2) {
  background: #ffbd2e
}

.work__preview-dot:nth-child(3) {
  background: #28c840
}

.work__preview-url {
  font-family: var(--font-m);
  font-size: .65rem;
  color: var(--text-3);
  margin-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, .06);
  padding: 2px 8px;
  border-radius: 4px
}

/* --- Footer enhanced -------------------------------------- */

/* --- Pricing featured stronger ---------------------------- */
.price-card--featured:hover {
  border-color: rgba(74, 158, 255, .45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(74, 158, 255, .08)
}

/* --- WPP adjustment when float-bar visible ---------------- */
.wpp.wpp--bar-active {
  bottom: 5rem
}

/* --- Skip link (a11y) ------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--bg);
  padding: .75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 100001;
  transition: top .2s
}

.skip-link:focus {
  top: 0
}

/* =========================================================
   Responsive
   ========================================================= */
@media(max-width:1200px) {
  .hero__code {
    display: none
  }
}

@media(max-width:1024px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .bento__card--wide {
    grid-row: auto
  }

  .pricing {
    grid-template-columns: 1fr 1fr
  }

  .price-card:nth-child(1),
  .price-card:nth-child(2) {
    grid-column: auto
  }

  .testimonials {
    grid-template-columns: 1fr 1fr
  }

  .works {
    grid-template-columns: repeat(2, 1fr)
  }

  .niches {
    grid-template-columns: repeat(2, 1fr)
  }

  .niche:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 1.25rem
  }

  .section {
    padding: 3.5rem 0
  }

  .menu-toggle {
    display: flex
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, .97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.15rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 9998
  }

  .header__inner.open .nav {
    opacity: 1;
    pointer-events: auto
  }

  .header__inner.open .menu-toggle span:first-child {
    transform: rotate(45deg) translate(4px, 4px)
  }

  .header__inner.open .menu-toggle span:last-child {
    transform: rotate(-45deg) translate(4px, -4px)
  }

  .nav a {
    padding: .5rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center
  }

  .nav__cta {
    font-size: .9rem;
    padding: .6rem 1.5rem
  }

  .hero {
    min-height: auto;
    padding: 6rem 1.25rem 2rem
  }

  .hero__line {
    font-size: clamp(2rem, 9vw, 3rem) !important
  }

  .hero__line--muted {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important
  }

  .hero__actions {
    flex-direction: column
  }

  .hero__stats {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem
  }

  .hero__stat {
    align-items: center;
    text-align: center;
    flex: 1
  }

  .niches,
  .pricing {
    grid-template-columns: 1fr
  }

  .niche:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0
  }

  .works {
    grid-template-columns: 1fr;
    gap: 1rem
  }

  .footer {
    padding-bottom: 5.5rem
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center
  }

  .footer__links {
    flex-direction: column;
    gap: .5rem
  }

  .footer__map iframe {
    height: 150px
  }

  .price-card {
    padding: 2rem 1.5rem
  }

  .price-card__value strong {
    font-size: 2.25rem
  }

  .bento__card {
    padding: 2rem 1.5rem
  }

  .wpp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px
  }

  .wpp svg {
    width: 22px;
    height: 22px
  }

  .wpp.wpp--bar-active {
    bottom: 4.5rem
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    text-align: center;
    gap: 2rem
  }

  .cta__sub {
    max-width: none
  }

  .cta__trust {
    justify-content: center;
    gap: .75rem;
    flex-wrap: nowrap
  }

  .cta__trust-item strong {
    font-size: 1.1rem
  }

  .cta__trust-item span {
    font-size: .6rem
  }

  .cta__trust-divider {
    height: 24px
  }

  .testimonials {
    grid-template-columns: 1fr
  }

  .float-bar {
    padding: .6rem 1rem;
    gap: .5rem;
    font-size: .75rem;
    flex-wrap: nowrap;
    align-items: center
  }

  .float-bar span {
    text-align: left;
    flex: 1;
    line-height: 1.3
  }

  .float-bar__btn {
    flex-shrink: 0;
    padding: .4rem .85rem;
    font-size: .75rem
  }

  .float-bar__close {
    padding: .15rem .35rem;
    font-size: 1.1rem
  }

  .consent-banner {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    flex-direction: column;
    align-items: stretch
  }

  .consent-banner__actions {
    justify-content: stretch
  }

  .consent-banner__btn {
    width: 100%
  }

  .hero__scroll {
    display: none
  }

  /* Hide custom scrollbar on mobile */
  html {
    scrollbar-width: none
  }

  body::-webkit-scrollbar {
    display: none
  }

}

/* =========================================================
   Reduced motion
   ========================================================= */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  html {
    scroll-behavior: auto
  }

  .hero__line {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important
  }

  .marquee__track {
    animation: none !important
  }

  [data-reveal],
  [data-animate],
  .bento__card,
  .niche,
  .work,
  .price-card,
  .testimonial {
    opacity: 1 !important;
    transform: none !important
  }

  .hero__title em {
    animation: none !important;
    background-size: 100% !important
  }

  .hero__spotlight,
  .hero::before,
  .hero::after {
    display: none
  }

  .social-proof {
    transition: none !important
  }

  .modal__box {
    transition: none !important
  }

  .wpp--pulse {
    animation: none !important
  }
}

/* --- Hero fallback (no JS / animation fail) --------------- */
@supports not (animation-name: line-in) {
  .hero__line {
    opacity: 1;
    transform: none
  }
}

noscript+.hero .hero__line,
.no-js .hero__line {
  opacity: 1;
  transform: none
}
