/* Vikroh — Corporate reverse logistics site */

:root {
  --bg: #0a0e12;
  --bg-elevated: #111820;
  --bg-card: #151d28;
  --text: #e8edf4;
  --text-muted: #8b9cb3;
  --accent: #2dd4bf;
  --accent-dim: rgba(45, 212, 191, 0.15);
  --warm: #f59e0b;
  --warm-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(10, 14, 18, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.35rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: var(--bg);
  border-radius: 10px;
  font-weight: 700;
  margin-right: 2px;
}

.logo-text {
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links .btn.active {
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(45, 212, 191, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(45, 212, 191, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 212, 191, 0.12);
  top: -10%;
  right: -5%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.08);
  bottom: 10%;
  left: -10%;
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-flow {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 200px;
  opacity: 0.5;
}

.flow-path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawFlow 4s var(--ease-out) forwards;
}

@keyframes drawFlow {
  to { stroke-dashoffset: 0; }
}

.hero-content {
  padding-left: max(4vw, calc((100vw - 1140px) / 2));
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.stat-suffix {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4vw;
}

/* Cycle ring visual */
.cycle-ring {
  position: relative;
  width: 320px;
  height: 320px;
  animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cycle-node {
  position: absolute;
  width: 90px;
  padding: 0.6rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: nodeCounter 30s linear infinite;
  --angle: calc(var(--i) * 90deg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle)));
}

@keyframes nodeCounter {
  from { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-140px) rotate(calc(-1 * var(--angle))); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)) translateY(-140px) rotate(calc(-1 * var(--angle) - 360deg)); }
}

.cycle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  animation: ringRotate 30s linear infinite reverse;
}

.cycle-center svg {
  animation: ringRotate 30s linear infinite;
}

/* Marquee */
.marquee-section {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.marquee {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee span:nth-child(odd) {
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon.accent {
  background: var(--warm-dim);
  color: var(--warm);
}

.service-icon.warm {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: transform 0.25s;
}

.card-link:hover {
  transform: translateX(4px);
}

.text-muted {
  color: var(--text-muted);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 4rem;
  overflow: hidden;
}

.page-hero-short {
  padding-bottom: 2.5rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, var(--accent-dim), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, var(--warm-dim), transparent);
  z-index: -1;
}

.page-hero-accent .page-hero-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(45, 212, 191, 0.2), transparent);
}

.page-hero-warm .page-hero-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(245, 158, 11, 0.15), transparent);
}

.page-hero-purple .page-hero-bg {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(129, 140, 248, 0.15), transparent);
}

.page-hero-content {
  max-width: 720px;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-alt {
  background: var(--bg-elevated);
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
}

.cta-banner-inner {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cta-banner-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.cta-banner-inner p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature layouts */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-split h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-box {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s;
}

.feature-box:hover {
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-4px);
}

.feature-box h4 {
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.logistics-map {
  position: relative;
  height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-node {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  padding: 0.4rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  animation: mapPulse 3s ease-in-out infinite;
}

.map-node.hub {
  left: 50%;
  top: 50%;
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes mapPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-row .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stats-row p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.process-timeline-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* About */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-block h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.team-avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #14b8a6);
  color: var(--bg);
  font-weight: 700;
  border-radius: 50%;
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Integrations */
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.integration-pill {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: border-color 0.25s, color 0.25s;
}

.integration-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Contact page */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-detail a {
  color: var(--accent);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.contact-detail p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-page-layout .contact-card {
  display: block;
  padding: 2rem;
}

.form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

/* Process timeline */
.process {
  background: var(--bg-elevated);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.process-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.5);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Refurbish */
.refurbish-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grade-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.grade-card {
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), margin-left 0.4s;
  animation: gradeFloat 6s ease-in-out infinite;
}

.grade-card:nth-child(2) { animation-delay: -2s; margin-left: 2rem; }
.grade-card:nth-child(3) { animation-delay: -4s; margin-left: 4rem; }

@keyframes gradeFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.grade-a {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2), transparent);
  border-color: rgba(45, 212, 191, 0.3);
}

.grade-b {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), transparent);
  border-color: rgba(245, 158, 11, 0.25);
}

.grade-c {
  background: linear-gradient(135deg, rgba(139, 156, 179, 0.1), transparent);
}

.grade-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.grade-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.refurbish-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.refurbish-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.check-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Returns panel */
.returns-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.returns-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.returns-content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.returns-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.returns-feat strong {
  display: block;
  margin-bottom: 0.25rem;
}

.returns-feat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mockup-window {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  animation: mockupBob 5s ease-in-out infinite;
}

@keyframes mockupBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.mockup-bar span:first-child { background: #ef4444; opacity: 0.7; }
.mockup-bar span:nth-child(2) { background: #eab308; opacity: 0.7; }
.mockup-bar span:nth-child(3) { background: #22c55e; opacity: 0.7; }

.mockup-body {
  padding: 1.5rem;
}

.mockup-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.mockup-row {
  height: 12px;
  background: var(--bg-elevated);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  animation: rowPulse 2s ease-in-out infinite;
}

.mockup-row.active {
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  width: 80%;
}

.mockup-row.short { width: 50%; }

@keyframes rowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.mockup-btn {
  margin-top: 1rem;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

blockquote p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

blockquote footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-metrics .big-num,
.static-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.trust-metrics p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-copy p {
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-row textarea {
  resize: vertical;
  min-height: 80px;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 4rem;
  }

  .hero-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    padding: 2rem 0 0;
  }

  .services-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .refurbish-layout,
  .returns-panel,
  .trust-grid,
  .contact-card,
  .feature-split,
  .feature-grid,
  .about-story,
  .values-grid,
  .team-grid,
  .contact-page-layout,
  .process-timeline-4 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .grade-card:nth-child(2),
  .grade-card:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a:not(.btn) {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 2rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .trust-metrics {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

