/* ============================================
   REK Pricing Cards — pricing-cards.css
   Self-contained component styles.
   DO NOT edit style.css — this is a separate file.
   All selectors scoped under #rek-pricing for
   specificity when embedded in site template.
   ============================================ */

/* --- Brand Tokens --- */
#rek-pricing {
  --rek-dark: #0f1923;
  --rek-dark-lighter: #162230;
  --rek-green: #0f766e;
  --rek-green-dark: #0a5c57;
  --rek-green-glow: rgba(15, 118, 110, 0.12);
  --rek-white: #ffffff;
  --rek-off-white: #f7f8fa;
  --rek-text: #1e293b;
  --rek-text-mid: #475569;
  --rek-text-light: #94a3b8;
  --rek-border: #e2e8f0;
  --rek-radius: 16px;
  --rek-radius-sm: 8px;
  --rek-shadow: 0 1px 3px rgba(0,0,0,0.06);
  --rek-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --rek-shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --rek-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'DM Sans', sans-serif;
  color: var(--rek-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#rek-pricing *, #rek-pricing *::before, #rek-pricing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#rek-pricing h1, #rek-pricing h2, #rek-pricing h3, #rek-pricing h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

#rek-pricing img { max-width: 100%; }
#rek-pricing a { text-decoration: none; }
#rek-pricing ul { list-style: none; }


/* ============================================
   SECTION 1 + 2: Hero + Tier Cards (dark bg)
   ============================================ */
#rek-pricing .rek-hero {
  background: #0f1923 !important;
  padding: 80px 24px 80px;
  text-align: center;
  overflow: visible;
}

#rek-pricing .rek-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}

#rek-pricing .rek-hero h1 {
  font-weight: 800;
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

#rek-pricing .rek-hero__sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}


/* --- Billing Toggle --- */
#rek-pricing .rek-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  padding: 5px;
  position: relative;
  gap: 0;
  margin-bottom: 56px;
}

#rek-pricing .rek-toggle__btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #94a3b8;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 50px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

#rek-pricing .rek-toggle__btn.active {
  color: #0f1923;
}

#rek-pricing .rek-toggle__pill {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: #ffffff;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

#rek-pricing .rek-toggle__badge {
  display: inline-block;
  background: #0f766e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}


/* --- Tier Cards Grid (3 SEO tiers) --- */
#rek-pricing .rek-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto !important;
  width: 100%;
  padding: 0;
}


/* --- Individual Tier Card --- */
#rek-pricing .rek-card {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* Teal accent bar — slides in from left on hover */
#rek-pricing .rek-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rek-green), var(--rek-green-dark));
  border-radius: 0 0 16px 16px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Teal top glow — fades in on hover */
#rek-pricing .rek-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(15,118,110,0.06) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

#rek-pricing .rek-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 48px rgba(15,118,110,0.15), 0 0 0 1px rgba(15,118,110,0.1);
  border-color: var(--rek-green);
}

#rek-pricing .rek-card:hover::after {
  transform: scaleX(1);
}

#rek-pricing .rek-card:hover::before {
  opacity: 1;
}

/* Recommended card */
#rek-pricing .rek-card--featured {
  border-color: var(--rek-green);
  border-top: 3px solid var(--rek-green);
  box-shadow: 0 12px 40px rgba(15,118,110,0.08);
}

#rek-pricing .rek-card--featured:hover {
  box-shadow: 0 16px 48px rgba(15,118,110,0.14);
}

#rek-pricing .rek-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f766e;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

#rek-pricing .rek-card__starting {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#rek-pricing .rek-card__price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 2px;
  min-height: 40px;
}

/* Ensure consistent vertical rhythm when "Starting at" label is absent */
#rek-pricing .rek-card--dominate .rek-card__price {
  margin-top: 7px; /* compensates for missing .rek-card__starting (23px) minus taller wrapped text (16px) */
}

#rek-pricing .rek-card__dollar {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1e293b;
  line-height: 1;
}

#rek-pricing .rek-card__amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e293b;
  line-height: 1;
  transition: opacity 0.2s ease;
}

#rek-pricing .rek-card__amount.changing {
  opacity: 0;
}

#rek-pricing .rek-card__period {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 12px;
}

#rek-pricing .rek-card__tagline {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 66px;
}

/* CTA Buttons */
#rek-pricing .rek-card__cta {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 48px;
}

#rek-pricing .rek-card__cta--outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #1e293b;
}

#rek-pricing .rek-card__cta--outline:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,118,110,0.3);
}

#rek-pricing .rek-card__cta--filled {
  background: #0f766e;
  border: 2px solid #0f766e;
  color: #ffffff;
}

#rek-pricing .rek-card__cta--filled:hover {
  background: #0a5c57;
  border-color: #0a5c57;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,118,110,0.3);
}

/* Divider */
#rek-pricing .rek-card__divider {
  height: 1px;
  background: #e2e8f0;
  margin: 24px 0;
  border: none;
}

/* Feature List */
#rek-pricing .rek-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

#rek-pricing .rek-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

#rek-pricing .rek-card__feature svg {
  flex-shrink: 0;
  color: #0f766e;
  margin-top: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.3s ease;
}

#rek-pricing .rek-card:hover .rek-card__feature svg {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 4px rgba(15,118,110,0.3));
}

/* Tier name color shift on hover */
#rek-pricing .rek-card__tier {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-card:hover .rek-card__tier {
  color: var(--rek-green);
}

/* Price amount pulse on hover */
#rek-pricing .rek-card:hover .rek-card__dollar,
#rek-pricing .rek-card:hover .rek-card__amount {
  color: var(--rek-green-dark);
}

#rek-pricing .rek-card__dollar,
#rek-pricing .rek-card__amount {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-card__footnote {
  margin-top: 20px;
  background: rgba(15,118,110,0.06);
  border-left: 3px solid #0f766e;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}


/* ============================================
   SECTION 2b: Website Only — Standalone Upsell
   ============================================ */
#rek-pricing .rek-website-only {
  background: #0f1923 !important;
  padding: 60px 24px 80px;
}

#rek-pricing .rek-website-only__inner {
  max-width: 920px;
  margin: 0 auto;
  background: #162230;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  overflow: hidden;
}

#rek-pricing .rek-website-only__text {
  flex: 1 1 0%;
  min-width: 280px;
}

#rek-pricing .rek-website-only__title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

#rek-pricing .rek-website-only__desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

#rek-pricing .rek-website-only__desc strong {
  color: #ffffff;
  font-weight: 600;
}

#rek-pricing .rek-website-only__card {
  flex: 0 0 300px;
  width: 300px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
}

#rek-pricing .rek-website-only__card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

#rek-pricing .rek-website-only__tier {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

#rek-pricing .rek-website-only__pricing {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

#rek-pricing .rek-website-only__dollar {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e293b;
}

#rek-pricing .rek-website-only__card .rek-card__amount {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1e293b;
  line-height: 1;
  transition: opacity 0.2s ease;
}

#rek-pricing .rek-website-only__card .rek-card__amount.changing {
  opacity: 0;
}

#rek-pricing .rek-website-only__period {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 400;
  margin-left: 2px;
}

#rek-pricing .rek-website-only__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

#rek-pricing .rek-website-only__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

#rek-pricing .rek-website-only__features li svg {
  flex-shrink: 0;
  color: #0f766e;
}

#rek-pricing .rek-website-only__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#rek-pricing .rek-website-only__cta {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

#rek-pricing .rek-website-only__cta:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}

#rek-pricing .rek-website-only__upgrade {
  font-size: 12px;
  color: #94a3b8;
}

#rek-pricing .rek-website-only__upgrade a {
  color: #0f766e;
  font-weight: 600;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-website-only__upgrade a:hover {
  color: #0a5c57;
  text-decoration: underline;
}


/* ============================================
   Add-On Services Banner (client-facing link)
   ============================================ */
#rek-pricing .rek-addons-banner {
  background: #f7f8fa !important;
  padding: 56px 24px;
}

#rek-pricing .rek-addons-banner__inner {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

#rek-pricing .rek-addons-banner__text {
  flex: 1;
  min-width: 0;
}

#rek-pricing .rek-addons-banner__title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

#rek-pricing .rek-addons-banner__desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

#rek-pricing .rek-addons-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f766e;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

#rek-pricing .rek-addons-banner__btn:hover {
  background: #0a5c57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,118,110,0.2);
}

#rek-pricing .rek-addons-banner__btn svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-addons-banner__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 767px) {
  #rek-pricing .rek-addons-banner {
    padding: 40px 20px;
  }

  #rek-pricing .rek-addons-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  #rek-pricing .rek-addons-banner__btn {
    width: 100%;
    justify-content: center;
  }
}


/* ============================================
   Hero Back Link (add-ons page)
   ============================================ */
#rek-pricing .rek-hero__back {
  margin-bottom: 24px;
}

#rek-pricing .rek-hero__back a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-hero__back a:hover {
  color: #0f766e;
}


/* ============================================
   Add-Ons Page — Full Card Grid
   ============================================ */
#rek-pricing .rek-addons-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

#rek-pricing .rek-addon--large {
  padding: 36px 28px;
}

#rek-pricing .rek-addon__desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  #rek-pricing .rek-addons-page {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
  }
}

@media (max-width: 767px) {
  #rek-pricing .rek-addons-page {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}


/* ============================================
   SECTION 3: Add-On Services (internal page)
   ============================================ */
#rek-pricing .rek-addons {
  background: #f7f8fa !important;
  padding: 80px 24px;
}

#rek-pricing .rek-addons__inner {
  max-width: 1100px;
  margin: 0 auto;
}

#rek-pricing .rek-addons__header {
  text-align: center;
  margin-bottom: 48px;
}

#rek-pricing .rek-addons__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

#rek-pricing .rek-addons__sub {
  font-size: 16px;
  color: #475569;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

#rek-pricing .rek-addons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Add-On Card */
#rek-pricing .rek-addon {
  background: #ffffff !important;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

#rek-pricing .rek-addon:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

#rek-pricing .rek-addon__icon {
  width: 44px;
  height: 44px;
  background: rgba(15, 118, 110, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #0f766e;
}

#rek-pricing .rek-addon__name {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

#rek-pricing .rek-addon__price {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 4px;
}

#rek-pricing .rek-addon__qualifier {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
}

#rek-pricing .rek-addon__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

#rek-pricing .rek-addon__feature {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

#rek-pricing .rek-addon__feature::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #94a3b8;
}

#rek-pricing .rek-addon__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f766e;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

#rek-pricing .rek-addon__link:hover {
  color: #0a5c57;
  text-decoration: underline;
}


/* ============================================
   SECTION 4: Trust Strip (below pricing cards)
   ============================================ */
#rek-pricing .rek-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 16px;
}

#rek-pricing .rek-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  flex: 1;
  min-width: 0;
}

#rek-pricing .rek-trust-strip__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(15,118,110,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rek-green);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-trust-strip__item:hover .rek-trust-strip__icon {
  background: var(--rek-green);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(15,118,110,0.3);
}

#rek-pricing .rek-trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

#rek-pricing .rek-trust-strip__text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

#rek-pricing .rek-trust-strip__text span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #94a3b8;
  white-space: nowrap;
}

#rek-pricing .rek-trust-strip__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}


/* ============================================
   SECTION 5: FAQ Accordion
   ============================================ */
#rek-pricing .rek-faq {
  background: #ffffff !important;
  padding: 80px 24px;
}

#rek-pricing .rek-faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

#rek-pricing .rek-faq__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 48px;
}

#rek-pricing .rek-faq__item {
  border-bottom: 1px solid #e2e8f0;
}

#rek-pricing .rek-faq__item:first-child {
  border-top: 1px solid #e2e8f0;
}

#rek-pricing .rek-faq__question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
  line-height: 1.5;
}

#rek-pricing .rek-faq__question:hover {
  color: #0f766e;
}

#rek-pricing .rek-faq__chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-faq__item.active .rek-faq__chevron {
  transform: rotate(180deg);
  color: #0f766e;
}

#rek-pricing .rek-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-faq__answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}


/* ============================================
   SECTION 6: Bottom CTA
   ============================================ */
#rek-pricing .rek-cta {
  background: #0f1923 !important;
  padding: 80px 24px;
  text-align: center;
}

#rek-pricing .rek-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

#rek-pricing .rek-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

#rek-pricing .rek-cta__sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

#rek-pricing .rek-cta__btn {
  display: inline-block;
  background: #0f766e;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 0 32px;
  height: 56px;
  line-height: 56px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#rek-pricing .rek-cta__btn:hover {
  background: #0a5c57;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(15,118,110,0.25);
}

#rek-pricing .rek-cta__note {
  font-size: 14px;
  color: #94a3b8;
  margin-top: 16px;
}


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

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

/* Restore interactive hover transitions after entrance animation completes */
#rek-pricing .rek-card.rek-fade-up.visible {
  transition: opacity 0.6s ease,
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger delays for cards */
#rek-pricing .rek-fade-up[data-delay="1"] { transition-delay: 100ms; }
#rek-pricing .rek-fade-up[data-delay="2"] { transition-delay: 200ms; }
#rek-pricing .rek-fade-up[data-delay="3"] { transition-delay: 300ms; }


/* ============================================
   RESPONSIVE — Tablet (768–1023px)
   ============================================ */
@media (max-width: 1023px) {
  #rek-pricing .rek-tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 680px;
  }

  #rek-pricing .rek-trust-strip {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  #rek-pricing .rek-trust-strip__divider {
    display: none;
  }

  #rek-pricing .rek-trust-strip__item {
    flex: 0 0 calc(50% - 8px);
    padding: 0;
  }

  #rek-pricing .rek-card {
    padding: 32px 24px;
  }

  #rek-pricing .rek-card__amount {
    font-size: 42px;
  }

  #rek-pricing .rek-website-only__inner {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
  }

  #rek-pricing .rek-website-only__card {
    width: 100%;
    max-width: 400px;
    flex: none;
  }

  #rek-pricing .rek-addons__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ============================================
   RESPONSIVE — Mobile (< 768px)
   ============================================ */
@media (max-width: 767px) {
  #rek-pricing .rek-hero {
    padding: 48px 20px 48px;
  }

  #rek-pricing .rek-hero h1 {
    font-size: 28px;
  }

  #rek-pricing .rek-hero__sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  #rek-pricing .rek-toggle__btn {
    font-size: 13px;
    padding: 9px 14px;
  }

  #rek-pricing .rek-toggle__badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  #rek-pricing .rek-toggle {
    margin-bottom: 40px;
  }

  #rek-pricing .rek-tiers {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
  }

  /* Push recommended card to top on mobile */
  #rek-pricing .rek-card--featured {
    order: -1;
  }

  #rek-pricing .rek-card {
    padding: 32px 24px;
  }

  #rek-pricing .rek-card__amount {
    font-size: 40px;
  }

  #rek-pricing .rek-card__tagline {
    min-height: auto;
  }

  #rek-pricing .rek-website-only {
    padding: 0 20px 48px;
  }

  #rek-pricing .rek-website-only__inner {
    padding: 28px 20px;
    gap: 24px;
  }

  #rek-pricing .rek-website-only__title {
    font-size: 20px;
  }

  #rek-pricing .rek-website-only__card .rek-card__amount {
    font-size: 28px;
  }

  #rek-pricing .rek-addons {
    padding: 56px 20px;
  }

  #rek-pricing .rek-addons__title {
    font-size: 26px;
  }

  #rek-pricing .rek-addons__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  #rek-pricing .rek-trust-strip {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 16px;
    margin-top: 36px;
  }

  #rek-pricing .rek-trust-strip__divider {
    display: none;
  }

  #rek-pricing .rek-trust-strip__item {
    flex: 0 0 100%;
    padding: 0;
    justify-content: center;
  }

  #rek-pricing .rek-trust-strip__text strong {
    font-size: 13px;
  }

  #rek-pricing .rek-trust-strip__text span {
    font-size: 11px;
  }

  #rek-pricing .rek-faq {
    padding: 56px 20px;
  }

  #rek-pricing .rek-faq__title {
    font-size: 26px;
    margin-bottom: 32px;
  }

  #rek-pricing .rek-faq__question {
    font-size: 15px;
    padding: 18px 0;
  }

  #rek-pricing .rek-cta {
    padding: 56px 20px;
  }

  #rek-pricing .rek-cta h2 {
    font-size: 28px;
  }

  #rek-pricing .rek-cta__sub {
    font-size: 16px;
  }

  #rek-pricing .rek-cta__btn {
    font-size: 16px;
    width: 100%;
    max-width: 360px;
  }
}

/* Very small phones */
@media (max-width: 374px) {
  #rek-pricing .rek-toggle {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    gap: 4px;
  }

  #rek-pricing .rek-toggle__pill {
    display: none;
  }

  #rek-pricing .rek-toggle__btn.active {
    background: #ffffff;
    border-radius: 50px;
  }
}
