/* ==========================================================================
   RES 2026 Theme — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #b87a0a;
  --gold-light: #d4a033;
  --gold-glow: rgba(184, 122, 10, 0.25);
  --bg: #faf8f4;
  --bg-warm: #f5f0e8;
  --bg-card: rgba(255, 255, 255, 0.7);
  --text: #1a1612;
  --text-muted: #6b5e4f;
  --green: #1a7a35;
  --green-light: #e6f5eb;
  --border: #e2ddd4;
  --shadow: 0 4px 24px rgba(26, 22, 18, 0.08);
  --shadow-hover: 0 20px 60px rgba(26, 22, 18, 0.15);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grain);
  pointer-events: none;
  z-index: 9999;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   3. NAVIGATION (shared)
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 12px;
  left: clamp(1rem, 3vw, 2.5rem);
  right: clamp(1rem, 3vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 221, 212, 0.4);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(26, 22, 18, 0.06);
  z-index: 1000;
  transition: all 0.4s;
}

.nav.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 30px rgba(26, 22, 18, 0.1);
}

.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: all 0.25s;
}

.nav-links a:hover { color: var(--gold); background: rgba(184, 122, 10, 0.06); }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-parent > a,
.nav-links .current_page_parent > a { color: var(--gold); background: rgba(184, 122, 10, 0.08); }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.4rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.nav-cta:hover::after { left: 100%; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--gold-glow); }

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

.nav-hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 84px;
  left: clamp(1rem, 3vw, 2.5rem);
  right: clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 221, 212, 0.4);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(26, 22, 18, 0.1);
  padding: 1rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(226, 221, 212, 0.4);
  transition: color 0.3s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* WordPress nav menu integration */
.nav-links .menu { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav-links .menu li { list-style: none; }
.nav-links .menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: all 0.25s;
}
.nav-links .menu a:hover { color: var(--gold); background: rgba(184, 122, 10, 0.06); }

/* --------------------------------------------------------------------------
   4. FOOTER (shared)
   -------------------------------------------------------------------------- */
.footer {
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-warm);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.footer-social a:hover svg {
  stroke: #fff;
}

.footer-social a[aria-label="Pinterest"] svg {
  fill: var(--text-muted);
  stroke: none;
}

.footer-social a[aria-label="Pinterest"]:hover svg {
  fill: #fff;
}

.footer-copy { 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.3s;
}

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

/* --------------------------------------------------------------------------
   5. BACK TO TOP (shared)
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--gold-glow);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 900;
  pointer-events: none;
}

.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--gold-glow); }
.back-to-top svg { width: 18px; height: 18px; fill: #fff; }

/* --------------------------------------------------------------------------
   6. ANIMATIONS (shared)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  filter: blur(4px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.9s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.05); }
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes scatterIn {
  0% { opacity: 0; filter: blur(8px); scale: 0.5; }
  100% { opacity: 1; filter: blur(0); scale: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* --------------------------------------------------------------------------
   7. SCATTER / NEWSPAPER CARDS (shared between blog & article)
   -------------------------------------------------------------------------- */
.scatter-card {
  position: absolute;
  width: 230px;
  background: #e8e0d4;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 2px 4px 20px rgba(26, 22, 18, 0.18), 0 1px 4px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  text-decoration: none;
  color: #2a2420;
  border: none;
}

.scatter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(140, 120, 90, 0.1) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.scatter-card:hover {
  z-index: 20 !important;
  box-shadow: 4px 16px 50px rgba(26, 22, 18, 0.28), 0 2px 8px rgba(26, 22, 18, 0.12);
}

.scatter-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(1.05);
}

.scatter-card:hover .scatter-card-img {
  filter: grayscale(60%) contrast(1.05);
}

.scatter-card-body {
  padding: 0.6rem 0.75rem 0.7rem;
  position: relative;
  z-index: 1;
}

.scatter-card-masthead {
  text-align: center;
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
  border-bottom: 1px solid rgba(60, 50, 35, 0.25);
}

.scatter-card-masthead-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #1a1510;
  letter-spacing: 0.04em;
  font-style: italic;
}

.scatter-card-date {
  font-size: 0.52rem;
  color: rgba(60, 50, 35, 0.6);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.scatter-card-rule {
  height: 2px;
  background: #2a2420;
  margin-bottom: 0.4rem;
}

.scatter-card h4,
.blog-hero-scatter .scatter-card h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
  color: #1a1510;
}

.scatter-card-divider {
  width: 100%;
  height: 1px;
  background: rgba(60, 50, 35, 0.2);
  margin-bottom: 0.3rem;
}

.scatter-card p,
.blog-hero-scatter .scatter-card p {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(42, 36, 32, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  text-align: justify;
  hyphens: auto;
}

/* Blog scatter entrance */
.scatter-card {
  opacity: 0;
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.scatter-card:nth-child(1) { animation-delay: 0.3s; }
.scatter-card:nth-child(2) { animation-delay: 0.5s; }
.scatter-card:nth-child(3) { animation-delay: 0.7s; }
.scatter-card:nth-child(4) { animation-delay: 0.9s; }
.scatter-card:nth-child(5) { animation-delay: 1.1s; }

/* --------------------------------------------------------------------------
   8. BLOG PAGE SPECIFIC
   -------------------------------------------------------------------------- */

/* Blog Hero */
.blog-hero {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 40px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(184, 122, 10, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 122, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.blog-hero-text {
  position: relative;
  z-index: 2;
}

.blog-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.blog-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  position: relative;
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  position: relative;
  line-height: 1.7;
}

.blog-hero-stats {
  display: flex;
  gap: 2.5rem;
  position: relative;
}

.blog-hero-stat {
  text-align: left;
}

.blog-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.blog-hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Blog hero scatter container */
.blog-hero-scatter {
  position: relative;
  height: 480px;
  z-index: 1;
}

/* Blog hero entrance animations */
.blog-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  animation: heroEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.blog-hero .reveal-delay-1 { animation-delay: 0.2s; }
.blog-hero .reveal-delay-2 { animation-delay: 0.4s; }
.blog-hero .reveal-delay-3 { animation-delay: 0.6s; }

/* Blog Section */
.blog-section {
  padding: 0 clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Featured Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
  text-decoration: none;
  color: inherit;
}

.blog-featured:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.blog-featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-featured-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(184, 122, 10, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.blog-featured-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-featured h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.blog-featured p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: transform 0.3s;
}

.blog-featured:hover .blog-read-more svg { transform: translateX(4px); }

/* Post Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.blog-card-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(184, 122, 10, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-author {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-read {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
}

.blog-pagination ul.page-numbers {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.blog-pagination ul.page-numbers li {
  display: flex;
}

.blog-page,
.blog-pagination li > .page-numbers {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.blog-page:hover,
.blog-pagination li > .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

.blog-page.active,
.blog-pagination li > .page-numbers.current {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.blog-pagination .page-numbers.dots {
  all: unset;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: default;
  display: flex;
  align-items: center;
  padding: 0 0.25rem;
}

.blog-page-arrow {
  font-size: 1.1rem;
}

/* Blog Layout with sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 80px;
}

/* Newsletter */
.blog-newsletter {
  background: var(--bg-warm);
  padding: 60px clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.blog-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.blog-newsletter h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-newsletter p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.blog-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.blog-newsletter-input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.blog-newsletter-input:focus { border-color: var(--gold); }

.blog-newsletter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.blog-newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-glow); }

/* --------------------------------------------------------------------------
   9. ARTICLE / SINGLE POST SPECIFIC
   -------------------------------------------------------------------------- */

/* Reading Progress Bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s;
}

/* Article Hero */
.article-hero-section {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 0;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.article-hero-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 122, 10, 0.06) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.article-hero-text {
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.article-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.article-breadcrumb svg {
  width: 14px;
  height: 14px;
  fill: var(--text-muted);
  opacity: 0.5;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.article-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(184, 122, 10, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.article-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article-read-time {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.article-hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  position: relative;
}

.article-hero-text h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: -0.75rem;
  width: 50px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.article-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.article-author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}

.article-author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero image */
.article-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.article-hero-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
  box-shadow:
    0 25px 50px rgba(26, 22, 18, 0.15),
    0 0 0 1px rgba(184, 122, 10, 0.1);
}

.article-hero-img-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 30px 60px rgba(26, 22, 18, 0.2),
    0 0 0 1px rgba(184, 122, 10, 0.15);
}

.article-hero-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.article-hero-img-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.article-hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(26, 22, 18, 0.1);
  z-index: 3;
}

.article-hero-img-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  z-index: 3;
}

/* Article entrance animations */
.article-hero-text .article-breadcrumb { opacity: 0; animation: artIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.1s forwards; }
.article-hero-text .article-meta-top { opacity: 0; animation: artIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.25s forwards; }
.article-hero-text h1 { opacity: 0; animation: artIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards; }
.article-hero-text .article-subtitle { opacity: 0; animation: artIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards; }
.article-hero-text .article-author { opacity: 0; animation: artIn 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.75s forwards; }
.article-hero-visual { opacity: 0; animation: artImgIn 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards; }

@keyframes artIn {
  0% { opacity: 0; transform: translateY(30px); filter: blur(3px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes artImgIn {
  0% { opacity: 0; transform: translateX(50px) scale(0.95); filter: blur(6px); }
  100% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

/* Article Divider */
.article-divider {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.article-divider-line {
  height: 1px;
  background: var(--border);
}

/* Article Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 60px;
}

/* Article Content */
.article-content {
  max-width: 720px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.article-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.article-content strong { color: var(--text); }

.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.article-content a:hover { color: var(--gold-light); }

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content li { margin-bottom: 0.5rem; }

.article-content blockquote {
  background: var(--bg-warm);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.article-content img {
  width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
}

/* Tip Box */
.article-tip {
  background: rgba(184, 122, 10, 0.06);
  border: 1px solid rgba(184, 122, 10, 0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.article-tip-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

/* Share Bar */
.article-share {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}

.article-share-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.article-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.article-share-btn:hover {
  border-color: var(--gold);
  background: rgba(184, 122, 10, 0.06);
}

.article-share-btn svg { width: 16px; height: 16px; fill: var(--text-muted); }

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-toc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sidebar-toc ol {
  list-style: none;
  counter-reset: toc;
}

.sidebar-toc li {
  counter-increment: toc;
  margin-bottom: 0.5rem;
}

.sidebar-toc a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: all 0.25s;
}

.sidebar-toc a:hover {
  color: var(--gold);
  background: rgba(184, 122, 10, 0.04);
}

.sidebar-toc a::before {
  content: counter(toc) ".";
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gold);
  min-width: 1.2rem;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #1a1612 0%, #2d261f 100%);
  border-radius: 14px;
  padding: 1.75rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.sidebar-cta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.sidebar-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.sidebar-cta p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sidebar-cta-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.sidebar-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--gold-glow); }

/* Sidebar Related */
.sidebar-related {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.sidebar-related-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sidebar-related a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a:hover { color: var(--gold); }

/* Related Articles — Newspaper Scatter */
.related-section {
  background: var(--bg-warm);
  padding: 60px clamp(1.5rem, 4vw, 3rem) 40px;
}

.related-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.related-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.related-scatter {
  position: relative;
  height: 420px;
  max-width: 900px;
  margin: -30px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.related-scatter .scatter-card {
  width: 200px;
  border-radius: 3px;
  transform-origin: 50% 100%;
}

.related-scatter .scatter-card-img {
  height: 120px;
}

.related-scatter .scatter-card-masthead-name {
  font-size: 0.9rem;
}

.related-scatter .scatter-card h4 {
  font-size: 0.82rem;
}

/* Related scatter entrance */
.related-scatter .scatter-card {
  opacity: 0;
}

.related-scatter .scatter-card.visible {
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* --------------------------------------------------------------------------
   10. HOMEPAGE SPECIFIC
   -------------------------------------------------------------------------- */

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  padding: 120px clamp(1.5rem, 4vw, 3rem) 80px;
  gap: 2rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(184, 122, 10, 0.08);
  border: 1px solid rgba(184, 122, 10, 0.2);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
  min-height: calc(clamp(3rem, 5.5vw, 5.2rem) * 1.05 * 3);
}

.hero-cursor {
  display: inline-block;
  color: var(--gold);
  animation: cursorBlink 0.7s step-end infinite;
  font-weight: 300;
  margin-left: 2px;
}

.hero-cursor.done { display: none; }

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::after { left: 100%; }

.btn-ghost {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

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

/* HERO SHOWCASE */
.hero-showcase {
  position: relative;
  width: 100%;
  height: 720px;
  perspective: 1400px;
  margin-top: 40px;
}

.hero-showcase-card {
  position: absolute;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  opacity: 0;
  left: 50%;
  top: 0;
  box-shadow: 0 4px 20px rgba(26, 22, 18, 0.08);
}

.hero-showcase-card.pos-center {
  z-index: 5;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  box-shadow: 0 20px 60px rgba(26, 22, 18, 0.18);
}

.hero-showcase-card.pos-right1 {
  z-index: 4;
  opacity: 0.85;
  transform: translate(10%, 25px) scale(0.88) rotateY(-8deg);
}

.hero-showcase-card.pos-right2 {
  z-index: 3;
  opacity: 0.5;
  transform: translate(58%, 50px) scale(0.76) rotateY(-14deg);
}

.hero-showcase-card.pos-left1 {
  z-index: 4;
  opacity: 0.85;
  transform: translate(-110%, 25px) scale(0.88) rotateY(8deg);
}

.hero-showcase-card.pos-left2 {
  z-index: 3;
  opacity: 0.5;
  transform: translate(-158%, 50px) scale(0.76) rotateY(14deg);
}

.hero-showcase-card.pos-hidden {
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, 60px) scale(0.6);
  pointer-events: none;
}

.hero-showcase-card:hover.pos-center {
  box-shadow: 0 28px 70px rgba(26, 22, 18, 0.22);
  transform: translate(-50%, -6px) scale(1.03);
}

/* CARD IMAGE AREA */
.hsc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.hsc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s;
}

.hero-showcase-card:hover .hsc-img { transform: scale(1.08); }

.hsc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(26,22,18,0.75) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hsc-img-price {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 3;
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hsc-img-addr {
  position: absolute;
  bottom: 44px;
  left: 14px;
  z-index: 3;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
}

.hsc-profit-badge {
  position: absolute;
  top: 0;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.65rem 0.45rem;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(26, 122, 53, 0.35);
  border-radius: 0 0 8px 8px;
}

.hsc-score {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pos-center .hsc-score {
  box-shadow: 0 2px 14px rgba(184,122,10,0.25);
}

.hsc-score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

.hsc-body {
  padding: 1rem 1.15rem 1.15rem;
}

.hsc-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}

.hsc-detail {
  padding: 0.55rem 0.4rem;
  background: var(--bg-warm);
  border-radius: 8px;
  text-align: center;
}

.hsc-detail-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.hsc-detail-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.hsc-ai-bar {
  height: 4px;
  background: rgba(226,221,212,0.5);
  overflow: hidden;
  margin-top: 0.75rem;
  border-radius: 4px;
}

.hsc-ai-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 4px;
  transition: width 1s ease-out 0.3s;
}

.pos-center .hsc-ai-bar::after { width: 100%; }

.hsc-ai-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
}

.hsc-ai-label span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.hsc-ai-label strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
}

.hsc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hsc-deal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.hsc-deal-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hsc-deal-value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
}

/* Progress dots */
.hero-showcase-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hsc-dot {
  width: 32px;
  height: 3px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.hsc-dot.active {
  background: var(--border);
}

.hsc-dot.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: dotFill 4s linear forwards;
}

@keyframes dotFill {
  0% { width: 0; }
  100% { width: 100%; }
}

.hsc-dot.done {
  background: var(--gold);
}

.hsc-dot.done::after { display: none; }

/* Orbiting stat badges */
.hsc-orbit {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.hsc-orbit-item {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.08);
  pointer-events: auto;
  transition: box-shadow 0.3s;
  will-change: transform;
  white-space: nowrap;
}

.hsc-orbit-item:hover {
  box-shadow: 0 8px 28px rgba(26, 22, 18, 0.15);
}

.hsf-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.hsf-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  white-space: nowrap;
}

.hsf-value.green { color: var(--green); }
.hsf-value.gold { color: var(--gold); }

/* METRICS BAR */
.metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-warm);
}

.metric-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.metric-item:last-child { border-right: none; }

.metric-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-number .suffix {
  font-size: 0.6em;
  color: var(--gold);
}

.metric-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ANALYSIS SECTION */
.analysis {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

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

.analysis-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.analysis-photo {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.analysis-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.analysis-photo:hover img { transform: scale(1.05); }

.analysis-photo:first-child { grid-column: span 2; }
.analysis-photo:first-child img { height: 220px; }

.analysis-photo::after {
  content: 'AI VERIFIED';
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  background: rgba(26, 22, 18, 0.72);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
  z-index: 2;
}

.analysis-photo:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.analysis-photo:nth-child(2)::after { content: 'AI SCORE: 94'; }
.analysis-photo:nth-child(3)::after { content: 'AI SCORE: 87'; }

.analysis-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  z-index: 2;
  width: 0;
  transition: width 0.6s ease-out;
}

.analysis-photo:hover::before { width: 100%; }

.analysis-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.analysis-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}

.analysis-data-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.data-point {
  padding: 1rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.data-point:hover { border-color: var(--gold); }

.data-point-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.data-point-value.accent { color: var(--gold); }

.data-point-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* PIPELINE SECTION */
.pipeline {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.pipeline-dashboard {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
}

.pipeline-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.4);
}

.pipeline-dash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pipeline-dash-title .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.pipeline-tabs {
  display: flex;
  gap: 0.15rem;
}

.pipeline-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.pipeline-tab.active {
  background: var(--gold);
  color: #fff;
}

.pipeline-dash-body { padding: 1.5rem; }

.pipeline-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pipe-metric {
  padding: 1.25rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
}

.pipe-metric-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.pipe-metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pipe-metric-value.green { color: var(--green); }
.pipe-metric-value.gold { color: var(--gold); }

.pipe-metric-change {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 0.3rem;
}

.pipe-deals {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.4);
}

.pipe-deals-header {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr 0.6fr;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.pipe-deal-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr 0.6fr;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(226,221,212,0.4);
  font-size: 0.95rem;
  align-items: center;
  transition: background 0.2s;
}

.pipe-deal-row:hover { background: rgba(184,122,10,0.03); }
.pipe-deal-row:last-child { border-bottom: none; }

.pipe-deal-addr {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pipe-deal-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.pipe-deal-profit {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
}

.pipe-deal-status {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  display: inline-block;
  text-align: center;
}

.status-active { background: var(--green-light); color: var(--green); }
.status-pending { background: rgba(184,122,10,0.08); color: var(--gold); }
.status-closed { background: #e8f0fe; color: #2563eb; }

.pipeline-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}

.pipeline-scan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  animation: pipeScan 4s linear infinite;
}

@keyframes pipeScan {
  0% { top: 0; }
  100% { top: 100%; }
}

.pipeline-content .section-label { margin-bottom: 1rem; }

.pipeline-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.pipeline-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 480px;
}

.pipeline-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pipeline-trust-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pipeline-trust-item strong span {
  font: inherit;
  color: inherit;
  display: inline;
}

.pipeline-trust-item > span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* FEATURES */
.features {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 600px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card-number {
  font-family: 'Outfit', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(184, 122, 10, 0.06);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
  pointer-events: none;
}

.feature-card-accent {
  width: 4px;
  height: 40px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.feature-card:nth-child(2) .feature-card-accent { background: var(--green); }
.feature-card:nth-child(3) .feature-card-accent { background: #4a6cf7; }
.feature-card:nth-child(4) .feature-card-accent { background: #8b5cf6; }
.feature-card:nth-child(5) .feature-card-accent { background: #e85d3a; }
.feature-card:nth-child(6) .feature-card-accent { background: #0ea5e9; }

/* SHOWCASE */
.showcase {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  position: relative;
}

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

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.showcase-img-wrap {
  overflow: hidden;
  position: relative;
}

.showcase-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

.showcase-img-wrap:hover img { transform: scale(1.08); }

.showcase-img-wrap:first-child {
  grid-row: span 2;
}

.showcase-img-wrap:first-child img {
  height: 100%;
}

.showcase-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.showcase-scan::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0% { top: -2px; }
  100% { top: 100%; }
}

.showcase-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.showcase-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.showcase-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.showcase-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* PROCESS */
.process {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  z-index: 0;
}

.process-step {
  position: relative;
  padding: 0 2rem;
  text-align: center;
  z-index: 1;
}

.process-step-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  position: relative;
}

.process-step:hover .process-step-circle {
  border-color: var(--gold);
  background: #faf8f4;
  box-shadow: 0 8px 30px var(--gold-glow);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.process-step-icon {
  font-size: 1.8rem;
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: #fff;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.process-step-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(26,122,53,0.08);
  border: 1px solid rgba(26,122,53,0.15);
  padding: 0.3rem 0.7rem;
}

/* HOMEPAGE BLOG SECTION */
.home-blog-section {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
}

.home-blog-section .blog-grid {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
  .home-blog-section .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .home-blog-section .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .home-blog-section .blog-grid { grid-template-columns: 1fr; }
}

.home-blog-section .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
}

.home-blog-section .blog-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-view-all {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.blog-view-all:hover { opacity: 0.7; }

/* MEDIA BAR */
.media-bar {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.media-bar-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.media-logos img {
  height: 28px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.media-logos img:hover { opacity: 0.85; filter: grayscale(0%); }

/* TESTIMONIALS */
.testimonials {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

.testimonial-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: clamp(80px, 12vw, 160px) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
}

/* CONTACT SECTION (homepage) */
section.contact {
  padding: clamp(60px, 10vw, 120px) clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

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

section.contact h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 122, 10, 0.08);
  border: 1px solid rgba(184, 122, 10, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.contact-info-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.contact-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px dashed var(--border);
  background: rgba(255,255,255,0.5);
}

.contact-hours h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* IRON MAN ASSEMBLY ANIMATION */
.im-assemble .nav,
.im-assemble .hero-content > *,
.im-assemble .hero-showcase-card,
.im-assemble .hero-showcase-float,
.im-assemble .hsc-orbit-item {
  opacity: 0;
}

.im-ready .nav {
  animation: imNavDrop 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes imNavDrop {
  0% { opacity: 0; transform: translateY(-60px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.im-ready .hero-content > *:nth-child(1) {
  animation: imFromLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.im-ready .hero-content > *:nth-child(2) {
  animation: imFadeUp 0.8s ease-out 5.0s forwards;
}

.im-ready .hero-content > *:nth-child(3) {
  animation: imFadeUp 1s ease-out 0.3s forwards;
}

.im-ready .hero-content > *:nth-child(4) {
  animation: imFromLeft 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

@keyframes imFromLeft {
  0% { opacity: 0; transform: translateX(-80px) rotate(-3deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes imTitleAssemble {
  0% { opacity: 0; transform: translateY(60px) scale(0.85); filter: blur(6px); }
  50% { filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes imFadeUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

.im-ready .hero-showcase-card:nth-child(1) {
  animation: imCardCenter 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}
.im-ready .hero-showcase-card:nth-child(2) {
  animation: imCardRight 1.4s cubic-bezier(0.23, 1, 0.32, 1) 1.0s forwards;
}
.im-ready .hero-showcase-card:nth-child(8) {
  animation: imCardLeft 1.4s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
}
.im-ready .hero-showcase-card:nth-child(3) {
  animation: imCardFarRight 1.4s cubic-bezier(0.23, 1, 0.32, 1) 2.0s forwards;
}
.im-ready .hero-showcase-card:nth-child(7) {
  animation: imCardFarLeft 1.4s cubic-bezier(0.23, 1, 0.32, 1) 2.5s forwards;
}
.im-ready .hero-showcase-card:nth-child(4),
.im-ready .hero-showcase-card:nth-child(5),
.im-ready .hero-showcase-card:nth-child(6) {
  animation: imCardHidden 0.5s ease-out 3.0s forwards;
}

@keyframes imCardCenter {
  0% { opacity: 0; transform: translate(120vw, -200px) scale(0.4) rotate(15deg); filter: blur(10px); }
  60% { opacity: 0.8; filter: blur(2px); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}

@keyframes imCardRight {
  0% { opacity: 0; transform: translate(120vw, 150px) scale(0.3) rotate(-18deg); filter: blur(10px); }
  60% { opacity: 0.6; filter: blur(2px); }
  100% { opacity: 0.85; transform: translate(10%, 25px) scale(0.88) rotateY(-8deg); filter: blur(0); }
}

@keyframes imCardFarRight {
  0% { opacity: 0; transform: translate(120vw, -100px) scale(0.2) rotate(22deg); filter: blur(10px); }
  60% { opacity: 0.4; filter: blur(2px); }
  100% { opacity: 0.5; transform: translate(58%, 50px) scale(0.76) rotateY(-14deg); filter: blur(0); }
}

@keyframes imCardLeft {
  0% { opacity: 0; transform: translate(-120vw, 120px) scale(0.3) rotate(18deg); filter: blur(10px); }
  60% { opacity: 0.6; filter: blur(2px); }
  100% { opacity: 0.85; transform: translate(-110%, 25px) scale(0.88) rotateY(8deg); filter: blur(0); }
}

@keyframes imCardFarLeft {
  0% { opacity: 0; transform: translate(-120vw, -80px) scale(0.2) rotate(-22deg); filter: blur(10px); }
  60% { opacity: 0.4; filter: blur(2px); }
  100% { opacity: 0.5; transform: translate(-158%, 50px) scale(0.76) rotateY(14deg); filter: blur(0); }
}

@keyframes imCardHidden {
  0% { opacity: 0; }
  100% { opacity: 0; }
}

.im-ready .hero-showcase::after {
  content: '';
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle, rgba(184,122,10,0.12) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
  animation: imFlash 2.5s ease-out 0.3s forwards;
}

@keyframes imFlash {
  0% { opacity: 0; transform: scale(0.3); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: scale(2.5); }
}

/* Homepage responsive overrides */
@media (max-width: 900px) {
  /* Disable Iron Man assembly on mobile — show everything immediately */
  .im-assemble .nav,
  .im-assemble .hero-content > *,
  .im-assemble .hero-showcase-card,
  .im-assemble .hero-showcase-float,
  .im-assemble .hsc-orbit-item { opacity: 1 !important; }
  .im-ready .nav,
  .im-ready .hero-content > *,
  .im-ready .hero-showcase-card { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  .im-ready .hero-showcase::after { display: none; }

  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-showcase { height: 480px; margin-top: 2rem; }
  .hsc-orbit { display: none; }
  .metrics-bar { grid-template-columns: 1fr 1fr; }
  .metric-item { border-bottom: 1px solid var(--border); }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  section.contact .contact-grid { grid-template-columns: 1fr; }
  .analysis-grid { grid-template-columns: 1fr; }
  .pipeline-grid { grid-template-columns: 1fr; }
  .home-blog-section .blog-header { flex-direction: column; gap: 1rem; align-items: start; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-showcase-card { width: 260px; }
  .hero-showcase { height: 440px; }
  .metrics-bar { grid-template-columns: 1fr; }
  .metric-item { border-right: none; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .showcase-images { grid-template-columns: 1fr; }
  .showcase-img-wrap:first-child { grid-row: auto; }
  .showcase-img-wrap img, .showcase-img-wrap:first-child img { height: 200px; }
  .analysis-photos { grid-template-columns: 1fr; }
  .analysis-photo:first-child { grid-column: auto; }
  .analysis-photo:first-child img { height: 180px; }
  .analysis-data-points { grid-template-columns: 1fr; }
  .pipeline-metrics { grid-template-columns: 1fr; }
  .pipe-deals-header, .pipe-deal-row { grid-template-columns: 1fr 1fr; gap: 0.3rem; }
  .pipeline-trust { flex-direction: column; gap: 1rem; }
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS SPECIFIC
   -------------------------------------------------------------------------- */

/* Testimonials Hero */
.test-hero {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 50px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.test-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(184, 122, 10, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 122, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.test-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.test-hero-text { position: relative; z-index: 2; }

.test-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.test-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.test-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.test-hero-stats { display: flex; gap: 2.5rem; }
.test-hero-stat { text-align: left; }

.test-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.test-hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Testimonials hero entrance */
.test-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  animation: heroEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.test-hero .reveal-delay-1 { animation-delay: 0.2s; }
.test-hero .reveal-delay-2 { animation-delay: 0.4s; }
.test-hero .reveal-delay-3 { animation-delay: 0.6s; }

/* Floating review snippets */
.test-hero-scatter {
  position: relative;
  height: 480px;
  z-index: 1;
}

.review-snippet {
  position: absolute;
  width: 210px;
  background: #e8e0d4;
  border-radius: 3px;
  padding: 1rem;
  box-shadow: 2px 4px 20px rgba(26, 22, 18, 0.18), 0 1px 4px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  opacity: 0;
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.review-snippet::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(140, 120, 90, 0.1) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  border-radius: 3px;
}

.review-snippet:hover {
  z-index: 20 !important;
  transform: rotate(0deg) scale(1.08) translateY(-6px) !important;
  box-shadow: 4px 16px 50px rgba(26, 22, 18, 0.28);
}

.review-snippet:nth-child(1) { animation-delay: 0.3s; }
.review-snippet:nth-child(2) { animation-delay: 0.5s; }
.review-snippet:nth-child(3) { animation-delay: 0.7s; }
.review-snippet:nth-child(4) { animation-delay: 0.9s; }
.review-snippet:nth-child(5) { animation-delay: 1.1s; }
.review-snippet:nth-child(6) { animation-delay: 1.3s; }
.review-snippet:nth-child(7) { animation-delay: 1.5s; }

.review-snippet-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-snippet-quote {
  font-family: 'Georgia', serif;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(42, 36, 32, 0.8);
  font-style: italic;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-snippet-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-snippet-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.review-snippet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-snippet-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a1510;
}

/* Testimonial grid (unified) */
.test-grid-section {
  padding: 0 clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.test-grid-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.test-grid-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.test-grid-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Shared card base */
.test-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

/* Text card */
.test-card-text {
  padding: 1.75rem;
}

.test-card-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.test-card-quote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.test-card-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.test-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.test-card-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.test-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Video card */
.test-card-video {
  cursor: pointer;
}

.test-card-video-wrap {
  background-color: #1a1612;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 14px 14px 0 0;
}

.test-card-name-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.test-card-name-link:hover {
  color: var(--gold);
}

.test-card-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(184, 122, 10, 0.4);
}

.test-card-video:hover .test-card-play {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(184, 122, 10, 0.6);
}

.test-card-play svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}

.test-card-video-label {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--gold);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.test-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.test-card-body .test-card-stars {
  margin-bottom: 0.5rem;
}

.test-card-body .test-card-name {
  margin-bottom: 0.5rem;
}

.test-card-body .test-card-quote {
  -webkit-line-clamp: 3;
  margin-bottom: 0;
}

/* Video playing state */
.test-card-video.playing .test-card-video-wrap {
  height: auto;
}

/* VIDEO LIGHTBOX */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.video-lightbox.open {
  display: flex;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.video-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
}

.video-lightbox-player {
  width: 100%;
  border-radius: 12px;
  background: #000;
  max-height: 80vh;
}

.video-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.video-lightbox-close:hover {
  opacity: 1;
}

/* WEBINAR VIDEO SECTION */
.webinar-video-section {
  padding: 0 clamp(1.5rem, 4vw, 3rem) 60px;
  background: var(--bg);
}

.webinar-video-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.webinar-video-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.webinar-video-inner > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.webinar-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26, 22, 18, 0.15);
  background: #0f0d0a;
}

.webinar-video-wrap video {
  width: 100%;
  display: block;
}

/* SINGLE TESTIMONIAL */

/* Text testimonial hero */
.test-single-text-hero {
  padding: 140px clamp(1.5rem, 4vw, 3rem) 60px;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.test-single-text-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(184, 122, 10, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.test-single-text-hero-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.test-single-quote-icon {
  width: 48px;
  height: 48px;
  fill: var(--gold);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.test-single-hero-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.1);
  margin-bottom: 1rem;
}

.test-single-hero-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(26, 22, 18, 0.1);
  margin-bottom: 1rem;
}

.test-single-hero-name {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.test-single-hero-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}

.test-single-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Video testimonial hero */
.test-single-hero {
  padding: 100px clamp(1.5rem, 4vw, 3rem) 0;
  background: #0f0d0a;
}

.test-single-video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.test-single-video {
  width: 100%;
  border-radius: 12px;
  background: #000;
}

.test-single-content {
  padding: 3rem clamp(1.5rem, 4vw, 3rem) 5rem;
}

.test-single-inner {
  max-width: 720px;
  margin: 0 auto;
}

.test-single-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.test-single-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.test-single-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

.test-single-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.test-single-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.test-single-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 3rem;
}

.test-single-body p {
  margin-bottom: 1.2rem;
}

.test-single-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.test-single-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-warm);
  border-radius: 16px;
}

.test-single-cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.test-single-cta .btn-primary,
.test-single-cta .btn-ghost {
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
}

.test-single-cta .btn-primary {
  margin-right: 0.75rem;
}

.test-single-cta .btn-ghost {
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 600px) {
  .test-single-hero { padding-top: 80px; }
  .test-single-name { font-size: 1.2rem; }
  .test-single-cta .btn-primary,
  .test-single-cta .btn-ghost { display: block; margin: 0.5rem auto; width: fit-content; }
}

/* Pagination */
.pag-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pag-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.8rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pag-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,122,10,0.08), transparent);
  transition: left 0.4s;
}

.pag-btn:hover::after { left: 100%; }
.pag-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26, 22, 18, 0.08); }

.pag-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pag-btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.3s; }
.pag-btn:hover .arrow-left { transform: translateX(-3px); }
.pag-btn:hover .arrow-right { transform: translateX(3px); }

.pag-counter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Carousel slide animation */
.pag-container {
  overflow: hidden;
  position: relative;
}

.pag-container > div {
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease;
}

.pag-container.slide-left > div {
  animation: slideLeft 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.pag-container.slide-right > div {
  animation: slideRight 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideLeft {
  0% { transform: translateX(60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  0% { transform: translateX(-60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Dark pagination for video section */
.pag-nav--dark .pag-btn {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.pag-nav--dark .pag-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 6px 20px rgba(184,122,10,0.15); }
.pag-nav--dark .pag-counter { color: rgba(255,255,255,0.4); }

/* Stats banner */
.test-stats {
  padding: 60px clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.test-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.test-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.test-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* CTA section */
.test-cta {
  padding: 80px clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.test-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.test-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.test-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.test-cta-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.test-cta-btn:hover::after { left: 100%; }
.test-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

.test-cta-link {
  display: block;
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.test-cta-link:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   12. CONTACT SPECIFIC
   -------------------------------------------------------------------------- */

/* Contact Hero */
.contact-hero {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 50px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(184, 122, 10, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 122, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.contact-hero-text { position: relative; z-index: 2; }

.contact-hero-label { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.contact-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; }

.contact-hero-stats { display: flex; gap: 2.5rem; }
.contact-hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.contact-hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }

/* Contact hero entrance */
.contact-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  animation: heroEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.contact-hero .reveal-delay-1 { animation-delay: 0.2s; }
.contact-hero .reveal-delay-2 { animation-delay: 0.4s; }
.contact-hero .reveal-delay-3 { animation-delay: 0.6s; }

/* Contact info snippets scattered in hero */
.contact-hero-scatter {
  position: relative;
  height: 480px;
  z-index: 1;
}

.info-snippet {
  position: absolute;
  width: 220px;
  background: #e8e0d4;
  border-radius: 3px;
  padding: 1.1rem;
  box-shadow: 2px 4px 20px rgba(26, 22, 18, 0.18), 0 1px 4px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  opacity: 0;
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.info-snippet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(140, 120, 90, 0.1) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  border-radius: 3px;
}

.info-snippet:hover { z-index: 20 !important; transform: rotate(0deg) scale(1.08) translateY(-6px) !important; box-shadow: 4px 16px 50px rgba(26, 22, 18, 0.28); }

.info-snippet:nth-child(1) { animation-delay: 0.3s; }
.info-snippet:nth-child(2) { animation-delay: 0.5s; }
.info-snippet:nth-child(3) { animation-delay: 0.7s; }
.info-snippet:nth-child(4) { animation-delay: 0.9s; }
.info-snippet:nth-child(5) { animation-delay: 1.1s; }

.info-snippet-icon { color: var(--gold); font-size: 1.2rem; margin-bottom: 0.4rem; }
.info-snippet-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.info-snippet-label { font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 600; color: rgba(42, 36, 32, 0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }

.info-snippet-val { font-family: 'Georgia', serif; font-size: 0.82rem; font-weight: 700; color: #1a1510; line-height: 1.3; }

/* Contact main content (map + form) */
.contact-main {
  padding: 20px clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Map */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 480px;
}

.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* Form wrap */
.contact-form-wrap h2 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

/* Style CF7 forms to match design */
.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition: all 0.3s;
  outline: none;
  margin-bottom: 0.75rem;
}

.contact-form-wrap .wpcf7 input:focus,
.contact-form-wrap .wpcf7 textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 122, 10, 0.1); }

.contact-form-wrap .wpcf7 textarea { resize: vertical; min-height: 130px; }

.contact-form-wrap .wpcf7 input[type="submit"] {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 2.2rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.contact-form-wrap .wpcf7 input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 60px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s;
}

.contact-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 122, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-card-label { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.25rem; }

.contact-card-val { font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 600; }
.contact-card-val a { color: var(--text); text-decoration: none; }
.contact-card-val a:hover { color: var(--gold); }

/* Office photos */
.office-section {
  padding: 0 clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.office-header { text-align: center; margin-bottom: 2.5rem; }
.office-header h2 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; }
.office-header p { color: var(--text-muted); margin-top: 0.5rem; }

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.office-img {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 0.6rem;
  transition: all 0.4s;
  box-shadow: var(--shadow);
}

.office-img:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.office-img-inner {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.office-img-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.office-img:hover .office-img-inner img { transform: scale(1.05); }

.office-img-caption {
  padding: 0.75rem 0.5rem 0.4rem;
  text-align: center;
}

.office-img-caption span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   13. FAQ SPECIFIC
   -------------------------------------------------------------------------- */

/* FAQ Hero */
.faq-hero {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 50px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(184, 122, 10, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 122, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.faq-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.faq-hero-text { position: relative; z-index: 2; }

.faq-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.faq-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.faq-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.faq-hero-stats { display: flex; gap: 2.5rem; }

.faq-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.faq-hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }

/* FAQ hero entrance */
.faq-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  animation: heroEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.faq-hero .reveal-delay-1 { animation-delay: 0.2s; }
.faq-hero .reveal-delay-2 { animation-delay: 0.4s; }
.faq-hero .reveal-delay-3 { animation-delay: 0.6s; }

/* Q&A snippet cards */
.faq-hero-scatter {
  position: relative;
  height: 480px;
  z-index: 1;
}

.qa-snippet {
  position: absolute;
  width: 220px;
  background: #e8e0d4;
  border-radius: 3px;
  padding: 1rem;
  box-shadow: 2px 4px 20px rgba(26, 22, 18, 0.18), 0 1px 4px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  opacity: 0;
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.qa-snippet::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(140, 120, 90, 0.1) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
  border-radius: 3px;
}

.qa-snippet:hover {
  z-index: 20 !important;
  transform: rotate(0deg) scale(1.08) translateY(-6px) !important;
  box-shadow: 4px 16px 50px rgba(26, 22, 18, 0.28);
}

.qa-snippet:nth-child(1) { animation-delay: 0.3s; }
.qa-snippet:nth-child(2) { animation-delay: 0.5s; }
.qa-snippet:nth-child(3) { animation-delay: 0.7s; }
.qa-snippet:nth-child(4) { animation-delay: 0.9s; }
.qa-snippet:nth-child(5) { animation-delay: 1.1s; }

.qa-snippet-q {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.qa-snippet-a {
  font-family: 'Georgia', serif;
  font-size: 0.62rem;
  line-height: 1.5;
  color: rgba(42, 36, 32, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FAQ Section */
.faq-section {
  padding: 20px clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.faq-section-header p { color: var(--text-muted); margin-top: 0.5rem; }

/* FAQ Accordion */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(184, 122, 10, 0.2); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
  transition: background 0.3s;
}

.faq-question:hover { background: rgba(184, 122, 10, 0.02); }

.faq-question-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(184, 122, 10, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: transform 0.3s, stroke 0.3s;
}

.faq-item.open .faq-toggle { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-toggle svg { stroke: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  padding-left: calc(1.5rem + 32px + 1rem);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* FAQ CTA bar */
.faq-cta {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.faq-cta h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.faq-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }

.faq-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.faq-cta .btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.faq-cta .btn:hover::after { left: 100%; }
.faq-cta .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

.faq-cta-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.faq-cta-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.faq-cta-links a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   14. GENERIC PAGE SPECIFIC
   -------------------------------------------------------------------------- */

/* Page Hero */
.page-hero {
  padding: 120px clamp(1.5rem, 4vw, 3rem) 50px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(184, 122, 10, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(184, 122, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero-text { position: relative; z-index: 2; }

.page-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.page-hero-stats {
  display: flex;
  gap: 2.5rem;
}

.page-hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}

.page-hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Page hero entrance */
.page-hero .reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  animation: heroEntrance 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.page-hero .reveal-delay-1 { animation-delay: 0.2s; }
.page-hero .reveal-delay-2 { animation-delay: 0.4s; }
.page-hero .reveal-delay-3 { animation-delay: 0.6s; }

/* Page Hero Scatter — property cards */
.page-hero-scatter {
  position: relative;
  height: 480px;
  z-index: 1;
}

.prop-card {
  position: absolute;
  width: 230px;
  background: #e8e0d4;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 2px 4px 20px rgba(26, 22, 18, 0.18), 0 1px 4px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
  opacity: 0;
  animation: scatterIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.prop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%, rgba(140, 120, 90, 0.1) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}

.prop-card:hover {
  z-index: 20 !important;
  transform: rotate(0deg) scale(1.08) translateY(-6px) !important;
  box-shadow: 4px 16px 50px rgba(26, 22, 18, 0.28);
}

.prop-card:nth-child(1) { animation-delay: 0.3s; }
.prop-card:nth-child(2) { animation-delay: 0.5s; }
.prop-card:nth-child(3) { animation-delay: 0.7s; }
.prop-card:nth-child(4) { animation-delay: 0.9s; }
.prop-card:nth-child(5) { animation-delay: 1.1s; }

.prop-card-inner {
  padding: 0.75rem;
  position: relative;
  z-index: 1;
}

.prop-card-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.prop-card-badge.vacant { background: var(--green); }
.prop-card-badge.equity { background: var(--gold); }

.prop-card-addr {
  font-family: 'Georgia', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1510;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.prop-card-city {
  font-size: 0.62rem;
  color: rgba(42, 36, 32, 0.55);
  margin-bottom: 0.5rem;
}

.prop-card-divider {
  height: 2px;
  background: #2a2420;
  margin-bottom: 0.4rem;
}

.prop-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(60, 50, 35, 0.1);
}

.prop-card-row:last-child { border-bottom: none; }
.prop-card-label { color: rgba(42, 36, 32, 0.5); }
.prop-card-val { font-weight: 700; color: #1a1510; }
.prop-card-val.gold { color: var(--gold); }

/* Page Content */
.page-content {
  padding: 60px clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.page-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.page-content blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.page-content strong { color: var(--text); }

/* Page Features */
.page-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.page-feature {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.4s;
}

.page-feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.page-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(184, 122, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.page-feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.page-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.page-feature p {
  font-size: 0.82rem;
  margin-bottom: 0;
  line-height: 1.55;
}

/* CTA Bar */
.page-cta-bar {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.page-cta-bar h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.page-cta-bar p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-cta-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.page-cta-bar .btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}

.page-cta-bar .btn:hover::after { left: 100%; }
.page-cta-bar .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(184, 122, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-label { font-size: 0.72rem; color: var(--text-muted); }
.contact-val { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600; }
.contact-val a { color: var(--text); text-decoration: none; }
.contact-val a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   15. 404 SPECIFIC
   -------------------------------------------------------------------------- */
.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(1.5rem, 4vw, 3rem) 80px;
  position: relative;
  overflow: hidden;
}

.floating-houses {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-house {
  position: absolute;
  opacity: 0;
  animation: floatHouse 20s ease-in-out infinite;
}

.floating-house svg {
  fill: none;
  stroke: rgba(184, 122, 10, 0.08);
  stroke-width: 1.5;
}

.floating-house:nth-child(1) { left: 8%; top: 15%; animation-delay: 0s; animation-duration: 22s; }
.floating-house:nth-child(2) { right: 10%; top: 20%; animation-delay: -4s; animation-duration: 18s; }
.floating-house:nth-child(3) { left: 20%; bottom: 18%; animation-delay: -8s; animation-duration: 25s; }
.floating-house:nth-child(4) { right: 18%; bottom: 22%; animation-delay: -12s; animation-duration: 20s; }
.floating-house:nth-child(5) { left: 5%; top: 55%; animation-delay: -6s; animation-duration: 23s; }
.floating-house:nth-child(6) { right: 5%; top: 50%; animation-delay: -15s; animation-duration: 19s; }
.floating-house:nth-child(7) { left: 40%; top: 8%; animation-delay: -10s; animation-duration: 24s; }
.floating-house:nth-child(8) { right: 35%; bottom: 10%; animation-delay: -3s; animation-duration: 21s; }

@keyframes floatHouse {
  0% { opacity: 0; transform: translateY(30px) rotate(-5deg) scale(0.8); }
  10% { opacity: 1; }
  50% { transform: translateY(-20px) rotate(3deg) scale(1); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(30px) rotate(-5deg) scale(0.8); }
}

.error-page::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,122,10,0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.error-inner { position: relative; z-index: 2; max-width: 600px; }

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.error-digit {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, rgba(184,122,10,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: digitDrop 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  position: relative;
}

.error-digit:nth-child(1) { animation-delay: 0.2s; }
.error-digit:nth-child(2) { animation-delay: 0.5s; }
.error-digit:nth-child(3) { animation-delay: 0.8s; }

@keyframes digitDrop {
  0% { opacity: 0; transform: translateY(-80px) rotateX(45deg) scale(0.5); filter: blur(10px); }
  60% { transform: translateY(8px) rotateX(0) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); filter: blur(0); }
}

.error-digit:nth-child(2) {
  animation: digitDrop 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards, digitBounce 3s ease-in-out 2s infinite;
}

@keyframes digitBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.error-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg) scale(0);
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(184, 122, 10, 0.45);
  border: 4px solid rgba(184, 122, 10, 0.45);
  border-radius: 8px;
  padding: 0.3rem 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: stampIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
  pointer-events: none;
}

@keyframes stampIn {
  0% { transform: translate(-50%, -50%) rotate(-15deg) scale(3); opacity: 0; }
  100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 1; }
}

.error-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.1s forwards;
}

.error-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.3s forwards;
}

.error-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
}

.error-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.error-btn-primary {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.error-btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent); transition: left 0.5s; }
.error-btn-primary:hover::after { left: 100%; }
.error-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

.error-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.error-btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.error-links {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 1.7s forwards;
}

.error-links p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }

.error-links-list { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; list-style: none; }

.error-links-list a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.error-links-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}

.error-links-list a:hover::after { width: 100%; }
.error-links-list a:hover { color: var(--text); }

/* 404 body: make it flex column for footer sticking */
body.error404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE (shared + page-specific)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Blog */
  .blog-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .blog-hero-text { order: 1; }
  .blog-hero-stats { justify-content: center; }
  .blog-hero-scatter { display: none; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 240px; }
  .blog-featured-content { padding: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }

  /* Article */
  .article-hero-section { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; }
  .article-hero-visual { margin-top: 1.5rem; }
  .article-hero-img-card { transform: rotate(0deg); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-scatter { height: auto; display: flex; flex-direction: column; gap: 1rem; }
  .related-scatter .scatter-card { position: static !important; transform: none !important; width: 100%; opacity: 1; }

  /* Page */
  .page-hero { padding: 80px 1.5rem 1rem; min-height: auto; }
  .page-hero::before { display: none; }
  .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .page-hero-text { order: 1; }
  .page-hero-label { margin-bottom: 0.3rem; }
  .page-hero h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .page-hero-stats { justify-content: center; display: none; }
  .page-hero-scatter { display: none; }
  .page-content { padding-top: 1rem; }
  .page-content > .reveal { opacity: 1; transform: none; filter: none; }
  .page-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-hero-text { order: 1; }
  .contact-hero-stats { justify-content: center; }
  .contact-hero-scatter { display: none; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: 1fr; }

@media (max-width: 500px) {
  .contact-cards { grid-template-columns: 1fr; }
}

  /* FAQ */
  .faq-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .faq-hero-text { order: 1; }
  .faq-hero-stats { justify-content: center; }
  .faq-hero-scatter { display: none; }
  .faq-answer-inner { padding-left: 1.5rem; }
  .faq-cta-links { flex-direction: column; gap: 0.5rem; }

  /* Testimonials */
  .test-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .test-hero-text { order: 1; }
  .test-hero-stats { justify-content: center; }
  .test-hero-scatter { display: none; }
  .test-grid { grid-template-columns: 1fr; }
  .test-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }

  /* 404 */
  .error-buttons { flex-direction: column; align-items: center; }
  .error-links-list { flex-direction: column; gap: 0.5rem; }
  .floating-house:nth-child(n+5) { display: none; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-social { justify-content: center; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .page-features { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
}

/* COACH CARDS (interviews page) */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0 3rem;
}

.coach-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.4s;
}

.coach-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.coach-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 1.25rem;
}

.coach-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coach-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.coach-card span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 768px) {
  .coach-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* SEARCH PAGE */
.search-hero {
  padding: 130px clamp(1.5rem, 4vw, 3rem) 50px;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.search-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(184, 122, 10, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.search-hero-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.search-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.search-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: var(--gold);
}

.search-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.search-results {
  padding: 40px clamp(1.5rem, 4vw, 3rem) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-no-results {
  text-align: center;
  padding: 4rem 1rem;
}

.search-no-results h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.search-no-results p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .search-form { flex-direction: column; }
}

/* reCAPTCHA badge — move to bottom-left */
.grecaptcha-badge {
  left: 16px !important;
  right: auto !important;
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: width 0.3s !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}

/* WEBINAR PAGE — BENEFITS */
.webinar-benefits {
  padding: 80px clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.webinar-benefits-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.webinar-benefits-sub {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.webinar-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.webinar-benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s;
}

.webinar-benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.webinar-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 122, 10, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.webinar-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.webinar-benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.webinar-benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* WEBINAR PAGE — STEPS */
.webinar-steps {
  padding: 80px clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  text-align: center;
}

.webinar-steps-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.webinar-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.webinar-step {
  position: relative;
  padding-left: 4rem;
}

.webinar-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webinar-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.webinar-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* WEBINAR PAGE — STATS BAR */
.webinar-stats {
  padding: 50px clamp(1.5rem, 4vw, 3rem);
  background: var(--text);
}

.webinar-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.webinar-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.webinar-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* WEBINAR PAGE — FAQ */
.webinar-faq {
  padding: 80px clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.webinar-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.webinar-faq-list {
  margin-top: 2.5rem;
  text-align: left;
}

.webinar-faq .faq-question {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.webinar-faq .faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.webinar-faq .faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}

.webinar-faq .faq-question.open .faq-q::after {
  content: '−';
}

.webinar-faq .faq-q:hover {
  color: var(--gold);
}

.webinar-faq .faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.webinar-faq .faq-question.open .faq-a {
  display: block;
}

.webinar-faq .faq-a p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* WEBINAR PAGE — CTA */
.webinar-cta {
  padding: 80px clamp(1.5rem, 4vw, 3rem);
  background: var(--bg-warm);
  text-align: center;
}

.webinar-cta-inner {
  max-width: 650px;
  margin: 0 auto;
}

.webinar-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.webinar-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.webinar-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.webinar-cta-actions .btn-primary,
.webinar-cta-actions .btn-ghost {
  text-decoration: none;
  display: inline-block;
}

/* WEBINAR RESPONSIVE */
@media (max-width: 900px) {
  .webinar-benefits-grid { grid-template-columns: 1fr; }
  .webinar-steps-grid { grid-template-columns: 1fr; }
  .webinar-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .webinar-cta-actions { flex-direction: column; }
}

@media (max-width: 500px) {
  .webinar-stats-inner { grid-template-columns: 1fr; }
}

/* CALENDAR PAGE */
.calendar-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-hero-image img {
  max-width: 100%;
  width: 480px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.calendar-embed-section {
  padding: 3rem 1.5rem 5rem;
  background: var(--bg-alt, #fafafa);
}
.calendar-embed-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.calendar-embed-inner .calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: #fff;
}
@media (max-width: 900px) {
  .calendar-hero-image img { width: 100%; max-width: 380px; }
}
