
    /* -----------------------------------
      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;
    }

    :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: 780px;
      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-scheduling {
      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.15;
      margin-bottom: 14px;
    }

    .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, .08);
        box-shadow: var(--shadow-soft);
        background: #fff;
    }

    .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 svg {
      width: 26px;
      height: 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 {
      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
    ----------------------------------- */
    #scheduling-problem {
      padding: 20px 0 90px;
    }

    #scheduling-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;
    }

    .problem-quote .quote-mark , #scheduling-testimonial .quote-mark {
      font-size: 3.4rem;
      line-height: 1;
      opacity: 0.35;
      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;
    }

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

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

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

    #scheduling-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 .18s ease, border-color .18s ease;
    }

    .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 {
      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);
    }

    /* -----------------------------------
      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
    ----------------------------------- */
    #scheduling-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, .45), rgba(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 .15s ease, border-color .15s ease, background .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, .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;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      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 {
      cursor: pointer;
      font-weight: 600;
      color: var(--text-dark);
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .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 .15s ease, background .15s ease, border-color .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, .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 40px;
      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 .15s ease, border-color .15s ease, background .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, .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; }
.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; }
