/* SSV Gold Company - ssvgoldcompany.com */

:root {
  --bg-deep: #0a0b0f;
  --bg-card: #12141c;
  --bg-elevated: #1a1d28;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dim: rgba(201, 162, 39, 0.15);
  --text: #f4f2ed;
  --text-muted: #9a968c;
  --border: rgba(201, 162, 39, 0.2);
  --silver: #c8cdd6;
  --silver-glow: rgba(200, 205, 214, 0.14);
  --silver-shadow: rgba(130, 138, 155, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 12px;
  --transition: 0.25s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

@keyframes particle-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(var(--dx, 12px), var(--dy, -18px)) scale(1.15); opacity: 0.7; }
}

@keyframes btn-shine {
  0% { left: -100%; }
  100% { left: 150%; }
}

@keyframes hero-sweep {
  0% { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  15% { opacity: 0.6; }
  50% { opacity: 0.35; }
  100% { transform: translateX(220%) skewX(-12deg); opacity: 0; }
}

@keyframes logo-gold-glow {
  0%, 100% {
    filter:
      saturate(1.2)
      brightness(1.06)
      drop-shadow(0 0 4px rgba(201, 162, 39, 0.75))
      drop-shadow(0 0 10px rgba(232, 212, 139, 0.4));
  }
  50% {
    filter:
      saturate(1.45)
      brightness(1.14)
      drop-shadow(0 0 8px rgba(201, 162, 39, 1))
      drop-shadow(0 0 18px rgba(245, 230, 168, 0.75))
      drop-shadow(0 0 28px rgba(201, 162, 39, 0.45));
  }
}

@keyframes logo-gold-halo {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes faq-glow {
  from { border-left-color: rgba(201, 162, 39, 0.2); }
  to { border-left-color: rgba(201, 162, 39, 0.85); }
}

@keyframes sparkle-pop {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  100% { transform: scale(1.4) rotate(180deg); opacity: 0; }
}

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -1%) scale(1.02); }
  66% { transform: translate(-1%, 2%) scale(0.98); }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 55% 45% at 88% 28%, var(--silver-glow), transparent 58%),
    radial-gradient(ellipse 40% 35% at 12% 72%, rgba(160, 168, 182, 0.07), transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.85), transparent 65%),
    #030304;
  pointer-events: none;
  animation: mesh-drift 18s ease-in-out infinite;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Cursor-following gold spotlight (desktop) */
.cursor-spotlight {
  position: fixed;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.09) 0%, rgba(201, 162, 39, 0.03) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}

body.cursor-active .cursor-spotlight {
  opacity: 1;
}

/* Click sparkles */
.sparkle-layer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: sparkle-pop 0.7s ease-out forwards;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
}

.sparkle::before {
  width: 2px;
  height: 10px;
  left: 2px;
  top: -2px;
}

.sparkle::after {
  width: 10px;
  height: 2px;
  left: -2px;
  top: 2px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg, transparent 42%, rgba(200, 205, 214, 0.04) 58%, transparent 72%),
    linear-gradient(180deg, rgba(3, 3, 4, 0.15) 0%, rgba(3, 3, 4, 0.55) 55%, rgba(3, 3, 4, 0.92) 100%);
  pointer-events: none;
}

/* Ambient gold particles */
.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 212, 139, 0.9) 0%, rgba(201, 162, 39, 0.4) 40%, transparent 70%);
  filter: blur(1px);
}

.particle--1 { width: 4px; height: 4px; top: 18%; left: 12%; --dx: 14px; --dy: -22px; animation: particle-float 9s ease-in-out infinite; }
.particle--2 { width: 3px; height: 3px; top: 42%; left: 8%; --dx: -10px; --dy: -16px; animation: particle-float 11s ease-in-out 1.2s infinite; }
.particle--3 { width: 5px; height: 5px; top: 68%; left: 18%; --dx: 18px; --dy: -12px; animation: particle-float 10s ease-in-out 0.6s infinite; }
.particle--4 { width: 3px; height: 3px; top: 28%; left: 72%; --dx: -16px; --dy: -20px; animation: particle-float 12s ease-in-out 2s infinite; }
.particle--5 { width: 4px; height: 4px; top: 55%; left: 65%; --dx: 12px; --dy: -24px; animation: particle-float 8.5s ease-in-out 0.8s infinite; }
.particle--6 { width: 2px; height: 2px; top: 82%; left: 45%; --dx: -8px; --dy: -14px; animation: particle-float 13s ease-in-out 1.5s infinite; }
.particle--7 { width: 3px; height: 3px; top: 12%; left: 48%; --dx: 10px; --dy: -18px; animation: particle-float 10s ease-in-out 0.4s infinite; }
.particle--8 { width: 4px; height: 4px; top: 75%; left: 78%; --dx: -14px; --dy: -10px; animation: particle-float 9.5s ease-in-out 1.8s infinite; }
.particle--9 { width: 2px; height: 2px; top: 48%; left: 32%; --dx: 8px; --dy: -20px; animation: particle-float 11.5s ease-in-out 2.4s infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero light sweep */
.hero-sweep {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-sweep::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 162, 39, 0.06),
    rgba(232, 212, 139, 0.12),
    rgba(201, 162, 39, 0.06),
    transparent
  );
  animation: hero-sweep 7s ease-in-out infinite;
}

main,
.header,
.footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  body::after {
    background:
      linear-gradient(118deg, transparent 35%, rgba(200, 205, 214, 0.03) 55%, transparent 75%),
      linear-gradient(180deg, rgba(3, 3, 4, 0.35) 0%, rgba(3, 3, 4, 0.72) 50%, rgba(3, 3, 4, 0.94) 100%);
  }

  .ambient-layer {
    opacity: 0.5;
  }
}

@media (max-width: 600px) {
  .ambient-layer {
    display: none;
  }
}

@media (max-width: 900px), (hover: none) {
  .cursor-spotlight {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle,
  .hero-glow,
  .hero-sweep::before,
  .gold-text,
  body::before,
  .logo-img,
  .logo-mark::before {
    animation: none !important;
  }

  .cursor-spotlight,
  .scroll-progress {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 11, 15, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}

.logo-text {
  white-space: nowrap;
}

.logo:hover {
  color: var(--gold-light);
}

.logo-mark {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 230, 168, 0.55) 0%,
    rgba(201, 162, 39, 0.28) 45%,
    transparent 72%
  );
  z-index: 0;
  pointer-events: none;
  animation: logo-gold-halo 3s ease-in-out infinite;
}

.logo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
  animation: logo-gold-glow 3s ease-in-out infinite;
  transition: filter var(--transition), transform var(--transition);
}

.logo:hover .logo-img {
  animation: none;
  filter:
    saturate(1.5)
    brightness(1.18)
    drop-shadow(0 0 10px rgba(201, 162, 39, 1))
    drop-shadow(0 0 22px rgba(245, 230, 168, 0.85))
    drop-shadow(0 0 34px rgba(201, 162, 39, 0.5));
  transform: scale(1.04);
}

.logo--footer {
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
}

.logo--footer .logo-mark {
  width: 1.7em;
  height: 1.7em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, #a88620 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.1);
  color: var(--bg-deep);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.38);
  transform: translateY(-1px);
}

.btn-primary:hover::after {
  animation: btn-shine 0.65s ease;
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-nav {
  padding: 0.6rem 1.25rem;
  background: var(--gold-dim);
  color: var(--gold-light) !important;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.btn-nav:hover {
  background: rgba(201, 162, 39, 0.25);
  color: var(--gold-light) !important;
}

.btn-full {
  width: 100%;
}

.contact-form #contactSubmitBtn {
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  max-width: 16rem;
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 30% at 82% 40%, rgba(200, 205, 214, 0.08), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 162, 39, 0.08), transparent),
    linear-gradient(180deg, rgba(3, 3, 4, 0.2) 0%, rgba(8, 9, 12, 0.65) 100%);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.gold-text {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 35%, #f5e6a8 50%, var(--gold) 65%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s ease-in-out infinite;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}


.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* Trust bar */
.trust-bar {
  padding: 1.25rem 0;
  background: rgba(18, 20, 28, 0.9);
  backdrop-filter: blur(6px);
  border-block: 1px solid var(--border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.trust-items span {
  white-space: nowrap;
  transition: color var(--transition), transform var(--transition);
}

.trust-items span:hover {
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.section-header--light .section-eyebrow,
.section-header--light h2 {
  color: var(--text);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
}

/* Services */
.services {
  background: rgba(10, 11, 15, 0.82);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(18, 20, 28, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 162, 39, 0.15);
}

.service-card--featured {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  background: var(--gold-dim);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1.25rem;
}

.service-card li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 500;
}

/* How it works */
.how-it-works {
  background: rgba(18, 20, 28, 0.92);
  backdrop-filter: blur(6px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 0;
  transition: transform 0.35s ease;
}

.step:hover {
  transform: translateX(6px);
}

.step:hover .step-num {
  color: rgba(201, 162, 39, 0.65);
  text-shadow: 0 0 24px rgba(201, 162, 39, 0.35);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-dim);
  color: rgba(201, 162, 39, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stat-value.stat-counted {
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.45);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  margin-top: 1.5rem;
}

.about-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-card {
  background: rgba(18, 20, 28, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-card-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-card ul {
  list-style: none;
}

.about-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-card li:last-child {
  border-bottom: none;
}

/* FAQ */
.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  padding-left: 1rem;
  margin-left: -1rem;
  transition: border-left-color 0.35s ease, background 0.35s ease;
}

.faq-item[open] {
  border-left-color: rgba(201, 162, 39, 0.75);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.06), transparent 60%);
  animation: faq-glow 0.4s ease forwards;
}

.faq-item summary {
  padding: 1.25rem 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background: rgba(18, 20, 28, 0.92);
  backdrop-filter: blur(6px);
}

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

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-info address {
  font-style: normal;
}

.contact-info address p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-address-link {
  display: inline-block;
  line-height: 1.55;
}

.contact-address-link:hover {
  text-decoration: underline;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-light);
  font-weight: 400;
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.social-link__icon {
  display: block;
  flex-shrink: 0;
}

.social-link--footer {
  margin-top: 1rem;
}

.social-link--footer:hover {
  color: var(--gold);
}

.contact-form {
  background: rgba(26, 29, 40, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-success {
  margin-top: 1rem;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.form-error {
  margin-top: 1rem;
  text-align: center;
  color: #e88;
  font-size: 0.9rem;
}

/* Welcome registration modal */
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.welcome-modal[hidden] {
  display: none;
}

.welcome-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.82);
  backdrop-filter: blur(8px);
}

.welcome-modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.1);
  animation: welcome-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes welcome-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.welcome-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.welcome-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.welcome-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.welcome-modal__panel h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.welcome-modal__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.welcome-modal__form {
  margin-bottom: 0;
}

.welcome-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.welcome-modal__hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

body.welcome-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .welcome-modal__panel {
    animation: none;
  }
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Mobile */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.25rem;
  }

  .nav-links a:not(.btn) {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 83.03%;
  }

  .container {
    width: min(1120px, 94vw);
  }

  body.nav-open {
    overflow: hidden;
  }

  .header {
    padding: calc(0.75rem + env(safe-area-inset-top)) 0 0.75rem;
  }

  .header .logo {
    font-size: clamp(1.2rem, 4.2vw, 1.5rem);
    gap: 0.5rem;
    min-width: 0;
  }

  .header .logo-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(3, 3, 4, 0.72);
    backdrop-filter: blur(4px);
  }

  .nav-backdrop[hidden] {
    display: none;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 102;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: calc(5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .nav-links .btn-nav {
    width: 100%;
    min-height: 48px;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: calc(5.25rem + env(safe-area-inset-top)) 0 9rem;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
    line-height: 1.12;
    margin-bottom: 0.65rem;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
    max-width: none;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    padding-top: 1.5rem;
  }

  .stat-value {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .stat-divider {
    display: none;
  }

  .trust-bar {
    padding: 1rem 0;
  }

  .trust-items {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .trust-items::-webkit-scrollbar {
    display: none;
  }

  .trust-items span {
    scroll-snap-align: start;
    flex-shrink: 0;
    font-size: 0.8125rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
  }

  section {
    padding: 3.25rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
  }

  /* Tighter headline-to-body spacing on mobile */
  .section-eyebrow {
    margin-bottom: 0.4rem;
  }

  .section-header h2,
  .about-content h2,
  .contact-info h2 {
    margin-bottom: 0.5rem;
  }

  .contact-info > p {
    margin-bottom: 1.25rem;
  }

  .service-icon {
    margin-bottom: 0.75rem;
  }

  .service-card h3,
  .step h3 {
    margin-bottom: 0.35rem;
  }

  .step-num {
    margin-bottom: 0.4rem;
  }

  .form-row label {
    margin-bottom: 0.25rem;
  }

  .contact-info address strong {
    margin-bottom: 0;
    line-height: 1.25;
  }

  .contact-info address strong + br {
    display: none;
  }

  .contact-info address p {
    margin-bottom: 0.85rem;
    line-height: 1.45;
  }

  .services-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-row input,
  .form-row select,
  .form-row textarea,
  .btn {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form #contactSubmitBtn {
    min-height: 44px;
    font-size: 15px;
    padding: 0.65rem 1.25rem;
    max-width: 14.5rem;
  }

  .form-row textarea {
    min-height: 120px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .welcome-modal {
    padding: 1rem;
    align-items: flex-end;
  }

  .welcome-modal__panel {
    width: 100%;
    max-height: 90dvh;
    overflow-y: auto;
    padding: 1.5rem 1.25rem 1.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .faq-item summary {
    padding: 1rem 2.5rem 1rem 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .contact-address-link {
    word-break: break-word;
  }
}

@media (max-width: 768px) and (hover: none) {
  .service-card:hover,
  .trust-items span:hover,
  .step:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  .header .logo-text {
    font-size: 1.05rem;
  }

  .hero {
    padding-bottom: 7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
