/* ============ TOKENS ============ */
:root {
  --bg: #07090f;
  --bg-2: #0b0e17;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f2f5fb;
  --muted: #98a2b8;
  --violet: #7c5cff;
  --cyan: #00e0ff;
  --pink: #ff4d8d;
  --gold: #ffd166;
  --green: #3ddc97;
  --grad: linear-gradient(120deg, var(--violet), var(--cyan));
  --grad-soft: linear-gradient(120deg, rgba(124, 92, 255, 0.18), rgba(0, 224, 255, 0.18));
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --container: 1180px;
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 0.5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
canvas { display: block; max-width: 100%; height: auto; }
::selection { background: var(--violet); color: #fff; }

.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto clamp(2.2rem, 5vw, 3.6rem); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.06rem; }
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--grad-soft);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tiny { font-size: 0.8rem; color: var(--muted); }

/* ============ BACKGROUND DECOR ============ */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(800px 600px at -10% 35%, rgba(0, 224, 255, 0.13), transparent 60%),
    radial-gradient(700px 500px at 70% 95%, rgba(255, 77, 141, 0.1), transparent 60%),
    var(--bg);
}
.bg-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 70%);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 99px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 92, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 224, 255, 0.35); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.2); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.86rem; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 2rem; padding: 0.9rem 0; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none !important;
}
.brand em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f2ea;
  flex: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.footer-brand .brand-logo { width: 34px; height: 34px; vertical-align: -10px; margin-right: 0.15rem; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none !important;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem 1.4rem;
  background: rgba(7, 9, 15, 0.97);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a { color: var(--text); font-weight: 600; padding: 0.7rem 0; text-decoration: none !important; }
.mobile-menu .btn { margin-top: 0.6rem; }
.mobile-menu.is-open { display: flex; }

/* ============ HERO ============ */
.hero { padding: clamp(7.5rem, 13vw, 10.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero h1 { margin-bottom: 0.45em; }
.lede { font-size: 1.14rem; color: var(--muted); max-width: 34rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin: 1.8rem 0 1.6rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.trust-row li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.trust-row strong { color: var(--text); }

.hero-visual { display: flex; justify-content: center; }
.sock-stage { position: relative; width: min(420px, 80vw); }
.sock-stage canvas {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
  animation: float 7s ease-in-out infinite;
}
.stage-glow {
  position: absolute;
  inset: 8% 4%;
  background: var(--grad);
  opacity: 0.32;
  filter: blur(70px);
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
}
.chip {
  position: absolute;
  z-index: 3;
  background: rgba(11, 14, 23, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 99px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.chip-1 { top: 14%; left: -9%; color: var(--gold); animation-delay: -1.2s; }
.chip-2 { bottom: 26%; right: -11%; color: var(--cyan); animation-delay: -3s; }
.chip-3 { bottom: 4%; left: -2%; color: var(--pink); animation-delay: -4.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-16px) rotate(0.8deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.26; transform: scale(0.96); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  padding: 0.85rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track i { color: var(--violet); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ CARDS / FEATURES ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.feature { padding: 1.7rem 1.5rem; transition: transform 0.25s ease, border-color 0.25s, background 0.25s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(124, 92, 255, 0.45); background: var(--surface-2); }
.feature-icon {
  font-size: 1.5rem;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.feature p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
}
.step { position: relative; padding: 2rem 1.6rem 1.6rem; overflow: hidden; }
.step-num {
  position: absolute;
  top: -1.4rem; right: -0.4rem;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.16;
  line-height: 1;
}
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============ STUDIO ============ */
.studio-section::before {
  content: "";
  position: absolute;
  inset: 10% 0;
  background: radial-gradient(700px 420px at 50% 50%, rgba(124, 92, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.studio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 1.4rem;
  align-items: start;
}
.studio-canvas {
  padding: 1.4rem;
  position: sticky;
  top: 92px;
  background:
    radial-gradient(420px 300px at 50% 38%, rgba(124, 92, 255, 0.14), transparent 70%),
    var(--surface);
}
.studio-canvas canvas { margin-inline: auto; width: min(440px, 100%); }
.canvas-actions { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }

.studio-controls { display: flex; flex-direction: column; gap: 1.2rem; }
.control-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.control-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.control-label + .control-label { margin-top: 1rem; }

.dropzone {
  border: 1.5px dashed rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--muted);
  font-size: 0.92rem;
}
.dropzone:hover, .dropzone:focus-visible, .dropzone.is-drag {
  border-color: var(--cyan);
  background: rgba(0, 224, 255, 0.06);
  outline: none;
}
.drop-icon { font-size: 1.6rem; display: block; margin-bottom: 0.3rem; }
.drop-empty small { color: var(--muted); }
.drop-preview { display: flex; align-items: center; gap: 0.9rem; text-align: left; }
.drop-preview img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.drop-replace { font-size: 0.85rem; color: var(--cyan); }

.control-inline { margin-top: 0.8rem; }
.switch { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--muted); cursor: pointer; }
.switch input { position: absolute; opacity: 0; }
.switch span {
  width: 38px; height: 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  position: relative;
  transition: background 0.2s;
  flex: none;
}
.switch span::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.switch input:checked + span { background: var(--violet); }
.switch input:checked + span::after { transform: translateX(16px); }
.switch input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }

.palette-row { margin-top: 0.9rem; font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.palette-chips { display: inline-flex; gap: 0.35rem; }
.pal-chip {
  width: 22px; height: 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
}

.seg { display: flex; gap: 0.45rem; }
.seg.wrap { flex-wrap: wrap; }
.seg-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.15s;
}
.seg-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.seg-btn.is-active {
  color: #fff;
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124, 92, 255, 0.35);
}

.range-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}
.range-label.big { font-size: 1rem; color: var(--text); margin-top: 0; }
.range-label output { font-family: var(--font-display); font-weight: 800; color: var(--cyan); margin-left: 0.4rem; }
input[type="range"] {
  width: 100%;
  margin-top: 0.55rem;
  appearance: none;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet);
}

.swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.swatch {
  width: 34px; height: 34px;
  border-radius: 11px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  padding: 0;
  transition: transform 0.12s, border-color 0.12s, box-shadow 0.12s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { border-color: #fff; box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.55); }
.swatch-custom {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 11px;
  overflow: hidden;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  display: grid; place-items: center;
  font-size: 0.95rem;
  cursor: pointer;
  background: conic-gradient(#ff4d8d, #ffd166, #3ddc97, #00e0ff, #7c5cff, #ff4d8d);
}
.swatch-custom input { position: absolute; inset: -8px; opacity: 0; cursor: pointer; }

.btn-generate { width: 100%; }
.generate-hint { font-size: 0.84rem; color: var(--muted); text-align: center; margin: 0.7rem 0 0; }

.variants { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.15rem 1.2rem; }
.variant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.variant-thumb {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.variant-thumb:hover { border-color: var(--cyan); transform: translateY(-3px); }
.variant-thumb.is-active { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.3); }
.variant-thumb canvas { width: 100%; }

.noscript-note { text-align: center; color: var(--gold); margin-top: 2rem; }

/* ============ PRICING ============ */
.guarantee {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.14), rgba(0, 224, 255, 0.1));
  border-color: rgba(124, 92, 255, 0.4);
}
.guarantee-badge { font-size: 2.4rem; }
.guarantee h3 { margin-bottom: 0.25em; }
.guarantee p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.calc { padding: 1.8rem; }
.calc h3 { margin-bottom: 1.1rem; }
.calc-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.4rem 0 1.5rem;
}
.calc-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.6rem;
  text-align: center;
}
.calc-num { display: block; font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 800; }
.calc-num.save { color: var(--green); }
.calc-cap { font-size: 0.74rem; color: var(--muted); }
.calc-cap s { color: var(--pink); }
.calc .btn { width: 100%; }

.tiers { padding: 1.2rem 1.4rem 1rem; }
.tier-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; }
.tier-table th {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0.7rem 0.6rem;
}
.tier-table td { padding: 0.78rem 0.6rem; border-top: 1px solid var(--border); }
.tier-table td:nth-child(2) { color: var(--muted); }
.tier-table td:last-child { font-family: var(--font-display); font-weight: 800; color: var(--cyan); font-size: 1.05rem; }
.tier-popular { background: linear-gradient(90deg, rgba(124, 92, 255, 0.16), rgba(0, 224, 255, 0.08)); }
.pop-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  border-radius: 99px;
  padding: 0.18rem 0.55rem;
  margin-left: 0.5rem;
  vertical-align: 1px;
}
.tiers .tiny { margin: 0.9rem 0.2rem 0.4rem; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1rem;
  transition: transform 0.25s ease, border-color 0.25s;
}
.gallery-item:hover { transform: translateY(-6px) rotate(-0.4deg); border-color: rgba(0, 224, 255, 0.4); }
.gallery-item canvas { width: 100%; }
.gallery-item figcaption {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.gallery-item figcaption small { color: var(--muted); font-family: var(--font-body); font-weight: 500; }

/* ============ FAQ ============ */
.faq-container { max-width: 780px; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-list details[open] { border-color: rgba(124, 92, 255, 0.45); }
.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { padding: 0 1.3rem 1.15rem; margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ============ QUOTE FORM ============ */
.quote-section::before {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  background: radial-gradient(700px 400px at 50% 80%, rgba(0, 224, 255, 0.09), transparent 70%);
  pointer-events: none;
}
.quote-form { max-width: 860px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 2.6rem); position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.form-grid label, .check { font-size: 0.88rem; font-weight: 600; color: var(--muted); display: block; }
.span-2 { grid-column: span 2; }
.form-grid input:not([type="checkbox"]), .form-grid select, .form-grid textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  padding: 0.78rem 0.95rem;
  transition: border-color 0.15s, background 0.15s;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(124, 92, 255, 0.07);
}
.form-grid select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.form-grid option { background: var(--bg-2); }
.form-grid ::placeholder { color: rgba(152, 162, 184, 0.6); }
.file-label input { padding: 0.6rem 0.95rem; cursor: pointer; }
.file-label input::file-selector-button {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 0.35rem 0.8rem;
  margin-right: 0.8rem;
  cursor: pointer;
}

.design-attach {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(120deg, rgba(124, 92, 255, 0.14), rgba(0, 224, 255, 0.08));
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-top: 1.2rem;
  position: relative;
}
.design-attach img { width: 58px; background: rgba(255,255,255,0.07); border-radius: 9px; }
.design-attach strong { font-family: var(--font-display); font-size: 0.92rem; }
.design-attach p { margin: 0.15rem 0 0; font-size: 0.83rem; color: var(--muted); }
.attach-remove {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  flex: none;
}
.attach-remove:hover { color: var(--text); border-color: var(--pink); }

.check { margin: 1.3rem 0; cursor: pointer; }
.check input { accent-color: var(--violet); width: 16px; height: 16px; margin-right: 0.45rem; vertical-align: -2px; }
.quote-form .btn-lg { width: 100%; }
.form-status { text-align: center; font-weight: 600; margin: 1rem 0 0; min-height: 1.4em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--pink); }
.quote-form .tiny { text-align: center; margin: 0.9rem 0 0; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--border); padding: 3rem 0 2.5rem; background: rgba(0, 0, 0, 0.25); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 2rem; }
.footer .brand { font-size: 1.15rem; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.7rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: var(--muted); font-size: 0.92rem; text-decoration: none !important; }
.footer-links a:hover { color: var(--text); }
.footer-contact { text-align: right; }
.footer-contact > a { font-weight: 600; }
.footer-contact .tiny { margin-top: 0.8rem; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.feature-grid .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-grid .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .studio { grid-template-columns: 1fr; }
  .studio-canvas { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; grid-column: span 2; }
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .cta-row, .trust-row { justify-content: center; }
  .hero-visual { order: -1; }
  .sock-stage { width: min(300px, 70vw); }
  .chip-1 { left: -4%; }
  .chip-2 { right: -6%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feature-grid, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .calc-readout { grid-template-columns: 1fr; }
  .variant-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantee { flex-direction: column; text-align: center; }
  .nav-cta .btn { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
