/* ============================================================
   BUILD FOR SUCCESS – style.css (v2 – Clean Authority)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@400;500;600&display=swap");

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

:root {
  --brand-purple: #6B21A8;
  --brand-gold: #D4A017;
  --brand-dark: #1A1A2E;
  --surface: #F7F6F2;
  --surface-2: #EEECEA;
  --surface-card: #FFFFFF;
  --text-primary: #1A1A2E;
  --text-secondary: #5A5A72;
  --text-muted: #9898A8;
  --border: #E2E0DC;
  --border-strong: #C8C5BE;
  --accent: #D4A017;
  --accent-hover: #B8880D;
  --success: #2D6A4F;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--surface-2);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}

/* ── HIDE REMOVED ELEMENTS ── */
.cursor,
.cursor-ring {
  display: none !important;
}

.ticker-wrap {
  display: none !important;
}

.hero-bg-word,
.why-bg-word,
.bg-word,
.timeline-bg-word {
  display: none;
}

.hero-grid,
.page-hero-bg,
.page-hero-grid,
.agent-split-bg {
  display: none;
}

/* Hero dark gradient overlay — sits above the photo, below text */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(26, 26, 46, 0.85) 0%,
      rgba(26, 26, 46, 0.58) 50%,
      rgba(26, 26, 46, 0.38) 100%
    ),
    linear-gradient(
      to top,
      rgba(26, 26, 46, 0.65) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-bottom-color: transparent;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 8px 16px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.nav-links a.active {
  color: var(--brand-dark);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--brand-gold);
}

.nav-cta {
  background: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--accent-hover);
}

/* ── INFO STRIPE (replaces ticker) ── */
.strip {
  background: var(--brand-gold);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.strip p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-dark);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.strip span {
  color: var(--brand-dark);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  padding: 13px 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
  padding: 13px 28px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--brand-dark);
  background: var(--surface-2);
}

/* Ghost button inverted on dark hero */
#hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

#hero .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

/* ── SECTION UTILS ── */
.section-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brand-dark);
  margin-bottom: 40px;
}

.section-title .neon {
  color: var(--brand-purple);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 80px 80px;
  position: relative;
  background: var(--surface);
  overflow: visible;
}

.page-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--brand-gold);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.page-title .neon {
  color: var(--brand-purple);
}

.page-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 0;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── FORM ELEMENTS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  height: 130px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: #ffffff;
  color: var(--text-primary);
}

/* ── CTA BAND ── */
.cta-band {
  margin: 0 80px 100px;
  padding: 60px 64px;
  background: var(--brand-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  color: #ffffff;
  max-width: 500px;
}

.cta-band h3 .neon {
  color: var(--brand-gold);
}

/* ============================================================
   HOME PAGE
   ============================================================ */
#hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 60fr 40fr;
  align-items: center;
  padding: 140px 80px 80px;
  background: var(--brand-dark);
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Full-bleed background slideshow */
.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-left: 2px solid var(--brand-gold);
}

.hero-h1 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-h1 .neon {
  color: var(--brand-gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 440px;
}

.hero-sub strong {
  color: #ffffff;
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── HERO FEATURE CARDS ── */
.cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
  margin: auto;
}

.float-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  animation: none;
  transform: none;
  transition: transform 0.25s, box-shadow 0.25s;
  backdrop-filter: blur(8px);
}

.float-card:nth-child(1) {
  border-left: 3px solid var(--brand-gold);
}

.float-card:nth-child(2) {
  margin-left: 24px;
}

.float-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.fc-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--brand-purple);
}

.fc-icon svg {
  color: var(--brand-purple);
  display: block;
}

.fc-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.fc-sub {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── STATS BAR ── */
.counters-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brand-dark);
}

.counter-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--brand-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

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

.counter-num {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3rem;
  color: #ffffff;
  display: block;
}

.counter-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.04em;
}

/* ── PREVIEW SECTIONS ── */
.preview-section {
  padding: 96px 80px;
  position: relative;
}

.preview-section:nth-child(even) {
  background: var(--surface-2);
}

.preview-section:nth-child(odd) {
  background: var(--surface);
}

.preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.preview-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.preview-link:hover {
  gap: 14px;
}

.preview-link::after {
  content: "→";
  font-size: 1rem;
}

/* ── STEPS PREVIEW ── */
.steps-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-prev {
  padding: 32px 28px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-prev:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-prev-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--brand-gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.step-prev-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.step-prev-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── PRODUCT SCROLL (home preview) ── */
.prod-scroll-wrap {
  overflow: hidden;
  position: relative;
}

.prod-scroll-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--surface));
  pointer-events: none;
  z-index: 2;
}

.prod-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.prod-scroll::-webkit-scrollbar {
  display: none;
}

.prod-card-prev {
  flex: 0 0 240px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.prod-card-prev:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.prod-card-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

.prod-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: transform 0.4s, opacity 0.3s;
}

.prod-card-prev:hover .prod-card-bg img {
  transform: scale(1.05);
  opacity: 1;
}

.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 46, 0.88) 0%,
    transparent 55%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.prod-cat {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.prod-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1.1;
}

/* ── AGENT PREVIEW ── */
.agent-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agent-prev-left h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.agent-prev-left h2 .neon {
  color: var(--brand-purple);
}

.agent-prev-left p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 380px;
}

.benefit-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, transform 0.2s;
}

.bm-item:hover {
  border-color: var(--border-strong);
  transform: translateX(3px);
}

.bm-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(107, 33, 168, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
}

.bm-icon svg {
  color: var(--brand-purple);
  display: block;
}

.bm-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

/* ── WHY PREVIEW ── */
.why-preview {
  text-align: center;
  padding: 96px 80px;
  background: var(--surface-2);
  position: relative;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.why-line {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--brand-dark);
  margin: 10px 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-line .hl {
  color: var(--brand-purple);
}

.why-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-gold);
  margin: 28px auto;
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.timeline-section {
  padding: 80px 80px 120px;
  background: var(--surface-2);
  position: relative;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-strong);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  min-height: 160px;
  gap: 0;
}

.tl-content {
  padding: 28px 36px;
}

.tl-item:nth-child(odd) .tl-content {
  text-align: right;
  order: 1;
}

.tl-item:nth-child(odd) .tl-center {
  order: 2;
}

.tl-item:nth-child(odd) .tl-empty {
  order: 3;
}

.tl-item:nth-child(even) .tl-empty {
  order: 1;
}

.tl-item:nth-child(even) .tl-center {
  order: 2;
}

.tl-item:nth-child(even) .tl-content {
  order: 3;
  text-align: left;
}

.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.tl-dot {
  width: 12px;
  height: 12px;
  background: var(--brand-gold);
  border: 2px solid var(--surface-2);
  outline: 2px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.tl-item:hover .tl-dot {
  transform: scale(1.5);
  background: var(--brand-purple);
  outline-color: var(--brand-purple);
}

.tl-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-gold);
  opacity: 0.35;
  position: absolute;
  top: -28px;
}

.tl-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.tl-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.tl-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-top: 10px;
}

/* ── FAQ ── */
.faq-section {
  padding: 80px 80px 100px;
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-dark);
  transition: color 0.2s;
  gap: 20px;
}

.faq-q:hover {
  color: var(--brand-purple);
}

.faq-item.open .faq-q {
  color: var(--brand-purple);
}

.faq-icon {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-gold);
  min-width: 20px;
  text-align: center;
  transition: transform 0.3s;
  line-height: 1;
  border: none;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  padding: 0 80px 48px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--surface);
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 9px 20px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover {
  border-color: var(--border-strong);
  color: var(--brand-dark);
}

.filter-btn.active {
  background: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
}

.cat-section {
  padding: 0 80px 80px;
  background: var(--surface);
}

.cat-section:nth-of-type(even) {
  background: var(--surface-2);
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cat-num {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-gold);
  opacity: 0.35;
}

.cat-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.cat-name .neon {
  color: var(--brand-purple);
}

.cat-desc-short {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.prod-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--surface-card);
  cursor: default;
}

.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.prod-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

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

.prod-card-body {
  padding: 18px;
}

.prod-card-cat {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  color: var(--brand-gold);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.prod-card-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.prod-card-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.prod-card-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(45, 106, 79, 0.1);
  border-radius: 3px;
  padding: 3px 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
}

.prod-card-soon {
  border: 1.5px dashed var(--border-strong);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}

.prod-card-soon > div {
  font-size: 1.5rem;
  color: var(--border-strong) !important;
  font-family: "DM Sans", sans-serif;
}

.prod-card-soon span {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── COMMISSION BAND ── */
.commission-band {
  margin: 0 80px 80px;
  padding: 56px 64px;
  background: var(--brand-dark);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cb-left h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
}

.cb-left h2 .neon {
  color: var(--brand-gold);
}

.cb-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.cb-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cb-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.cb-icon {
  min-width: 36px;
  text-align: center;
  color: var(--brand-gold);
}

.cb-icon svg {
  color: var(--brand-gold);
  display: block;
}

.cb-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
}

.cb-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* ============================================================
   BECOME AN AGENT PAGE
   ============================================================ */
.agent-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px;
  align-items: start;
  background: var(--surface);
  position: relative;
}

.benefits-full {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bf-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, transform 0.25s;
  opacity: 0;
  transform: translateY(16px);
}

.bf-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.bf-item:hover {
  border-color: var(--border-strong);
  transform: translateX(3px) !important;
}

.bf-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(107, 33, 168, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
}

.bf-icon svg {
  color: var(--brand-purple);
  display: block;
}

.bf-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  margin-bottom: 5px;
}

.bf-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.reg-form-wrap {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  position: sticky;
  top: 90px;
}

.reg-form-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.reg-form-title .neon {
  color: var(--brand-purple);
}

.reg-form-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.reg-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.form-check input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  accent-color: var(--brand-purple);
}

.form-check-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-check-label strong {
  color: var(--brand-dark);
}

.submit-btn {
  background: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  width: 100%;
  margin-top: 4px;
}

.submit-btn:hover {
  background: var(--accent-hover);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px;
  background: var(--surface-2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testi-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.testi-card:nth-child(2) {
  transform: translateY(-16px);
}

.testi-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testi-card:nth-child(2):hover {
  transform: translateY(-20px);
}

.testi-quote {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand-gold);
  opacity: 0.5;
  margin-bottom: 12px;
}

.testi-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
}

.testi-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.testi-role {
  font-size: 0.72rem;
  color: var(--brand-gold);
}

/* ── WHY BAND ── */
.why-band {
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.why-left h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.why-left h2 .neon {
  color: var(--brand-purple);
}

.why-left p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat {
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-stat-num {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--brand-dark);
  display: block;
}

.why-stat-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding: 80px;
  align-items: start;
  background: var(--surface);
}

.contact-info-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

.contact-info-title .neon {
  color: var(--brand-purple);
}

.contact-info-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 400px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.contact-card:hover {
  border-color: var(--border-strong);
}

.cc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(107, 33, 168, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
}

.cc-icon svg {
  color: var(--brand-purple);
  display: block;
}

.cc-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cc-value {
  font-size: 0.9rem;
  color: var(--brand-dark);
  line-height: 1.5;
}

.cc-sub {
  font-size: 0.77rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.hours-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 14px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hours-time {
  font-size: 0.82rem;
  color: var(--brand-dark);
  font-weight: 500;
}

.hours-closed {
  color: rgba(26, 26, 46, 0.3);
}

.hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  margin-right: 6px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  color: var(--text-secondary);
  cursor: pointer;
}

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

.contact-form-wrap {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px;
  position: sticky;
  top: 90px;
}

.cf-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.cf-title .neon {
  color: var(--brand-purple);
}

.cf-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.send-btn {
  background: var(--brand-gold);
  color: var(--brand-dark);
  border: none;
  padding: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  width: 100%;
}

.send-btn:hover {
  background: var(--accent-hover);
}

.map-section {
  padding: 0 80px 80px;
  background: var(--surface);
}

.map-wrap {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.map-label {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.map-pin {
  font-size: 2rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.map-grid-overlay {
  display: none;
}

.agent-cta-strip {
  margin: 0 80px 80px;
  padding: 50px 60px;
  background: var(--brand-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.agent-cta-strip h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: #ffffff;
}

.agent-cta-strip h3 .neon {
  color: var(--brand-gold);
}

.agent-cta-strip p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--brand-dark);
  margin-bottom: 0;
  font-family: "DM Sans", sans-serif;
}

.footer-top {
  padding: 56px 64px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo img {
  height: 72px;
  display: block;
}

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 220px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social-btn:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.footer-social-btn svg,
.mobile-menu-socials a svg {
  display: block;
  pointer-events: none;
}

.footer-col-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 18px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  margin-top: 1px;
  min-width: 18px;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
}

.footer-contact-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

.footer-hours-day {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-hours-time {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.footer-hours-closed {
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  padding: 20px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

.footer-copy span {
  color: rgba(255, 255, 255, 0.65);
}

.spybitech-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.55;
  transition: opacity 0.25s;
  text-decoration: none;
}

.spybitech-badge:hover {
  opacity: 0.85;
}

.spybitech-badge span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.spybitech-badge img {
  height: 18px;
  width: auto;
  filter: grayscale(0.3) brightness(2);
}

.spybitech-badge strong {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   HAMBURGER & MOBILE MENU
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  gap: 5px;
  transition: border-color 0.2s;
  z-index: 301;
  flex-shrink: 0;
}

.hamburger:hover {
  border-color: var(--border-strong);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  width: min(320px, 100%);
  height: calc(100vh - 72px);
  background: #ffffff;
  z-index: 299;
  flex-direction: column;
  padding: 32px 28px 40px;
  border-left: 1px solid var(--border);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

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

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.mobile-menu-links a {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-dark);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--brand-purple);
}

.mobile-menu-cta {
  background: var(--brand-gold);
  color: var(--brand-dark);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 28px;
  display: block;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: var(--accent-hover);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.mobile-menu-contact-item span:first-child {
  color: var(--brand-gold);
  display: flex;
  align-items: center;
}

.mobile-menu-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.mobile-menu-socials a:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

/* ============================================================
   RESPONSIVE – 1100px
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ============================================================
   RESPONSIVE – 900px
   ============================================================ */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
    height: 72px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  #hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 56px;
    gap: 0;
    min-height: auto;
  }
  .hero-slide img {
    object-position: 60% 30%;
  }
  .hero-bg {
    background:
      linear-gradient(
        to bottom,
        rgba(26, 26, 46, 0.78) 0%,
        rgba(26, 26, 46, 0.68) 100%
      );
  }
  .cards-stack {
    display: none;
  }
  .hero-h1 {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .strip p {
    font-size: 0.88rem;
    padding: 0 16px;
  }

  .counters-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  .counter-num {
    font-size: 2.4rem;
  }
  .counter-label {
    font-size: 0.68rem;
  }

  .preview-section {
    padding: 56px 20px;
  }
  .preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
  .steps-preview {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .agent-preview {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-preview {
    padding: 64px 20px;
  }

  .page-hero {
    padding: 116px 20px 48px;
  }
  .page-title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .timeline-section {
    padding: 36px 20px 56px;
  }
  .timeline::before {
    left: 24px;
    transform: none;
  }
  .tl-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-left: 52px;
    position: relative;
    margin-bottom: 32px;
  }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content {
    text-align: left;
    order: unset;
    padding: 12px 0 0;
  }
  .tl-item:nth-child(odd) .tl-center,
  .tl-item:nth-child(even) .tl-center {
    order: unset;
  }
  .tl-empty {
    display: none;
  }
  .tl-center {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    align-items: center;
  }
  .tl-dot {
    margin-top: 8px;
  }
  .tl-num {
    position: static;
    font-size: 2rem;
    opacity: 0.28;
  }

  .faq-section {
    padding: 36px 20px 52px;
    max-width: 100%;
  }

  .cta-band {
    margin: 0 20px 56px;
    padding: 28px 20px;
    flex-direction: column;
  }

  .filter-bar {
    padding: 0 20px 24px;
    gap: 8px;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: 0.7rem;
  }
  .cat-section {
    padding: 0 20px 52px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .prod-card-img {
    height: 140px;
  }
  .prod-card-body {
    padding: 12px;
  }
  .prod-card-desc {
    display: none;
  }
  .commission-band {
    margin: 0 20px 52px;
    padding: 28px 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agent-split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px;
  }
  .reg-form-wrap {
    position: static;
    padding: 24px 20px;
  }

  .testimonials-section {
    padding: 48px 20px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .testi-card:nth-child(2) {
    transform: none;
  }
  .testi-card:nth-child(2):hover {
    transform: translateY(-3px);
  }

  .why-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }

  .contact-body {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 20px;
  }
  .contact-form-wrap {
    position: static;
    padding: 24px 20px;
  }
  .map-section {
    padding: 0 20px 52px;
  }
  .map-wrap {
    height: 200px;
  }
  .agent-cta-strip {
    margin: 0 20px 52px;
    padding: 28px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 20px 0;
  }
  .footer-brand {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-col-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-col-section:last-child {
    border-bottom: none;
  }
  .footer-col-hours,
  .footer-col-products {
    display: none;
  }
  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-copy {
    font-size: 0.68rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 28px;
  }
}

/* ============================================================
   RESPONSIVE – 600px
   ============================================================ */
@media (max-width: 600px) {
  .counters-bar {
    grid-template-columns: 1fr;
  }
  .counter-item {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .counter-item:last-child {
    border-bottom: none;
  }
  .counter-num {
    font-size: 2.8rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .prod-card-img {
    height: 160px;
  }
  .prod-card-desc {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  #hero {
    padding: 100px 16px 48px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
}

/* ============================================================
   RESPONSIVE – 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2.4rem;
  }
  .mobile-menu-links a {
    font-size: 1.2rem;
    padding: 14px 0;
  }
  .page-title {
    font-size: 2.4rem;
  }
  .filter-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
  }
  .cat-name {
    font-size: 1.6rem;
  }
  .why-stats {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 24px 16px;
  }
}

/* ============================================================
   STOCK IMAGES
   ============================================================ */

/* ── PAGE HERO BACKGROUND TEXTURE ── */
.page-hero-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1600&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
}

/* ── TIMELINE IMAGE BREAK ── */
.timeline-img-break {
  width: 100%;
  margin: 48px 0;
  position: relative;
  z-index: 1;
}

.timeline-break-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.timeline-break-caption {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 900px) {
  .timeline-break-img {
    height: 200px;
  }
}

/* ── PRODUCTS CATEGORY BANNER ── */
.cat-hero-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--border);
}

.cat-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cat-hero-img:hover img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .cat-hero-img {
    height: 140px;
    margin-bottom: 20px;
  }
}

/* ── BECOME AGENT — LIFESTYLE IMAGE ── */
.agent-lifestyle-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  position: relative;
  border: 1px solid var(--border);
}

.agent-lifestyle-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.agent-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent);
  padding: 20px 18px 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ── JOURNEY STRIP ── */
.journey-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 80px 0;
  padding: 32px 40px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.journey-step {
  flex: 1;
  text-align: center;
}

.journey-step img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.journey-step span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.journey-arrow {
  font-size: 1.4rem;
  color: var(--brand-gold);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .journey-strip {
    margin: 0;
    padding: 28px 20px;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .journey-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .journey-arrow {
    text-align: center;
    transform: rotate(90deg);
  }
}

/* ── TESTIMONIAL AVATAR PHOTO ── */
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: block;
}
