/* ===========================
   CRAFT YARD — FLAT DARK UI
   =========================== */

:root {
  --bg: #08080f;
  --surface: #0c0c18;
  --card: #111120;
  --border: #1c1c2e;
  --text: #f1f5f9;
  --muted: #6b7280;
  --muted-light: #94a3b8;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent2: #0ea5e9;
  --accent2-light: #38bdf8;
  --grad: linear-gradient(135deg, #7c3aed, #0ea5e9);
  --radius: 14px;
  --radius-sm: 8px;
  --trans: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Dot grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 {
  font-family: 'Prosto One', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin: 0; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin: 0 0 0.5rem; }
h3 { font-size: 1.18rem; margin: 0 0 0.5rem; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---- Layout ---- */

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 2.8rem;
}

/* ---- Eyebrow ---- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

/* ---- Gradient text ---- */

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  background: rgba(8, 8, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: invert(1) brightness(0.9);
}

.brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-light);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.main-nav a.is-active {
  color: var(--text);
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 0 0 1.5px rgba(124, 58, 237, 0.55);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans), border-color var(--trans), color var(--trans);
  white-space: nowrap;
}

/* Ensure text layers sit above liquid fill */
.btn-text, .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Liquid fill from bottom */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #6d28d9, #5b21b6);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scaleY(1);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--muted-light);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 0.5rem 1.05rem;
  font-size: 0.86rem;
}

.btn-full { width: 100%; }

/* ---- Hamburger ---- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--muted-light);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  padding-top: 4.5rem;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
}

/* Hero background orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  transition: translate 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: rgba(124, 58, 237, 0.32);
  top: -200px;
  right: -120px;
  animation: orb1 4s ease-in-out infinite;
}

.hero-orb-2 {
  width: 540px;
  height: 540px;
  background: rgba(14, 165, 233, 0.22);
  bottom: -120px;
  left: 15%;
  animation: orb2 3.2s ease-in-out infinite;
}

.hero-orb-3 {
  width: 420px;
  height: 420px;
  background: rgba(124, 58, 237, 0.16);
  top: 35%;
  left: -100px;
  animation: orb3 3.8s ease-in-out infinite;
}

@keyframes orb1 {
  0%, 100% { transform: translate(0, 0); }
  40%       { transform: translate(-80px, 90px); }
  70%       { transform: translate(60px, -60px); }
}

@keyframes orb2 {
  0%, 100% { transform: translate(0, 0); }
  35%       { transform: translate(100px, -80px); }
  65%       { transform: translate(-60px, 50px); }
}

@keyframes orb3 {
  0%, 100% { transform: translate(0, 0); }
  45%       { transform: translate(70px, -100px); }
  75%       { transform: translate(-40px, 60px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.85rem 0 1.3rem;
}

.hero-title span { display: block; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 50ch;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Hero service list */

.hero-services {
  display: grid;
  gap: 0.75rem;
}

.hs-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-light);
  transition: border-color var(--trans), color var(--trans), transform var(--trans);
}

.hs-item:hover {
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--text);
  transform: translateX(6px);
}

.hs-icon {
  color: var(--accent);
  font-size: 0.7rem;
  line-height: 1;
}

/* ---- Scroll indicator ---- */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.25; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: 0.7; }
}

/* ---- Marquee ---- */

.marquee-strip {
  padding: 0.95rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 1.6rem;
  animation: marquee 9s linear infinite;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track .dot {
  color: var(--accent);
}

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

/* ---- Services ---- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--trans);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
}

/* Cursor spotlight glow */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(
    350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(124, 58, 237, 0.14),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: 'Prosto One', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card > p {
  color: var(--muted-light);
  font-size: 0.92rem;
  margin-top: 0.45rem;
  margin-bottom: 1.3rem;
  line-height: 1.65;
}

.card-feat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.card-feat li {
  font-size: 0.84rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.card-feat li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
}

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

.stats-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.04);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
}

.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.4rem;
}

.stat-num {
  font-family: 'Prosto One', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Prosto One', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* ---- Formats ---- */

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.format-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--trans), transform var(--trans);
}

.format-card:hover {
  border-color: rgba(14, 165, 233, 0.4);
  transform: translateY(-3px);
}

.format-badge {
  display: inline-block;
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.14);
  color: var(--accent-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
  margin-bottom: 1.1rem;
}

.format-badge--cyan {
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent2-light);
  border-color: rgba(14, 165, 233, 0.28);
}

.format-card > p {
  color: var(--muted-light);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.format-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.format-card li {
  font-size: 0.87rem;
  color: var(--muted);
  padding-left: 1.3rem;
  position: relative;
}

.format-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-size: 0.78rem;
}

/* ---- Process Timeline (horizontal) ---- */

.process-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Background static connector line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 26px;
  right: 26px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

/* Animated fill line */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 26px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-timeline.line-active::after {
  width: calc(100% - 52px);
}

.process-step {
  position: relative;
  z-index: 1;
  padding-right: 1.5rem;
  outline: none;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prosto One', sans-serif;
  font-size: 0.82rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted-light);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
  transition: background var(--trans), border-color var(--trans), color var(--trans), box-shadow var(--trans);
}

.process-step:hover .step-num,
.process-step:focus-visible .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
  animation: bounce-num 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-num {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 1rem;
}

.contact-copy > p {
  color: var(--muted-light);
  font-size: 1rem;
  margin-bottom: 2.2rem;
}

.contact-perks {
  display: grid;
  gap: 0.8rem;
}

.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted-light);
}

.perk-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.14);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form span {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

input, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--trans);
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea { resize: vertical; }

.btn-arrow {
  transition: transform var(--trans);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---- Footer ---- */

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---- Service card button ---- */

.btn-card {
  margin-top: 1.3rem;
  background: transparent;
  color: var(--accent-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
  align-self: start;
}

.btn-card:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--accent);
  color: #fff;
}

/* ---- Modal ---- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  transform: translateY(16px);
  transition: transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted-light);
  font-size: 0.85rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--trans), color var(--trans);
}

.modal-close:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.modal-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-form {
  display: grid;
  gap: 1rem;
}

.modal-form label {
  display: grid;
  gap: 0.4rem;
}

.modal-form span {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* ---- Scroll animations (Apple-style) ---- */

.reveal, .reveal-delay, .fade-up {
  opacity: 0;
  transform: translateY(56px) scale(0.96);
  transition:
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay { transition-delay: 120ms; }
.fade-up.d1  { transition-delay: 55ms; }
.fade-up.d2  { transition-delay: 145ms; }
.fade-up.d3  { transition-delay: 235ms; }
.fade-up.d4  { transition-delay: 325ms; }
.fade-up.d5  { transition-delay: 415ms; }

.reveal.is-visible,
.reveal-delay.is-visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

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

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  /* Layout */
  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2rem; }

  /* Header — keep sticky, show hamburger */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.2rem;
    z-index: 99;
    display: none;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  /* Hero */
  .hero { min-height: auto; padding: 2.5rem 0 3rem; }
  .hero-title { margin: 0.6rem 0 1rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-services { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }

  /* Services & Formats */
  .service-grid,
  .format-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stat-divider { display: none; }

  /* Process — vertical stack */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-timeline::before,
  .process-timeline::after { display: none; }
  .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding: 0 0 2rem 0;
    align-items: start;
  }
  .step-num {
    grid-row: 1 / 3;
    margin-bottom: 0;
    margin-top: 0;
    align-self: start;
  }
  .step-title { margin-top: 0.2rem; }

  /* Contact */
  .contact-shell { gap: 2rem; }
  .contact-form { padding: 1.5rem; }
  .contact-form .btn { width: 100%; justify-content: center; }

  /* Modal */
  .modal-box { padding: 1.5rem; }

  /* Footer */
  .footer-shell { flex-direction: column; text-align: center; gap: 0.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .hero-services { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
