/* ===== Variables ===== */
:root {
  --bg: #080604;
  --bg-elevated: #12100c;
  --bg-card: #161310;
  --gold: #d4a853;
  --gold-light: #f0d078;
  --gold-dim: rgba(212, 168, 83, 0.15);
  --gold-glow: rgba(212, 168, 83, 0.35);
  --text: #ffffff;
  --text-muted: #9a9590;
  --border: rgba(212, 168, 83, 0.2);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --label-width: 80px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
.gold { color: var(--gold); }

/* ===== Particles ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 90, 30, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
}
.particles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(212,168,83,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(212,168,83,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(212,168,83,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 80%, rgba(212,168,83,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 50%, rgba(240,208,120,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 60%, rgba(212,168,83,0.2) 0%, transparent 100%);
  opacity: 0.6;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(to bottom, rgba(8,6,4,0.95) 0%, transparent 100%);
  transition: background 0.3s;
  pointer-events: auto;
  isolation: isolate;
}
.nav.scrolled {
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text span { color: var(--gold); font-weight: 400; }
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  color: #25d366;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-wa svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-wa:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: #25d366;
  color: #4ade80;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold-dim);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.nav-logo,
.nav-links,
.nav-links a,
.lang-btn,
.nav-toggle {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  background: var(--gold-dim);
  color: var(--gold);
}
.lang-btn + .lang-btn {
  border-left: 1px solid var(--border);
}
.lang-select {
  padding: 0.35rem 1.75rem 0.35rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--font);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23d4a853' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.45rem center;
}
.lang-select:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  z-index: 1;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 168, 83, 0.06);
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero-brand {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--gold);
  font-weight: 400;
  margin-top: -0.25rem;
}
.hero-tagline {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: #080604;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
  color: #080604;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Section Layout ===== */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}
.section-split {
  display: grid;
  grid-template-columns: var(--label-width) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.section-label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}
.section-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-label--inline {
  writing-mode: horizontal-tb;
  transform: none;
  margin-bottom: 2rem;
}
.section-label--inline span {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 0.85rem;
}
.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.section-heading em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  max-width: 680px;
}
.about-text p:last-child { margin-bottom: 0; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  background: transparent;
  border: none;
}
a.service-card {
  text-decoration: none;
  color: inherit;
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.service-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1.15rem 1.35rem 1.35rem;
}
.services-grid .service-card-inner {
  grid-template-columns: 1fr auto;
}
.services-grid .service-icon {
  display: none;
}
.service-thumb {
  width: 100%;
  height: 96px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 1rem 1.25rem 0.5rem;
  background: linear-gradient(180deg, rgba(212, 168, 83, 0.07) 0%, transparent 100%);
  border-bottom: none;
}
.service-card:hover {
  background: #1a1714;
  border-color: rgba(212, 168, 83, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}
.service-card::after {
  content: none;
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.service-icon svg { width: 18px; height: 18px; }
.service-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
  transition: color 0.2s;
}
.service-card:hover .service-content h3 {
  color: var(--gold);
}
.service-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  opacity: 0.55;
  align-self: start;
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 4px;
}

/* ===== Portfolio ===== */
.portfolio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}
.section-split--portfolio {
  max-width: 1200px;
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  padding: 0;
}
.section-split--portfolio:last-child { margin-bottom: 0; }
.portfolio-row-wrap { width: 100%; }
.portfolio-row {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

/* Phone mockups */
.phone-mockup {
  width: clamp(160px, 22vw, 220px);
  aspect-ratio: 9/19;
  background: #1a1a1a;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.35s ease;
}
.phone-mockup:hover { transform: translateY(-8px) scale(1.02); }
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #0d0d0d;
}
.phone-screen img,
.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Mock UI screens (CSS-only) */
.mock-ui {
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-ui::before {
  content: "";
  height: 6px;
  width: 40%;
  background: var(--accent, var(--gold));
  border-radius: 3px;
  opacity: 0.8;
}
.mock-ui::after {
  content: "";
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent, #6366f1) 30%, #111) 0%, #0a0a0a 100%);
}
.mock-ui--finance::after { background: linear-gradient(160deg, #312e81 0%, #0f0f1a 100%); }
.mock-ui--health::after { background: linear-gradient(160deg, #064e3b 0%, #0a1210 100%); }
.mock-ui--social::after { background: linear-gradient(160deg, #78350f 0%, #14100a 100%); }
.mock-ui--dashboard::after { background: linear-gradient(160deg, #831843 0%, #120a10 100%); }
.mock-ui--ecommerce::after { background: linear-gradient(160deg, #4c1d95 0%, #0e0a14 100%); }
.mock-ui--travel::after { background: linear-gradient(160deg, #164e63 0%, #0a1014 100%); }

/* Laptop mockups */
.laptop-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.laptop-mockup--hero {
  max-width: 800px;
  margin: 0 auto;
}
.laptop-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: #111;
  border-radius: 8px 8px 0 0;
  border: 2px solid #2a2a2a;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}
.laptop-base {
  width: 108%;
  height: 12px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 0 0 4px 4px;
  position: relative;
}
.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: #333;
  border-radius: 0 0 4px 4px;
}
.laptop-mockup--sm { width: 100%; }
.laptop-mockup--sm .laptop-screen { border-radius: 4px 4px 0 0; }
.laptop-mockup--sm .laptop-base { height: 8px; }

.mock-web {
  width: 100%;
  height: 100%;
  min-height: 120px;
}
.mock-web--hero {
  background:
    linear-gradient(180deg, rgba(212,168,83,0.15) 0%, transparent 40%),
    linear-gradient(135deg, #1a1410 0%, #080604 100%);
  position: relative;
}
.mock-web--hero::before {
  content: "TESLAB";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(212,168,83,0.3);
  letter-spacing: 0.3em;
}
.mock-web--1 { background: linear-gradient(135deg, #1e3a5f, #0a1628); }
.mock-web--2 { background: linear-gradient(135deg, #3d1f5c, #150a20); }
.mock-web--3 { background: linear-gradient(135deg, #1f4d3a, #0a1812); }
.mock-web--4 { background: linear-gradient(135deg, #5c3d1f, #1a1008); }
.mock-web--5 { background: linear-gradient(135deg, #2d3d5c, #0e1218); }
.mock-web--6 { background: linear-gradient(135deg, #5c2d3d, #180a10); }

.laptop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
/* ===== Works ===== */
.works-section {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}
.works-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.works-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.work-tile {
  aspect-ratio: 4/3;
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 40) 40% 25%) 0%,
    hsl(var(--hue, 40) 30% 12%) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.75rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, filter 0.3s;
}
.work-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.work-tile:hover {
  transform: scale(1.03);
  z-index: 2;
  filter: brightness(1.15);
}
.work-tile:hover::before { opacity: 1; }
.work-tile span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  position: relative;
  z-index: 1;
}
.work-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Clients ===== */
.clients-section {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.clients-featured {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  filter: brightness(1.05);
}
.client-logo:hover { opacity: 1; transform: scale(1.04); }
.client-logo img {
  max-height: clamp(48px, 8vw, 72px);
  max-width: clamp(120px, 18vw, 200px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-logo--lg img {
  max-height: clamp(56px, 10vw, 90px);
  max-width: clamp(140px, 22vw, 240px);
}
.clients-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.3s;
}
.partner-logo:hover { opacity: 1; transform: scale(1.05); }
.partner-logo img {
  max-height: 36px;
  max-width: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) brightness(1.1);
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}
.faq-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1rem;
  align-items: start;
}
.faq-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.faq-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Payment ===== */
#payment .section-body {
  width: 100%;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.75rem);
  width: 100%;
  max-width: 100%;
}
.payment-icon {
  width: 100%;
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.4vw, 18px);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  overflow: hidden;
}
.payment-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.payment-icon:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}

/* ===== Contact ===== */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: center;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-icon--wa { color: #25d366; border-color: rgba(37, 211, 102, 0.35); background: rgba(37, 211, 102, 0.08); }
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-list a,
.contact-list span:not(.contact-label) {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-list a:hover { color: var(--gold-light); }

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== Animations on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .works-grid { grid-template-columns: repeat(4, 1fr); }
  .laptop-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .payment-icon { max-width: 96px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-actions { margin-left: auto; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    background: rgba(8, 6, 4, 0.98);
    border-left: 1px solid var(--border);
    gap: 1.5rem;
    transition: right 0.35s ease;
  }
  .nav-links.open { right: 0; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .section-split {
    grid-template-columns: 1fr;
  }
  .section-label {
    justify-content: flex-start;
    padding-top: 0;
    margin-bottom: 1rem;
  }
  .section-label span {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card-inner { grid-template-columns: 1fr auto; }
  .services-grid .service-icon { display: none; }
}

@media (max-width: 480px) {
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-row { gap: 1rem; }
  .phone-mockup { width: 140px; }
  .payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .payment-icon { max-width: 80px; }
  .clients-featured { gap: 1.5rem; }
}
