/* ============================================================
   MUDASSIR CREATIONS — PORTFOLIO WEBSITE
   Stylesheet (style.css)
   ============================================================
   TABLE OF CONTENTS
   ------------------------------------------------------------
   1.  Reset & Root Variables (color/spacing tokens)
   2.  Custom Cursor
   3.  Navigation Bar + Mobile Menu
   4.  Hero Section
   5.  Marquee (scrolling skill ticker)
   6.  Shared Section Styles (titles, eyebrows, scroll-reveal)
   7.  About Section
   8.  Services Section
   9.  Portfolio Section (active grid: WP site cards + logo grid)
   9b. [UNUSED / LEGACY] Old portfolio grid + bento layout
       -> kept only because these class names are still referenced
          in earlier prototypes; nothing in index.html currently
          uses .pf-bento / .pf-item / .pf-img-box / .pf-ov / .pf-badge.
          Safe to delete once confirmed unused, but left untouched
          here since no functional changes were requested.
   10. Process Section (4-step workflow)
   11. Counters Section
   12. Testimonials Slider
   13. Contact Section (info cards + form)
   14. Footer
   15. Back-to-top Button
   16. Responsive Media Queries
   ============================================================ */

/* ── RESET & ROOT ── */
*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #04040A;
  --s1: #070710;
  --s2: #0A0A16;
  --s3: #0D0D1C;
  --s4: #101020;
  --v: #A78BFA;
  --vl: #C4B5FD;
  --vd: rgba(167,139,250,0.12);
  --vb: rgba(167,139,250,0.20);
  --w: #F0EEF8;
  --w2: #D0CEDC;
  --w3: #A0A0B8;
  --m: #606078;
  --m2: #484860;
  --br: #14141E;
  --br2: rgba(167,139,250,0.18);
  --r: 8px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--w);
  font-family: 'DM Sans',sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
* {
  cursor: none!important;
}

/* ── CURSOR ── */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--v);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width .25s,height .25s,background .25s;
  mix-blend-mode: screen;
}
#curf {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(167,139,250,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s,height .3s,border-color .3s;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 28px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}
#nav.sc {
  background: rgba(4,4,10,.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 16px 7%;
  border-bottom: 1px solid var(--br);
}
.nl {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--w);
}
.nl span {
  color: var(--v);
}
.nm {
  display: flex;
  align-items: center;
  gap: 40px;
}
/* FIXED: nav links always visible, brighter, bigger */
.nl-a {
  font-size: 13px;
  font-weight: 500;
  color: var(--w2);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .25s;
  position: relative;
  padding-bottom: 4px;
}
.nl-a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--v);
  transition: width .3s;
}
.nl-a:hover {
  color: var(--w);
}
.nl-a:hover::after {
  width: 100%;
}
.nc {
  padding: 11px 30px;
  background: var(--vd);
  border: 1.5px solid var(--br2);
  color: var(--vl);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: .3s;
}
.nc:hover {
  background: rgba(167,139,250,.22);
  box-shadow: 0 0 30px rgba(167,139,250,.2);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
}
.hbg span {
  width: 26px;
  height: 1.5px;
  background: var(--w2);
  display: block;
  transition: .3s;
}
.mob {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(4,4,10,.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mob.open {
  display: flex;
}
.mob-x {
  position: absolute;
  top: 28px;
  right: 7%;
  color: var(--m);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  cursor: pointer;
}
.mob-a {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 56px;
  letter-spacing: 4px;
  color: var(--m2);
  transition: .25s;
}
.mob-a:hover {
  color: var(--v);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 7% 100px;
  position: relative;
  overflow: hidden;
}
.h-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(167,139,250,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(167,139,250,.025) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%,black 30%,transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.o1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,rgba(167,139,250,.10) 0%,transparent 65%);
  top: -200px;
  right: -250px;
  animation: drift 16s ease-in-out infinite alternate;
}
.o2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,rgba(167,139,250,.07) 0%,transparent 65%);
  bottom: 0;
  left: -150px;
  animation: drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  from {
    transform: translate(0,0) scale(1);
  }
  to {
    transform: translate(50px,-60px) scale(1.12);
  }
}
.h-in {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  opacity: 0;
  animation: fadeUp .8s .1s ease forwards;
}
.ebar {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right,transparent,var(--v));
}
.etxt {
  font-size: 12px;
  color: var(--v);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.edot {
  width: 6px;
  height: 6px;
  background: var(--v);
  border-radius: 50%;
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(167,139,250,.6);
  }
  50% {
    opacity: .4;
    box-shadow: 0 0 0 8px transparent;
  }
}
.htit {
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp .8s .22s ease forwards;
}
.h-solid {
  font-family: 'Bebas Neue',sans-serif;
  font-size: clamp(48px,6.5vw,90px);
  color: var(--w);
  letter-spacing: 0;
  line-height: .95;
  display: block;
}
.h-outline {
  font-family: 'Instrument Serif',serif;
  font-style: italic;
  font-size: clamp(82px,11.5vw,166px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--v);
  letter-spacing: -2px;
  line-height: 1.0;
  display: block;
}
.h-grad {
  font-family: 'Bebas Neue',sans-serif;
  font-size: clamp(90px,12.5vw,180px);
  background: linear-gradient(125deg,#A78BFA 0%,#C4B5FD 45%,#A78BFA 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: .88;
  display: block;
  animation: sh 5s ease infinite;
}
@keyframes sh {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.hbot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  opacity: 0;
  animation: fadeUp .8s .38s ease forwards;
}
.hdesc-w {
  max-width: 460px;
}
/* FIXED: hero description bright & clear */
.hdesc {
  font-size: 16px;
  color: var(--w2);
  line-height: 1.95;
  font-weight: 400;
  border-left: 2px solid rgba(167,139,250,.4);
  padding-left: 22px;
  margin-bottom: 42px;
}
.hdesc strong {
  color: var(--vl);
  font-weight: 600;
}
.hbtns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* FIXED: buttons fully solid & visible */
.btn-prim {
  padding: 16px 48px;
  background: var(--v);
  color: #050508;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  transition: .35s;
  font-family: 'DM Sans',sans-serif;
  display: inline-block;
}
.btn-prim:hover {
  background: var(--vl);
  transform: translateY(-3px);
  box-shadow: 0 16px 46px rgba(167,139,250,.4);
}
/* FIXED: secondary button visible with bright border */
.btn-sec {
  padding: 16px 48px;
  background: transparent;
  color: var(--w2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(167,139,250,.45);
  border-radius: 6px;
  transition: .35s;
  font-family: 'DM Sans',sans-serif;
  display: inline-block;
}
/* FIXED: SVG arrow icon replaces unicode "→" character which rendered
   inconsistently (wrong size / vertical offset) on iOS Safari */
.inline-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.inline-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.btn-sec:hover {
  border-color: var(--v);
  color: var(--vl);
  transform: translateY(-3px);
  background: rgba(167,139,250,.07);
}
.hstats {
  display: flex;
  gap: 50px;
  align-items: center;
}
.stat-n {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--w);
  letter-spacing: 1px;
}
.stat-n sup {
  font-size: 32px;
  color: var(--v);
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}
.stat-l {
  font-size: 10px;
  color: var(--w3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-sep {
  width: 1px;
  height: 68px;
  background: var(--br);
}
.hscroll {
  position: absolute;
  bottom: 40px;
  left: 7%;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp .8s .7s ease forwards;
}
.hsl {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom,var(--v),transparent);
  animation: scP 2.8s ease-in-out infinite;
}
@keyframes scP {
  0%,100% {
    opacity: .3;
  }
  50% {
    opacity: 1;
  }
}
.hslt {
  font-size: 10px;
  color: var(--m);
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.havail {
  position: absolute;
  bottom: 44px;
  right: 7%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 100px;
  background: rgba(167,139,250,.07);
  border: 1px solid var(--br2);
  opacity: 0;
  animation: fadeUp .8s .6s ease forwards;
}
.avd {
  width: 7px;
  height: 7px;
  background: var(--v);
  border-radius: 50%;
  animation: blink 2s infinite;
}
.avt {
  font-size: 11px;
  color: var(--v);
  letter-spacing: 1.5px;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ── HERO — CENTER ALIGN OVERRIDE ── */
/* ── HERO — SMALLER HEADING SIZE ── */
.h-solid,
.h-grad {
  font-size: clamp(48px, 6.5vw, 90px);
  letter-spacing: 0;
}
.h-outline {
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -1px;
}
.htit {
  margin-bottom: 30px;
}
.h-in {
  text-align: center;
}
.eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hbot {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hdesc-w {
  max-width: 620px;
  margin: 0 auto;
}
.hdesc {
  border-left: none;
  padding-left: 0;
  text-align: center;
}
.hbtns {
  justify-content: center;
}
.hstats {
  justify-content: center;
}
.hscroll {
  left: 50%;
  transform: translateX(-50%);
}
/* ── MARQUEE ── */
.mq {
  overflow: hidden;
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
  padding: 20px 0;
  background: var(--s1);
}
.mq-t {
  display: flex;
  width: max-content;
  animation: mq 24s linear infinite;
}
.mq-i {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 44px;
  white-space: nowrap;
  font-size: 11px;
  color: var(--m);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.mq-s {
  width: 10px;
  height: 10px;
  fill: var(--v);
  opacity: .7;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION BASE ── */
section {
  position: relative;
}
.sec {
  padding: 120px 7%;
}
.s-eye {
  font-size: 11px;
  color: var(--v);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-eye::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--v);
}
.s-ttl {
  font-family: 'Bebas Neue',sans-serif;
  font-size: clamp(52px,6.5vw,84px);
  color: var(--w);
  letter-spacing: -1px;
  line-height: .98;
  margin-bottom: 20px;
}
.s-ttl span {
  color: var(--v);
}
/* FIXED: section subtitle readable */
.s-sub {
  font-size: 16px;
  color: var(--w3);
  line-height: 1.9;
  max-width: 540px;
  font-weight: 400;
  margin-bottom: 72px;
}
.rv {
  opacity: 1;
  transform: none;
  transition: opacity .85s ease,transform .85s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: .08s;
}
.d2 {
  transition-delay: .16s;
}
.d3 {
  transition-delay: .24s;
}
.d4 {
  transition-delay: .32s;
}

/* ── ABOUT (moved above services) ── */
#about {
  background: var(--s1);
  border-top: 1px solid var(--br);
}
.abt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.abt-left {
  position: relative;
}
.abt-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.abt-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  filter: saturate(0.9);
}
.abt-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--s2);
  border: 1px solid var(--br2);
  border-radius: 14px;
  padding: 22px 30px;
  box-shadow: 0 24px 60px rgba(0,0,0,.8);
}
.abt-badge-n {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 52px;
  color: var(--v);
  letter-spacing: 2px;
  line-height: 1;
}
.abt-badge-l {
  font-size: 10px;
  color: var(--w3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
}
.abt-corner {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  border-top: 2px solid rgba(167,139,250,.5);
  border-left: 2px solid rgba(167,139,250,.5);
  border-radius: 4px 0 0 0;
}
.abt-txt {
  font-size: 16px;
  color: var(--w3);
  line-height: 1.95;
  font-weight: 400;
  margin-bottom: 24px;
}
.abt-txt strong {
  color: var(--w);
  font-weight: 600;
}
.skills {
  margin: 44px 0;
}
.sk-i {
  margin-bottom: 24px;
}
.sk-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
/* FIXED: skill labels bright */
.sk-nm {
  font-size: 12px;
  color: var(--w2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.sk-pc {
  font-size: 12px;
  color: var(--v);
  font-weight: 700;
}
.sk-bar {
  height: 2px;
  background: var(--s4);
  border-radius: 2px;
  overflow: hidden;
}
.sk-fill {
  height: 100%;
  background: linear-gradient(to right,var(--v),var(--vl));
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(.16,1,.3,1);
}
.abt-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.abg {
  padding: 10px 20px;
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 8px;
  font-size: 12px;
  color: var(--w3);
  letter-spacing: 1px;
  transition: .3s;
}
.abg:hover {
  border-color: var(--br2);
  color: var(--vl);
}

/* ── SERVICES ── */
#services {
  background: var(--bg);
  border-top: 1px solid var(--br);
}
.svc-lay {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.svc-sticky {
  position: sticky;
  top: 120px;
}
.svc-list {
  border-top: 1px solid var(--br);
  margin-top: 32px;
}
.svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--br);
  cursor: pointer;
  transition: .3s;
  position: relative;
  overflow: hidden;
}
.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,rgba(167,139,250,.09),transparent);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
.svc-row:hover::before {
  transform: translateX(0);
}
.svc-row:hover {
  padding-left: 18px;
}
/* FIXED: service row text bright */
.srl {
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.srn {
  font-size: 11px;
  color: rgba(167,139,250,.5);
  font-weight: 600;
  letter-spacing: 1px;
  min-width: 28px;
  transition: .3s;
}
.srt {
  font-size: 19px;
  color: var(--w2);
  font-weight: 500;
  transition: .3s;
}
.svc-row:hover .srn {
  color: var(--v);
}
.svc-row:hover .srt {
  color: var(--w);
}
.svc-row:hover .sra {
  stroke: var(--v);
  transform: rotate(-45deg);
}
.srbadge {
  padding: 4px 14px;
  background: var(--vd);
  border: 1px solid var(--br2);
  border-radius: 100px;
  font-size: 10px;
  color: var(--v);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.sra {
  width: 20px;
  height: 20px;
  stroke: var(--br2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: .35s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.svc-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-card {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 38px;
  transition: .35s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,transparent,var(--v),transparent);
  opacity: 0;
  transition: .3s;
}
.svc-card:hover {
  border-color: var(--br2);
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,.7);
}
.svc-card:hover::before {
  opacity: 1;
}
/* FIXED: use SVG/clean icons, no AI emojis */
.svc-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--vd);
  border: 1px solid var(--br2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--vl);
  fill: none;
  stroke-width: 1.5;
}
.svc-ttl {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--w);
  margin-bottom: 12px;
}
/* FIXED: service card text bright */
.svc-desc {
  font-size: 14px;
  color: var(--w3);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 22px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stag {
  padding: 5px 14px;
  font-size: 10px;
  color: var(--m);
  border: 1px solid var(--br);
  border-radius: 100px;
  letter-spacing: 1px;
  transition: .3s;
}
.stag:hover {
  color: var(--w3);
  border-color: var(--m2);
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--s1);
  border-top: 1px solid var(--br);
}
.pf-filt {
  display: none;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--br);
  color: var(--m);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: .25s;
  font-family: 'DM Sans',sans-serif;
}
.pf-btn.ac,.pf-btn:hover {
  background: var(--vd);
  border-color: var(--br2);
  color: var(--v);
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 3px;
}
.pf-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.pf-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.pf-item:hover .pf-img-box img {
  transform: scale(1.07);
}
.pf-img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 26px;
  transition: transform .6s ease;
}
.pf-ov {
  position: absolute;
  inset: 0;
  background: rgba(4,4,10,.9);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0;
  transition: .4s;
  backdrop-filter: blur(2px);
}
.pf-item:hover .pf-ov {
  opacity: 1;
}
.pf-cat {
  font-size: 10px;
  color: var(--v);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pf-nm {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 26px;
  color: var(--w);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pf-lnk {
  font-size: 11px;
  color: var(--m);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-lnk svg {
  width: 14px;
  height: 14px;
  stroke: var(--v);
  fill: none;
  stroke-width: 2;
}
.pf-lnk:hover {
  color: var(--vl);
}
.pf-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  background: rgba(4,4,10,.8);
  border: 1px solid var(--br2);
  border-radius: 100px;
  font-size: 10px;
  color: var(--v);
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ──────────────────────────────────────────────────────────
   [UNUSED / LEGACY] Older portfolio grid + bento layout.
   Not referenced anywhere in index.html. Left in place as-is
   (no rules changed/removed) — safe to delete after review.
   ────────────────────────────────────────────────────────── */

/* ── PORTFOLIO BENTO ── */
.pf-bento {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.pf-bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease,box-shadow .4s ease;
}
.pf-bento-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.7);
}
.pb-tall {
  grid-row: span 2;
}
.pb-wide {
  grid-column: span 2;
}
.pb-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  transition: transform .5s ease;
}
.pb-img-wrap img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: transform .5s ease,filter .4s ease;
}
.pf-bento-item:hover .pb-img-wrap img {
  transform: scale(1.08);
}
/* Bottom info strip */
.pb-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top,rgba(4,4,10,.95) 60%,transparent);
  transform: translateY(8px);
  opacity: 0;
  transition: all .35s ease;
}
.pf-bento-item:hover .pb-info {
  transform: translateY(0);
  opacity: 1;
}
.pb-tag {
  font-size: 9px;
  color: var(--v);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.pb-name {
  font-family: "Bebas Neue",sans-serif;
  font-size: 22px;
  color: var(--w);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 3px;
}
.pb-meta {
  font-size: 11px;
  color: var(--w3);
  letter-spacing: 1px;
}
/* Big number watermark */
.pb-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Bebas Neue",sans-serif;
  font-size: 48px;
  color: rgba(167,139,250,.08);
  letter-spacing: 2px;
  line-height: 1;
  transition: .3s;
  pointer-events: none;
}
.pf-bento-item:hover .pb-num {
  color: rgba(167,139,250,.18);
}
/* Thin violet border on hover */
.pf-bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: border-color .3s;
}
.pf-bento-item:hover::after {
  border-color: rgba(167,139,250,.35);
}
.pf-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  flex-wrap: wrap;
  gap: 16px;
}
/* Filter buttons */
.pf-filt {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 8px 22px;
  background: transparent;
  border: 1px solid var(--br);
  color: var(--m);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: .25s;
  font-family: "DM Sans",sans-serif;
}
.pf-btn.ac,.pf-btn:hover {
  background: var(--vd);
  border-color: var(--br2);
  color: var(--v);
}
@media(max-width:900px) {
  .pf-bento {
    grid-template-columns: repeat(2,1fr);
    grid-auto-rows: 240px;
  }
  .pb-tall {
    grid-row: span 1;
  }
  .pb-wide {
    grid-column: span 2;
  }
}
@media(max-width:600px) {
  .pf-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .pb-wide {
    grid-column: span 1;
  }
  .pb-info {
    opacity: 1;
    transform: translateY(0);
  }
  .pf-scroller-bar {
    align-items: flex-start;
  }
  .pf-scroller-copy {
    max-width: none;
  }
}
/* ══ PORTFOLIO REDESIGN ══ */
.pf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 32px;
  flex-wrap: wrap;
}
.pf-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.pf-header-sub {
  font-size: 15px;
  color: var(--w3);
  max-width: 340px;
  text-align: right;
  line-height: 1.8;
}
/* Filter */
.pf-filt {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-btn {
  padding: 8px 22px;
  background: transparent;
  border: 1px solid var(--br);
  color: var(--m);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: .25s;
  font-family: "DM Sans",sans-serif;
}
.pf-btn.ac,.pf-btn:hover {
  background: var(--vd);
  border-color: var(--br2);
  color: var(--v);
}

/* ── WP SITES: Large browser mockup cards ── */
.pf-wp-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.pf-wp-card {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 16px;
  overflow: hidden;
  transition: .4s;
  position: relative;
  cursor: pointer;
}
.pf-wp-card:hover {
  border-color: var(--br2);
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,.7);
}
.pf-wp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,transparent,var(--v),transparent);
  opacity: 0;
  transition: .3s;
}
.pf-wp-card:hover::before {
  opacity: 1;
}
/* Browser chrome */
.pw-chrome {
  background: #111118;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--br);
}
.pw-dots {
  display: flex;
  gap: 5px;
}
.pw-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.pw-url {
  flex: 1;
  background: #0A0A14;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 10px;
  color: var(--m);
  letter-spacing: .5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* Screen area */
.pw-screen {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.pw-screen-inner {
  width: 100%;
  transition: transform 7s ease;
  transform: translateY(0);
}
.pw-screen-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.pf-wp-card:hover .pw-screen-inner {
  transform: translateY(-60%);
}
/* Info below mockup */
.pw-info {
  padding: 22px 24px;
}
.pw-tag {
  font-size: 10px;
  color: var(--v);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pw-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--v);
}
.pw-name {
  font-family: "Bebas Neue",sans-serif;
  font-size: 26px;
  color: var(--w);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pw-meta {
  font-size: 12px;
  color: var(--m);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pw-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--v);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .25s;
}
.pw-link svg {
  width: 13px;
  height: 13px;
  stroke: var(--v);
  fill: none;
  stroke-width: 2;
  transition: .25s;
}
.pw-link:hover {
  color: var(--vl);
}
.pw-link:hover svg {
  transform: translate(2px,-2px);
}

/* ── LOGO GRID below ── */
.pf-logo-label {
  font-size: 11px;
  color: var(--m);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pf-logo-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--br);
}
.pf-logo-row {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 3px;
  margin-bottom: 20px;
}
.pf-logo-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: .35s;
}
.pf-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.pf-logo-item:hover .pf-logo-ov {
  opacity: 1;
}
.pf-logo-img-w {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.pf-logo-img-w img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform .4s;
}
.pf-logo-item:hover .pf-logo-img-w img {
  transform: scale(1.08);
}
.pf-logo-ov {
  position: absolute;
  inset: 0;
  background: rgba(4,4,10,.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .35s;
  padding: 12px;
  text-align: center;
  backdrop-filter: blur(3px);
}
.pf-logo-ov-tag {
  font-size: 9px;
  color: var(--v);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pf-logo-ov-nm {
  font-family: "Bebas Neue",sans-serif;
  font-size: 16px;
  color: var(--w);
  letter-spacing: 1px;
  line-height: 1.1;
}
.pf-logo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: .3s;
}
.pf-logo-item:hover::after {
  border-color: rgba(167,139,250,.35);
}
/* CTA */
.pf-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
@media(max-width:1000px) {
  .pf-wp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:700px) {
  .pf-wp-grid {
    grid-template-columns: 1fr;
  }
  .pf-logo-row {
    grid-template-columns: repeat(3,1fr);
  }
  .pf-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pf-header-right {
    align-items: flex-start;
  }
  .pf-header-sub {
    text-align: left;
  }
  .pf-scroll-card {
    width: 82vw;
  }
  .pf-scroller-track {
    padding: 4px 28px;
  }
}

/* ── PROCESS ── */
#process {
  background: var(--s2);
  border-top: 1px solid var(--br);
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.proc-step {
  background: var(--s1);
  padding: 50px 36px;
  position: relative;
  transition: .3s;
}
.proc-step:hover {
  background: var(--s3);
}
.ps-n {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 84px;
  color: rgba(167,139,250,.07);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 32px;
  transition: .3s;
}
.proc-step:hover .ps-n {
  color: rgba(167,139,250,.18);
}
/* FIXED: SVG icons for process — no AI emojis */
.ps-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--vd);
  border: 1px solid var(--br2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.ps-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--vl);
  fill: none;
  stroke-width: 1.5;
}
.ps-ttl {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 28px;
  color: var(--w);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
/* FIXED: process text visible */
.ps-desc {
  font-size: 13px;
  color: var(--w3);
  line-height: 1.85;
  font-weight: 400;
}
.ps-line {
  position: absolute;
  top: 50px;
  right: 0;
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom,transparent,var(--br),transparent);
}
.proc-step:last-child .ps-line {
  display: none;
}

/* ── COUNTERS ── */
#counters {
  background: var(--bg);
  border-top: 1px solid var(--br);
  border-bottom: 1px solid var(--br);
}
.cnt-row {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.cnt-i {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--br);
}
.cnt-i:last-child {
  border-right: none;
}
.cnt-n {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 76px;
  color: var(--w);
  letter-spacing: -2px;
  line-height: 1;
}
.cnt-n em {
  color: var(--v);
  font-style: normal;
}
/* FIXED: counter labels visible */
.cnt-l {
  font-size: 11px;
  color: var(--w3);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ── TESTIMONIALS SLIDER ── */
#testi {
  background: var(--s1);
  border-top: 1px solid var(--br);
}
.ts-wrap {
  position: relative;
  overflow: hidden;
}
.ts-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.ts-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.tc {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 38px;
  position: relative;
  transition: .3s;
}
.tc:hover {
  border-color: var(--br2);
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.6);
}
.tc.feat {
  border-color: var(--br2);
}
.tc.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right,transparent,var(--v),transparent);
}
.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.tstar {
  color: var(--v);
  font-size: 14px;
}
.tc-q {
  font-size: 38px;
  color: var(--v);
  opacity: .3;
  font-family: 'Instrument Serif',serif;
  line-height: 1;
  margin-bottom: 18px;
}
/* FIXED: testimonial text bright */
.tc-txt {
  font-size: 14px;
  color: var(--w3);
  line-height: 1.95;
  font-weight: 400;
  margin-bottom: 28px;
  font-style: italic;
}
.tc-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tc-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--vd),var(--s2));
  border: 1px solid var(--br2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue',sans-serif;
  font-size: 20px;
  color: var(--v);
  flex-shrink: 0;
}
.tc-nm {
  font-size: 14px;
  color: var(--w);
  font-weight: 600;
  margin-bottom: 3px;
}
/* FIXED: testimonial role text visible */
.tc-rl {
  font-size: 11px;
  color: var(--w3);
  letter-spacing: 1px;
}
/* Slider controls */
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}
.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--br);
  border: 1px solid var(--m2);
  transition: .3s;
  cursor: pointer;
}
.ts-dot.ac {
  background: var(--v);
  width: 28px;
  border-radius: 100px;
  border-color: var(--v);
}
.ts-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.ts-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--s2);
  border: 1px solid var(--br);
  color: var(--m);
  font-size: 20px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-btn:hover {
  border-color: var(--br2);
  color: var(--v);
  background: var(--vd);
}

/* ── PRICING ── */
#pricing {
  background: var(--s2);
  border-top: 1px solid var(--br);
}
.pr-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: stretch;
}
.pr-card {
  background: var(--s1);
  border: 1px solid var(--br);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: .35s;
}
.pr-card:hover {
  border-color: var(--br2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.pr-card.popular {
  background: var(--s3);
  border: 1.5px solid var(--v);
  transform: scale(1.04);
  box-shadow: 0 24px 70px rgba(167,139,250,.18);
}
.pr-card.popular:hover {
  transform: scale(1.04) translateY(-6px);
}
.pr-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v);
  color: #050508;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.pr-tag {
  font-size: 12px;
  color: var(--v);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.pr-desc {
  font-size: 14px;
  color: var(--w3);
  line-height: 1.8;
  margin-bottom: 26px;
  min-height: 66px;
}
.pr-price {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 52px;
  color: var(--w);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 6px;
}
.pr-cur {
  font-size: 18px;
  color: var(--v);
  font-family: 'DM Sans',sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-right: 8px;
  vertical-align: middle;
}
.pr-pages {
  font-size: 12px;
  color: var(--w3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--br);
}
.pr-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pr-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--w2);
  line-height: 1.5;
}
.pr-feats li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--v);
  fill: none;
  stroke-width: 2.5;
  background: var(--vd);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}
.pr-btn {
  padding: 15px 0;
  text-align: center;
  background: transparent;
  color: var(--w2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(167,139,250,.45);
  border-radius: 8px;
  transition: .3s;
}
.pr-btn:hover {
  border-color: var(--v);
  color: var(--vl);
  background: rgba(167,139,250,.07);
}
.pr-btn-prim {
  background: var(--v);
  color: #050508;
  border: none;
}
.pr-btn-prim:hover {
  background: var(--vl);
  color: #050508;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(167,139,250,.35);
}

@media(max-width:900px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }
  .pr-card.popular {
    transform: scale(1);
    order: -1;
  }
  .pr-card.popular:hover {
    transform: translateY(-6px);
  }
}

/* ── FAQ ── */
#faq {
  background: var(--s1);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.faq-item {
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 14px;
  padding: 32px 28px;
  transition: .3s;
}
.faq-item:hover {
  border-color: var(--br2);
  transform: translateY(-4px);
}
.faq-item h3 {
  font-family: 'DM Sans',sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: 0;
  margin-bottom: 14px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 14px;
  color: var(--w3);
  line-height: 1.75;
}
@media(max-width:900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT ── */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--br);
}
.ct-lay {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.ct-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.ci {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--s2);
  border: 1px solid var(--br);
  border-radius: 12px;
  transition: .3s;
}
.ci:hover {
  border-color: var(--br2);
}
/* FIXED: SVG icons for contact */
.ci-ico {
  width: 46px;
  height: 46px;
  background: var(--vd);
  border: 1px solid var(--br2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--vl);
  fill: none;
  stroke-width: 1.5;
}
.ci-lb {
  font-size: 10px;
  color: var(--v);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
/* FIXED: contact info values bright */
.ci-vl {
  font-size: 15px;
  color: var(--w);
  font-weight: 500;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.f-g {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* FIXED: form labels visible */
.f-lb {
  font-size: 10px;
  color: var(--vl);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.f-in,.f-ta,.f-sel {
  background: var(--s2);
  border: 1px solid var(--br);
  color: var(--w);
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;
  padding: 15px 20px;
  border-radius: 9px;
  outline: none;
  transition: .3s;
  width: 100%;
}
.f-in::placeholder,.f-ta::placeholder {
  color: var(--m);
}
.f-in:focus,.f-ta:focus {
  border-color: var(--br2);
  background: var(--s3);
  box-shadow: 0 0 0 3px rgba(167,139,250,.07);
}
.f-ta {
  resize: vertical;
  min-height: 130px;
}
.f-sel {
  color: var(--w2);
  appearance: none;
  -webkit-appearance: none;
}
.f-sel option {
  background: var(--s2);
}
.btn-sub {
  padding: 17px 52px;
  background: var(--v);
  color: #050508;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: .35s;
  font-family: 'DM Sans',sans-serif;
  align-self: flex-start;
}
.btn-sub:hover {
  background: var(--vl);
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(167,139,250,.38);
}

/* ── FOOTER ── */
footer {
  background: var(--s2);
  border-top: 1px solid var(--br);
}
.ft-top {
  padding: 80px 7% 60px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
}
.ft-logo {
  font-family: 'Bebas Neue',sans-serif;
  font-size: 26px;
  letter-spacing: 6px;
  color: var(--w);
  margin-bottom: 16px;
  display: block;
}
.ft-logo span {
  color: var(--v);
}
/* FIXED: footer tagline readable */
.ft-tag {
  font-size: 14px;
  color: var(--w3);
  line-height: 1.85;
  max-width: 280px;
  font-weight: 400;
  margin-bottom: 28px;
}
.ft-soc {
  display: flex;
  gap: 10px;
}
.soc {
  width: 42px;
  height: 42px;
  background: var(--s3);
  border: 1px solid var(--br);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--m);
  transition: .3s;
}
.soc:hover {
  border-color: var(--br2);
  color: var(--v);
  transform: translateY(-2px);
}
.ft-ttl {
  font-size: 11px;
  color: var(--w);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.ft-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-lnk {
  font-size: 14px;
  color: var(--w3);
  transition: .25s;
}
.ft-lnk:hover {
  color: var(--v);
  padding-left: 6px;
}
.ft-bot {
  border-top: 1px solid var(--br);
  padding: 24px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
/* FIXED: footer copy text readable */
.ft-copy {
  font-size: 12px;
  color: var(--m);
}
.ft-copy span {
  color: var(--v);
}
.ft-made {
  font-size: 12px;
  color: var(--m);
}

/* ── BTT ── */
#btt {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 500;
  width: 48px;
  height: 48px;
  background: var(--vd);
  border: 1px solid var(--br2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .35s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
#btt svg {
  width: 18px;
  height: 18px;
  stroke: var(--v);
  fill: none;
  stroke-width: 2;
}
#btt.on {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#btt:hover {
  background: var(--vb);
  box-shadow: 0 8px 28px rgba(167,139,250,.3);
  transform: translateY(-2px)!important;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .svc-lay {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-sticky {
    position: static;
  }
  .abt-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .abt-left {
    max-width: 380px;
  }
  .proc-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
  }
  .ts-slide {
    grid-template-columns: 1fr 1fr;
  }
}
@media(max-width:768px) {
  .sec {
    padding: 80px 5%;
  }
  #hero {
    padding: 120px 5% 80px;
  }
  .hbot {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .hstats {
    flex-wrap: wrap;
    gap: 32px;
  }
  .h-solid,.h-grad {
    font-size: clamp(40px,11vw,64px);
  }
  .h-outline {
    font-size: clamp(36px,10vw,58px);
  }
  .pf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pf-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  .pf-scroller {
    margin-bottom: 36px;
  }
  .pf-scroller-rail {
    padding: 12px;
  }
  .pf-scroller-rail::before,
  .pf-scroller-rail::after {
    width: 44px;
  }
  .pf-scroller-track {
    padding: 4px 40px;
  }
  .pf-scroll-card {
    width: 76vw;
  }
  .pf-scroll-ov {
    padding: 20px 16px 16px;
  }
  .pf-scroll-ov h3 {
    font-size: 24px;
  }
  .pf-scroll-nav {
    width: 42px;
    height: 42px;
  }
  .pf-scroll-prev {
    left: 10px;
  }
  .pf-scroll-next {
    right: 10px;
  }
  .ts-slide {
    grid-template-columns: 1fr;
  }
  .ct-lay {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .cnt-row {
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    padding: 60px 5%;
  }
  .cnt-i {
    border-right: none;
    border-bottom: 1px solid var(--br);
    padding-bottom: 30px;
  }
  .cnt-i:nth-child(3),.cnt-i:last-child {
    border-bottom: none;
  }
  .nm {
    display: none;
  }
  .hbg {
    display: flex;
  }
  .ft-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
  #btt {
    bottom: 20px;
    right: 20px;
  }
}
