/* === Cursor glow (full page) === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: radial-gradient(
    circle 240px at var(--gx, -999px) var(--gy, -999px),
    rgba(59, 130, 246, 0.10) 0%,
    transparent 70%
  );
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* === Design Tokens === */
:root {
  --bg:           #07101f;
  --bg-surface:   #0d1b2e;
  --bg-surface-2: #122640;
  --accent:       #2563eb;
  --accent-light: #3b82f6;
  --accent-glow:  rgba(37, 99, 235, 0.2);
  --accent-border:rgba(37, 99, 235, 0.4);
  --text:         #e8edf5;
  --text-muted:   #8b9ab5;
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);
  --danger:       #ef4444;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;
  --max-w: 1140px;
  --nav-h: 72px;
  --t: 0.25s ease;
}

/* === Base === */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }

/* === Utilities === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  font-family: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 36px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent-light);
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled {
  background: rgba(7, 16, 31, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__cta { padding: 10px 20px; font-size: 0.86rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(7, 16, 31, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  flex-direction: column;
  gap: 22px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}
.nav__mobile a:hover { color: var(--text); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
}

/* Animated glow orbs */
.hero__bg::before {
  content: '';
  position: absolute;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(37,99,235,0.16) 0%, transparent 70%);
  top: -160px; left: -120px;
  animation: orb1 14s ease-in-out infinite;
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,130,246,0.11) 0%, transparent 70%);
  bottom: -60px; right: 8%;
  animation: orb2 18s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(80px,50px) scale(1.08); }
  66%      { transform: translate(-40px,90px) scale(0.94); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-70px,-50px) scale(1.1); }
  66%      { transform: translate(50px,-90px) scale(0.92); }
}

/* Subtle grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 45%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--accent-border);
  background: rgba(37,99,235,0.1);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 30px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 24px;
  width: 1000px;
}
.hero__title .hl {
  background: linear-gradient(130deg, var(--accent-light) 0%, #60a5fa 60%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.typed-text::after {
  content: '|';
  -webkit-text-fill-color: var(--accent-light);
  margin-left: 4px;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 42px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: floatY 3s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent-light), transparent);
}
@keyframes floatY {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--bg-surface);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.services__header { margin-bottom: 56px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.32s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.svc-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px var(--accent-border);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.14);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  position: relative;
}
.svc-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--text);
}
.svc-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 22px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.74rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(37,99,235,0.1);
  color: var(--accent-light);
  border: 1px solid rgba(37,99,235,0.25);
}

/* ============================================================
   WORK / PORTFOLIO
============================================================ */
.work { background: var(--bg); }
.work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.proj-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.32s ease;
  cursor: pointer;
}
.proj-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.proj-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--bg-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-thumb-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 32px 32px;
}
.proj-thumb-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent);
}
.proj-thumb-icon {
  position: relative;
  z-index: 1;
  font-size: 2.6rem;
  opacity: 0.45;
}
.proj-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.proj-thumb-dim {
  position: absolute; inset: 0;
  background: rgba(7, 16, 31, 0.55);
}
.proj-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(7,16,31,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.proj-card:hover .proj-thumb-overlay { opacity: 1; }

.proj-info {
  padding: 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.proj-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.proj-info h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--text); }
.proj-client { font-size: 0.78rem; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 10px !important; }
.proj-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.68; }

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--bg-surface);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 18px;
}
.about__text p:last-of-type { margin-bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: border-color var(--t);
}
.stat-card:hover { border-color: var(--accent-border); }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

.skills-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.skills-group-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.skill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.skill-pill {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--t);
}
.skill-pill:hover {
  border-color: var(--accent-border);
  color: var(--accent-light);
}

/* ============================================================
   CONTACT
============================================================ */
.contact { background: var(--bg); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.contact__left p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail { display: flex; align-items: center; gap: 16px; }
.detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.detail-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.detail-text a, .detail-text p {
  font-size: 0.93rem;
  color: var(--text);
  margin: 0;
}
.detail-text a:hover { color: var(--accent-light); }

/* Form */
.contact__form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.93rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(139,154,181,0.45);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 0.96rem;
  justify-content: center;
  margin-top: 6px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
  color: var(--accent-light);
  font-size: 1rem;
  line-height: 1.6;
}
.form-error {
  display: none;
  text-align: center;
  padding: 14px 16px;
  margin-top: 14px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--danger, #ef4444);
  font-size: 0.88rem;
  line-height: 1.6;
}
.form-notice {
  text-align: center;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
  font-size: 0.88rem;
  line-height: 1.6;
}
.form-notice a {
  color: inherit;
  text-decoration: underline;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo {
  display: flex;
  align-items: center;
}
.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.footer__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer__links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--text); }
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   PROJECT MODAL
============================================================ */
.proj-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.proj-modal.open { display: flex; }
.proj-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.proj-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
  animation: projModalIn 0.28s ease;
}
@keyframes projModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.proj-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: rgba(7, 16, 31, 0.7);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.proj-modal__close:hover { background: var(--accent); border-color: var(--accent); }

.proj-modal__slideshow {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-surface-2);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.proj-modal__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.proj-modal__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.proj-modal__slides img.active { opacity: 1; }

.proj-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: rgba(7, 16, 31, 0.6);
  color: var(--text);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.proj-modal__nav:hover { background: var(--accent); }
.proj-modal__nav--prev { left: 14px; }
.proj-modal__nav--next { right: 14px; }
.proj-modal__slideshow:not(.has-multi) .proj-modal__nav,
.proj-modal__slideshow:not(.has-multi) .proj-modal__dots { display: none; }

.proj-modal__dots {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.proj-modal__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.proj-modal__dots span.active { background: var(--text); transform: scale(1.2); }

.proj-modal__info { padding: 28px 30px 32px; }
.proj-modal__info h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--text); }
.proj-modal__info .proj-client { margin-bottom: 16px !important; }
.proj-modal__info p:not(.proj-client) { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.proj-modal__info .proj-tags { margin-bottom: 14px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner   { grid-template-columns: 1fr; gap: 52px; }
  .contact__inner { grid-template-columns: 1fr; gap: 52px; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work__header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .hero__scroll { display: none; }
  .proj-modal__info { padding: 22px 20px 26px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .contact__form { padding: 28px 22px; }
}
