*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

:root {
  --bg: #faf9f7;
  --surface: #f1eeea;
  --border: rgba(28,25,20,0.08);
  --text: #1c1a17;
  --text-2: rgba(28,26,23,0.78);
  --text-3: rgba(28,26,23,0.56);
  --text-4: rgba(28,26,23,0.36);
  --accent: #8f6f46;
  --accent-rgb: 143,111,70;
  --accent-glow: rgba(143,111,70,0.12);
  --nav-bg: rgba(250,249,247,0.92);
  --btn-primary-text: #fff;
  --btn2-border: rgba(28,25,20,0.18);
  --btn2-border-hover: rgba(28,25,20,0.45);
  --btn2-glow: transparent;
  --dot: rgba(28,25,20,0.12);
  --hover-bg: rgba(28,25,20,0.03);
  --border-strong: rgba(28,25,20,0.16);
  --input-border: rgba(28,25,20,0.14);
  --ok: #2e7d46;
  --err: #b3372f;
  --grad-1: #8f6f46;
  --grad-2: #b08c58;
  --grad-3: #9c7a4e;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --w: 1100px;
  --measure: 720px;
}

html[data-theme="dark"] {
  --bg: #09090b;
  --surface: #111113;
  --border: rgba(255,255,255,0.06);
  --text: #ededec;
  --text-2: rgba(237,237,236,0.78);
  --text-3: rgba(237,237,236,0.55);
  --text-4: rgba(237,237,236,0.35);
  --accent: #b8966c;
  --accent-rgb: 184,150,108;
  --accent-glow: rgba(184,150,108,0.15);
  --nav-bg: rgba(9,9,11,0.92);
  --btn-primary-text: #09090b;
  --btn2-border: rgba(255,255,255,0.15);
  --btn2-border-hover: rgba(255,255,255,0.4);
  --btn2-glow: rgba(255,255,255,0.03);
  --dot: rgba(255,255,255,0.08);
  --hover-bg: rgba(255,255,255,0.03);
  --border-strong: rgba(255,255,255,0.12);
  --input-border: rgba(255,255,255,0.1);
  --ok: #a3d9a5;
  --err: #e5a5a5;
  --grad-1: #b8966c;
  --grad-2: #d4b896;
  --grad-3: #c9a87e;
  color-scheme: dark;
}

html { color-scheme: light; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s;
}

.nav.scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-cta {
  color: var(--bg) !important;
  background: var(--text);
  padding: 8px 20px;
  font-weight: 500;
  font-size: 13px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 10px;
  cursor: pointer;
}

.mobile-toggle svg { width: 24px; height: 24px; }

.nav-links { margin-left: auto; }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 16px;
  padding: 0;
  background: none;
  border: 1px solid var(--btn2-border);
  color: var(--text-3);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.theme-toggle:hover { color: var(--text); border-color: var(--btn2-border-hover); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .sun { display: none; }
html[data-theme="dark"] .theme-toggle .sun { display: block; }
html[data-theme="dark"] .theme-toggle .moon { display: none; }

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 24px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.06) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(40px, -30px) scale(1.1); opacity: 1; }
  50% { transform: translate(-20px, 40px) scale(0.95); opacity: 0.7; }
  75% { transform: translate(30px, 20px) scale(1.05); opacity: 0.9; }
}

.hero-inner {
  max-width: var(--w);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 800px;
  text-wrap: balance;
}

.hero-line-wrap {
  overflow: hidden;
  display: block;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hero-line {
  display: block;
  transform: translateY(110%);
  animation: line-up 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.3s; }
.hero-line:nth-child(3) { animation-delay: 0.45s; }

@keyframes line-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2), var(--grad-3), var(--grad-1));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin-top: 32px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up 0.6s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, border-color 0.15s, box-shadow 0.3s, transform 0.15s;
  will-change: transform;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: var(--btn-primary-text);
}

.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 40px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--btn2-border);
}

.btn-secondary:hover {
  border-color: var(--btn2-border-hover);
  box-shadow: 0 0 30px var(--btn2-glow);
}

.btn-accent {
  background: var(--text);
  color: var(--bg);
}

.btn-accent:hover { opacity: 0.85; }

.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-4);
  padding: 0 40px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.3s;
}

.marquee-item:hover { color: var(--text-3); }
a.marquee-item:hover { color: var(--text-3); text-decoration: underline; text-underline-offset: 4px; }

.marquee-dot {
  color: var(--dot);
  padding: 0 4px;
}

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

.stats {
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}

.stats-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat { text-align: center; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-number.counted {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 20px var(--accent-glow); }
}

.stat-label {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 8px;
}

.section { padding: 120px 24px; }
.section-dark { background: var(--surface); }

.section-header {
  text-align: center;
  max-width: var(--measure);
  margin: 0 auto 72px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.section-header p {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.niches-grid {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.niche-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}

.niche-item:hover { background: var(--surface); }

.niche-item h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.niche-item:hover h3 { color: var(--accent); }

.niche-item p { display: none; }

.niche-item .arrow-link {
  font-size: 14px;
  color: var(--text-4);
  transition: color 0.2s, transform 0.2s;
}

.niche-item:hover .arrow-link {
  color: var(--accent);
  transform: translateX(4px);
}

.services-list {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-row {
  padding: 28px 32px;
  background: var(--bg);
  transition: background 0.2s;
}

a.service-row:hover { background: var(--hover-bg); }

a.service-row-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.service-row-link .arrow-link {
  font-size: 16px;
  color: var(--text-4);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

a.service-row-link:hover .arrow-link {
  color: var(--accent);
  transform: translateX(4px);
}

.section-dark .service-row { background: var(--surface); }

.service-row h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.service-row p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.service-row p.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 4px;
}

.service-row p.price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0;
}

.reviews-section {
  overflow: hidden;
  padding: 120px 0;
}

.reviews-section .section-header { padding: 0 24px; }

.review-track {
  display: flex;
  gap: 24px;
  animation: scroll-left 60s linear infinite;
  width: max-content;
  padding: 0 12px;
}

.review-track:hover { animation-play-state: paused; }

.review-track-reverse {
  animation-direction: reverse;
  margin-top: 24px;
}

.review-card {
  width: 380px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: var(--border-strong); }

.review-stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.review-author {
  font-size: 14px;
  font-weight: 600;
}

.review-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.steps-flow {
  max-width: var(--measure);
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.steps-flow::before,
.steps-flow::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
}

.steps-flow::before { background: var(--border); }

.steps-flow::after {
  background: var(--accent);
  transform: scaleY(var(--p, 0));
  transform-origin: top;
  transition: transform 0.25s linear;
}

.step-row {
  position: relative;
  padding-bottom: 44px;
}

.step-row:last-child { padding-bottom: 0; }

.step-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  box-shadow: 0 0 0 4px var(--bg);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step-row.active .step-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
  transform: scale(1.15);
}

.step-row h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-row p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 60vh;
  max-width: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(var(--accent-rgb),0.04) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-wrap: balance;
  position: relative;
}

.cta-section p {
  color: var(--text-2);
  max-width: 440px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.value-grid {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.value-grid > :last-child:nth-child(3n+1) { grid-column: 1 / -1; }
.value-grid > :last-child:nth-child(3n+2) { grid-column: span 2; }
.niches-grid  > :last-child:nth-child(2n+1),
.services-list > :last-child:nth-child(2n+1) { grid-column: 1 / -1; }

.value-card {
  background: var(--bg);
  padding: 48px 36px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

.pricing-cta {
  max-width: var(--w);
  margin: 72px auto 0;
  text-align: center;
  padding: 64px 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),0.03) 0%, transparent 70%);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}

.pricing-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  position: relative;
}

.pricing-cta p {
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
}

.pricing-cta .btn { position: relative; }

.trade-pricing {
  max-width: var(--w);
  margin: 0 auto;
}

.trade-pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.trade-pricing-card > div {
  background: var(--bg);
  padding: 48px 40px;
}

.trade-pricing-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.trade-pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 24px 0 4px;
}

.trade-pricing-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-3);
}

.trade-pricing-card .price-note {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.trade-pricing-card .price-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.trade-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trade-features li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.trade-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3.5 3.5 6.5-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.faq-list {
  max-width: var(--measure);
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.3s;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.prose {
  max-width: var(--measure);
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}

.services-list + .prose { margin-top: 40px; }

.prose p + p { margin-top: 1.25em; }

.legal {
  max-width: var(--measure);
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}
.legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 2em 0 0.5em;
}
.legal h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5em 0 0.4em;
}
.legal-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5em;
}
.legal p { margin-bottom: 1em; }
.legal ul { margin: 0 0 1em 1.25em; }
.legal li { margin-bottom: 0.5em; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

.contact-grid {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact-info h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-3);
  transition: color 0.2s;
}

.contact-detail a:hover { color: var(--text); }

.contact-detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--input-border);
  padding: 12px 16px;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb),0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success { margin-top: 16px; color: var(--ok); font-size: 14px; }
.form-error { margin-top: 16px; color: var(--err); font-size: 14px; }

.footer {
  border-top: 1px solid var(--border);
  padding: 72px 24px 32px;
}

.footer-inner {
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 260px;
}

.footer h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
}

.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: var(--text); }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-stagger].visible > * {
  animation: stagger-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i, 0) * 0.08s);
}

@keyframes stagger-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}

.page-header {
  padding: 160px 24px 72px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.guides-header h1 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.page-header.guides-header p {
  max-width: var(--measure);
}

.page-header p {
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

.trade-hero {
  padding: 160px 24px 96px;
  position: relative;
  overflow: hidden;
}

.trade-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb),0.05) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite;
  pointer-events: none;
}

.trade-hero-inner {
  max-width: var(--w);
  margin: 0 auto;
}

.trade-hero .section-eyebrow {
  opacity: 0;
  animation: fade-up 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trade-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 700px;
  opacity: 0;
  animation: fade-up 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  text-wrap: balance;
}

.trade-hero p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
  margin-top: 24px;
  line-height: 1.65;
  opacity: 0;
  animation: fade-up 0.6s 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trade-hero .hero-actions {
  animation-delay: 0.5s;
}

.guide-hero .trade-hero-inner { max-width: var(--measure); text-align: center; }
.guide-hero h1 { max-width: none; }
.guide-hero p { max-width: none; }
.guide-hero .hero-actions { justify-content: center; }

@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr; background: none; }
  .value-card { border-bottom: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trade-pricing-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .theme-toggle { margin-left: auto; }
  .mobile-toggle { display: block; }
  .mobile-menu { display: flex; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .niches-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero { padding: 120px 24px 80px; min-height: auto; }
  .section { padding: 72px 24px; }
  .reviews-section { padding: 72px 0; }
  .cta-section { padding: 72px 24px; }
  .review-card { width: 300px; padding: 24px; }
  .trade-hero { padding: 120px 24px 64px; }
  .trade-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .trade-pricing-card > div { padding: 32px 24px; }
  .page-header { padding: 120px 24px 48px; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .cta-section h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .btn { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
  .faq-q { font-size: 14px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 64px; }
  .section { padding: 56px 20px; }
  .cta-section { padding: 56px 20px; }
  .trade-hero { padding: 100px 20px 48px; }
  .service-row { padding: 24px 20px; }
  .nav { padding: 0 16px; }
  .marquee-section { padding: 28px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track, .review-track { animation: none; }
  body::after { display: none; }
  .steps-flow::after { transform: scaleY(1); }
  .step-dot {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    transform: none;
  }
}
