/* ════════════════════════════════════════
       TOKENS & BASE
    ════════════════════════════════════════ */
:root {
  --orange: #F97518;
  --orange-dark: #d95e08;
  --orange-pale: #FEF0E3;
  --cream: #FAF7F2;
  --dark: #1E0D01;
  --dark-80: rgba(30, 13, 1, .80);
  --dark-60: rgba(30, 13, 1, .60);
  --dark-40: rgba(30, 13, 1, .40);
  --dark-12: rgba(30, 13, 1, .12);
  --dark-06: rgba(30, 13, 1, .06);
  --white: #ffffff;
  --border: rgba(30, 13, 1, .10);
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: 'Spectral', serif;
}

/* ════════════════════════════════════════
       SCROLL REVEAL
    ════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .72s cubic-bezier(.22, .68, 0, 1.2),
    transform .72s cubic-bezier(.22, .68, 0, 1.2);
}

.sr.sr-scale {
  transform: scale(.8);
}

.sr.sr-left {
  transform: translateX(-30px);
}

.sr.sr-right {
  transform: translateX(30px);
}

.sr.show {
  opacity: 1;
  transform: none;
}

.sr-d1 {
  transition-delay: .08s
}

.sr-d2 {
  transition-delay: .16s
}

.sr-d3 {
  transition-delay: .24s
}

.sr-d4 {
  transition-delay: .32s
}

.sr-d5 {
  transition-delay: .40s
}

.sr-d6 {
  transition-delay: .50s
}

/* ════════════════════════════════════════
       NAV
    ════════════════════════════════════════ */
#mainNav {
  background: rgba(250, 247, 242, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  width: 100%;
  z-index: 1050;
  padding: 12px 18px;
  margin-bottom: 48px;
  transition: box-shadow .2s ease, border-color .2s ease;
}

#mainNav.scrolled {
  box-shadow: 0 12px 28px rgba(30, 13, 1, .10);
  border-color: rgba(30, 13, 1, .14);
}

#mainNav.is-pinned {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 1320px);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Spectral', serif;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--dark);
  font-weight: 500;
  letter-spacing: -.02em;
}

.nav-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nav-link-custom {
  color: var(--dark-60) !important;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 6px 16px !important;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-link-custom:hover {
  color: var(--dark) !important;
  background: var(--dark-06);
}

/* "All Pages" dropdown */
.allpages-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-60);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: color .2s, background .2s;
}

.allpages-btn:hover {
  color: var(--dark);
  background: var(--dark-06);
}

.allpages-btn .chevron {
  transition: transform .2s;
}

.allpages-btn.open .chevron {
  transform: rotate(180deg);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: background .2s, transform .18s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta-nav:hover {
  background: #3a1e08;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30, 13, 1, .18);
}

.nav-links-row {
  gap: 8px;
  flex-wrap: nowrap;
}

@media (min-width: 992px) {
  #mainNav .nav-shell {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  #mainNav .nav-top-row {
    flex: 0 0 auto;
  }

  #mainNav .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    flex: 1 1 auto;
  }
}

@media (max-width: 991.98px) {
  #mainNav {
    padding: 10px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 36px;
  }

  #mainNav.is-pinned {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-text {
    font-size: 1.35rem;
  }

  .nav-link-custom {
    padding: 10px 14px !important;
  }
}

.mobile-nav-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .4s ease, opacity .28s ease, transform .28s ease, margin-top .28s ease;
}

#mainNav.mobile-menu-open .mobile-nav-panel {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.mobile-nav-panel .nav-links-row {
  gap: 6px;
}

.mobile-nav-cta {
  margin-top: 14px;
}

@media (min-width: 992px) {
  .mobile-nav-panel {
    display: none;
  }
}

/* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
.hero-section {
  padding: 36px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* radial glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 640px;
  background: radial-gradient(ellipse at 50% 30%, rgba(249, 117, 24, .14) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 14px 5px 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--dark-60);
  box-shadow: 0 2px 8px var(--dark-06);
  margin-bottom: 28px;
}

.hero-badge .new-pill {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 2px 9px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--dark-60);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 14px 30px;
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(30, 13, 1, .22);
}

.btn-hero-primary:hover {
  background: #3a1e08;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 13, 1, .28);
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 14px 30px;
  font-size: .97rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-hero-secondary:hover {
  background: var(--orange-pale);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 13, 1, .12);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
}

.av:nth-child(2) {
  margin-left: -10px;
}

.av:nth-child(3) {
  margin-left: -10px;
}

.hero-stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}

.hero-stars-row i {
  color: var(--orange);
  font-size: .8rem;
}

.proof-text {
  font-size: .82rem;
  color: var(--dark-60);
}

.proof-text strong {
  color: var(--dark);
}

/* Hero dashboard screenshot */
.hero-screenshot-wrap {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(30, 13, 1, .14), 0 2px 0 rgba(30, 13, 1, .06);
  margin-top: 56px;
  position: relative;
  will-change: transform;
  transition: transform .18s linear;
}

.hero-screenshot-wrap img {
  width: 100%;
  display: block;
  border-radius: var(--r-xl);
}

/* ════════════════════════════════════════
       TRUSTED BY
    ════════════════════════════════════════ */
.trusted-section {
  background: #f5f4f3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 68px 0 62px;
}

.trusted-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  letter-spacing: -.02em;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 36px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 54px);
  flex-wrap: wrap;
}

.trusted-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9d9690;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}

.trusted-logo-item i {
  font-size: .9em;
}

.trusted-logo-item span {
  font-size: .95em;
  letter-spacing: -.01em;
}

/* ════════════════════════════════════════
       SECTION COMMON
    ════════════════════════════════════════ */
section {
  padding: 96px 0;
}

@media(max-width:767.98px) {
  section {
    padding: 64px 0;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--dark);
}

.section-sub {
  font-size: 1.02rem;
  color: var(--dark-60);
  line-height: 1.72;
  max-width: 540px;
}

/* ════════════════════════════════════════
       ABOUT / COMPANY SECTION
    ════════════════════════════════════════ */
.about-section {
  background: var(--white);
}

.about-desc {
  font-size: 1rem;
  color: var(--dark-60);
  line-height: 1.78;
  max-width: 600px;
}

/* Counters */
.counter-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 36px;
}

.counter-cell {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.counter-cell:last-child {
  border-right: none;
}

.counter-num {
  font-family: 'Spectral', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.counter-num sup {
  font-size: .55em;
  vertical-align: super;
  color: var(--orange);
}

.counter-label {
  font-size: .85rem;
  color: var(--dark-60);
  font-weight: 500;
}

/* Tag cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.tag-pill:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 117, 24, .14);
}

.tag-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ════════════════════════════════════════
       BENEFITS SECTION
    ════════════════════════════════════════ */
.benefits-section {
  background: var(--cream);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(249, 117, 24, 0) 100%);
  opacity: 0;
  transition: opacity .3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(30, 13, 1, .09);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-xs);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 16px;
}

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: .9rem;
  color: var(--dark-60);
  line-height: 1.68;
  margin: 0;
}

/* ════════════════════════════════════════
       AI-DRIVEN FEATURES (alternating rows)
    ════════════════════════════════════════ */
.features-alt-section {
  background: var(--white);
}

.feat-row {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.feat-row:last-child {
  border-bottom: none;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  background: var(--dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.feat-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 16px;
}

.feat-desc {
  font-size: .97rem;
  color: var(--dark-60);
  line-height: 1.72;
  margin-bottom: 28px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.btn-learn-more:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.btn-learn-more .arrow {
  transition: transform .2s;
}

.btn-learn-more:hover .arrow {
  transform: translateX(4px);
}

.feat-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(30, 13, 1, .10);
  background: var(--cream);
}

.feat-img-wrap img {
  width: 100%;
  display: block;
}

/* ════════════════════════════════════════
       SMARTER TOOLS GRID
    ════════════════════════════════════════ */
.tools-section {
  background: var(--cream);
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(30, 13, 1, .08);
}

.tool-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tool-icon-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.tool-title {
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
}

.tool-desc {
  font-size: .88rem;
  color: var(--dark-60);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* ════════════════════════════════════════
       HOW IT WORKS
    ════════════════════════════════════════ */
.hiw-section {
  background: var(--white);
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

@media(max-width:767.98px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hiw-connector {
    display: none !important;
  }
}

.hiw-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(30, 13, 1, .08);
}

.hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hiw-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.hiw-desc {
  font-size: .9rem;
  color: var(--dark-60);
  line-height: 1.68;
  margin: 0;
}

.hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 55px;
}

.hiw-connector-line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

/* ════════════════════════════════════════
       TESTIMONIALS CAROUSEL
    ════════════════════════════════════════ */
.testi-section {
  background: var(--cream);
}

.testi-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

@media(max-width:991.98px) {
  .testi-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media(max-width:575.98px) {
  .testi-card {
    flex: 0 0 calc(100%);
  }
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars i {
  color: var(--orange);
  font-size: .88rem;
}

.testi-rating {
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
  margin-left: 6px;
}

.testi-quote {
  font-size: .97rem;
  color: var(--dark);
  line-height: 1.68;
  margin-bottom: 20px;
  min-height: 70px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--orange);
  flex-shrink: 0;
  overflow: hidden;
}

.testi-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.testi-role {
  font-size: .8rem;
  color: var(--dark-60);
}

.testi-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color .2s, background .2s, transform .18s;
}

.testi-btn:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
  transform: scale(1.06);
}

/* ════════════════════════════════════════
       PRICING
    ════════════════════════════════════════ */
.pricing-section {
  background: var(--white);
}

.billing-toggle {
  display: inline-flex;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px;
  margin-bottom: 52px;
}

.billing-btn {
  padding: 8px 24px;
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark-60);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.billing-btn.active {
  background: var(--dark);
  color: var(--white);
}

.price-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(30, 13, 1, .10);
}

.price-card.popular {
  background: var(--dark);
  border-color: var(--dark);
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--r-pill);
}

.plan-name {
  font-family: 'Spectral', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.price-card.popular .plan-name {
  color: var(--white);
}

.plan-tag-label {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-left: 8px;
}

.plan-desc {
  font-size: .88rem;
  color: var(--dark-60);
  margin-bottom: 28px;
}

.price-card.popular .plan-desc {
  color: rgba(255, 255, 255, .5);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.plan-price .currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.plan-price .amount {
  font-family: 'Spectral', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--dark);
}

.plan-price .period {
  font-size: .85rem;
  color: var(--dark-60);
  margin-bottom: 5px;
}

.price-card.popular .plan-price .currency,
.price-card.popular .plan-price .amount {
  color: var(--white);
}

.price-card.popular .plan-price .period {
  color: rgba(255, 255, 255, .5);
}

.plan-hr {
  border-color: var(--border);
  margin: 24px 0;
}

.price-card.popular .plan-hr {
  border-color: rgba(255, 255, 255, .12);
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.price-card.popular .plan-feature {
  color: rgba(255, 255, 255, .8);
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  margin-top: 1px;
}

.price-card.popular .check-circle {
  background: rgba(249, 117, 24, .2);
}

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: var(--r-pill);
  padding: 13px;
  font-weight: 600;
  font-size: .92rem;
  margin-top: 28px;
  border: 1.5px solid var(--border);
  color: var(--dark);
  background: transparent;
  text-decoration: none;
  transition: all .2s;
}

.btn-plan:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.btn-plan-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(249, 117, 24, .30);
}

.btn-plan-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 10px 30px rgba(249, 117, 24, .38);
  color: var(--white);
}

/* ════════════════════════════════════════
       FAQ
    ════════════════════════════════════════ */
.faq-section {
  background: var(--cream);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(30, 13, 1, .06);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
}

.faq-btn .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background .2s, transform .3s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--dark);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 20px;
  font-size: .93rem;
  color: var(--dark-60);
  line-height: 1.72;
}

/* ════════════════════════════════════════
       CTA BOTTOM
    ════════════════════════════════════════ */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(249, 117, 24, .2) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 36px;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  border-radius: var(--r-pill);
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
  transition: transform .2s, box-shadow .2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  color: var(--dark);
}

/* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 64px 0 32px;
}

.footer-logo {
  font-family: 'Spectral', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--orange);
}

.footer-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-head {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 1rem;
  transition: border-color .2s, color .2s, background .2s;
}

.footer-social:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249, 117, 24, .08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255, 255, 255, .28);
}

/* ════════════════════════════════════════
       UTILITIES
    ════════════════════════════════════════ */
.text-orange {
  color: var(--orange);
}

.bg-orange {
  background: var(--orange);
}

.italic {
  font-style: italic;
}
