/* ============================================
   SMARDEIN — Logo Design Page
   logo.css  —  page-specific styles only
   Shared base: main.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;
}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

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

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── PAGE SECTIONS ─────────────────────────── */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Hero */

.hero-section {
  background: var(--charcoal-black);
  padding: 140px 24px 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.18);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  display: inline-block;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 1.4s ease-out infinite;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Value prop */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefit-card {
  background: var(--white);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.08);
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.benefit-item {
  background: var(--ivory);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.2s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* Process */
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
}

.step-line-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

.step-connector {
  width: 2px;
  height: 60px;
  background: var(--ivory);
  margin-top: 4px;
}

.step-body {
  padding: 0 0 40px 24px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--charcoal-black);
  margin-bottom: 8px;
}

.step-body p {
  color: var(--charcoal);
  font-size: 0.97rem;
}

/* Pricing */
.pricing-card {
  background: var(--charcoal-black);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 18, 18, 0.25);
}

.pricing-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details {
  background: var(--ivory);
  border-radius: 8px;
  overflow: hidden;
}

details summary {
  padding: 22px 24px;
  font-weight: 600;
  color: var(--charcoal-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  font-size: 1rem;
}

details summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--charcoal);
  font-size: 0.97rem;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

/* Dark CTA */
.dark-section {
  background: var(--charcoal-black);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.float-btn {
  animation: float 3s ease-in-out infinite;
}

/* Price badge */
.price-badge {
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  padding: 28px 32px;
  display: inline-block;
  margin-bottom: 36px;
}

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

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero-section {
    padding: 120px 20px 70px;
  }

  /* Sections */
  .value-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .pricing-checklist {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Typography */
  h2 {
    font-size: 1.8rem;
  }

  .dark-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn,
  .float-btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .step-body {
    padding: 0 0 32px 16px;
  }

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

/* ── Extracted from inline styles in logo.html ── */

/* ── PAGE-SPECIFIC CONTENT STYLES ──────────── */

/* Hero (page-specific) */
.hero-glow-top {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: rgba(201, 162, 39, 0.16);
  pointer-events: none;
}

.hero-glow-bottom {
  position: absolute;
  bottom: -60px;
  right: 10%;
  width: 400px;
  height: 300px;
  background: rgba(184, 134, 11, 0.1);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  animation: fadeUp 0.9s ease both;
}

.hero-badge-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.5px;
}

.heading-on-dark {
  color: #fff;
  margin-bottom: 24px;
}

.hero-headline-em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtext {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ivory);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.price-highlight {
  color: #fff;
}

.btn-glow-md {
  font-size: 1rem;
  padding: 16px 36px;
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.5);
}

.hero-footnote {
  margin-top: 20px;
  font-size: 0.83rem;
  color: rgba(247, 245, 240, 0.55);
}

/* Value proposition */
.section-light {
  background: var(--ivory);
  padding: 88px 24px;
}

.section-heading-primary {
  color: var(--charcoal-black);
  margin-bottom: 22px;
}

.section-body-text {
  color: var(--charcoal);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.section-body-emphasis {
  color: var(--charcoal);
  font-size: 1.02rem;
  font-weight: 500;
}

.benefit-card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-list-label {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 4px;
}

.benefit-card--gold {
  border-left: 3px solid var(--gold);
}

.benefit-card-title {
  color: var(--charcoal-black);
  font-size: 1rem;
}

.benefit-card-text {
  color: var(--charcoal);
  font-size: 0.92rem;
  margin-top: 4px;
}

.benefit-card--bronze {
  border-left: 3px solid var(--bronze);
}

.benefit-card--gold-light {
  border-left: 3px solid var(--gold-light);
}

.benefit-list-closing {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 4px;
}


/* Benefits */
.section-white {
  background: #fff;
  padding: 88px 24px;
}

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

.section-heading-wide {
  color: var(--charcoal-black);
  max-width: 640px;
  margin: 0 auto;
}

.icon-badge-gold {
  background: var(--gold);
}

.benefit-item-title {
  color: var(--charcoal-black);
  margin-bottom: 10px;
}

.benefit-item-text {
  color: var(--charcoal);
  font-size: 0.93rem;
}

.icon-badge-bronze {
  background: var(--bronze);
}

.icon-badge-gold-light {
  background: var(--gold-light);
}


/* CTA #1 (dark, mid-page) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.12);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  color: #fff;
  margin-bottom: 18px;
}

.cta-subtext {
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-glow-lg {
  font-size: 1.05rem;
  padding: 18px 44px;
  box-shadow: 0 0 36px rgba(201, 162, 39, 0.55);
}

.cta-footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(247, 245, 240, 0.45);
}


/* Process / How it works */
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}

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

.section-heading-center {
  color: var(--charcoal-black);
}

.step-num--gold-light {
  background: var(--gold-light);
  color: var(--charcoal-black);
}

.step-body--last {
  padding-bottom: 0;
}


/* Pricing */
.pricing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading-narrow {
  color: var(--charcoal-black);
  margin-bottom: 16px;
}

.section-subtext-wide {
  color: var(--charcoal);
  margin-bottom: 44px;
}

.pricing-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: rgba(201, 162, 39, 0.14);
  pointer-events: none;
}

.pricing-card-inner {
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.pricing-badge-text {
  font-size: 0.8rem;
  color: var(--ivory);
  font-weight: 500;
}

.pricing-amount-wrap {
  margin-bottom: 32px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.pricing-checklist-text {
  color: var(--ivory);
  font-size: 0.93rem;
}

.btn-glow-full {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 40px;
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.5);
}

.pricing-footnote {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gold);
}


/* FAQ */
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}


/* CTA #2 */
.section-light-tight {
  background: var(--ivory);
  padding: 72px 24px;
  text-align: center;
}

.cta2-inner {
  max-width: 620px;
  margin: 0 auto;
}

.cta2-subtext {
  color: var(--charcoal);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-glow-soft {
  font-size: 1.05rem;
  padding: 18px 44px;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
}


/* Urgency / closing */
.section-dark {
  background: var(--charcoal-black);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 162, 39, 0.1);
  pointer-events: none;
}

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

.label-bronze {
  color: var(--bronze);
}

.urgency-text {
  color: var(--ivory);
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.urgency-question {
  color: var(--ivory);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.urgency-em {
  color: var(--gold-light);
}

.price-badge-label {
  color: var(--ivory);
  font-size: 1rem;
  margin-bottom: 6px;
}

.price-badge-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.price-badge-note {
  color: rgba(247, 245, 240, 0.55);
  font-size: 0.82rem;
  margin-top: 6px;
}

.btn-glow-xl {
  font-size: 1.1rem;
  padding: 18px 48px;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.6);
}

.final-footnote {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(247, 245, 240, 0.4);
}