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

:root {
  --bg: #0d0d0d;
  --bg2: #121212;
  --bg3: #181818;
  --border: #232323;
  --border2: #1c1c1c;
  --text: #e2e2e2;
  --muted: #777;
  --dim: #3a3a3a;
  --shopify: #96bf48; /* Shopify green */
  --shopify2: #5a8a00;
  --white: #f5f5f5;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
  --radius: 10px;
}

html {
  scroll-behavior: smooth;
}

/* Styles all selected text on the page */
::selection {
  background-color: var(--shopify2); /* Example background color */
  color: #fff; /* Example text color */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle noise texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
                                         HELPER CLASSES
                                      ══════════════════════════════════════════ */
.color-dark-light {
  color: #b7b5b5 !important;
}

.font-sm {
  font-size: 0.82rem !important;
}

/* ══════════════════════════════════════════
                                         HEADER
                                      ══════════════════════════════════════════ */
header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.logo-bag {
  width: 28px;
  height: 28px;
  background: var(--shopify);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-bag svg {
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  transition:
    color 0.15s,
    background 0.15s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg3);
}
.nav-cta {
  padding: 0.42rem 1.1rem;
  background: var(--shopify);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 7px;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════
                                         HERO
                                      ══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: 58px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* animated grid bg */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border2) 1px, transparent 1px),
    linear-gradient(90deg, var(--border2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 40%,
    black 30%,
    transparent 100%
  );
  opacity: 0.45;
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(150, 191, 72, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shopify);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--shopify);
}
.hero-p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 2.25rem;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  background: var(--shopify);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 8px;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.btn-green:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  border-radius: 8px;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: #444;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  font-family: var(--mono);
  color: var(--dim);
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

/* hero right — shopify badge card */
.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.hero-card-top {
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-card-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shopify2), var(--shopify));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.hero-card-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.hero-card-badge {
  margin-left: auto;
  background: rgba(150, 191, 72, 0.12);
  border: 1px solid rgba(150, 191, 72, 0.25);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-size: 0.65rem;
  font-family: var(--mono);
  color: var(--shopify);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero-card-metrics {
  padding: 1.25rem 2rem;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border2);
  font-size: 0.8rem;
}
.metric-row:last-child {
  border-bottom: none;
}
.metric-label {
  color: var(--muted);
}
.metric-val {
  color: var(--white);
  font-weight: 500;
  font-family: var(--mono);
  font-size: 0.75rem;
}
.metric-val.green {
  color: var(--shopify);
}
.hero-card-footer {
  padding: 1rem 1.5rem;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
}
.avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--shopify);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

/* CLIENTS */
/* Infinite Logo Scroll */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logos {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: relative;
}
.logos-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}
.logos-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  align-items: center;
}
.logos:hover .logos-track {
  animation-play-state: paused;
}
.logos-slide {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logos-slide img {
  height: 22px;
  width: auto;
  margin: 0 2.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  transition: opacity 0.2s;
}
.logos-slide img:hover {
  opacity: 0.65;
}
.logos-slide img.logo-slide--1 {
  height: 30px;
}
.logos-slide img.logo-slide--2 {
  height: 32px;
}
.logos-slide img.logo-slide--3 {
  height: 32px;
}
.logos-slide img.logo-slide--4 {
  height: 20px;
}
.logos-slide img.logo-slide--6 {
  height: 30px;
}
.logos-slide img.logo-slide--7 {
  height: 36px;
  margin-bottom: 12px;
}
.logos-slide img.logo-slide--8 {
  height: 24px;
}
.logos-slide img.logo-slide--9 {
  height: 20px;
}
.logos-slide img.logo-slide--10 {
  height: 12px;
}

/* ══════════════════════════════════════════
         PROCESS SECTION
      ══════════════════════════════════════════ */
#process {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

/* Section header — 2-col grid */
.process-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

/* Main body — left scrolls, right sticky */
.process-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
}

/* ── Left: scrolling phase list ── */
.process-phases {
  padding-right: 4rem;
}

.process-phase {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border2);
}
.process-phase:last-child {
  border-bottom: none;
}

/* PHASE 0X label + line */
.process-phase-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.process-phase-tag span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shopify);
}
.process-phase-tag-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: var(--border);
}

/* Phase heading */
.process-phase h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Phase description */
.process-phase p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 1.75rem;
}

/* Bullet list */
.process-phase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.process-phase-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.process-phase-bullets li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--shopify);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Right: sticky SVG panel ── */
.process-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1rem;
}

.process-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}

/* For real images if used instead of SVGs */
.process-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.process-img-wrap img.active {
  opacity: 1;
}

/* SVG illustration panels */
.process-svg-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.55s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-svg-panel.active {
  opacity: 1;
}
.process-svg-panel svg {
  width: 100%;
  height: 100%;
}

/* Phase label badge at bottom of sticky panel */
.process-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shopify);
  z-index: 2;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .process-body {
    grid-template-columns: 1fr;
  }
  .process-sticky {
    display: none;
  } /* hide sticky on tablet/mobile */
  .process-phases {
    padding-right: 0;
  }
  .process-phase {
    min-height: auto;
    padding: 3rem 0;
  }
  .process-intro {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .s-wrap {
    padding: 4rem 1rem;
  }
}

/* ══════════════════════════════════════════
                                         UPWORK STRIP
                                      ══════════════════════════════════════════ */
#upwork-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.upwork-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.upwork-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.upwork-badge {
  width: 100px;
}
.upwork-badge img {
  width: 100%;
}
.upwork-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.upwork-text span {
  font-size: 0.78rem;
  color: var(--muted);
}
.upwork-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.upwork-stat {
  text-align: center;
}
.upwork-stat-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--shopify);
  display: block;
  line-height: 1;
}
.upwork-stat-l {
  font-size: 0.63rem;
  font-family: var(--mono);
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.upwork-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* ══════════════════════════════════════════
                                         SHARED SECTION STYLES
                                      ══════════════════════════════════════════ */
.s-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.s-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}
.s-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.s-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--dim);
}
.s-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--white);
}
.s-title em {
  font-style: italic;
  color: var(--shopify);
}
.s-sub {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 58ch;
  margin-top: 0.6rem;
}

.s-border-t {
  border-top: 1px solid var(--border);
}
.s-bg2 {
  background: var(--bg2);
}

/* ══════════════════════════════════════════
                                         ABOUT
                                      ══════════════════════════════════════════ */
#about {
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-left {
}
.about-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  aspect-ratio: 3/4;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
/* legacy placeholder kept for safety */
.about-img-placeholder {
  width: 100%;
  height: 100%;
}
.about-img-placeholder svg {
  opacity: 0.15;
  width: 80px;
}
.about-img-placeholder span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}
.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--shopify);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-badge-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 500;
}
.about-badge-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

.about-right {
}
.about-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shopify);
  margin-bottom: 1rem;
}
.about-heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.about-body strong {
  color: var(--text);
  font-weight: 400;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.75rem 0;
}
.about-stat {
  background: var(--bg2);
  padding: 1.1rem 0.85rem;
  text-align: center;
}
.about-stat-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--shopify);
  display: block;
  line-height: 1;
}
.about-stat-l {
  font-size: 0.62rem;
  font-family: var(--mono);
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.15s;
  width: fit-content;
}
.contact-link:hover {
  color: var(--text);
}
.contact-link svg {
  color: var(--dim);
  flex-shrink: 0;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.75rem;
}

.skill-tag {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  transition:
    color 0.15s,
    border-color 0.15s;
}
@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .upwork-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-header {
    grid-template-columns: 1fr;
  }
  .nav-cta {
    display: none;
  }
  .upwork-left {
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .upwork-right {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.skill-tag {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.28rem 0.65rem;
  border-radius: 5px;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.skill-tag:hover {
  color: var(--shopify);
  border-color: rgba(150, 191, 72, 0.3);
}

/* ══════════════════════════════════════════
                                         SERVICES
                                      ══════════════════════════════════════════ */
#services {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--shopify);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card:hover {
  background: var(--bg3);
}
.svc-card:nth-child(3n) {
  border-right: none;
}
.svc-card:nth-last-child(-n + 3) {
  border-bottom: none;
}
.svc-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shopify);
  margin-bottom: 1.25rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.svc-card:hover .svc-icon {
  background: rgba(150, 191, 72, 0.08);
  border-color: rgba(150, 191, 72, 0.2);
}
.svc-card h3 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--dim);
  border: 1px solid var(--border2);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
                                         PROJECTS
                                      ══════════════════════════════════════════ */
#projects {
  border-top: 1px solid var(--border);
}
.projects-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: end;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.proj-card {
  background: var(--bg2);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.proj-card:hover {
  background: var(--bg3);
}
.proj-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.proj-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}
.proj-card:hover .proj-thumb-inner {
  transform: scale(1.04);
}
/* Unique per-project gradient previews */
.proj-thumb-inner.p1 {
  background: linear-gradient(135deg, #0f1f0a 0%, #1a3310 50%, #0d1a08 100%);
}
.proj-thumb-inner.p2 {
  background: linear-gradient(135deg, #0a0a1f 0%, #101030 50%, #08080f 100%);
}
.proj-thumb-inner.p3 {
  background: linear-gradient(135deg, #1a0f0a 0%, #301510 50%, #180a06 100%);
}
.proj-thumb-inner.p4 {
  background: linear-gradient(135deg, #0a1a1a 0%, #102a28 50%, #06100f 100%);
}
.proj-thumb svg {
  opacity: 0.2;
}
.proj-body {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}
.proj-type {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shopify);
  margin-bottom: 0.3rem;
}
.proj-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}
.proj-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.proj-card:hover .proj-arrow {
  color: var(--shopify);
  border-color: rgba(150, 191, 72, 0.3);
  transform: translate(2px, -2px);
}

/* ══════════════════════════════════════════
                                         TESTIMONIALS
                                      ══════════════════════════════════════════ */
#testimonials {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.testi-header {
  margin-bottom: 3rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.testi-card {
  background: var(--bg2);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.2s;
}
.testi-card:hover {
  background: var(--bg3);
}
.testi-stars {
  display: flex;
  gap: 0.2rem;
}
.testi-star {
  color: var(--shopify);
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border2);
}
.testi-foot img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.testi-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shopify2), var(--shopify));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}
.testi-role {
  font-size: 0.7rem;
  color: var(--dim);
  margin-top: 0.1rem;
}
.testi-platform {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--dim);
  border: 1px solid var(--border2);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
}

/* ══════════════════════════════════════════
                                         FAQ
                                      ══════════════════════════════════════════ */
#faq {
  border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.faq-sticky {
  position: sticky;
  top: 80px;
}
.faq-sticky h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.faq-sticky p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.faq-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--muted);
  width: fit-content;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.faq-contact:hover {
  color: var(--text);
  border-color: #444;
}
.faq-items {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  transition: color 0.15s;
}
.faq-q:hover {
  color: var(--white);
}
.faq-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    border-color 0.2s,
    color 0.2s;
}
.faq-item.open .faq-ic {
  transform: rotate(45deg);
  border-color: var(--shopify);
  color: var(--shopify);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 1.2rem;
}
.faq-item.open .faq-a {
  max-height: 16rem;
}

.tutorials-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .tutorials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Tutorials grid ── */
.tutorials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.4rem;
  row-gap: 3rem;
}

/* Tutorial card */
.tut-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  text-decoration: none;
  color: inherit;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.tut-card:hover {
  background: var(--bg3);
  border-color: #2e2e2e;
}

/* Thumbnail */
.tut-thumb-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}
.tut-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tut-card:hover .tut-thumb {
  transform: scale(1.03);
}

/* Card body */
.tut-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem;
  flex: 1;
}

/* Meta row */
.tut-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tut-num-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--shopify);
  letter-spacing: 0.05em;
}
.tut-num-tag--dim {
  color: var(--dim);
}

/* Badges */
.tut-badge {
  font-family: var(--mono);
  font-size: 0.55rem;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.tut-badge--live {
  color: var(--shopify);
  border: 1px solid var(--shopify);
}
.tut-badge--soon {
  color: var(--dim);
  border: 1px solid var(--border);
}

/* Title & desc */
.tut-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
}
.tut-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

/* Footer */
.tut-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.tut-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--shopify);
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.tut-arrow {
  font-family: var(--mono);
  font-size: 1.4rem;
  color: var(--shopify);
  line-height: 1;
}
.meta-item {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* Coming soon list — spans full width */
.tut-soon-list {
  grid-column: 1 / -1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.25rem 1.25rem;
}
.tut-soon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border2);
}
.tut-soon-row:last-child {
  border-bottom: none;
}
.tut-soon-title {
  font-size: 0.78rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 992px) {
  .tutorials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tutorials-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
                                         CTA
                                      ══════════════════════════════════════════ */
#contact {
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.cta-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
.cta-left {
}
.cta-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shopify);
  margin-bottom: 1rem;
}
.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.cta-h2 em {
  font-style: italic;
  color: var(--shopify);
}
.cta-p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.cta-right {
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cta-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input:focus {
  border-color: rgba(150, 191, 72, 0.45);
}
.cta-input::placeholder {
  color: var(--dim);
}
textarea.cta-input {
  resize: vertical;
  min-height: 110px;
}
.cta-submit {
  padding: 0.75rem 1.5rem;
  background: var(--shopify);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--sans);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    opacity 0.15s,
    transform 0.15s;
}
.cta-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cta-note {
  font-size: 0.72rem;
  color: var(--dim);
  text-align: center;
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
                                         FOOTER
                                      ══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 34ch;
}
.footer-avail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--shopify);
  padding-bottom: 0.65rem;
}
.footer-col-h {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-meta .footer-col-h {
  margin-bottom: 0.85rem;
}
.meta-row {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.meta-row span {
  color: var(--dim);
  margin-right: 0.4rem;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--dim);
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  font-size: 0.72rem;
  color: var(--dim);
  transition: color 0.15s;
}
.footer-socials a:hover {
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact .loc-main {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 400;
}

.footer-contact .loc-sub {
  font-size: 0.75rem;
  color: var(--dim);
  margin-bottom: 0.25rem;
}
/* ══════════════════════════════════════════
                                         RESPONSIVE
                                      ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-left {
    display: none;
  }
  .services-top {
    grid-template-columns: 1fr;
  }
  .projects-header {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .faq-sticky {
    position: static;
  }
  .cta-wrap {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    padding-bottom: 0rem;
  }
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }
  .logos {
    padding: 0.5rem 0;
  }
  .s-wrap {
    padding: 3rem 2rem;
  }
  #tutorials .s-wrap {
    padding-top: 0;
  }
  .s-eyebrow {
    margin-bottom: 1rem;
  }
  .services-top,
  .projects-header,
  .process-intro {
    gap: 1rem;
  }
  .process-phase {
    padding: 2.5rem 0;
  }
  .cta-wrap {
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-bottom {
    justify-content: center;
  }
  .process-phase-tag {
    margin-bottom: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-card:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .svc-card:nth-child(2n) {
    border-right: none;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 0 1rem;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 540px) {
  .s-wrap {
    padding: 4rem 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    border-right: none !important;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}

.wpb-swiper {
  width: 100%;
  position: relative;
}

.project-card {
  height: 560px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Hover scroll image */
.project-card img {
  width: 100%;
  display: block;
  transform: translateY(0);
  transition: transform 25s linear;
}

.project-card:hover img {
  transform: translateY(calc(-100% + 560px));
}
.project-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.85rem;
  /* background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, transparent 100%); */
  background-color: #000;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  pointer-events: none;
}
.project-card-tag {
  color: var(--shopify);
  font-size: 0.58rem;
  display: block;
  margin-bottom: 0.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.swiper-slide {
  position: relative;
}

/* Pagination dots */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: var(--dim) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--shopify) !important;
}

/* Give space below slides */
.wpb-swiper {
  padding-bottom: 44px;
}

/* Arrow buttons */
.wpb-swiper .swiper-button-next,
.wpb-swiper .swiper-button-prev {
  color: var(--shopify) !important;
  transform: translateY(-50%);
}

.wpb-swiper .swiper-button-next:after,
.wpb-swiper .swiper-button-prev:after {
  font-size: 24px !important;
}

@media (max-width: 767px) {
  .wpb-swiper .swiper-pagination {
    display: block;
  }

  .logos-slide img {
    height: 40px;
    margin: 0 20px;
  }
}

/* ── Scroll margin for fixed header ── */
section[id],
div[id="upwork-strip"] {
  scroll-margin-top: 70px;
}

/* ── Featured testimonial ── */
.testi-wide {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 2.25rem 2rem;
  transition: background 0.2s;
  margin-bottom: 1px;
}
.testi-wide:hover {
  background: var(--bg3);
}
.testi-wide .testi-text {
  font-size: 0.95rem;
  max-width: 74ch;
  font-style: italic;
  color: var(--muted);
  line-height: 1.85;
  margin: 0.85rem 0 1rem;
}
.testi-wide .testi-foot {
  border-top: none;
  padding-top: 0.5rem;
}

/* ── Mobile hamburger menu ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-hamburger:hover {
  background: var(--bg3);
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--muted);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  z-index: 899;
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  height: 90vh;
}
.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 0.85rem;
  border-radius: 7px;
  font-size: 1rem;
  color: var(--text);
  transition:
    color 0.15s,
    background 0.15s;
  /* border-bottom: 1px solid var(--border2); */
}
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--white);
  background: var(--bg3);
}

.mobile-menu .mob-cta {
  margin-top: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--shopify);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  text-align: center;
  border-bottom: none;
}
.mobile-menu .mob-cta:hover,
.mobile-menu .mob-cta:active {
  opacity: 0.88;
  background: var(--shopify);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 38px;
  height: 38px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    background 0.15s,
    color 0.15s;
  z-index: 800;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--bg3);
  color: var(--shopify);
}

/* ══════════════════════════════════════════
   MOBILE TYPOGRAPHY FIXES
══════════════════════════════════════════ */

@media (max-width: 768px) {
  /* ── Hero ── */
  .hero-p {
    font-size: 1rem;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
  }
  .stat-val {
    font-size: 1.6rem;
  }
  .stat-lbl {
    font-size: 0.75rem;
  }

  /* ── Section shared ── */
  .s-sub {
    font-size: 1rem;
  }
  .s-tag {
    font-size: 0.72rem;
  }

  /* ── Services ── */
  .svc-card h3 {
    font-size: 1rem;
  }
  .svc-card p {
    font-size: 0.88rem;
  }
  .svc-tag {
    font-size: 0.7rem;
  }

  /* ── About ── */
  .about-body {
    font-size: 0.95rem;
  }
  .about-label {
    font-size: 0.72rem;
  }
  .about-stat-n {
    font-size: 1.4rem;
  }
  .about-stat-l {
    font-size: 0.68rem;
  }
  .skill-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  /* ── Process ── */
  .process-phase p {
    font-size: 0.95rem;
  }
  .process-phase-bullets li {
    font-size: 0.9rem;
  }
  .process-phase-tag span {
    font-size: 0.7rem;
  }

  /* ── Testimonials ── */
  .testi-text {
    font-size: 0.92rem;
  }
  .testi-name {
    font-size: 0.88rem;
  }
  .testi-role {
    font-size: 0.75rem;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 0.95rem;
  }
  .faq-a-inner {
    font-size: 0.9rem;
  }
  .faq-sticky h2 {
    font-size: 1.6rem;
  }
  .faq-sticky p {
    font-size: 0.92rem;
  }

  /* ── Contact form ── */
  .cta-input {
    font-size: 0.92rem;
    padding: 0.85rem 1rem;
  }
  .cta-p {
    font-size: 0.95rem;
  }
  .cta-note {
    font-size: 0.78rem;
  }

  /* ── Upwork strip ── */
  .upwork-text strong {
    font-size: 1rem;
  }
  .upwork-text span {
    font-size: 0.85rem;
  }
  .upwork-stat-n {
    font-size: 1.3rem;
  }
  .upwork-stat-l {
    font-size: 0.7rem;
  }

  /* ── Footer ── */
  .footer-desc {
    font-size: 0.88rem;
  }
  .footer-links a {
    font-size: 0.9rem;
  }
  .footer-col-h {
    font-size: 0.7rem;
  }
  .meta-row {
    font-size: 0.85rem;
  }
  .footer-copy {
    font-size: 0.78rem;
  }

  /* ── Metric rows in hero card ── */
  .metric-label {
    font-size: 0.88rem;
  }
  .metric-val {
    font-size: 0.82rem;
  }

  /* ── Buttons ── */
  .btn-green,
  .btn-ghost {
    font-size: 0.92rem;
    padding: 0.75rem 1.4rem;
  }

  /* ── Nav ── */
  .nav-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

/* ── Extra small screens ── */
@media (max-width: 400px) {
  .hero-p {
    font-size: 0.95rem;
  }
  .s-sub {
    font-size: 0.95rem;
  }
  .faq-q {
    font-size: 0.9rem;
  }
  .testi-text {
    font-size: 0.88rem;
  }
  .footer-main {
    gap: 2rem;
  }
}
