/* ============ Fidan Mjeku — CV Website (stili i PrintHuis) ============ */
:root {
  --yellow: #FFC93C;
  --orange: #FF8A3C;
  --pink: #FF4D6D;
  --purple: #3D9BFF;
  --indigo: #2F6BFF;
  --brand: #0088FF;
  --teal: #2FD6C0;
  --ink: #17171a;
  --muted: #6b6b76;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #eaeaec;
  --surface: #f4f4f6;
}

/* Tema e errët — aktivizohet me butonin e hënës në header */
:root[data-theme="dark"] {
  --ink: #f3f3f5;
  --muted: #9a9aa4;
  --bg: #0e0f12;
  --card: #17181c;
  --border: #26272c;
  --surface: #1b1c21;
}

html { color-scheme: light; }
:root[data-theme="dark"] { color-scheme: dark; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-hidden { transform: translateY(-100%); }

/* Kur rishfaqet gjatë scroll-it: blur mbrapa + vijë poshtë (si referenca) */
.site-header { border-bottom: 1px solid transparent; }
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  height: 30px;
  width: auto;
  display: block;
}

.logo-fan {
  display: flex;
  align-items: flex-end;
  height: 26px;
}
.logo-fan span {
  width: 7px;
  height: 26px;
  border-radius: 4px;
  margin-left: -3px;
  transform-origin: bottom center;
}
.logo-fan span:nth-child(1) { background: var(--yellow); transform: rotate(-18deg); }
.logo-fan span:nth-child(2) { background: var(--orange); transform: rotate(-9deg); }
.logo-fan span:nth-child(3) { background: var(--pink); }
.logo-fan span:nth-child(4) { background: var(--purple); transform: rotate(9deg); }
.logo-fan span:nth-child(5) { background: var(--teal); transform: rotate(18deg); }

.logo-text {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.logo-text b { font-weight: 800; }

/* Nav-i i centruar saktë në mes të header-it, pavarësisht gjerësisë së krahëve */
.main-nav {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
}

.main-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Butoni i temës (hëna/dielli) */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid rgba(161,161,161,0.32);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* headeri i scroll-uar në temën e errët */
:root[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(14, 15, 18, 0.72);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(161,161,161,0.32);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 16px 30px;
  font-size: 16px;
}

.btn-primary:hover { opacity: 0.88; }

.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---------- Nav toggle (mobile) ---------- */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid rgba(161,161,161,0.32);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle.is-active .icon-menu { display: none; }
.nav-toggle.is-active .icon-close { display: block; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 20, 0.5);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Language switch ---------- */

.lang-switch { position: relative; }

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.lang-flag {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-code {
  font-size: 14px;
  font-weight: 600;
}

.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-current[aria-expanded="true"] .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 120px;
  background: var(--card);
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  z-index: 20;
}

.lang-dropdown.open { display: flex; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.lang-option .lang-flag { width: 24px; height: 24px; }
.lang-option .lang-code { font-size: 13px; }
.lang-option:hover { background: var(--surface); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 0;
}

.hero-grid {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.hero-left { text-align: left; }

/* chip si penelatë boje, pak e pjerrët */
.hero-chip {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 16px;
  border-radius: 4px 10px 5px 12px;
  transform: rotate(-1.5deg);
  margin-bottom: 26px;
}

/* heading i njëjtë me PrintHuis: sans i rëndë 800, i madh */
.hero-name {
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-left .hero-sub { max-width: 480px; }
.hero-left .hero-cta { justify-content: flex-start; }

/* Avatari rrethor djathtas */
.hero-avatar {
  position: relative;
  width: min(380px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-initials {
  font-size: 110px;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(120deg, var(--orange), var(--pink), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.highlight {
  position: relative;
  white-space: nowrap;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 12px;
  background: var(--brand);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.85;
}

.hero-sub {
  margin-top: 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-meta {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
}
.hero-meta .dot { margin: 0 10px; color: var(--brand); }

.hero-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Skena e pajisjeve — shtresa të animuara me scroll ---------- */

.device-scene { height: 300vh; }

.ds-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
  overflow: hidden;
}

.ds-stage {
  position: relative;
  width: min(1300px, 96vw);
  aspect-ratio: 1520 / 720;
}

/* glow-i mbrapa tabletit */
.ds-glow {
  position: absolute;
  left: 50%;
  bottom: -14%;
  transform: translateX(-50%);
  width: 72%;
  z-index: 1;
  pointer-events: none;
}

.ds-layer {
  position: absolute;
  will-change: transform;
}
.ds-phone { left: 10.5%; top: 27.5%; width: 14%; z-index: 5; }
.ds-watch { left: 3.5%; bottom: 2%; width: 7.6%; z-index: 6; }

/* ---- iPhone 17 Pro Max — kornize e ndertuar me CSS ---- */
.ds-phone-tilt {
  transform: rotate(-27deg);
}
.iph {
  position: relative;
  aspect-ratio: 210 / 428;
  border-radius: 15% / 7.4%;
  background: linear-gradient(150deg, #45484e 0%, #1b1d21 45%, #34373d 100%);
  padding: 1.7%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.iph-inner {
  height: 100%;
  border-radius: 14% / 6.9%;
  background: #050506;
  padding: 3%;
}
.iph-screen {
  height: 100%;
  border-radius: 11.5% / 5.7%;
  overflow: hidden;
  background: #0b0b0d;
}
.iph-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iph-island {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  height: 2.9%;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 1.5px rgba(60, 60, 66, 0.55);
  z-index: 3;
}
.iph-btn {
  position: absolute;
  background: linear-gradient(90deg, #43464c, #202226);
  border-radius: 3px;
  z-index: 0;
}
.iph-btn-action { left: -1.2%; top: 15%; width: 1.4%; height: 3.6%; }
.iph-btn-volup { left: -1.2%; top: 22%; width: 1.4%; height: 6.8%; }
.iph-btn-voldn { left: -1.2%; top: 30.5%; width: 1.4%; height: 6.8%; }
.iph-btn-power { right: -1.2%; top: 24%; width: 1.4%; height: 11%; }

/* ---- Apple Watch — kornize e ndertuar me CSS ---- */
.ds-watch-tilt {
  transform: rotate(-8deg);
}
.aw { position: relative; container-type: inline-size; }
.aw-strap {
  display: block;
  width: 58%;
  margin: 0 auto;
  aspect-ratio: 58 / 46;
  background: linear-gradient(160deg, #2e3035 0%, #131418 80%);
}
.aw-strap-top { border-radius: 24% 24% 10% 10% / 30% 30% 12% 12%; }
.aw-strap-bot { border-radius: 10% 10% 24% 24% / 12% 12% 30% 30%; }
.aw-body {
  position: relative;
  aspect-ratio: 1 / 1.16;
  border-radius: 30%;
  background: linear-gradient(150deg, #43464c 0%, #1a1c20 55%, #2e3136 100%);
  padding: 6%;
  margin: -7% 0;
  z-index: 2;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22);
}
.aw-screen {
  height: 100%;
  border-radius: 26%;
  overflow: hidden;
  background: radial-gradient(130% 130% at 30% 15%, #ff8a4f 0%, #f26a2e 60%, #e85d24 100%);
  text-align: center;
}
.aw-q {
  margin: 14% 0 0;
  color: #fff;
  font-weight: 800;
  font-size: 10.5cqw;
  line-height: 1.2;
}
.aw-face {
  width: 52%;
  margin: 5% auto 0;
  display: block;
}
.aw-crown {
  position: absolute;
  right: -4%;
  top: 20%;
  width: 4.5%;
  height: 15%;
  border-radius: 2px;
  background: linear-gradient(90deg, #4a4d52, #26282c);
}
.aw-sidebtn {
  position: absolute;
  right: -3%;
  top: 42%;
  width: 3.5%;
  height: 19%;
  border-radius: 2px;
  background: linear-gradient(90deg, #3c3f45, #1e2024);
}
.ds-right { right: 3%; top: 30.5%; width: 21%; z-index: 5; }
/* ekrani i kornizes portret: insetet e bezelit te kthyera */
.ds-screen.ds-screen-portrait {
  left: 4%;
  top: 3.1%;
  right: 4%;
  bottom: 3%;
  background: #fff;
  border-radius: 12px;
}
.ds-screen.ds-screen-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ds-right-tilt {
  position: relative;
  width: 100%;
  transform: rotate(14deg);
}
/* karta e produktit qe del pak jashte tabletit djathtas — rrotullohet bashke me te */
.ds-card {
  position: absolute;
  right: -30%;
  top: 26%;
  width: 105%;
  z-index: 4;
}

.ds-center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 2;
}

.ds-frame {
  position: relative;
  width: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}

/* "vrima" e ekranit — mbulon përmbajtjen e pjekur dhe mban faqen që scroll-ohet */
.ds-screen {
  position: absolute;
  left: 3.05%;
  top: 4%;
  right: 3.15%;
  bottom: 4%;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  z-index: 3;
}
.ds-screen img {
  width: 100%;
  display: block;
  will-change: transform;
}

/* Mobile: si Apple — skena statike, pa pin e pa animacion scroll-i */
@media (max-width: 700px) {
  .device-scene { height: auto; }
  .ds-pin {
    position: static;
    height: auto;
    padding: 20px 0 8px;
    overflow: visible;
  }
}

/* ---------- Showcase — 3 mockup-e në sfond të errët ---------- */

.showcase {
  margin-top: 130px;
  background: var(--bg);
  padding: 40px 40px 60px;
  overflow: hidden;
}

.showcase-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-head {
  text-align: center;
  margin-bottom: 70px;
}
.showcase-head .section-title { margin-bottom: 10px; }
.showcase-sub { color: var(--muted); font-size: 16px; }

/* Mockup i vetëm — full screen, del nga containeri dhe shfaqet deri në fund */
.mock-single {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 56px;
}
.mock-single img {
  width: 100%;
  height: auto;
  display: block;
}

/* Theksim i animuar nën fjalën kryesore (stil "animated headline") */
.grad-title {
  background: linear-gradient(90deg, #3E82F6 0%, #9C57F0 30%, #D6459A 55%, #E65C31 80%, #C96A1C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}

.hl-anim {
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.hl-img {
  position: absolute;
  left: -20%;
  bottom: -0.58em;
  width: 180%;
  transform: rotate(5deg);
  transform-origin: left center;
  height: auto;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  animation: hl-draw 0.9s ease-out forwards 0.5s;
}
@keyframes hl-draw {
  to { clip-path: inset(0 0 0 0); }
}

.mock-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mock-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.16);
  border: 1px solid var(--border);
  background: #fff;
}
.mock-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mc-center {
  width: 46%;
  aspect-ratio: 4 / 3;
  z-index: 3;
  position: relative;
}

.mc-left,
.mc-right {
  width: 30%;
  aspect-ratio: 3 / 4;
  z-index: 2;
}

.mc-left {
  transform: rotate(-7deg) translateY(26px);
  margin-right: -6%;
}

.mc-right {
  transform: rotate(7deg) translateY(26px);
  margin-left: -6%;
}

.mock-card { transition: transform 0.35s ease; }
.mc-left:hover { transform: rotate(-7deg) translateY(14px); }
.mc-right:hover { transform: rotate(7deg) translateY(14px); }
.mc-center:hover { transform: translateY(-10px); }


/* ---------- Sections ---------- */

.section { padding: 0 40px; margin-top: 130px; }
.section:first-of-type { margin-top: 0; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.body-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Stats ---------- */

.stats {
  display: flex;
  gap: 44px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-label {
  color: var(--muted);
  font-size: 14px;
  max-width: 150px;
  margin-top: 4px;
}

.c-pink { color: var(--pink); }
.c-indigo { color: var(--indigo); }
.c-teal { color: var(--teal); }
.c-purple { color: var(--purple); }
.c-orange { color: var(--orange); }

/* ---------- Skills (pcards si te printi) ---------- */

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.pcard {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  transition: transform 0.2s ease;
}

.pcard:hover { transform: translateY(-4px); }
.pcard:hover .pcard-visual { filter: brightness(0.97); }

.pcard-visual {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s ease;
}

.pcard-emoji { font-size: 46px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }

.pv-pink { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.pv-orange { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.pv-indigo { background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.pv-teal { background: linear-gradient(135deg, var(--teal), var(--indigo)); }
.pv-purple { background: linear-gradient(135deg, var(--purple), var(--indigo)); }
.pv-yellow { background: linear-gradient(135deg, var(--yellow), var(--orange)); }

.pcard-body { padding: 14px 4px 0; }
.pcard-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pcard-body p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }

/* ---------- Projects (sticky stack si te printi) ---------- */

.stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 10vh;
}

.stack-card {
  position: sticky;
  top: 90px;
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 480px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}

.stack-text { flex: 1; min-width: 0; }

.stack-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 14px;
}

.stack-text h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.stack-text p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 460px;
  opacity: 0.92;
  margin-bottom: 20px;
}

.stack-media {
  flex-shrink: 0;
  width: 44%;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.25);
}

.stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.stack-card.g1 { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.stack-card.g2 { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.stack-card.g3 { background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.stack-card.g4 { background: linear-gradient(135deg, var(--teal), var(--indigo)); }

.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tags span {
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}

.project-link {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  font-size: 15px;
}
.project-link:hover { opacity: 0.85; }

/* ---------- Contact ---------- */

.contact { margin-bottom: 120px; }
.contact-wrap { text-align: center; }
.contact-wrap .body-text { margin-left: auto; margin-right: auto; margin-bottom: 32px; }

/* ---------- About me (si referenca) ---------- */

.about-block {
  background: var(--bg);
  margin-top: 0;
  padding: 30px 40px 90px;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 34px;
}
.about-head .section-title { margin-bottom: 0; }

.about-mark { flex-shrink: 0; margin-top: 8px; }

/* fotoja rrethore gri lart djathtas (në vend të shenjës) */
.about-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  transform: rotate(24deg);
}
.about-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 52px;
  align-items: start;
}

.about-p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 22px;
}
.about-p:last-child { margin-bottom: 0; }

/* fotoja — gri, minimale */
.about-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img {
  width: 100%;
  display: block;
  filter: grayscale(1);
}

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { order: -1; max-width: 300px; }
}

/* ---------- Procesi — hapat e punës ---------- */

.process-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { border-top: 1px solid var(--border); }

.step-num {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand);
  letter-spacing: -0.02em;
}

.step-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

/* research: shënime ngjitëse si affinity board + statistika */
.step-research { margin-top: 24px; max-width: 720px; }

.research-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.rnote {
  flex: 1 1 200px;
  max-width: 240px;
  padding: 18px 16px 22px;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  color: #26262c;
  border-radius: 4px 14px 4px 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.rnote.rn-yellow { background: #FFF2C4; transform: rotate(-2deg); }
.rnote.rn-blue   { background: #D6EBFF; transform: rotate(1.5deg); }
.rnote.rn-pink   { background: #FFDCE4; transform: rotate(-1deg); }
.rnote.rn-teal   { background: #D3F6F0; transform: rotate(2deg); }

.research-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.research-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--muted);
}
.research-stats b {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
}
.research-stats em { font-style: normal; }

/* user flow live — pa sfond, përshtatet me temën, i madh */
.flow-card {
  margin-top: 28px;
  max-width: 900px;
}
.flow-card svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: inherit;
}
/* ngjyrat e diagramit ndjekin temën (CSS mund fiton mbi atributet e SVG-së) */
.flow-card g[stroke="#4a4658"] { stroke: var(--border); }
.flow-card rect[stroke="#5a5670"] { stroke: var(--muted); }
.flow-card text[fill="#e8e6f2"] { fill: var(--ink); }

/* Color variables: tabelë + mini-ekran me toggle Light/Dark */
.vars-demo {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr;
  gap: 32px;
  margin-top: 24px;
  max-width: 860px;
  align-items: start;
}

.vars-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vars-head,
.vars-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
}
.vars-head {
  background: var(--surface);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.vars-row { border-top: 1px solid var(--border); }
.v-name {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px;
  font-weight: 600;
}
.v-val {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
}
.v-val i {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: var(--c);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.vars-cap {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.vars-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.vs-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.vs-switch {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease;
}
.vs-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.vs-switch.on { background: var(--brand); }
.vs-switch.on .vs-knob { transform: translateX(20px); }

/* mini-ekrani i drejtuar nga variablat — ndërron temë me një klasë */
.vs-phone {
  --p-bg: #FFFFFF;
  --p-card: #F2F2F5;
  --p-text: #17171A;
  --p-accent: #0088FF;
  width: 220px;
  border-radius: 26px;
  border: 1px solid var(--border);
  padding: 16px 15px 18px;
  background: var(--p-bg);
  color: var(--p-text);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
  transition: background 0.35s ease, color 0.35s ease;
}
.vs-phone.dark {
  --p-bg: #151515;
  --p-card: #242424;
  --p-text: #FFFFFF;
  --p-accent: #4DB5FF;
}
.vs-status { font-size: 10px; opacity: 0.55; }
.vs-title { font-size: 13px; font-weight: 700; margin-top: 10px; opacity: 0.7; }
.vs-balance { font-size: 25px; font-weight: 800; margin: 4px 0 12px; letter-spacing: -0.02em; }
.vs-card {
  background: var(--p-card);
  border-radius: 13px;
  padding: 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: background 0.35s ease;
}
.vs-row { display: flex; justify-content: space-between; font-size: 11.5px; }
.vs-row span { opacity: 0.75; }
.vs-row b { font-weight: 700; }
.vs-btn {
  margin-top: 13px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px;
  background: var(--p-accent);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  font-family: inherit;
  transition: background 0.35s ease;
}

@media (max-width: 700px) {
  .vars-demo { grid-template-columns: 1fr; gap: 24px; }
  .vars-screen { align-items: flex-start; }
}

/* specimen tipografie (si faqet e design system-it) */
.step-type {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  max-width: 680px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.type-aa {
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #4DB5FF, #0077E6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.type-abc {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.type-sizes {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.type-sizes span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 700px) {
  .step-type { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
  .type-aa { font-size: 56px; }
}

/* paleta e gjallë e dua wallet */
.step-palette { margin-top: 24px; max-width: 680px; }
.pal-row {
  display: flex;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.pal-row span { flex: 1; }

.pal-primaries {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pal-chip {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  padding: 9px 13px;
  border-radius: 9px;
  letter-spacing: 0.4px;
}

/* hapi i AI — i theksuar */
.ai-step {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 28px;
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(213, 0, 232, 0.05), rgba(108, 92, 231, 0.07));
}
.ai-step .step-num { -webkit-text-stroke-color: var(--indigo); }

.ai-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  background: linear-gradient(120deg, var(--brand), var(--indigo));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 11px;
  border-radius: 999px;
}

@media (max-width: 700px) {
  .process-step { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .step-num { font-size: 36px; }
  .ai-step { padding: 26px 20px; }
}

/* ---------- Reviews — karuseli i pjerrët (si te printi) ---------- */

.reviews {
  padding: 0 0 40px;
  margin-top: 120px;
  overflow: hidden;
}

.reviews-head {
  text-align: center;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.reviews-title { font-size: 40px; font-weight: 800; line-height: 1.1; }
.reviews-title .rev-accent { color: var(--brand); }

.reviews-stage {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding-top: 20px;
}
.reviews-track {
  display: flex;
  gap: 40px;
  width: max-content;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 30px 26px;
  box-shadow: 0 22px 45px rgba(20, 15, 40, 0.12);
  transform-origin: center center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
}

.review-top { display: flex; align-items: center; margin-bottom: 12px; }
.review-quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.5;
  color: var(--brand);
  opacity: 0.35;
}

.review-text {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--muted);
  flex: 1;
  margin-bottom: 22px;
}

.review-person { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.review-meta { display: flex; flex-direction: column; min-width: 0; }
.review-name { font-size: 16px; font-weight: 700; }
.review-rating { display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.rr-stars { color: var(--yellow); letter-spacing: 1px; font-size: 13px; }
.review-rating b { font-size: 14px; font-weight: 800; color: var(--ink); }

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}
.rev-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.rev-arrow:hover { border-color: var(--muted); transform: translateY(-2px); }
.rev-arrow.is-primary { border-color: var(--brand); color: var(--brand); }
.rev-arrow.is-primary:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.rev-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }

.reviews-dots { display: flex; gap: 8px; }
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}
.reviews-dot.is-active { background: var(--brand); width: 26px; }

@media (max-width: 640px) {
  .reviews { padding: 0 0 30px; margin-top: 80px; }
  .reviews-title { font-size: 28px; }
  .reviews-stage { min-height: 285px; padding: 8px 0 4px; }
  .reviews-track { gap: 16px; }
  .review-card { flex: 0 0 72vw; padding: 24px 22px 20px; }
  .reviews-controls { margin-top: 12px; }
  .rev-arrow { width: 46px; height: 46px; }
  .reviews-stage::before,
  .reviews-stage::after {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    width: 9vw;
    z-index: 5;
    pointer-events: none;
  }
  .reviews-stage::before { left: 0; background: linear-gradient(90deg, var(--bg) 25%, transparent); }
  .reviews-stage::after { right: 0; background: linear-gradient(270deg, var(--bg) 25%, transparent); }
}

/* ---------- Let's talk (si te printi) ---------- */

.letstalk {
  padding: 0 40px;
  margin: 120px 0 30px;
}

.letstalk-box {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
}

.letstalk-left {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.letstalk-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}

.letstalk-title { font-size: 46px; font-weight: 800; line-height: 1.05; margin-bottom: 16px; }

.letstalk-text { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 420px; }

.letstalk-points {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.letstalk-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 500;
}
.letstalk-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letstalk-right { padding: 48px 56px; }

.letstalk-form { display: flex; flex-direction: column; gap: 16px; }

.lt-field { display: flex; flex-direction: column; gap: 7px; }
.lt-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.lt-field input,
.lt-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  resize: vertical;
  transition: border-color 0.15s ease;
}
.lt-field input:focus,
.lt-field textarea:focus { outline: none; border-color: var(--brand); }
.lt-field input::placeholder,
.lt-field textarea::placeholder { color: var(--muted); }

.lt-submit { margin-top: 4px; align-self: flex-start; }

.form-success {
  display: none;
  margin-top: 6px;
  color: #1f9d55;
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

@media (max-width: 820px) {
  .letstalk { margin-top: 90px; padding: 0 20px; }
  .letstalk-box { grid-template-columns: 1fr; }
  .letstalk-left { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 28px; }
  .letstalk-right { padding: 32px 28px 40px; }
  .letstalk-title { font-size: 34px; }
  .letstalk-text { max-width: none; }
}

/* ---------- Footer — kartë me gradient të kaltër (stil Meshy) ---------- */

.footer {
  padding: 16px;
  margin-top: 130px;
}

.footer-card {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(135deg, #4DB5FF 0%, #0088FF 48%, #0059B3 100%);
  color: #fff;
  padding: 64px 56px 28px;
}

/* Përmbajtja e kartës qëndron e centruar në gjerësinë fillestare
   edhe kur karta zgjerohet full-width me scroll */
.footer-lt,
.footer-top,
.footer-bottom {
  max-width: 1288px;
  margin-left: auto;
  margin-right: auto;
}

/* "Të flasim" brenda kartës së kaltër */
.footer-lt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-card .letstalk-eyebrow { color: rgba(255, 255, 255, 0.65); }
.footer-card .letstalk-title { color: #fff; }
.footer-card .letstalk-text { color: rgba(255, 255, 255, 0.85); }
.footer-card .letstalk-points li { color: #fff; }
.footer-card .letstalk-points li::before { background: #fff; color: #0077e6; }

.footer-card .lt-field label { color: rgba(255, 255, 255, 0.92); }
.footer-card .lt-field input,
.footer-card .lt-field textarea {
  background: #fff;
  border-color: transparent;
  color: #17171a;
}
.footer-card .lt-field input:focus,
.footer-card .lt-field textarea:focus { border-color: #0059b3; }
.footer-card .lt-field input::placeholder,
.footer-card .lt-field textarea::placeholder { color: #8a8f98; }

.footer-card .lt-submit {
  background: #fff;
  color: #0066cc;
}
.footer-card .lt-submit:hover { opacity: 0.9; }

.footer-card .form-success { color: #dfffe6; }

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
  padding-bottom: 52px;
}

.footer-card .logo { color: #fff; }

.footer-tag {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  margin-top: 14px;
  max-width: 260px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  opacity: 0.95;
}
.footer-col a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 820px) {
  .about-block { padding: 20px 24px 60px; margin-top: 0; }
  .footer { padding: 10px; margin-top: 80px; }
  .footer-card { padding: 40px 28px 24px; border-radius: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-lt { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; margin-bottom: 36px; }
}

/* ---------- Kursori i personalizuar (vetëm me maus të vërtetë) ---------- */

@media (hover: hover) and (pointer: fine) {
  body, a, button, .btn, .lang-option, .nav-toggle, .theme-toggle, .rev-arrow, .reviews-dot { cursor: none; }
  input, textarea { cursor: text; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .cursor-dot.is-on,
  .cursor-ring.is-on { opacity: 1; }

  .cursor-dot {
    width: 5px;
    height: 5px;
    margin: -2.5px 0 0 -2.5px;
    background: #9a9aa4;
  }

  .cursor-ring {
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 1px solid rgba(154, 154, 164, 0.55);
    transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease,
                border-color 0.25s ease, opacity 0.25s ease;
  }

  .cursor-ring.is-hover {
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border-color: rgba(154, 154, 164, 0.9);
  }
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .site-header { padding: 16px 20px; }
  .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }

  /* Logo + veprimet mbi kartën e menusë (si te PrintHuis) */
  .site-header .logo,
  .site-header .header-actions { position: relative; z-index: 12; }

  /* Karta drop-down nga lart — jo full screen, me cepa të rrumbullakosur poshtë */
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    background: var(--card);
    padding: 90px 26px 28px;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 18px 4px;
    font-size: 21px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    opacity: 1;
  }
  .main-nav a:last-of-type { border-bottom: none; }

  .hero { padding: 40px 24px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-avatar { order: -1; width: min(240px, 60vw); }
  .avatar-initials { font-size: 72px; }
  .hero-name { font-size: clamp(40px, 10vw, 60px); }

  .section { padding: 0 24px; margin-top: 80px; }
  .section-title { font-size: 30px; }

  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .stack { gap: 24px; }
  .stack-card {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    min-height: auto;
    padding: 28px 24px;
    border-radius: 22px;
    top: 80px;
  }
  .stack-text h3 { font-size: 26px; }
  .stack-text p { font-size: 16px; }
  .stack-media { width: 100%; height: 260px; }

  .footer { padding: 24px; }
}

@media (max-width: 540px) {
  .skills-grid { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
  .hero-content h1 { font-size: 32px; }
}


/* ---------- Ndarja About → Process (2 variante per krahasim) ---------- */

.divider-lab {
  max-width: 1180px;
  margin: 10px auto 30px;
  padding: 0 40px;
}
.divider-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 26px;
}
.dsw-btn {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.dsw-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.skill-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 22px 0;
}
.mq-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  white-space: nowrap;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--ink);
  animation: mqmove 32s linear infinite;
}
.mq-item.outline {
  color: transparent;
  -webkit-text-stroke: 1.3px var(--muted);
}
.mq-dot { color: var(--brand); font-size: 0.55em; }
@keyframes mqmove { to { transform: translateX(-50%); } }

.stats-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  border-block: 1px solid var(--border);
  padding: 34px 10px;
}
.stat { flex: 1; min-width: 140px; text-align: center; }
.stat-num {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 700px) {
  .divider-lab { padding: 0 24px; }
  .stats-band { gap: 14px; }
  .stat { min-width: 110px; }
}


/* ---------- Duo — "Më mirë së bashku" (stil Apple Better together) ---------- */

.duo-scene { height: 250vh; }
.duo-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  overflow: hidden;
  padding: 40px 0;
}
.duo-head { text-align: center; max-width: 660px; padding: 0 24px; }
.duo-sub { color: var(--muted); margin-top: 14px; font-size: 17px; line-height: 1.6; }
.duo-stage {
  position: relative;
  width: min(1000px, 90vw);
  aspect-ratio: 1520 / 760;
}
.duo-mac {
  position: absolute;
  left: 10%;
  top: 2%;
  width: 68%;
  will-change: transform;
  z-index: 2;
}

/* MacBook Pro ballor, i ndertuar me CSS: xham i zi + notch + baze alumini */
.mbp-screen {
  position: relative;
  background: linear-gradient(180deg, #17181b 0%, #0b0c0e 100%);
  border-radius: 14px 14px 0 0;
  padding: 1.9% 1.9% 2.3%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.mbp-screen img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 7px 7px 4px 4px;
}
.mbp-notch {
  position: absolute;
  top: 1.9%;
  left: 50%;
  transform: translateX(-50%);
  width: 9.5%;
  height: 2.3%;
  background: #0b0c0e;
  border-radius: 0 0 7px 7px;
  z-index: 2;
}
.mbp-deck {
  width: 106%;
  margin-left: -3%;
  aspect-ratio: 1650 / 46;
  background: linear-gradient(180deg, #e6e8ec 0%, #c2c5cb 30%, #9a9da4 70%, #74777d 100%);
  border-radius: 0 0 16px 16px / 0 0 90% 90%;
  position: relative;
  box-shadow: 0 2px 5px rgba(10, 15, 25, 0.35);
}
.mbp-deck::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 13%;
  height: 52%;
  background: linear-gradient(180deg, #85888f 0%, #b7bac0 80%, #cdd0d5 100%);
  border-radius: 0 0 40px 40px / 0 0 100% 100%;
}
.mbp-deck::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.duo-phone {
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 16%;
  will-change: transform;
  z-index: 5;
}
@media (max-width: 700px) {
  .duo-scene { height: auto; }
  .duo-pin { position: static; height: auto; overflow: visible; padding: 30px 0 10px; }
}
