/* =====================================================
   CODE CRAFTERS — REDESIGN
   Light & purple theme
   ===================================================== */

/* ── Reset & Base ───────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --bg2: #f8f7ff;
  --bg3: #ede9fe;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.14);
  --fg: #0f0f0f;
  --muted: #6b7280;
  --accent: #7a5af6;
  --accent2: #9b80f8;
  --accent3: #5b3fd4;
  --gold: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
  --max-w: 1200px;
  --nav-h: 72px;
  --grad-start: rgb(240, 230, 255);
  --grad-end: rgb(230, 215, 255);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  cursor: auto;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Custom Cursor ──────────────────────────────────── */
.cursor,
.cursor-follower {
  display: none;
}

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(122, 90, 246, 0.25);
  border-radius: 3px;
}

/* ── Utility ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.section-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(122, 90, 246, 0.05);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-centered .section-sub {
  margin-top: 16px;
}

/* ── Reveal Animations ──────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}
.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: var(--accent3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(122, 90, 246, 0.35);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--border2);
  color: var(--fg);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(122, 90, 246, 0.06);
  transform: translateY(-2px);
}

/* Hero dark pill button */
.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 20px;
  background: #111111;
  color: #ffffff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  cursor: pointer;
}
.btn-dark-pill:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-bolt-wrap {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero text arrow link */
.btn-text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  transition: color 0.2s;
  cursor: pointer;
}
.btn-text-arrow:hover {
  color: var(--accent);
}
.arrow-circle {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--border2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-text-arrow:hover .arrow-circle {
  border-color: var(--accent);
  background: rgba(122, 90, 246, 0.08);
}

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-bracket {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--accent);
  color: #fff !important;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--accent3) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background: #ffffff;
  min-height: 100dvh;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 580px;
  width: 100%;
}

/* Trust badge */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
  background: rgba(0, 0, 0, 0.02);
}
.trust-star {
  color: #22c55e;
  font-size: 0.9rem;
}
.trust-label {
  font-weight: 500;
  color: var(--fg);
}
.trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border2);
}
.trust-rating {
  color: var(--muted);
}

/* Hero headline */
.hero-headline {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
  color: var(--fg);
}

/* Purple highlight boxes */
.hero-highlight {
  display: inline-block;
  background: #7a5af6;
  color: #ffffff;
  padding: 0px 12px 2px;
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: -0.28em;
}

/* Inline hero images */
.hero-inline-img {
  display: inline-block;
  overflow: hidden;
  height: 0.9em;
  vertical-align: -0.28em;
  vertical-align: middle;
  margin: 0 2px;
  position: relative;
  top: -0.05em;
}
.hero-last-line {
  display: block;
  margin-top: 3px;
}

.hero-inline-img--rocket {
  height: 1.2em;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* ── ABOUT ──────────────────────────────────────────── */
#about {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

/* Centered header — mirrors hero layout */
.about-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(122, 90, 246, 0.05);
  margin-bottom: 20px;
}
.about-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.about-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Bento stat row */
.about-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.astat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.astat-card:hover {
  border-color: rgba(122, 90, 246, 0.25);
  box-shadow: 0 8px 32px rgba(122, 90, 246, 0.08);
  transform: translateY(-3px);
}
.astat-card--accent {
  background: var(--accent);
  border-color: var(--accent);
}
.astat-card--accent .astat-num,
.astat-card--accent .astat-label,
.astat-card--accent .astat-sub {
  color: #fff;
}
.astat-card--accent .astat-sub {
  opacity: 0.75;
}

.astat-num {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.astat-plus {
  font-size: 1.4rem;
}
.astat-star {
  font-size: 1.3rem;
  vertical-align: top;
  position: relative;
  top: 0.25em;
  margin-left: 6px;
}
.astat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 8px;
}
.astat-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Bottom content row */
.about-bottom {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
  background: rgba(122, 90, 246, 0.04);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.feature-pill:hover {
  border-color: var(--accent);
  background: rgba(122, 90, 246, 0.08);
}
.feature-pill svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Profile card */
.about-profile {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.about-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 20px 20px 0 0;
}
.ap-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.ap-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.ap-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 3px;
}
.ap-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.ap-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.ap-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.ap-location svg {
  color: var(--accent);
}

/* ── SERVICES ───────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.svc-list {
  border-top: 1px solid var(--border);
}

.svc-row {
  display: grid;
  grid-template-columns: 48px 1fr 1fr auto 32px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  position: relative;
  cursor: pointer;
}
.svc-row::before {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  border-radius: var(--radius);
  background: rgba(122, 90, 246, 0.04);
  opacity: 0;
  transition: opacity 0.2s;
}
.svc-row:hover::before {
  opacity: 1;
}
.svc-row:hover {
  cursor: none;
}
.svc-row:hover .svc-num {
  color: var(--accent);
}
.svc-row:hover .svc-name {
  color: var(--accent);
}
.svc-row:hover .svc-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

.svc-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.2);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}

.svc-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.svc-detail {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  display: block;
  text-align: left;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.svc-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: var(--bg2);
}

.svc-arrow {
  font-size: 1.1rem;
  color: var(--muted);
  transition:
    transform 0.2s,
    color 0.2s;
}

/* ── Service Cursor ──────────────────────────────────── */
.svc-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  will-change: transform, opacity;
  box-shadow: 0 8px 32px rgba(122, 90, 246, 0.35);
}
.svc-cursor-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-cursor-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-cursor-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── WHY US ─────────────────────────────────────────── */
#why-us {
  padding: 120px 0 0;
  border-top: 1px solid var(--border);
  overflow-x: hidden;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

/* Left */
.why-left {
  background: var(--bg3);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.why-left .section-label {
  margin-bottom: 4px;
}
.why-left-headline {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
}
.why-left-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}
.why-left-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s;
}
.why-left-link:hover {
  gap: 10px;
}

/* Right */
.why-right {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}
.why-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-row:first-child {
  border-top: 1px solid var(--border);
}
.why-row-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  margin-top: 2px;
}
.why-row:hover .why-row-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.why-row-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-row-body strong {
  font-size: 1rem;
  font-weight: 650;
  color: var(--fg);
  transition: color 0.2s;
}
.why-row:hover .why-row-body strong {
  color: var(--accent);
}
.why-row-body span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  border-radius: 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 72px;
}
.marquee-track {
  overflow: hidden;
  padding: 18px 0;
}
.marquee-content {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  align-items: center;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.mx {
  color: var(--accent);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── PROJECTS ───────────────────────────────────────── */
#projects {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.section-header-left {
  margin-bottom: 64px;
}
.section-header-left .section-title {
  text-align: left;
}
.section-header-left .section-sub {
  text-align: left;
  max-width: 480px;
  margin: 0;
}

.proj-scroll-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left scrolling list */
.proj-items {
  display: flex;
  flex-direction: column;
}

.proj-item {
  display: flex;
  gap: 24px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s;
  align-items: center;
}
.proj-item:first-child {
  border-top: 1px solid var(--border);
}

.proj-item.proj-active .proj-title {
  color: var(--accent);
}
.proj-item.proj-active .proj-num {
  color: var(--accent);
  font-weight: 700;
}
.proj-item.proj-active .proj-link {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(122, 90, 246, 0.08);
}
.proj-item.proj-active .proj-tags span {
  border-color: rgba(122, 90, 246, 0.3);
  color: var(--accent);
  background: rgba(122, 90, 246, 0.05);
}
.proj-item:not(.proj-active) {
  opacity: 0.4;
}

.proj-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.proj-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proj-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.proj-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.proj-item:hover .proj-title {
  color: var(--accent);
}

.proj-type {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--muted);
}

.proj-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.proj-item:hover .proj-link {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(122, 90, 246, 0.08);
}

.proj-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.proj-tags span {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  color: var(--muted);
}

/* Right sticky image */
.proj-sticky {
  position: sticky;
  top: 120px;
}

.proj-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  position: relative;
}

.proj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.proj-img.fade-out {
  opacity: 0;
}
.proj-img.fade-in {
  opacity: 1;
}
/* Icon-mode frames (android + chatbot) */
.proj-img-frame.proj-display-icon-android,
.proj-img-frame.proj-display-icon-chatbot {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}

.proj-img-frame.proj-display-icon-android {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.proj-img-frame.proj-display-icon-android .proj-img,
.proj-img-frame.proj-display-icon-chatbot .proj-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 20px;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
#testimonials {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.tc-header {
  margin-bottom: 56px;
}
.tc-header .section-title {
  text-align: left;
}

.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.tc-card:hover {
  border-color: rgba(122, 90, 246, 0.2);
  box-shadow: 0 12px 40px rgba(122, 90, 246, 0.07);
}

.tc-quote {
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
  user-select: none;
}

.tc-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--fg);
  flex: 1;
  margin-bottom: 20px;
}

.tc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.tc-stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.tc-impact {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent);
  background: rgba(122, 90, 246, 0.08);
  border: 1px solid rgba(122, 90, 246, 0.18);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.tc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--accent);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.tc-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
}
.tc-role {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ── CONTACT ────────────────────────────────────────── */
#contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 100px;
}
.contact-left .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 36px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(122, 90, 246, 0.07);
}
.ci-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--muted);
  margin-bottom: 2px;
}
.ci-value {
  font-size: 0.9rem;
  color: var(--fg);
}
.ci-link {
  color: var(--fg);
  transition: color 0.2s;
}
.ci-link:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  box-shadow: 0 8px 40px rgba(122, 90, 246, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.73rem;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--fg);
  font-family: var(--font-sans);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  outline: none;
  resize: none;
}
.form-group textarea {
  min-height: 130px;
}
.contact-form .btn-full {
  margin-top: 6px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 114, 128, 0.5);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122, 90, 246, 0.1);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #16a34a;
}
.form-success svg {
  color: #16a34a;
  flex-shrink: 0;
}
.form-success.hidden {
  display: none;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none !important;
}

/* ── FOOTER ─────────────────────────────────────────── */
#footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-logo {
  font-size: 1.4rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-links-col a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links-col a:hover {
  color: var(--fg);
}
.footer-addr {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-craft {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}
.footer-craft-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-craft-link:hover {
  color: var(--accent3);
  border-bottom-color: var(--accent);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .hero-content {
    max-width: 600px;
  }
  .about-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-row {
    grid-template-columns: 40px 1fr auto 24px;
  }
  .svc-detail {
    display: none;
  }
  .why-split {
    gap: 48px;
  }
  .proj-scroll-wrap {
    grid-template-columns: 1fr;
  }
  .proj-sticky {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 24px) 32px 32px;
    gap: 24px;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid var(--border2);
    z-index: 999;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 1.1rem;
  }
  .hamburger {
    display: flex;
  }

  .hero-headline {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .hero-emoji-badge {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .svc-row {
    grid-template-columns: 32px 1fr 24px;
    gap: 16px;
  }
  .svc-detail,
  .svc-tags {
    display: none;
  }
  .why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-left {
    position: static;
    padding: 36px 28px;
  }
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .tc-card {
    padding: 24px 20px 20px;
  }
  .tc-quote { font-size: 3rem; margin-bottom: 8px; }
  .tc-text  { font-size: 0.85rem; margin-bottom: 14px; }
  .tc-meta  { margin-bottom: 14px; padding-bottom: 14px; }
  .contact-left {
    position: static;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  #testimonials {
    padding: 80px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-wrap: wrap;
  }

  .tc-grid {
    grid-template-columns: 1fr;
  }
  .tc-card {
    padding: 20px 16px 16px;
  }

  .contact-form {
    padding: 28px 20px 24px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  .form-group input,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 0.88rem;
  }
  #contact {
    padding: 64px 0;
  }
  .contact-sub {
    margin-bottom: 24px;
  }
  .contact-info-list {
    gap: 14px;
  }
}

/* ── Mobile cursor off ──────────────────────────────── */
@media (hover: none) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ── Nav Dropdown ────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--accent); }
.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 210px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--fg);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border2);
    background: none;
    border-radius: 0;
    padding: 4px 0 4px 16px;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    display: none;
    gap: 0;
  }
  .nav-dropdown-menu a {
    font-size: 0.95rem;
    padding: 7px 0;
    border-radius: 0;
    color: var(--muted);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; font-size: 1rem; }
}

/* ── Blog Index Page ─────────────────────────── */
.blog-hero { padding: 100px 0 48px; background: var(--bg2); }
.blog-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 48px; }
.blog-filter-btn {
  padding: 7px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border2);
  background: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}
.blog-filter-btn.active,
.blog-filter-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.blog-card-cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--bg3);
  display: block;
}
.blog-card-cover-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-category {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  background: var(--bg3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}
.blog-card-title { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── Blog Post Page ─────────────────────────── */
.post-hero { padding: 100px 0 10px; background: var(--bg2); }
.post-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  display: block;
}
.post-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.post-category {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  background: var(--bg3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}
.post-meta-text { font-size: 0.82rem; color: var(--muted); }
.post-title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.25; margin-bottom: 40px; }

.post-body { padding: 16px 24px 80px; }
.post-body h2 { font-size: 1.45rem; font-weight: 700; margin: 36px 0 14px; }
.post-body h3 { font-size: 1.15rem; font-weight: 600; margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; line-height: 1.75; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; line-height: 1.75; }
.post-body li { margin-bottom: 6px; }
.post-body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent3);
}
.post-body pre {
  background: var(--bg2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
}
.post-body pre code { background: none; padding: 0; color: var(--fg); }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 20px 0;
  padding: 12px 20px;
  background: var(--bg3);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.post-cta-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 0 0 64px;
  color: #fff;
}
.post-cta-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.post-cta-card p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: var(--accent3);
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.more-posts-section { padding: 0 0 80px; }

/* ── Service Pages ───────────────────────────── */
.svc-page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
}
.svc-page-hero .about-tag { margin-bottom: 14px; }
.svc-page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.svc-page-hero p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin-bottom: 32px; }
.svc-page-hero .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.svc-includes-section,
.svc-stack-section,
.svc-cta-section { padding: 72px 0; }
.svc-stack-section { background: var(--bg2); }

.svc-includes-list { display: flex; flex-direction: column; margin-top: 48px; }
.svc-include-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.svc-include-row:last-child { border-bottom: none; }
.svc-include-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  min-width: 32px;
  padding-top: 3px;
}
.svc-include-body strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.svc-include-body span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

.svc-stack-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.svc-stack-tag {
  padding: 8px 18px;
  background: var(--bg3);
  color: var(--accent3);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}

.svc-cta-section {
  background-color: var(--accent);
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(135deg, var(--accent) 0%, var(--accent3) 100%);
  background-size: 22px 22px, 100% 100%;
  text-align: center;
  padding: 96px 0;
}
.svc-cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; color: #fff; margin-bottom: 14px; }
.svc-cta-section p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 32px; }
.svc-cta-section .btn-white { font-size: 1rem; padding: 14px 32px; }
