/* ════════════════════════════════════════════
   RESET + TOKENS
════════════════════════════════════════════ */
*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --bg: #070711;
  --bg2: #0c0c18;
  --surface: #11111f;
  --surface2: #181828;
  --border: #ffffff0f;
  --border-h: #ffffff22;
  --text: #eeedf8;
  --text2: #a09eb8;
  --text3: #6a6880;
  --p: #6c63ff;
  --p2: #ff6584;
  --p3: #43e8b0;
  --grad: linear-gradient(130deg, #6c63ff 0%, #ff6584 100%);
  --grad2: linear-gradient(130deg, #43e8b0 0%, #6c63ff 100%);
  --grad3: linear-gradient(130deg, #ff6584 0%, #6c63ff 100%);
  --shadow-sm: 0 2px 12px #00000050;
  --shadow: 0 8px 40px #00000070;
  --shadow-lg: 0 20px 60px #00000090;
  --font-h: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 12px;
  --r2: 8px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .28s;
}

[data-theme="light"] {
  --bg: #f8f7ff;
  --bg2: #f0effe;
  --surface: #ffffff;
  --surface2: #ebe9fb;
  --border: #00000010;
  --border-h: #00000020;
  --text: #0d0c1e;
  --text2: #4a4868;
  --text3: #8a88a8;
  --shadow-sm: 0 2px 12px #0000000d;
  --shadow: 0 8px 40px #0000001a;
  --shadow-lg: 0 20px 60px #00000022;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--p); border-radius: 2px; }
::selection { background: #6c63ff33; color: var(--text); }


/* ════════════════════════════════════════════
   CURSOR
════════════════════════════════════════════ */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--p);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease);
}

#cur-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--p);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .45;
  transition: opacity .2s;
}

@media (hover: none) {
  #cur, #cur-ring { display: none; }
}


/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}

#nav.scrolled {
  box-shadow: 0 4px 30px #00000055;
}

.logo {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.5px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-r {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.theme-btn:hover {
  border-color: var(--p);
  transform: rotate(18deg);
}

.nav-hire {
  padding: .48rem 1.2rem;
  border-radius: var(--r2);
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: opacity var(--t), transform var(--t);
}

.nav-hire:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}

/* Mobile Nav */
#mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

#mob-nav.open { display: flex; }

#mob-nav a {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: color var(--t);
}

#mob-nav a:hover { color: var(--p); }


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 6% 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--border-h) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-h) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: glow-pulse 7s ease-in-out infinite;
}

.hero-glow:nth-child(2) {
  width: 460px; height: 460px;
  background: #6c63ff;
  top: -12%; left: -8%;
  opacity: .12;
}

.hero-glow:nth-child(3) {
  width: 380px; height: 380px;
  background: #ff6584;
  bottom: 0; right: -6%;
  opacity: .1;
  animation-delay: 3.5s;
}

.hero-glow:nth-child(4) {
  width: 260px; height: 260px;
  background: #43e8b0;
  top: 45%; left: 38%;
  opacity: .08;
  animation-delay: 6s;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.avail-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  border-radius: 100px;
  background: var(--surface2);
  border: 1px solid var(--border-h);
  font-size: .75rem;
  color: var(--text2);
  margin-bottom: 2rem;
  animation: fade-up .7s both;
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p3);
  animation: ping 2s ease infinite;
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 #43e8b060; }
  70%  { box-shadow: 0 0 0 7px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-name {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: .6rem;
  animation: fade-up .7s .08s both;
}

.hero-name .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 1.6rem;
  min-height: 1.8rem;
  animation: fade-up .7s .16s both;
}

.tc { animation: blink 1s step-end infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-desc {
  font-size: 1rem;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.82;
  margin-bottom: 2.5rem;
  animation: fade-up .7s .24s both;
}

.hero-desc strong { color: var(--text); }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up .7s .32s both;
}

.btn-g {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.9rem;
  border-radius: var(--r2);
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.btn-g:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #6c63ff44;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .82rem 1.9rem;
  border-radius: var(--r2);
  background: transparent;
  border: 1px solid var(--border-h);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.btn-ghost:hover {
  border-color: var(--p);
  color: var(--p);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fade-up .7s .4s both;
}

.stat-n {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .2rem;
}

.stat-l {
  font-size: .75rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text3);
  font-size: .7rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  animation: fade-in .8s 1.2s both;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: var(--grad);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  49%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════ */
section { padding: 96px 6%; }

.sec-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--p);
  margin-bottom: .8rem;
}

.sec-chip::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--p);
  flex-shrink: 0;
}

.sec-h {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sec-h .g {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-sub {
  font-size: .93rem;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.75;
}

.sec-head { margin-bottom: 3.5rem; }

/* Scroll Reveal */
.r {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.r.on {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
#about { background: var(--bg2); }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-card {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 7rem;
  font-weight: 800;
  color: #fff2;
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #00000055);
}

.about-float {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  background: var(--surface);
  border: 1px solid var(--border-h);
  border-radius: var(--r);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-float strong {
  display: block;
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-float span {
  font-size: .72rem;
  color: var(--text3);
}

.about-text p {
  color: var(--text2);
  font-size: .95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-text p strong { color: var(--text); }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.8rem 0;
}

.pill {
  padding: .38rem .95rem;
  border-radius: 100px;
  background: var(--surface2);
  border: 1px solid var(--border-h);
  font-size: .78rem;
  color: var(--text2);
  font-family: var(--font-h);
  font-weight: 600;
  transition: all var(--t) var(--ease);
}

.pill:hover {
  border-color: var(--p);
  color: var(--p);
}


/* ════════════════════════════════════════════
   SKILLS
════════════════════════════════════════════ */
#skills { background: var(--bg); }

.skills-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
}

.skill-c {
  padding: 1.8rem;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}

.skill-c::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}

.skill-c:hover {
  transform: translateY(-4px);
  border-color: var(--border-h);
  box-shadow: var(--shadow);
}

.skill-c:hover::before { transform: scaleX(1); }

.sk-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: var(--surface2);
}

.skill-c h3 {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.skill-c p {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.65;
}

.sk-bar-row {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text3);
  margin: 1rem 0 .35rem;
}

.sk-track {
  height: 3px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
}

.sk-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--grad);
  width: 0;
  transition: width 1.1s var(--ease);
}


/* ════════════════════════════════════════════
   PROJECTS
════════════════════════════════════════════ */
#projects { background: var(--bg2); }

.proj-filters {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.f-btn {
  padding: .4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border-h);
  background: transparent;
  color: var(--text2);
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  letter-spacing: .3px;
}

.f-btn.on,
.f-btn:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}

.proj-c {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}

.proj-c:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--border-h);
}

.proj-thumb {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.th1 { background: linear-gradient(135deg, #0d0d20 0%, #6c63ff30 100%); }
.th2 { background: linear-gradient(135deg, #0a1a14 0%, #43e8b030 100%); }
.th3 { background: linear-gradient(135deg, #1a0a14 0%, #ff658430 100%); }
.th4 { background: linear-gradient(135deg, #0e1620 0%, #6c63ff25 100%); }
.th5 { background: linear-gradient(135deg, #1a150a 0%, #ffb34730 100%); }
.th6 { background: linear-gradient(135deg, #100a1a 0%, #ff658425 100%); }
.th7 { background: linear-gradient(135deg, #0a1a18 0%, #43e8b025 100%); }

/* Mock UI elements inside project thumbnails */
.mock { width: 80%; max-width: 240px; position: relative; }
.mock-bar { height: 8px; border-radius: 4px; margin-bottom: 6px; background: #fff1; width: 60%; }
.mock-bar.w80 { width: 80%; }
.mock-bar.w50 { width: 50%; }
.mock-row { display: flex; gap: 6px; margin-bottom: 6px; }
.mock-box { height: 36px; border-radius: 6px; background: #fff1; flex: 1; }
.mock-box.tall { height: 60px; }
.mock-line { height: 6px; border-radius: 3px; background: #fff1; margin-bottom: 5px; }
.mock-line.s { width: 45%; }
.mock-btn { height: 22px; width: 70px; border-radius: 4px; background: var(--grad); opacity: .7; }
.mock-nav { height: 24px; border-radius: 4px; background: #fff1; margin-bottom: 10px; display: flex; align-items: center; padding: 0 8px; gap: 5px; }
.mock-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff3; }
.mock-hero { height: 50px; border-radius: 6px; background: var(--grad); opacity: .3; margin-bottom: 6px; }
.mock-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; margin-bottom: 6px; }
.mock-card-s { height: 28px; border-radius: 4px; background: #fff1; }

.proj-ov {
  position: absolute;
  inset: 0;
  background: #00000090;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  backdrop-filter: blur(4px);
}

.proj-c:hover .proj-ov { opacity: 1; }

.ov-btn {
  padding: .45rem .95rem;
  border-radius: var(--r2);
  background: #ffffff15;
  border: 1px solid #ffffff25;
  color: #fff;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--t);
}

.ov-btn:hover { background: #ffffff28; }

.proj-body { padding: 1.4rem; }

.proj-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .7rem;
}

.ptag {
  padding: .18rem .6rem;
  border-radius: 100px;
  font-size: .68rem;
  font-family: var(--font-h);
  font-weight: 600;
  background: var(--surface2);
  color: var(--text3);
  border: 1px solid var(--border);
}

.proj-body h3 {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.proj-body p {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#services { background: var(--bg); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}

.srv-c {
  padding: 2rem;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}

.srv-c::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}

.srv-c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-h);
}

.srv-c:hover::after { transform: scaleX(1); }

.srv-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r2);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.srv-c h3 {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.srv-c p {
  font-size: .83rem;
  color: var(--text2);
  line-height: 1.72;
}

.srv-note {
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--text3);
  font-style: italic;
}


/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
#testimonials { background: var(--bg2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.testi-c {
  padding: 1.8rem;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}

.testi-c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-h);
}

.stars {
  color: #f5a623;
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: .9rem;
}

.testi-c blockquote {
  font-size: .86rem;
  color: var(--text2);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.4rem;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.t-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  color: #fff;
  font-size: .82rem;
}

.t-av1 { background: var(--grad); }
.t-av2 { background: var(--grad2); }
.t-av3 { background: linear-gradient(130deg, #ffb347, #ff6584); }
.t-av4 { background: linear-gradient(130deg, #43e8b0, #6c63ff); }

.t-name strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  font-family: var(--font-h);
}

.t-name span {
  font-size: .74rem;
  color: var(--text3);
}


/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact { background: var(--bg); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.contact-intro {
  font-size: .93rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 400px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.c-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r2);
  background: var(--surface2);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.c-item strong {
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  display: block;
  margin-bottom: .2rem;
}

.c-item a {
  color: var(--text2);
  text-decoration: none;
  font-size: .86rem;
  transition: color var(--t);
}

.c-item a:hover { color: var(--p); }

.c-item span {
  color: var(--text2);
  font-size: .86rem;
}

.socials { display: flex; gap: .7rem; }

.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-h);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .75rem;
  color: var(--text2);
  font-family: var(--font-h);
  font-weight: 700;
  transition: all var(--t) var(--ease);
}

.soc:hover {
  border-color: var(--p);
  color: var(--p);
  transform: translateY(-2px);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.fg label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.fg input,
.fg textarea,
.fg select {
  padding: .82rem 1rem;
  border-radius: var(--r2);
  background: var(--surface);
  border: 1px solid var(--border-h);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .88rem;
  outline: none;
  resize: none;
  transition: all var(--t) var(--ease);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px #6c63ff18;
}

.fg textarea { min-height: 128px; }
.fg select { cursor: pointer; }
.fg select option { background: var(--bg); color: var(--text); }

.f-submit {
  padding: .95rem;
  border-radius: var(--r2);
  background: var(--grad);
  color: #fff;
  border: none;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}

.f-submit:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.f-legal {
  font-size: .72rem;
  color: var(--text3);
  text-align: center;
  line-height: 1.6;
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  padding: 2rem 6%;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: .78rem;
  color: var(--text3);
}

.f-copy strong { color: var(--text2); }

.f-top {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-h);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: .9rem;
  transition: all var(--t) var(--ease);
}

.f-top:hover {
  border-color: var(--p);
  transform: translateY(-2px);
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .about-wrap,
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .f-row { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  section { padding: 70px 5%; }
  #nav { padding: 0 5%; }
  .hero-btns { flex-direction: column; }
  .btn-g, .btn-ghost { justify-content: center; }
  .hero-stats { gap: 1.4rem; }
}