/* -----------------------------------
      GLOBAL RESET + BASE STYLES
    ----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lexend Deca", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  padding-top: 0;
}

h2 {
 text-align: center;
}

:root {
  --blue: #3437c1;
  --teal: #2c9cc3;
  --accent: #3bb7a6;

  --light-bg: #f5f6fb;
  --border: #e5e7eb;
  --text-dark: #111827;
  --text-medium: #4b5563;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 10px;

  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.15);

  --soft-card: #f0f7ff;
  --soft-card-border: #d9e9ff;

  --mint-card: #ecfbf7;
  --mint-border: #c9f3ea;
}

.section-inner,
.hero-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 999;
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: var(--text-dark);
}
h6 {
  text-align: center;
}

p {
  /*color: var(--text-medium);*/
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 700;
  text-align: center;
}

.section-intro {
  text-align: center;
  max-width: 832px;
  margin: 8px auto 40px;
  color: var(--text-medium);
}

.accent-red {
  color: #c97b7bff;
}

.accent-green {
  color: #539c56ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.btn-secondary:hover {
  background: var(--blue);
  color: #fff;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* -----------------------------------
      HERO
    ----------------------------------- */
#hero {
  padding: 80px 0 45px;
  background-color: #fff;
  background-image:

        /* bottom fade to white */ linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 65%,
      #fff 100%
    ),
    /* your radials underneath */
      radial-gradient(circle at 30% 50%, rgb(204 240 255), transparent 70%),
    radial-gradient(circle at 70% 100%, rgb(196 208 255), transparent 70%);

  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 14px;
  /* margin-top: 5px; */
  padding: 0 20px 10px 0;
}

.hero-copy p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.hero-definition {
  font-size: 0.98rem;
  color: var(--text-medium);
  margin-top: -6px;
  margin-bottom: 18px;
  max-width: 56ch;
}

.hero-ctas a {
  margin-right: 10px;
}

.hero-visual {
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
  background: transparent;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* -----------------------------------
      TOP FEATURE TRIO (icons)
    ----------------------------------- */
#scheduling-highlights {
  padding: 30px 0 80px;
}

.feature-trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.feature-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: left;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: #f1f5ff;
  border: 1px solid #e5edff;
}

.feature-icon i {
  width: 26px;
  height: 26px;
  font-size: 26px;
}

.feature-icon svg path {
  stroke: var(--blue);
}

.feature-icon svg path:nth-child(2) {
  stroke: var(--teal);
}

.feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* -----------------------------------
      SIMPLE / EFFICIENT (from old page)
    ----------------------------------- */
#simple-scheduling, .section-benefits {
  padding: 0 0 80px;
}

.simple-card {
  background: linear-gradient(135deg, #f3f7ff, #eefcff);
  border: 1px solid #dbe6ff;
  border-radius: 28px;
  padding: 28px;
}

.simple-card h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  text-align: left;
}

.simple-card p {
  max-width: 92ch;
}

.simple-card .checklist {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.simple-card .checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dark);
  font-size: 14px;
}

.simple-card .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

/* -----------------------------------
      PROBLEM
    ----------------------------------- */
.problem {
  padding: 20px 0 90px;
}

.problem h2 {
  font-size: 1.9rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.problem-layout {
  background: linear-gradient(135deg, #3c41d6, #2c9cc3);
  border-radius: 32px;
  padding: 36px 40px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 1fr;
  color: #fff;
  background-image: url(/images/kalium/Banner.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.quote-mark {
  font-size: 3.4rem;
  line-height: 1;
  opacity: 0.7;
  margin-bottom: 6px;
  color: #fff;
}

.problem-quote .quote-text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #fff;
}

.quote-author {
  font-size: 0.9rem;
  opacity: 0.9;
  color: #fff;
}

.problem-points ul {
  list-style: none;
  padding: 0;
}

.problem-points li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .15);
    line-height: 1.7;
}

.problem-points ul strong {
  color: #fff;
}

.problem-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: #fff;
  left: 8px;
  top: -8px;
}

/* -----------------------------------
      SOLUTION
    ----------------------------------- */
.solution {
  padding: 90px 0 60px;
  background: #fff;
}

.solution h2 {
  font-size: 2rem;
  text-align: center;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.solution-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #eef2ff;
  transition: transform 0.18s ease, border-color 0.18s ease;
  width: 350px;
}

.solution-card:hover {
  transform: translateY(-3px);
  border-color: #dbe6ff;
}

.solution-image {
  background: radial-gradient(circle at top, #e5f6ff, #f5f6fb);
  padding: 14px 14px 0;
}

.solution-card img {
  width: 100%;
  border-radius: 18px 18px 0 0;
  display: block;
}

.solution-card h3 {
  font-size: 1.15rem;
  margin: 18px 20px 6px;
}

.solution-image ul {
  margin-left: 34px;
}

.solution-card p, .solution-card ul {
  margin: 0 20px 18px;
  font-size: 0.96rem;
}

/* Advanced tools grid (your “B density”) */
.solution-advanced {
  margin-top: 46px;
}

.solution-subheading {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.tool-card {
  background: var(--soft-card);
  border: 1px solid var(--soft-card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: none;
}

.tool-card h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.tool-card p {
  font-size: 0.93rem;
  line-height: 1.45;
}

/* -----------------------------------
      MORE FEATURES (from old page, dedicated SEO block)
    ----------------------------------- */
#more-features {
  padding: 70px 0 90px;
  background: var(--light-bg);
}

#more-features h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.more-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.more-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.more-card p {
  font-size: 0.95rem;
}

/* -----------------------------------
      HOW IT WORKS (from old page, SEO booster)
    ----------------------------------- */
#how-it-works {
  padding: 90px 0;
  background: #fff;
}

#how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.how-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}

.how-steps {
  margin-top: 22px;
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.how-steps li {
  background: var(--mint-card);
  border: 1px solid var(--mint-border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text-dark);
}

.how-steps strong {
  color: var(--text-dark);
  font-size: 16px;
}

/* -----------------------------------
      WHY CHOOSE
    ----------------------------------- */
#why-choose-scheduling {
  padding: 70px 0 90px;
  background: #fff;
}

#why-choose-scheduling h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.why-card {
  background: #ab7cff33;
  border-radius: var(--radius-xl);
  padding: 24px 24px 20px;
  border: 1px solid var(--border);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.why-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text-medium);
}

.why-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

/* -----------------------------------
      MOBILE + EVENTS
    ----------------------------------- */
#mobile-calendar,
#event-scheduling {
  padding: 90px 0;
}

.mobile-split,
.event-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.event-split {
  grid-template-columns: 0.85fr 1.15fr;
}

.mobile-visual img,
.event-visual img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  display: block;
}

.mobile-visual img {
  box-shadow: none;
}

.checklist {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--text-medium);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

/* -----------------------------------
      TESTIMONIAL
    ----------------------------------- */
.feature-testimonial {
  padding: 20px 0 80px;
}

.testimonial-card {
  margin: 0;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  height: clamp(360px, 34vw, 520px);
}

.testimonial-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(55%);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  padding: clamp(18px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2));
  color: #fff;
}

.testimonial-text {
  max-width: 720px;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  margin-bottom: 12px;
  color: #fff;
}

.testimonial-author {
  max-width: 720px;
  font-size: 0.95rem;
  opacity: 0.9;
  color: #fff;
}

/* -----------------------------------
  platform bridge (more than scheduling)
----------------------------------- */
.platform-bridge {
  padding: 90px 0 60px;
  background: var(--light-bg);
}

.platform-bridge__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.platform-bridge__title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px;
}

.platform-bridge__intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 28px;
  color: var(--text-medium);
}

.platform-bridge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-bridge__card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 18px 16px;
  transition: transform 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
}

.platform-bridge__card:hover {
  transform: translateY(-2px);
  border-color: #dbe6ff;
  background: #fbfcff;
}

.platform-bridge__card:focus-visible {
  outline: 3px solid rgba(52, 55, 193, 0.35);
  outline-offset: 2px;
}

.platform-bridge__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f1f5ff;
  border: 1px solid #e5edff;
  margin-bottom: 12px;
}

.platform-bridge__icon svg {
  width: 22px;
  height: 22px;
}

.platform-bridge__icon svg path {
  stroke: var(--blue);
}

.platform-bridge__name {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.platform-bridge__desc {
  margin: 0 0 10px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 44px;
}

.platform-bridge__cta {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

.platform-bridge__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* responsive */
@media (max-width: 1024px) {
  .platform-bridge__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .platform-bridge {
    padding: 70px 0 40px;
  }

  .platform-bridge__title {
    font-size: 1.6rem;
  }
}

/* -----------------------------------
      FAQ
    ----------------------------------- */
#scheduling-faqs {
  padding: 90px 0;
  background: var(--light-bg);
}

#scheduling-faqs h2 {
  text-align: center;
  margin-bottom: 6px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  font-weight: 600;
  color: var(--text-dark);
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
  color: var(--text-medium);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 8px;
  font-size: 0.95rem;
}

/* -----------------------------------
      OTHER FEATURES
    ----------------------------------- */
.other-features {
  padding: 54px 0 20px;
}

.other-features__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

.other-features__title {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 18px;
  color: var(--blue);
}

.other-features__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.other-features__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #f5f6fb;
  border: 1px solid #e5e7eb;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.other-features__link:hover {
  transform: translateY(-1px);
  background: #eef4ff;
  border-color: #dbe6ff;
}

.other-features__link:focus-visible {
  outline: 3px solid rgba(52, 55, 193, 0.35);
  outline-offset: 2px;
}

.other-features__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  flex: 0 0 10px;
}

.other-features__text {
  font-weight: 600;
  color: var(--text-dark);
}

/* -----------------------------------
  feature links (other features cards)
----------------------------------- */
.feature-links {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-links__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.feature-links__title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 10px;
}

.feature-links__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--text-medium);
}

.feature-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-links__card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 18px 16px;
  transition: transform 0.15s ease, border-color 0.15s ease,
    background 0.15s ease;
}

.feature-links__card:hover {
  transform: translateY(-2px);
  border-color: #dbe6ff;
  background: #fbfcff;
}

.feature-links__card:focus-visible {
  outline: 3px solid rgba(52, 55, 193, 0.35);
  outline-offset: 2px;
}

.feature-links__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f1f5ff;
  border: 1px solid #e5edff;
  margin-bottom: 12px;
}

.feature-links__icon svg {
  width: 22px;
  height: 22px;
}

.feature-links__icon svg path {
  stroke: var(--blue);
}

.feature-links__name {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--text-dark);
}

.feature-links__desc {
  margin: 0 0 10px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 44px;
}

.feature-links__cta {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

/* responsive */
@media (max-width: 1024px) {
  .feature-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-links {
    padding: 60px 0 30px;
  }

  .feature-links__title {
    font-size: 1.6rem;
  }

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

/* -----------------------------------
      RESPONSIVE
    ----------------------------------- */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .mobile-split,
  .event-split {
    grid-template-columns: 1fr;
  }

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

  .dual-cta__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #hero-scheduling {
    padding: 60px 0 40px;
  }

  .hero-copy h1 {
    font-size: 2.05rem;
  }

  #scheduling-problem h2,
  #scheduling-solution h2 {
    font-size: 1.65rem;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}
.breadcrumbs {
  padding: 10px 0 0;
  display: none;
}

.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.breadcrumbs__list li::after {
  content: "›";
  margin-left: 8px;
  color: #9ca3af;
}
.breadcrumbs__list li:last-child::after {
  content: "";
}
.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs-hidden {
  display: none;
}

.section-intro--top-gap {
  margin-top: 18px;
}

.solution-quote-card {
  margin: 18px 0 28px;
}

.solution-quote-card__inner {
  padding: 18px;
  border: 1px solid rgba(52, 55, 193, 0.12);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(52, 55, 193, 0.06), rgba(44, 156, 195, 0.05));
}

.solution-quote-card__text {
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.7;
}

.solution-quote-card__mark {
  font-size: 18px;
  font-weight: 800;
}

.solution-quote-card__meta {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 13px;
}

.features-overview-page .feat-page {
  padding: 40px 0 70px;
}

.features-overview-page .kicker {
  margin: 0 0 10px;
  color: #3658ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.features-overview-page .hero {
  padding: 100px 0 62px;
  border-bottom: 1px solid #eef1fb;
  background: #fff;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0) 65%, #fff 100%),
    radial-gradient(circle at 30% 50%, rgb(204 240 255), transparent 70%),
    radial-gradient(circle at 70% 100%, rgb(196 208 255), transparent 70%);
  background-repeat: no-repeat;
}

.features-overview-page .hero h1 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.features-overview-page .hero p.lead {
  max-width: 860px;
  margin: 0 0 22px;
  color: #475569;
  font-size: 18px;
  line-height: 1.6;
}

.features-overview-page .hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.features-overview-page .btn-primaryish,
.features-overview-page .btn-ghostish {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.features-overview-page .btn-primaryish {
  background: #3658ff;
  color: #fff;
  border: 1px solid rgba(54, 88, 255, 0.25);
}

.features-overview-page .btn-ghostish {
  background: #fff;
  color: #0f172a;
  border: 1px solid rgba(141, 157, 234, 0.55);
}

.features-overview-page .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.features-overview-page .pill {
  padding: 7px 10px;
  border: 1px solid #e6ebff;
  border-radius: 999px;
  background: #f3f6ff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.features-overview-page .video-wrap {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid #e8ecff;
  border-radius: 18px;
  background: #fff;
}

.features-overview-page .video-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.features-overview-page .video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: #0b1220;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.features-overview-page .video-frame iframe,
.features-overview-page .video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.features-overview-page .section {
  padding: 56px 0;
}

.features-overview-page .section h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.features-overview-page .section .subhead {
  max-width: 900px;
  margin: 0 0 26px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.features-overview-page .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.features-overview-page .card {
  min-height: 160px;
  padding: 18px;
  border: 1px solid #d9e9ff;
  border-radius: 18px;
  background: #f0f7ff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.features-overview-page .card h3 {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 900;
}

.features-overview-page .card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.features-overview-page .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e7ecff;
  border-radius: 12px;
  background: #fff;
  color: #3658ff;
  font-size: 16px;
}

.features-overview-page .card a.learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #3658ff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.features-overview-page .card a.learn:hover {
  text-decoration: underline;
}

.features-overview-page .portal {
  border-top: 1px solid #eef1fb;
  border-bottom: 1px solid #eef1fb;
  background: #fff;
}

.features-overview-page .portal-slab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid #e8ecff;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(52, 55, 193, 0.1), rgba(44, 156, 195, 0.08));
}

.features-overview-page .portal-slab h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
}

.features-overview-page .portal-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #334155;
  line-height: 1.9;
  font-weight: 600;
}

.features-overview-page .portal-shot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 16px;
  border: 1px solid rgba(231, 236, 255, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  color: #64748b;
  text-align: center;
}

.features-overview-page .portal-shot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.features-overview-page .bottom-cta {
  padding: 0 0 70px;
}

.features-overview-page .cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(141, 157, 234, 0.25);
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
}

.features-overview-page .cta-box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.features-overview-page .cta-box p {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.5;
}

.features-overview-page .kicker-tight {
  margin-bottom: 6px;
}

.features-overview-page .video-title {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.features-overview-page .video-copy,
.features-overview-page .portal-copy {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.features-overview-page .video-note {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 13px;
}

.features-overview-page .portal-actions {
  margin-top: 14px;
}

.features-overview-page .portal-icon {
  display: inline-flex;
  margin: 0 auto 10px;
}

.features-overview-page .portal-shot-title {
  display: block;
  color: #0f172a;
  font-size: 14px;
}

.features-overview-page .portal-shot-copy {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.features-overview-page .cta-copy {
  max-width: 820px;
}

.features-overview-page .cta-actions {
  margin: 0;
}

@media (max-width: 991px) {
  .features-overview-page .video-inner,
  .features-overview-page .portal-slab,
  .features-overview-page .grid-3 {
    grid-template-columns: 1fr;
  }
}
