/* ═══════════════════════════════════════════════
   Z&S TRADING CO. — DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

:root {
  --bg: #f4ecdb;
  --bg-card: #fdf6e6;
  --bg-card-deep: #ffffff;
  --ink: #141210;
  --ink-mid: #5a544a;
  --ink-dim: #8a8378;
  --accent: #ff4d1f;
  --accent-deep: #d93b14;
  --accent-light: #ff8a4d;
  --accent-2: #1f3dff;
  --accent-3: #00e5b1;
  --line: rgba(212, 201, 170, 0.6);
  --line-strong: rgba(212, 201, 170, 0.9);
  --shadow-sm: 0 2px 8px rgba(20, 18, 16, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 18, 16, 0.08);
  --shadow-lg: 0 16px 40px rgba(20, 18, 16, 0.12);
  --shadow-xl: 0 24px 60px rgba(20, 18, 16, 0.16);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --nav-h: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4.5vw, 48px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 18px; font-weight: 700; }
p { color: var(--ink-mid); }
a { color: inherit; text-decoration: none; }
strong, b { font-weight: 700; color: var(--ink); }
.grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-light), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── LAYOUT ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 100px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-loose { padding: 130px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-mid);
  max-width: 640px;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(244, 236, 219, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
  height: var(--nav-h);
}
.nav.scrolled {
  background: rgba(244, 236, 219, 0.94);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 52px; width: auto; display: block; }
@media (max-width: 480px) { .logo img { height: 44px; } }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
  font-size: 14px !important;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.menu-toggle svg { width: 24px; height: 24px; display: block; }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu .nav-cta {
  display: inline-block;
  margin-top: 16px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 77, 31, 0.3);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 77, 31, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
.btn-dark:hover {
  background: var(--accent);
  color: white;
}
.btn svg { width: 16px; height: 16px; }

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 3; max-width: 900px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent-3);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 36px; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── PAGE HEADER (for inner pages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(255, 77, 31, 0.08), transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, rgba(0, 229, 177, 0.06), transparent 70%);
  pointer-events: none;
}
.page-header > .container { position: relative; }
.page-header h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.page-header .lead { font-size: 18px; max-width: 680px; }

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 20px;
  font-family: var(--font-mono);
}
.crumbs a { color: var(--ink-mid); transition: color 0.2s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { opacity: 0.4; }

/* ─── SECTION HEADERS ─── */
.section-header { max-width: 720px; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 18px; }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  position: relative;
}
.card-dark {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.card-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 31, 0.22), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 229, 177, 0.16), transparent 50%);
  pointer-events: none;
}
.card-dark > * { position: relative; }
.card-dark h2, .card-dark h3, .card-dark h4 { color: var(--bg); }
.card-dark p { color: rgba(244, 236, 219, 0.75); }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.service {
  background: var(--bg-card-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.service:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 31, 0.12), rgba(255, 77, 31, 0.04));
  border: 1px solid rgba(255, 77, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-icon.cobalt {
  background: linear-gradient(135deg, rgba(31, 61, 255, 0.12), rgba(31, 61, 255, 0.04));
  border-color: rgba(31, 61, 255, 0.2);
  color: var(--accent-2);
}
.service-icon.mint {
  background: linear-gradient(135deg, rgba(0, 229, 177, 0.15), rgba(0, 229, 177, 0.04));
  border-color: rgba(0, 229, 177, 0.25);
  color: #00805f;
}
.service h3 { margin-bottom: 10px; }
.service .desc {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service ul { list-style: none; margin-bottom: 24px; }
.service li {
  font-size: 14px;
  color: var(--ink-mid);
  padding: 6px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.service li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}
.service-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.service-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.service-price strong {
  display: block;
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 3px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ─── PROCESS / STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding: 28px 24px 28px 80px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.step-num {
  position: absolute;
  top: 28px; left: 24px;
  width: 40px; height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.step h3 { margin-bottom: 8px; font-size: 18px; }
.step p { font-size: 14px; color: var(--ink-mid); }

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--ink); font-weight: 600; }
.info-card {
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.info-card.dark {
  background: var(--ink);
  color: var(--bg);
}
.info-card.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 77, 31, 0.25), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 229, 177, 0.15), transparent 50%);
  pointer-events: none;
}
.info-card.dark > * { position: relative; }
.info-card.dark h3 { color: var(--bg); font-size: 26px; margin-bottom: 22px; }
.info-card.dark p { color: rgba(244, 236, 219, 0.75); }
.info-row {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 236, 219, 0.12);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(244, 236, 219, 0.6);
  margin-bottom: 4px;
  font-weight: 600;
}
.info-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--bg);
}
.info-value a { color: var(--bg); transition: color 0.2s; }
.info-value a:hover { color: var(--accent-3); }

/* ─── FEATURE GRID (values, etc) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature-icon-sm {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 77, 31, 0.1);
  border: 1px solid rgba(255, 77, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-icon-sm svg { width: 20px; height: 20px; }
.feature h4 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* ─── DETAIL LIST (for "What's included") ─── */
.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  list-style: none;
}
.detail-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.detail-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: rgba(0, 229, 177, 0.15);
  color: #00805f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.detail-list li strong { display: block; margin-bottom: 2px; color: var(--ink); }
.detail-list li span { color: var(--ink-mid); font-size: 14px; }

/* ─── PRICING DISPLAY ─── */
.pricing-card {
  background: var(--bg-card-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.pricing-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-card .price-row:last-of-type { border-bottom: none; }
.pricing-card .price-label { color: var(--ink-mid); font-size: 15px; }
.pricing-card .price-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pricing-card .price-value small {
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
  font-family: var(--font-mono);
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 40px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 40px 22px 0;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact-info > p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.contact-row-icon {
  width: 38px; height: 38px;
  background: rgba(255, 77, 31, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-row-icon svg { width: 18px; height: 18px; }
.contact-row .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-row .value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.contact-row .value a:hover { color: var(--accent); }

.form-card {
  background: var(--bg-card-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg-card);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 31, 0.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(255, 77, 31, 0.3);
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}
.form-success {
  display: none;
  padding: 20px;
  background: rgba(0, 229, 177, 0.12);
  border: 1px solid var(--accent-3);
  border-radius: 12px;
  color: #00805f;
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ─── CTA SECTION ─── */
.cta {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 77, 31, 0.25), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 229, 177, 0.18), transparent 50%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta h2 { color: var(--bg); margin-bottom: 18px; }
.cta p {
  color: rgba(244, 236, 219, 0.75);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.cta .btn-primary { box-shadow: 0 12px 32px rgba(255, 77, 31, 0.4); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.site-footer .container { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo img { filter: none; }
.footer-brand .logo img,
.footer-brand .logo {
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(244, 236, 219, 0.6);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-brand .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.footer-brand .footer-contact a {
  color: rgba(244, 236, 219, 0.85);
  transition: color 0.2s;
}
.footer-brand .footer-contact a:hover { color: var(--accent-3); }
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(244, 236, 219, 0.85);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 7px 0;
  font-size: 14px;
}
.footer-col a {
  color: rgba(244, 236, 219, 0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-3); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244, 236, 219, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(244, 236, 219, 0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .services-grid, .services-grid.cols-2,
  .steps-grid,
  .feature-grid,
  .detail-list,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .field-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
  .cta { padding: 56px 28px; }
  .page-header { padding: calc(var(--nav-h) + 40px) 0 56px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo img { height: 36px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}


/* ── Higgsfield brand render visuals ── */
.service-render{
  width:100%; aspect-ratio:4/3; border-radius:16px; overflow:hidden;
  margin-bottom:24px; border:1px solid var(--line);
  background:radial-gradient(120% 120% at 50% 25%, #fbf3e1, #efe4cc);
  box-shadow:var(--shadow-sm);
}
.service-render img{
  width:100%; height:100%; object-fit:contain; display:block;
  transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.service:hover .service-render img{ transform:scale(1.04); }

.service-visual-band{ padding:0 0 16px; }
.service-visual-band .ph-art{
  max-width:600px; margin:0 auto; aspect-ratio:16/12;
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  background:radial-gradient(120% 120% at 50% 25%, #fbf3e1, #efe4cc);
  box-shadow:var(--shadow-lg);
}
.service-visual-band .ph-art img{ width:100%; height:100%; object-fit:contain; display:block; }

/* ── Image fade-in on load: hides the top-to-bottom paint of large images ── */
.service-render img,
.service-visual-band .ph-art img{
  opacity:0;
  transition:opacity .6s ease, transform .5s cubic-bezier(.16,1,.3,1);
}
.service-render img.loaded,
.service-visual-band .ph-art img.loaded{ opacity:1; }


/* ── Pricing layout: stack rows on mobile so labels and prices don't get cramped ── */
@media (max-width: 640px) {
  .pricing-card { padding: 24px 20px; }
  .pricing-card .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }
  .pricing-card .price-label { font-size: 14px; }
  .pricing-card .price-value { font-size: 20px; line-height: 1.25; }
  .pricing-card .price-value small {
    display: block;
    margin-top: 4px;
    line-height: 1.45;
  }
}


/* ── Bundle cards ── */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 980px) { .bundles-grid { grid-template-columns: 1fr; } }
.bundle {
  background: var(--bg-card-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bundle-featured { border: 2px solid var(--accent-2); box-shadow: var(--shadow-md); }
.bundle-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; font-weight: 600;
}
.bundle h3 { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: var(--ink); }
.bundle-desc { color: var(--ink-mid); margin-bottom: 24px; font-size: 15px; line-height: 1.55; }
.bundle-list { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.bundle-list li {
  padding: 10px 0 10px 26px; position: relative;
  border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5;
}
.bundle-list li:last-child { border-bottom: none; }
.bundle-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 10px;
  color: var(--accent-3); font-weight: 800; font-size: 14px;
}
.bundle-price {
  margin-bottom: 24px; padding: 20px;
  background: var(--bg); border-radius: var(--radius); border: 1px solid var(--line);
  text-align: center;
}
.bundle-original {
  color: var(--ink-dim); text-decoration: line-through;
  font-size: 13px; margin-bottom: 6px; font-family: var(--font-mono);
}
.bundle-final {
  font-size: 26px; font-weight: 800; color: var(--ink);
  margin-bottom: 8px; line-height: 1.1;
}
.bundle-final small { font-size: 13px; color: var(--ink-mid); font-weight: 400; margin-left: 6px; }
.bundle-save {
  display: inline-block; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em; color: var(--accent-3);
  font-weight: 700; text-transform: uppercase;
  background: rgba(0, 229, 177, 0.12); padding: 4px 10px; border-radius: 999px;
}
.bundle-link {
  display: inline-block; color: var(--accent-2); font-weight: 600;
  text-decoration: none; margin-top: auto; font-size: 15px;
  padding: 12px 0; border-top: 1px solid var(--line); text-align: center;
  transition: color .2s;
}
.bundle-link:hover { color: var(--accent); }


/* ── Bundle note (website tier hint) ── */
.bundle-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* ── Homepage "View bundles" CTA pill ── */
.bundles-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
}
.bundles-cta:hover {
  background: var(--bg-card-deep);
  border-color: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.bundles-cta-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(31, 61, 255, 0.08);
  border-radius: 999px;
}
.bundles-cta-arrow { color: var(--accent-2); font-weight: 700; }
@media (max-width: 480px) {
  .bundles-cta { font-size: 13px; padding: 12px 16px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .bundles-cta-tag { font-size: 10px; padding: 3px 8px; }
}
