/* =========================================================
   Buy More Get More Ltd. — Homepage Styles
   Theme: Dark canvas with golden yellow accent
   ========================================================= */

:root {
  --bg: #0B0E14;
  --bg-deep: #07090F;
  --surface: #121722;
  --surface-2: #161C29;
  --surface-3: #1B2332;
  --border: #253044;
  --border-soft: #1E2838;
  --text: #E8EAED;
  --text-muted: #9AA3B2;
  --text-dim: #6B7688;
  --gold: #FACC15;
  --gold-bright: #FDE047;
  --gold-deep: #A16207;
  --gold-dark: #854D0E;
  --on-gold: #0B0E14;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION — DIVIDER BAR ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand .brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: var(--gold);
  color: var(--on-gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links li + li {
  border-left: 1px solid var(--border);
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: var(--gold);
  color: var(--on-gold);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.nav-cta:hover {
  background-color: var(--gold-bright);
  color: var(--on-gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
}

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

/* ============ HERO — STAIRCASE PANELS ============ */
.hero-section {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 0%, #1A2231 0%, rgba(18, 23, 34, 0) 42%),
    radial-gradient(circle at 88% 8%, #2A2510 0%, rgba(27, 35, 50, 0) 45%),
    var(--bg);
  overflow-x: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background-color: var(--gold);
}

.staircase {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.step {
  flex: 1 1 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--surface);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 204, 21, 0.06) 0%, rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.step-one { height: 190px; }
.step-two { height: 250px; }
.step-three { height: 310px; }

.step-num {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}

.step-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

.step-four {
  min-height: 380px;
  background-color: var(--surface-2);
  border-color: var(--gold);
  padding: 34px 30px;
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-title .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--on-gold);
}

.btn-gold:hover {
  background-color: var(--gold-bright);
  color: var(--on-gold);
  transform: translateY(-2px);
}

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

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

/* ============ SECTION BASICS ============ */
section {
  padding: 84px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background-color: var(--gold);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 700px;
  font-size: 1.02rem;
}

/* ============ PROBLEM / STATEMENT ROW ============ */
.problem-section {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.statement-big {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.statement-big .accent {
  color: var(--gold);
}

.statement-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.check-list {
  list-style: none;
  margin-top: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  color: var(--text);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--on-gold);
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============ CAPABILITIES — NUMBERED LIST ============ */
.capabilities-section {
  background-color: var(--bg);
}

.capability-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.capability-row:last-child {
  border-bottom: 1px solid var(--border);
}

.capability-index {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.capability-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.capability-body p {
  color: var(--text-muted);
  max-width: 760px;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.capability-tags span {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ============ DIFFERENCE — COMPARISON TABLE ============ */
.difference-section {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.compare-table {
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

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

.compare-row.header {
  background-color: var(--surface-3);
}

.compare-row > div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.compare-row:last-child > div {
  border-bottom: none;
}

.compare-row > div:first-child {
  font-weight: 700;
  color: var(--text);
  border-right: 1px solid var(--border-soft);
}

.compare-row > div:nth-child(2) {
  color: var(--text-muted);
  border-right: 1px solid var(--border-soft);
}

.compare-row.header > div {
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.compare-row.header > div:nth-child(3) {
  color: var(--gold);
}

.compare-row > div:nth-child(3) {
  color: var(--text);
  font-weight: 600;
}

/* ============ PROCESS ============ */
.process-section {
  background-color: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.process-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
  position: relative;
}

.process-card .step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--on-gold);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
}

.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ============ OUTCOMES / METRICS ============ */
.outcomes-section {
  background-color: var(--gold);
  color: var(--on-gold);
}

.outcomes-section .section-label,
.outcomes-section .section-title,
.outcomes-section .section-lead {
  color: var(--on-gold);
}

.outcomes-section .section-label::before {
  background-color: var(--on-gold);
}

.outcomes-section .section-lead {
  color: var(--gold-dark);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.metric {
  border-left: 3px solid var(--on-gold);
  padding-left: 18px;
}

.metric-value {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-label {
  margin-top: 8px;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ============ INDUSTRIES ============ */
.industries-section {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.industry-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.industry-item .ic {
  font-size: 1.3rem;
}

/* ============ TESTIMONIAL ============ */
.quote-section {
  background-color: var(--bg);
}

.quote-block {
  max-width: 780px;
  margin: 36px auto 0;
  text-align: center;
  background-color: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
}

.quote-mark {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.quote-text {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.quote-author {
  margin-top: 22px;
  color: var(--gold);
  font-weight: 700;
}

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

/* ============ CONTACT / CTA ============ */
.contact-section {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-soft);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-item .ci-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.05rem;
}

.contact-item .ci-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.contact-item a,
.contact-item .ci-value {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
}

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

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background-color: var(--bg-deep);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  background-color: var(--surface-3);
  border-left: 3px solid var(--gold);
  color: var(--text);
  font-weight: 600;
}

/* ============ FOOTER ============ */
.site-footer {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-soft);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

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

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

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.84rem;
}

/* ============ SCROLL REVEAL ============ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .statement-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-nav .nav-inner {
    height: 62px;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 420px;
  }

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

  .nav-links li + li {
    border-left: none;
    border-top: 1px solid var(--border-soft);
  }

  .nav-links a {
    padding: 15px 24px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .staircase {
    flex-direction: column;
    align-items: stretch;
  }

  .step-one,
  .step-two,
  .step-three,
  .step-four {
    height: auto;
    min-height: 120px;
  }

  .step-four {
    min-height: 320px;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .compare-row > div:first-child,
  .compare-row > div:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .compare-row.header {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  section {
    padding: 60px 0;
  }

  .hero-section {
    padding: 48px 0 64px;
  }
}
