
/* Fonts & core variables */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Inter", "Rubik", sans-serif;
  --background-color: #ffffff;
  --default-color: #2a2541;
  --heading-color: #1b1535;
  --accent-color: #6155F5;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --color-bg-primary: rgb(247, 247, 247);
}

/* light background modifier used on footer */
.light-background {
  --background-color: #edebf3;
  --surface-color: #ffffff;
}

/* Page base */
body {
  margin: 0;
  padding: 0;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
}

.fs-serif {
  font-family: 'DM Serif Display', serif!important;
  letter-spacing: -0.02em;
}

/* Header / logo */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0 0 0;
  transition: all 0.3s;
  z-index: 997;
}
.header .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  /* background-color: color-mix(in srgb, var(--accent-color) 90%, black 15%); */
  border-radius: 8px;
}
.header .logo img {
  max-height: 40px;
  display: block;
}
.sitename {
  font-size: 26px;
  font-weight: 400;
  color: var(--heading-color);
  font-weight: 700;
}

/* Hero */
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0 0;
  background: var(--background-color);
  text-align: center;
  background: rgb(247,247,247);
}
.hero-inner {
  width: 100%;
  margin: 0 auto;
  overflow: clip;
}

/* Two-column hero layout */
.hero-text-content {
  margin: 0;
  margin-bottom: 0;
}
#hero h1,
.hero-title {
  font-family: "Inter", var(--heading-font), sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
#hero p,
.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin-bottom: 25px;
}
.hero-description {
  max-width: 650px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Hero actions (buttons) */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-actions .btn, .landing-section .btn {
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 12px;
  border-radius: 15px;
  transition: all 0.8s ease;
  /* height: 40px; */
}
.hero-actions .btn:hover, .landing-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Hero image area */
.hero-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrapper {
  max-width: 750px;
  width: 100%;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* custom-packages (simple content styles used by index.html) */
.custom-packages .content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.custom-packages .content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1rem;
}
.custom-packages .image-wrapper img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: block;
}

.landing-section .container {
    /* max-width: 960px; */
    max-width: 1200px;
    margin: auto;
}

/* Waitlist form (hero) */
.waitlist-form {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  /* margin-top: 25px; */
  background: transparent;
  border-radius: 20px;
  box-shadow: none;
  padding: 6px;
  max-width: 420px;
  font-size: 0.95rem;
}
.waitlist-form .email-input {
  width: 0;           /* collapse input */
  opacity: 0;         /* hide visually */
  padding: 0;         /* remove internal spacing */
  margin-right: 0;    /* no gap initially */
  pointer-events: none; /* prevent accidental focus */
  transition: all 0.8s ease; /* smooth expansion */
  box-sizing: border-box;
}
.waitlist-form.waitlist-input-expanded .email-input {
  width: 100%;       /* or desired width */
  opacity: 1;
  padding: 6px 12px; /* restore padding */
  margin-right: 10px; /* add gap to button */
  pointer-events: auto;
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  /* font-size: 15px; */
  color: #333;
  min-width: 0;
}
.waitlist-form.waitlist-input-expanded {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.waitlist-form .email-input::placeholder {
  color: #aaa;
}
a.submit-button {
  border: none;
  border-radius: 15px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.8s ease, background 0.8s;
}

a.submit-button:hover {
  transform: translateY(-1px);
}

.btn-secondary-cta {
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  background: transparent;
  color: var(--accent-color);
  padding: 4px 10px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.8s ease, background 0.8s, color 0.8s;
  font-size: 0.95rem;
}

.btn-secondary-cta:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

/* Footer */
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  padding-top: 20px;
}
.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}
.footer .copyright p {
  margin-bottom: 0;
}

/* Scroll top button (present in index.html) */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Preloader (present in index.html) */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: rotate-preloader 1s linear infinite;
}
@keyframes rotate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive: two-column hero on large screens */
@media (min-width: 992px) {
  #hero {
    text-align: left;
    align-items: flex-start;
    padding-top: 100px;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-text-content { /* Removed flex: 1 and max-width: none to allow Bootstrap columns to control width */
    margin: 0;
  }
  .hero-image-content { /* Removed flex: 1 to allow Bootstrap columns to control width */
    margin: 0;
  }
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-accent-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline-accent {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.super-wrap:after {
    content: "";
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 50%, var(--color-bg-primary) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
/* .hero-module-image-wrapper:after {
    content: "";
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 50%, var(--color-bg-primary) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
} */

.section.custom-packages, .section.cta {
    margin-top: 100px
}

.btn-secondary-cta:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.section.custom-packages .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section.custom-packages .section-text {
  font-size: 1.125rem;
  line-height: 1.75;
  opacity: 0.85;
}

.pricing-section {
  display: flex;
  justify-content: center;
  /* background: var(--color-bg-primary); */
  padding: 4rem 1rem;
  background-color: #fafaf7;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1170px;
  justify-content: center;
}

.plan-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 350px;
  padding: 2rem;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-featured {
  background: #5243c2;
  color: #fff;
  box-shadow: 0 30px 25px rgba(82, 67, 194, 0.3);
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: #4031b3;
  color: #19fabe;
  font-size: 10px;
  font-weight: 900;
  padding: 0.4rem 0.8rem;
  border-radius: 13px;
  letter-spacing: 0.8px;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.amount {
  font-size: 2rem;
  font-weight: 900;
}

.period {
  font-size: 0.875rem;
  opacity: 0.7;
}

.plan-note {
  font-size: 0.875rem;
  opacity: 0.7;
}

.plan-desc {
  color: #848199;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
}

.plan-featured .plan-desc {
  color: #fff;
  opacity: 0.9;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.plan-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: inherit;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color, #19fabe);
  font-weight: bold;
}

.btn-filled,
.btn-outline {
  border-radius: 24px;
  font-weight: 900;
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.95rem;
  /* transition: 0.3s ease; */
}

.btn-filled {
  background: #19fabe;
  color: #5243c2;
  border: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #19fabe;
  color: #19fabe;
}

.btn-filled:hover {
  opacity: 0.9;
}

.btn-outline:hover {
  background: #19fabe;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}

.billing-toggle {
  position: relative;
  width: 220px;
  height: 44px;
  background: white;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 25px; */
  cursor: pointer;
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.83px;
  color: #848199;
  user-select: none;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 44px;
  background: #5243C2;
  box-shadow: 0 5px 7px rgba(82, 67, 194, 0.23);
  border-radius: 22px;
  transition: all 0.3s ease;
  z-index: 1;
}

.toggle-option {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  transition: color 0.3s ease;
}

.toggle-option.active {
  color: #19FABE;
}

.toggle-option:not(.active) {
  color: #848199;
}

.how-it-works-section {
  background-color: #fafaf7;
  padding: 52px 26px;
}

.how-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-step-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8e5f8;
  color: #6155F5;
  font-size: 11px;
  font-weight: 600;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1b1535;
  margin-bottom: 4px;
}

.step-body {
  font-size: 1rem;
  color: #6b6478;
  margin: 0;
}

.waitlist-input-expanded {
  width: 100%;       /* or whatever expanded style you want */
  transition: width 0.8s ease;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 620px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-section {
  background: white;
}

/* Accordion wrapper */
.faq-accordion {
  width: 100%;
}

/* Accordion item */
.faq-item {
  border: none;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 10px 3px rgba(0,0,0,0.05);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

/* Header button */
.faq-item .accordion-button {
  background: #fff;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  border-radius: 14px;
  box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
  /* background: color-mix(in srgb, var(--accent-color), transparent 92%); */
  color: var(--heading-color);
  box-shadow: none;
}

/* Remove default arrow icon, replace with subtle one */
.faq-item .accordion-button::after {
  filter: invert(30%) sepia(12%) saturate(200%) hue-rotate(210deg);
  transform: scale(0.9);
}

.faq-item .accordion-button:not(.collapsed)::after {
  filter: invert(40%) sepia(40%) saturate(450%) hue-rotate(245deg);
}

/* Body */
.faq-item .accordion-body {
  padding: 0 1.5rem 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 1rem;
  line-height: 1.6;
}

/* Reset Bootstrap's forced radius on first and last accordion items */
.accordion-item:first-of-type > .accordion-header .accordion-button,
.accordion-item:last-of-type > .accordion-header .accordion-button,
.accordion-item:first-of-type, .accordion-item:last-of-type {
  border-radius: 14px !important; /* matches your faq-item radius */
}

.foundslot-lead {
  font-size: 1rem;
}

#diagram-flow-image {
  max-height: 350px; 
  object-fit: contain; 
  border-radius:10px; 
  transform: rotate3d(1, 1, 1, 312deg) scale(1.45) translate(-28px, 10px);
}

@media (max-width: 768px) {
  #diagram-flow-image {
    transform: rotate3d(1, 1, 1, 312deg) scale(1.45) translate(-28px, 0px);
  }
}

.content-section {
    margin-bottom: 3rem;
}
.content-section h3 {
  margin-bottom: 2rem;
}

.nav-blog-link {
	color: #333;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s;
	font-family: "Kanit", sans-serif;
  font-size: 1.2rem;
}
.nav-blog-link:hover {
	color: #6155F5;
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--heading-color);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
}

.navmenu {
	position: relative;
	display: flex;
	align-items: center;
	gap: 60px;
	z-index: 10;
}
.navmenu .nav-item {
	position: relative;
	white-space: nowrap;
}
.navmenu .nav-link,
.navmenu .nav-toggle,
.navmenu .nav-blog-link {
	color: #333;
	font-weight: 600;
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.95rem;
	padding: 0;
	transition: color 0.25s ease;
}
.navmenu .nav-link:hover,
.navmenu .nav-toggle:hover,
.navmenu .nav-blog-link:hover {
	color: #6155f5;
}
.navmenu .nav-overlay {
	position: fixed;
	top: calc(100% + 20px);
	left: -30px;
  right: 30px;
	min-width: 280px;
	width: min(400px, calc(100vw - 32px));
	box-sizing: border-box;
	padding: 18px;
	background: #fff;
	border: 1px solid rgba(97, 85, 245, 0.08);
	border-radius: 18px;
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px) translateX(16px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	z-index: 20;
	/* overflow: hidden; */
}
.navmenu .nav-item:last-child .nav-overlay {
	left: auto;
	right: 16px;
	transform: translateY(12px);
}
.navmenu .nav-overlay.active {
	opacity: 1;
	visibility: visible;
	/* transform: translateY(0) translateX(16px); */
}
.navmenu .nav-item:last-child .nav-overlay.active {
	transform: translateY(0);
}
.navmenu .overlay-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 14px;
	max-height: calc(100vh - 180px);
	overflow-y: auto;
	justify-items: start;
}
.navmenu .overlay-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	color: #111;
	text-decoration: none;
	min-width: 0; /* Allows the card to shrink within its grid cell */
  max-width: 100%;
}
.navmenu .overlay-card:last-child {
	border-bottom: none;
}
.navmenu .overlay-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #6155f5;
	font-size: 1rem;
}
.navmenu .overlay-card span {
	display: block;
	font-weight: 400;
	font-size: 0.85rem;
	line-height: 1.3;
	color: #16162d;
	word-wrap: inherit;
	overflow-wrap: inherit;
	flex: 1; /* Takes up remaining space in the flex card */
	min-width: 0; /* Required for the text to wrap instead of overflowing */
  text-wrap: auto;
}

.navmenu .overlay-card p {
	margin: 0;
	color: #5f687d;
	font-size: 0.88rem;
	line-height: 1.6;
}
/* Testimonials section */
.testimonials-section {
  background-color: #ffffff;
}
.testimonial-card {
  background: #f7f7f4;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-stars {
  color: #d4a017;
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  color: #6b6478;
  margin: 0;
}
.testimonial-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  font-style: italic;
  margin-top: 24px;
  margin-bottom: 0;
}

.testimonial-carousel-viewport {
  overflow: hidden;
}

.testimonial-carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.testimonial-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d9d6ea;
  border: none;
  padding: 0;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.testimonial-dot:hover {
  background: #b5aeed;
}

.testimonial-dot.active {
  width: 22px;
  background: #6155f5;
}

.testimonial-dot.active:hover {
  background: #6155f5;
}

@media (min-width: 768px) {
  .testimonial-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    transform: none !important;
  }

  .testimonial-slide {
    flex: none;
  }

  .testimonial-carousel-dots {
    display: none;
  }
}

/* Features section */
.features-section {
  background-color: #fafaf7;
  padding: 52px 26px;
}

.feature-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.feature-hero-card {
  /* background-image: radial-gradient(48% 61% at 1% 2%, #3a2db4 0%, #6155f500 100%),
    radial-gradient(41% 53% at 94% 98%, #8275f5 0%, #6155f500 100%),
    radial-gradient(25% 36% at 16% 2%, #8275f5 0%, #6155f500 100%),
    radial-gradient(39% 50% at 48% 89%, #443ab5 9%, #6155f500 100%),
    radial-gradient(38% 50% at 81% 54%, #5d52e8 7%, #6155f500 100%),
    radial-gradient(34% 46% at 14% 74%, #6258e8 7%, #6155f500 100%),
    linear-gradient(140deg, #8b83f7 1%, #574bee 100%); */
  background-image: url(/assets/img/purple_gradient_mesh.gif);
  color: #fff;
  border-radius: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  background-size: calc(200% + 10px) 100%;
  background-repeat: no-repeat;
}

.feature-hero-card:nth-child(1) {
    background-position: left;
}
.feature-hero-card:nth-child(2) {
    background-position: right;
}


.feature-hero-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.feature-hero-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 5px;
}

.feature-hero-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}


.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.feature-mini-card {
  background: #fff;
  border: 0.5px solid #e7e5ef;
  border-radius: 12px;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.feature-mini-overlay {
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, #6155F5, #8a7ffc);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  transform: translateY(calc(100% + 1px));
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.feature-mini-card:hover .feature-mini-overlay,
.feature-mini-card.active .feature-mini-overlay {
  transform: translateY(0);
}

.feature-mini-overlay-text {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.feature-mini-icon {
  display: block;
  font-size: 18px;
  color: #6155F5;
  margin-bottom: 8px;
}

.feature-mini-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1b1535;
  margin-bottom: 6px;
}

.feature-mini-desc {
  font-size: 0.9rem;
  color: #6b6478;
  margin: 0;
}

@media (max-width: 767px) {
  .feature-hero-row {
    grid-template-columns: 1fr;
  }

  .feature-hero-card {
    padding: 20px;
    background-size: 100% calc(200% + 16px);
  }

  .feature-hero-card:nth-child(1) {
    background-position: top;
  }
  .feature-hero-card:nth-child(2) {
    background-position: bottom;
  }

  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Dashboard section */
.dashboard-section {
  background-color: #ffffff;
}

.dashboard-carousel-tabs {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  scrollbar-width: none;
  margin-bottom: 20px;
}

.dashboard-carousel-tabs::-webkit-scrollbar {
  display: none;
}

.dashboard-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e7e5ef;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b6478;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.dashboard-tab:hover {
  color: #1b1535;
}

.dashboard-tab.active {
  background: #6155f5;
  border-color: #6155f5;
  color: #fff;
}

.dashboard-carousel-viewport {
  overflow: hidden;
}

.dashboard-carousel-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}

.dashboard-slide-media {
  flex: 0 0 auto;
  min-width: 0;
}

.dashboard-slide-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 0.5px solid #e7e5ef;
}

.dashboard-slide-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1b1535;
  margin-bottom: 8px;
}

.dashboard-slide-text p {
  font-size: 1rem;
  color: #6b6478;
  line-height: 1.6;
  margin: 0;
}

.dashboard-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.dashboard-carousel-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e7e5ef;
  background: #fff;
  color: #1b1535;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.dashboard-carousel-arrow:hover {
  border-color: #6155f5;
  color: #6155f5;
}

.dashboard-carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d9d6ea;
  border: none;
  padding: 0;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.dashboard-dot:hover {
  background: #b5aeed;
}

.dashboard-dot.active {
  width: 22px;
  background: #6155f5;
}

.dashboard-dot.active:hover {
  background: #6155f5;
}

@media (min-width: 768px) {
  .dashboard-slide {
    flex-direction: row;
    align-items: center;
    padding: 24px 0;
    gap: 40px;
  }

  .dashboard-slide-media {
    flex: 0 0 72%;
    min-width: 0;
  }

  .dashboard-slide-text {
    flex: 1;
    min-width: 0;
  }
}

.navmenu .nav-item + .nav-item {
	margin-left: 0;
}
.navmenu .lang-toggle {
	font-size: 1.05rem;
	line-height: 1;
}
@media (min-width: 769px) {
	#lang-overlay {
		position: absolute !important;
		top: calc(100% + 14px) !important;
		left: auto !important;
		right: 0 !important;
		width: fit-content !important;
		min-width: 0 !important;
		max-width: none !important;
		padding: 8px 0 !important;
		transform: none !important;
	}
  .navmenu .lang-overlay-option {
    padding: 0 15px;
  }
}
.navmenu .lang-overlay-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 16px;
}
.navmenu .lang-overlay-option {
	font-weight: 500;
}
.navmenu .lang-overlay-option.active {
	color: #6155f5;
	font-weight: 700;
	pointer-events: none;
}
@media (max-width: 768px) {
	.mobile-nav-toggle {
		display: block;
		position: relative;
		z-index: 9999;
	}
	body.mobile-nav-active {
		overflow: hidden;
	}
	.navmenu {
		position: fixed;
		top: 85px;
		right: 15px;
		bottom: 15px;
		left: 15px;
		background: #fff;
		border-radius: 20px;
		padding: 30px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.1);
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease;
		overflow-y: auto;
		z-index: 9998;
	}
	body.mobile-nav-active .navmenu,
	.navmenu.mobile-nav-active {
		opacity: 1 !important;
		visibility: visible !important;
	}
	body.mobile-nav-active:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 9997;
	}
	.navmenu .nav-overlay {
	position: static;
	transform: none;
	display: none;
	opacity: 1;
	visibility: visible;
	width: 100%;
	box-sizing: border-box;
	max-width: none;
	padding: 10px 0;
	border: none;
	box-shadow: none;
	}
	.navmenu .nav-overlay.active {
		display: block;
	}
	.navmenu .nav-link, .navmenu .nav-toggle, .navmenu .nav-blog-link {
		font-size: 1.1rem;
	}
	.navmenu .overlay-grid {
		grid-template-columns: 1fr 1fr;
    gap: 8px;
	}
}

ul.foundslot-lead li {
  margin-bottom: 0.8rem;
}

/* Professional page specific styles */
#why-others-fail-section .bg-white ul li {
  font-size: 1.1rem;
  color: var(--default-color);
}

.pain-point-card {
  background-color: #fdf6f4; /* #fafaf7 */
  border: 0.5px solid #f0e4e0; /* #e7e5ef */
}

.pain-point-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.pain-point-title i {
    color: #980202;
}

.pain-point-text {
  font-size: 0.9rem;
}

.section-vertical-padding {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Why Foundslot tabs section */
.foundslot-eyebrow {
  display: block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Vertical entry points (profession links on the homepage) */
.profession-links-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 12px;
  scrollbar-width: none;
  padding-top: 4px;
  padding-bottom: 4px;
}

.profession-links-grid::-webkit-scrollbar {
  display: none;
}

.profession-link-card {
  flex: 0 0 150px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e7e5ef;
  border-radius: 12px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.profession-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.profession-link-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-foundslot-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.why-tab {
  background: #fff;
  color: #4b4659;
  border: 1px solid #e7e5ef;
  border-radius: 20px;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.why-tab.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  border-width: 1.5px;
}

.why-foundslot-panel {
  display: none;
}

.why-foundslot-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
  margin: 2rem 0;
}

.package-card .why-card-icon {
  font-size: 0.9em;
  color: var(--accent-color);
  margin-right: 7px;
}

.package-card .why-card-icon.mint {
  color: #19fabe;
}

/* Package mural (why-foundslot section) */
.package-mural {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
  margin: 2rem 0;
}

.package-card {
  background: #fff;
  border: 1px solid #e7e5ef;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.package-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.package-card-description {
  color: #6b6478;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.package-card-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
  min-width: 0;
}

.package-card-tags::-webkit-scrollbar {
  display: none;
}

.package-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #faf9fc;
  border: 1px solid #e7e5ef;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4b4659;
  white-space: nowrap;
}

.package-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
}

.package-tag--accept::before {
  background: #19fabe;
}

.package-tag--payment::before {
  background: #d4a017;
}

.package-tag--location::before {
  background: #e2574c;
}

.package-tag--form::before {
  background: var(--accent-color);
}

.package-tag--other::before {
  background: #9b96a8;
}

@media (max-width: 767px) {
  .package-mural {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .package-mural::-webkit-scrollbar {
    display: none;
  }

  .package-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .why-foundslot-panel.active {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    margin: 2rem 0;
  }

  .why-foundslot-panel.active::-webkit-scrollbar {
    display: none;
  }

  .why-foundslot-panel.active .package-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

/* Pull quote section */
.pull-quote-section {
  /* background-color: #f7f7f4; */
  padding: 64px 26px;
  text-align: center;
}

.pull-quote-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6b6478;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pull-quote-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background-color: #6b6478;
}

.pull-quote-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--heading-color);
  /* max-width: 850px; */
  margin: 0 auto 1.5rem;
}

.pull-quote-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
  margin: 0;
}

/* Closing section */
#success-vision .container {
  background: var(--accent-color);
  border-radius: 45px;
  padding: 4rem 2rem;
  color: var(--contrast-color);
}

#success-vision .foundslot-eyebrow,
#success-vision h2,
#success-vision .foundslot-lead {
  color: var(--contrast-color);
}

#success-vision .submit-button {
  background: var(--contrast-color);
  color: var(--accent-color);
}

#success-vision .submit-button:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}
