:root {
  --orange: rgb(128, 0, 0);
  --orange-600: rgb(128, 0, 0);
  --black: #0f1113;
  --white: #ffffff;
  --muted: #8a8f98;
  --card: #ffffff;
  --bg: #f6f7f9;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial;
  color: var(--black);
  background: var(--bg);
  padding-top: 64px; /* Added for fixed header */
} /* Layout */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.container.narrow {
  width: min(860px, 92%);
}
.section {
  padding: 80px 0;
}
.section-light {
  background: #fff;
}
.section-dark {
  background: var(--black);
  color: #e9edf3;
} /* Header / Navbar */
.site-header {
  position: fixed; /* Fixed typo from 'fi' */
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid #eee;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand-link {
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--black);
  letter-spacing: 0.5px;
}
.brand-link span {
  color: rgb(128, 0, 0);
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover {
  color: rgb(128, 0, 0);
}
.btn {
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s ease;
}
.btn:hover {
  background: rgb(128, 0, 0);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 0.92rem;
}
.btn-lg {
  padding: 14px 20px;
  font-size: 1rem;
}

/* Toggle Button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}

/* Toggle Animation */
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    margin: 0;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger the animation for links */
  .nav-links.open a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.open a:nth-child(2) {
    transition-delay: 0.15s;
  }
  .nav-links.open a:nth-child(3) {
    transition-delay: 0.2s;
  }
  .nav-links.open a:nth-child(4) {
    transition-delay: 0.25s;
  }
  .nav-links.open a:nth-child(5) {
    transition-delay: 0.3s;
  }
  .nav-links.open a:nth-child(6) {
    transition-delay: 0.35s;
  }
  .nav-links.open a:nth-child(7) {
    transition-delay: 0.4s;
  }
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}
.get-started-btn {
  margin-top: 24px;
  font-size: 1.1rem;
  padding: 14px 28px;
  background: rgb(128, 0, 0);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}
.get-started-btn:hover {
  background: rgb(128, 0, 0);
  transform: translateY(-2px);
}

/* Transformation Section Styles */
.transformation-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.transformation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(168, 85, 247, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.container.narrow {
  max-width: 800px;
}

/* Hero Box Styling */
.hero-box {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.8) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Title Styling */
.box-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* List Styling */
.box-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.box-list li {
  position: relative;
  padding: 16px 0 16px 40px;
  font-size: 1.125rem;
  color: #e2e8f0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
}
.box-list li:last-child {
  border-bottom: none;
}
.box-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}
.box-list li:hover {
  padding-left: 48px;
  color: #ffffff;
}
.box-list li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

/* After Line Styling */
.after-line-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: 30px auto 0;
  text-align: center;
  height: 40px;
}
.after-line-slide {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #f3f3f3;
  white-space: nowrap;
  animation: smoothSlide 14s ease-in-out infinite;
}
.highlight-pound {
  color: #ffd700;
  font-size: 1.8rem;
  margin: 0 3px;
}
.strike {
  text-decoration: line-through;
  color: #ffbdbd;
}
@keyframes smoothSlide {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  10% {
    transform: translateX(0%);
    opacity: 1;
  }
  45% {
    transform: translateX(0%);
    opacity: 1;
  }
  55% {
    transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
}
.after-line-static {
  margin-top: 40px;
  padding: 24px 32px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(168, 85, 247, 0.15) 100%
  );
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.red {
  position: relative;
  color: #ef4444;
  font-weight: 700;
}
.strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 3px;
  background: #ef4444;
  transform: translateY(-50%) rotate(-5deg);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s ease forwards;
}
@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .transformation-section {
    padding: 60px 16px;
  }
  .hero-box {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .box-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  .box-list li {
    font-size: 1rem;
    padding: 12px 0 12px 36px;
  }
  .box-list li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .after-line-static {
    padding: 20px 24px;
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .box-title {
    font-size: 1.75rem;
  }
  .box-list li {
    font-size: 0.9375rem;
  }
  .after-line-static {
    font-size: 1rem;
    padding: 16px 20px;
  }
}

/* Center countdown timer */
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cd {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffffff22;
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 2rem;
  color: var(--orange);
}
.hero,
.section,
.price,
.muted,
.after-line,
.enroll-cta {
  text-align: center;
}
.hero {
  position: relative;
  color: #fff;
  padding: 120px 0;
}
.has-bg {
  background: url("https://images.unsplash.com/photo-1554284126-aa88f22d8b74?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 50, 0.7),
    rgba(0, 50, 100, 0.6)
  );
}
.hero-grid {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 36px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}
@media (max-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.headline {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}
.subtext {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #dce2ef;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  display: block;
}

.countdown-title {
  text-align: center;
  width: 100%;
}
.countdown-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.countdown-title {
  font-weight: 800;
  color: #ffe9da;
  font-size: 1.75rem;
}
.countdown {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: rgb(128, 0, 0);
}
.countdown.in-dark {
  justify-content: center;
  color: #ffd8ba;
}
.cd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 20px 22px;
  background: #000000b0;
  border: 1px solid #ffffff22;
  border-radius: 10px;
  font-size: 2.05rem;
}
.cd small {
  font-weight: 700;
  opacity: 0.9;
  margin-left: 6px;
  font-size: 1.75rem;
}
.hero-box {
  background: #0f0f10cc;
  border: 1px solid #ffffff1a;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}
.box-title {
  margin: 0 0 12px;
  font-weight: 800;
  color: #fff;
}
.box-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.box-list li {
  background: #161719;
  border: 1px solid #ffffff12;
  color: #f5f6f8;
  border-radius: 12px;
  padding: 10px 12px;
}
.after-line {
  color: #f5f6f8;
  font-weight: 700;
}
.strike {
  text-decoration: none;
  color: #ffb08a;
}

/* Sections */
.section-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  margin: 0 0 24px;
  text-align: center;
  font-weight: 800;
}
.section-lead {
  font-size: 1.05rem;
  text-align: center;
  color: #444;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.cards .card {
  background: var(--card);
  border: 1px solid #e9ecf2;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(17, 17, 19, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.cards .card:hover {
  transform: translateY(-6px);
  border-color: #dfe4ec;
  box-shadow: 0 16px 36px rgba(17, 17, 19, 0.08);
}
.cards .card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.cards .card p {
  margin: 0;
  color: #49505a;
}
.t-card {
  position: relative;
}
.t-card cite {
  display: block;
  margin-top: 12px;
  color: #6b7280;
  font-style: normal;
  font-weight: 600;
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 14px;
  width: min(900px, 92%);
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #e9ecf2;
  border-radius: 14px;
  padding: 14px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: #dfe4ec;
  box-shadow: 0 8px 20px rgba(17, 17, 19, 0.06);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #111;
  outline: none;
}
.faq-item p {
  margin: 10px 0 0;
  color: #444;
}

/* Pricing */
.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.badge-orange {
  background: #fff3e8;
  color: var(--orange);
  border: 1px solid #ffe3cc;
}
.price {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin: 18px 0;
}
.muted {
  color: #c9cdd4;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0f1012;
  color: #b6bcc6;
  padding: 18px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-inner a.to-top {
  color: #b6bcc6;
  text-decoration: none;
  border: 1px solid #2a2f37;
  padding: 6px 10px;
  border-radius: 8px;
}
.footer-inner a.to-top:hover {
  color: #fff;
  border-color: #3a404a;
}

/* Animations: reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.delay-1 {
  transition-delay: 0.12s;
}
.reveal.delay-2 {
  transition-delay: 0.22s;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Collaboration section */
.collab {
  text-align: center;
  margin-bottom: 1rem;
}
.collab p {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--light);
}
.collab-logo {
  max-width: 120px;
  height: auto;
  display: inline-block;
}

/* ================================ PRICING SECTION ================================ */
#pricing .btn {
  display: block;
  margin: 20px auto;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: min(1100px, 92%);
  margin-inline: auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid #e9ecf2;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(17, 17, 19, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(17, 17, 19, 0.1);
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--black);
}
.price {
  font-size: 1rem;
  font-weight: 900;
  margin: 8px 0 18px;
  color: var(--orange);
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
}
.payment-methods span {
  background: #fff3e8;
  border: 1px solid #ffe3cc;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 999px;
}
.old-price {
  text-decoration: line-through;
  color: #c9cdd4;
  font-weight: 600;
  margin-right: 8px;
  font-size: 1.45rem;
}
.new-price {
  font-size: 2.05rem;
}

/* ================================ ENROLL CALL TO ACTION ================================ */
.after-line {
  color: #f5f6f8;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  width: 100%;
  position: relative;
}
.after-line {
  color: #f5f6f8;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  font-size: 1.6rem;
  overflow: hidden;
  position: relative;
  animation: smoothSlide 18s ease-in-out infinite;
}
.after-line span {
  color: #ffb08a;
}
@keyframes smoothSlide {
  0%,
  25% {
    transform: translateX(0);
    opacity: 1;
  }
  40%,
  50% {
    transform: translateX(-120%);
    opacity: 0;
  }
  65% {
    transform: translateX(120%);
    opacity: 0;
  }
  80%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.after-line span {
  display: inline-block;
  padding-left: 100%;
  animation: slideLoop 10s linear infinite;
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.enroll-cta {
  text-align: center;
  margin-top: 32px;
}
.enroll-cta p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
}
.enroll-btn {
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.enroll-btn:hover {
  background: var(--orange-600);
}

/* ================================ ENROLLMENT POPUP MODAL ================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-content {
  background: var(--card);
  padding: 30px;
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
}
.modal-content label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--black);
}
.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #e2e6eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}
.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.15);
}
.modal-content button {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-content button:hover {
  background: var(--orange-600);
}
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #8a8f98;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.close-btn:hover {
  background: #f0f0f0;
  color: var(--black);
}
.success-message {
  background: #e8f7ef;
  color: #0d6832;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
  border: 1px solid #b8e6cb;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================ PAYMENT SECTIONS ================================ */
#paystackSection,
#manualPaymentSection {
  margin-top: 16px;
  padding: 16px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
#paystackSection p,
#manualPaymentSection p {
  margin-bottom: 16px;
  text-align: center;
}
#submitManual {
  background: #6c757d;
}
#submitManual:hover {
  background: #5a6268;
}

/* ================================ RESPONSIVE DESIGN ================================ */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 20px;
    margin: 10px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .collab {
    margin-bottom: 1rem;
  }
}

/* ================================ EXTRA COST OPTIONS ================================ */
.extra-option {
  margin: 16px 0;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--black);
}
.checkbox-label input[type="checkbox"] {
  display: none;
}
.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--orange);
  border-color: var(--orange);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Payment Summary */
.payment-summary {
  background: #f8f9fa;
  padding: 16px;
  border-radius: 10px;
  margin: 16px 0;
  border: 1px solid #e9ecef;
}
.payment-summary h4 {
  margin: 0 0 12px 0;
  color: var(--black);
  font-weight: 700;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #49505a;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #e9ecef;
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
}

/* Payment Sections */
#paystackSection,
#manualPaymentSection {
  margin-top: 16px;
  padding: 16px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}
#paystackSection p,
#manualPaymentSection p {
  margin-bottom: 16px;
  text-align: center;
}
#submitManual {
  background: #6c757d;
}
#submitManual:hover {
  background: #5a6268;
}

/* Currency formatting */
.currency {
  font-weight: 700;
  color: var(--orange);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .extra-option {
    padding: 12px;
  }
  .payment-summary {
    padding: 12px;
  }
  .summary-total {
    font-size: 1rem;
  }
}
.weight-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weight-input-group input,
.weight-input-group select {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
}
.weight-input-group select {
  flex: 0.5;
  max-width: 80px;
  cursor: pointer;
  font-weight: 500;
}

/* Testimonials Section - Background Only */
#testimonials {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 80px 20px;
}

/* Subtle pattern overlay */
#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(0, 0, 0, 0.02) 35px,
    rgba(0, 0, 0, 0.02) 70px
  );
  pointer-events: none;
}

/* Testimonials Title */
#testimonials .section-title {
  position: relative;
  margin-bottom: 56px;
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

#testimonials .section-title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #000000;
  border-radius: 3px;
}
