/* ============================================
   THE PRECIOUS METALS GROUP — V2
   Light + dark contrast · Tiffany Blue · Logo
   ============================================ */

:root {
  --tiffany: #81D8D0;
  --tiffany-dark: #5bbfb5;
  --tiffany-light: #e8f9f8;
  --tiffany-pale: #f4fdfc;
  --dark: #111714;
  --dark-2: #1c2420;
  --text: #1a1a1a;
  --text-muted: #666;
  --border: #e2e2e2;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 8px 24px;
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.topbar a { color: var(--tiffany); }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--tiffany-dark); }
.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  letter-spacing: 0.05em !important;
}
.nav-cta:hover { background: var(--tiffany-dark) !important; }

.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 12px 24px 16px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.95rem; font-weight: 500; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,20,16,0.88) 0%, rgba(10,20,16,0.65) 55%, rgba(10,20,16,0.3) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 680px;
  padding-left: 48px;
}
.eyebrow, .section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tiffany);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.section-eyebrow.light { color: var(--tiffany); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--tiffany); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-primary {
  background: var(--tiffany);
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--tiffany-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--tiffany); color: var(--tiffany); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--tiffany-dark); color: var(--tiffany-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item { font-size: 0.82rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
.trust-icon { color: var(--tiffany); }
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }

/* ---- SERVICES ---- */
.services { padding: 80px 0; background: #fafafa; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  display: block;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.service-img-wrap { height: 200px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-img-wrap img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.card-link { font-size: 0.83rem; color: var(--tiffany-dark); font-weight: 500; letter-spacing: 0.02em; }

/* ---- WHY — DARK ---- */
.why {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.15;
  color: var(--white);
}
.why-text p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 0.97rem; line-height: 1.75; }
.why-list { margin-bottom: 32px; }
.why-list li {
  padding: 10px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.check { color: var(--tiffany); font-weight: 700; font-size: 1rem; flex-shrink: 0; }

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.stat-card.accent { border-color: var(--tiffany); background: rgba(129,216,208,0.08); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--tiffany);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- BRANDS ---- */
.brands {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.brands .section-eyebrow { margin-bottom: 20px; }
.brands-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.brands-row span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- REVIEWS ---- */
.reviews { padding: 80px 0; background: var(--tiffany-pale); }
.reviews .section-header { margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid rgba(129,216,208,0.3);
  border-radius: 10px;
  padding: 28px;
}
.stars { color: var(--tiffany-dark); font-size: 1rem; margin-bottom: 14px; letter-spacing: 3px; }
.review-card p { font-size: 0.93rem; color: var(--text-muted); font-style: italic; line-height: 1.75; margin-bottom: 16px; }
.reviewer { font-size: 0.8rem; font-weight: 500; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 56px 24px;
  border-top: 3px solid var(--tiffany);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}
.cta-strip p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer { background: #0a0f0d; color: rgba(255,255,255,0.6); padding: 56px 24px 0; font-size: 0.88rem; line-height: 1.85; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand {}
.footer-logo-img { height: 60px; width: auto; object-fit: contain; margin-bottom: 12px; opacity: 0.9; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.footer-tagline { color: var(--tiffany); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: 12px; }
.footer-heading { color: var(--white); font-weight: 500; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }
.footer ul li { padding: 2px 0; }
.footer ul li a, .footer a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer ul li a:hover, .footer a:hover { color: var(--tiffany); }
.footer-bottom { text-align: center; padding: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ---- INNER PAGES ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tiffany);
}
.page-hero .eyebrow { color: var(--tiffany); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero h1 em { font-style: italic; color: var(--tiffany); font-weight: 400; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: 0 auto 28px; }

.page-content { padding: 72px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.content-box h2 { font-family: var(--font-display); font-size: 1.95rem; font-weight: 400; margin-bottom: 18px; line-height: 1.25; }
.content-box p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.content-box .btn-primary { margin-top: 8px; }

.buy-list { background: var(--dark); border-radius: 10px; padding: 32px; }
.buy-list h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 20px; color: var(--white); }
.buy-list ul {}
.buy-list li {
  padding: 10px 0;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.75);
}
.buy-list li:last-child { border-bottom: none; }
.buy-list li::before { content: '◈'; color: var(--tiffany); font-size: 0.7rem; flex-shrink: 0; }

.steps-section { background: #f5f5f5; padding: 64px 0; }
.steps-section h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 400; text-align: center; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.step { padding: 28px 16px; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--dark); color: var(--tiffany); font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step h4 { font-weight: 600; margin-bottom: 10px; font-size: 0.97rem; }
.step p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 28px; }
.info-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.info-block:last-of-type { border-bottom: none; }
.info-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--tiffany-dark); font-weight: 500; margin-bottom: 6px; }
.info-block p, .info-block a { font-size: 0.97rem; color: var(--text); line-height: 1.7; }
.info-block a:hover { color: var(--tiffany-dark); }
.map-container { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); height: 440px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .topbar-inner { flex-direction: column; text-align: center; gap: 2px; }
  .hero-inner { padding: 60px 24px; }
  .hero { min-height: 500px; }
  .why-inner, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .services, .why, .reviews, .page-content, .steps-section { padding: 56px 0; }
}

/* ============================================
   CRO ADDITIONS — V3
   ============================================ */

/* PROOF BAR */
.proof-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(129,216,208,0.2);
  padding: 24px;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item { text-align: center; padding: 8px 32px; }
.proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--tiffany);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.proof-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* HOW IT WORKS — HOME */
.how-it-works {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.steps-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: steps;
}
.step-home {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step-home:last-child { border-right: none; }
.step-num-home {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--tiffany);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.step-home h4 { font-size: 0.97rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.step-home p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* WHAT TO BRING */
.bring-section {
  background: var(--tiffany-pale);
  padding: 80px 0;
  border-top: 1px solid var(--tiffany-light);
  border-bottom: 1px solid var(--tiffany-light);
}
.bring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.bring-grid h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin: 12px 0 18px; line-height: 1.2; }
.bring-grid > div > p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.bring-boxes { display: flex; flex-direction: column; gap: 16px; }
.bring-box {
  background: var(--white);
  border: 1px solid rgba(129,216,208,0.25);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bring-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.bring-box h4 { font-size: 0.93rem; font-weight: 600; margin-bottom: 4px; }
.bring-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* FAQ */
.faq-section {
  background: #fafafa;
  padding: 80px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 26px;
  border-left: 3px solid var(--tiffany);
}
.faq-item h4 { font-size: 0.97rem; font-weight: 600; margin-bottom: 10px; line-height: 1.4; color: var(--text); }
.faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* INNER PAGE ENHANCEMENTS */
.page-intro {
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.page-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.page-intro h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 18px; line-height: 1.25; }
.page-intro p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.page-intro .btn-primary { margin-top: 6px; }

.callout-box {
  background: var(--dark);
  border-radius: 10px;
  padding: 32px;
  color: var(--white);
}
.callout-box h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--tiffany); margin-bottom: 18px; }
.callout-box ul { list-style: none; }
.callout-box li {
  padding: 9px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.callout-box li:last-child { border-bottom: none; }
.callout-box li::before { content: '◈'; color: var(--tiffany); font-size: 0.7rem; flex-shrink: 0; }

.page-faq { padding: 64px 0; background: var(--white); }
.page-faq h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; margin-bottom: 32px; }

.inline-cta {
  background: var(--tiffany-pale);
  border: 1px solid var(--tiffany-light);
  border-left: 4px solid var(--tiffany);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.inline-cta p { font-size: 0.97rem; font-weight: 500; color: var(--text); margin: 0; }
.inline-cta span { font-size: 0.87rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .steps-grid-home { grid-template-columns: 1fr; }
  .step-home { border-right: none; border-bottom: 1px solid var(--border); }
  .step-home:last-child { border-bottom: none; }
  .bring-grid, .page-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-item { padding: 8px 16px; }
  .proof-div { display: none; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
}