/* ============================================
   SMARDEIN — Brand Design Page Styles
   brand.css
   ============================================ */
/* Brand colours */
:root {
  --charcoal-black: #121212;
  --charcoal: #2B2B2B;
  --slate-grey: #4A4A4A;
  --gold: #C9A227;
  --gold-hover: #D4AF37;
  --gold-muted: #D9C08A;
  --ivory: #F7F5F0;
  --grey-soft: #D9D9D9;
  --gold-light: #F4D160;
  --bronze: #B8860B;
  --white: #FFFFFF;
}



body.page-brand {
  background: var(--charcoal-black);
  color: var(--ivory);
}

/* ── HERO ─────────────────────────────────── */
.bd-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  background: var(--charcoal-black);
  text-align: center;
}

.bd-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.bd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 36px;
}

@keyframes bd-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.bd-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}

.bd-hero h1 em {
  font-style: italic;
  color: var(--bronze);
}

.bd-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--grey-soft);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.bd-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}

.bd-hero-note {
  font-size: 0.8rem;
  color: rgba(217, 192, 138, 0.55);
  letter-spacing: 0.02em;
}

/* ── SHARED SECTION ─────────────────────────── */
.bd-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.bd-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 100px;
}

.bd-label--dark {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.bd-label--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ivory);
  border: 1px solid rgba(217, 192, 138, 0.3);
}

/* ── PROBLEM ─────────────────────────────── */
.bd-problem {
  background: var(--light-bg-1);
}

.bd-problem .bd-label--dark {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--grey-soft);
}

.bd-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.bd-section-header h2 {
  color: var(--charcoal-black);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-top: 0;
}

.bd-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.bd-problem-text p {
  color: var(--charcoal);
  margin-bottom: 16px;
  font-size: 1.01rem;
  line-height: 1.8;
}

.bd-problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bd-problem-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bd-problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.bd-problem-card h4 {
  color: var(--charcoal-black);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.bd-problem-card p {
  color: var(--charcoal);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ── VALUE PROPOSITION ────────────────────── */
.bd-value {
  background: var(--charcoal-black);
}

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

.bd-value-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.bd-value-lead {
  font-size: 1.08rem;
  color: var(--grey-soft);
  max-width: 680px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.bd-value-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.bd-value-pillar {
  background: rgba(43, 43, 43, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 12px;
  padding: 32px 28px;
}

.bd-pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(184, 134, 11, 0.35);
  line-height: 1;
  margin-bottom: 16px;
}

.bd-value-pillar h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.bd-value-pillar p {
  font-size: 0.9rem;
  color: var(--grey-soft);
  line-height: 1.7;
}

/* ── BENEFITS ─────────────────────────────── */
.bd-benefits {
  background: var(--white);
}

.bd-benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.bd-benefits-header .bd-label--dark {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--grey-soft);
}

.bd-benefits-header h2 {
  color: var(--charcoal-black);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
}

.bd-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.bd-benefit {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  background: var(--light-bg-1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bd-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.08);
}

.bd-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.bd-benefit h4 {
  color: var(--charcoal-black);
  margin-bottom: 10px;
  font-size: 1rem;
}

.bd-benefit p {
  color: var(--charcoal);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── CTA 1 ─────────────────────────────────── */
.bd-cta1 {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bd-cta1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184, 134, 11, 0.1);
  pointer-events: none;
}

.bd-cta1-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.bd-cta1-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.bd-cta1-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.bd-cta1-inner p {
  color: var(--grey-soft);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.bd-cta1-inner .btn {
  font-size: 1.05rem;
  padding: 18px 44px;
  box-shadow:
    0 1px 0 rgba(255, 240, 200, .5) inset,
    0 -4px 7px rgba(50, 32, 6, .6) inset,
    0 0 36px rgba(201, 162, 39, 0.55);
}

.bd-cta1-note {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: 0.82rem;
  color: rgba(217, 192, 138, 0.45);
}

/* ── PROCESS ─────────────────────────────── */
.bd-process {
  background: var(--white);
}

.bd-process-header {
  text-align: center;
  margin-bottom: 72px;
}

.bd-process-header .bd-label--dark {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--grey-soft);
}

.bd-process-header h2 {
  color: var(--charcoal-black);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.bd-process-header p {
  color: var(--charcoal);
  font-size: 1rem;
}

.bd-process-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bd-process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.bd-process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: rgba(201, 162, 39, 0.2);
}

.bd-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-metallic);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}

.bd-step-body {
  padding-top: 10px;
}

.bd-step-body h4 {
  color: var(--charcoal-black);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.bd-step-body p {
  color: var(--charcoal);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.bd-step-time {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 100px;
  padding: 3px 12px;
}

/* ── PRICING ─────────────────────────────── */
.bd-pricing {
  background: var(--charcoal-black);
}

.bd-pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.bd-pricing-header h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.bd-pricing-header p {
  color: var(--grey-soft);
  font-size: 1rem;
}

.bd-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.bd-pricing-card {
  background: rgba(43, 43, 43, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s;
}

.bd-pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
}

.bd-pricing-card--featured {
  border-color: rgba(184, 134, 11, 0.4);
  background: rgba(184, 134, 11, 0.16);
}

.bd-pricing-card--featured:hover {
  border-color: var(--bronze);
}

.bd-pricing-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.bd-pricing-card:not(.bd-pricing-card--featured) .bd-pricing-badge {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.25);
}

.bd-pricing-from {
  font-size: 0.8rem;
  color: var(--grey-soft);
  margin-bottom: 2px;
}

.bd-pricing-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.bd-pricing-desc {
  font-size: 0.88rem;
  color: var(--grey-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}

.bd-pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.bd-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ivory);
}

.bd-check {
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.bd-pricing-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bd-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(217, 192, 138, 0.5);
  max-width: 640px;
  margin: 32px auto 0;
}

/* ── FAQ ─────────────────────────────────── */
.bd-faq {
  background: var(--light-bg-1);
}

.bd-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.bd-faq-header .bd-label--dark {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--grey-soft);
}

.bd-faq-header h2 {
  color: var(--charcoal-black);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
}

.bd-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.bd-faq-item:first-child {
  border-top: 1px solid var(--light-border);
}

.bd-faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--charcoal-black);
  text-align: left;
  transition: color 0.2s;
}

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

.bd-faq-arrow {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.bd-faq-item.open .bd-faq-arrow {
  transform: rotate(180deg);
}

.bd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.bd-faq-a p {
  padding-bottom: 22px;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ── CTA 2 ─────────────────────────────────── */
.bd-cta2 {
  background: var(--charcoal);
}

.bd-cta2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.bd-cta2-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.bd-cta2-text p {
  color: var(--grey-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}

.bd-trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gold-muted);
}

.bd-trust-icon {
  color: var(--gold);
  font-weight: 700;
}

/* Form */
.bd-cta2-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 192, 138, 0.18);
  border-radius: 20px;
  padding: 44px;
  backdrop-filter: blur(16px);
}

.bd-form-group {
  margin-bottom: 20px;
}

.bd-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.bd-form-req {
  color: var(--color-error);
}

.bd-form-input,
.bd-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 192, 138, 0.22);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.bd-form-input::placeholder,
.bd-form-textarea::placeholder {
  color: rgba(217, 192, 138, 0.38);
}

.bd-form-input:focus,
.bd-form-textarea:focus {
  border-color: var(--bronze);
  background: rgba(184, 134, 11, 0.08);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

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

.bd-form-status {
  min-height: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.bd-form-status.success {
  color: var(--color-success);
}

.bd-form-status.error {
  color: var(--color-error);
}

.bd-form-submit {
  width: 100%;
  padding: 15px 32px;
  font-size: 1rem;
  justify-content: center;
}

.bd-form-note {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(217, 192, 138, 0.48);
  margin-top: 12px;
  margin-bottom: 0;
}

/* ── URGENCY ─────────────────────────────── */
.bd-urgency {
  background: var(--charcoal-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bd-urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.08);
  pointer-events: none;
}

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

.bd-urgency-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin: 16px 0 24px;
  line-height: 1.25;
}

.bd-urgency-inner p {
  color: var(--grey-soft);
  font-size: 1.01rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.bd-urgency-btn {
  font-size: 1.05rem;
  padding: 18px 44px;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.55);
  margin-top: 12px;
}

.bd-urgency-sub {
  margin-top: 20px !important;
  font-size: 0.85rem;
  color: rgba(217, 192, 138, 0.45);
}

.bd-urgency-email {
  color: var(--gold-light);
  text-decoration: none;
}

.bd-urgency-email:hover {
  color: var(--white);
}

/* ── REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {

  .bd-problem-grid,
  .bd-value-pillars,
  .bd-cta2-grid,
  .bd-pricing-grid {
    grid-template-columns: 1fr;
  }

  .bd-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bd-hero-ctas {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .bd-hero-ctas .btn {
    padding: 11px 18px;
    font-size: 0.82rem;
    border-width: 3px;
  }

  .bd-hero {
    padding: 140px 0 80px;
  }

  .bd-hero h1 {
    font-size: 2.4rem;
  }

  .bd-hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .bd-benefits-grid {
    grid-template-columns: 1fr;
  }

  .bd-section {
    padding: 72px 0;
  }

  .bd-cta2-form {
    padding: 28px 20px;
  }
}

/* Accessibility: AAA contrast helpers */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ── Extracted from inline styles in brand.html ── */
.bd2-1 { border-radius:4px;padding:2px; }
.bd2-2 { margin-top:16px; }
.bd2-3 { background:var(--gold); }
.bd2-4 { background:var(--bronze); }
.bd2-5 { background:var(--gold-light); }
