    :root {
      --blue: #0f172a;
      --blue-dark: #333438;
      --green: #22C55E;
      --green-dark: #16A34A;
      --bg: #FFFFFF;
      --alt-bg: #F8FAFC;
      --navy: #0F172A;
      --text-muted: #475569;
      --border: #E2E8F0;
      --shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body,
    button,
    input,
    textarea {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      color: var(--navy);
      line-height: 1.75;
    }

    body {
      background: var(--bg);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      margin: 0;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }

    h1 {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.9rem, 2.6vw, 2.7rem);
    }

    h3 {
      font-size: 1.05rem;
    }

    p {
      color: var(--text-muted);
      font-size: 1rem;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      border: none;
      background: none;
      font: inherit;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 28px);
    }

    section {
      position: relative;
    }

    .section {
      padding: 28px 0 24px;
    }

    .section-alt {
      background: var(--alt-bg);
    }

    .section-head {
      margin: 0 auto 28px;
      text-align: center;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin-bottom: 16px;
    }

    .section-head p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.8;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease, box-shadow .3s ease, background .3s ease, transform .3s ease;
    }

    header.scrolled {
      border-bottom: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
      background: rgba(255, 255, 255, 0.98);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 20px 50px;
    }

    /* ── Hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: 1.5px solid rgba(37, 99, 235, 0.18);
      border-radius: 9px;
      cursor: pointer;
      padding: 8px;
      flex-shrink: 0;
      transition: background 0.15s;
    }

    .hamburger:hover {
      background: rgba(37, 99, 235, 0.06);
    }

    .hamburger span {
      display: block;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .hamburger.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ── Mobile Nav Drawer ── */
    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 10px;
      padding: 16px 20px 20px;
      border-top: 1px solid rgba(226, 232, 240, 0.8);
      background: rgba(255, 255, 255, 0.98);
    }

    .mobile-nav.is-open {
      display: flex;
    }

    .mobile-nav .btn {
      width: 100%;
      justify-content: center;
      text-align: center;
    }

    @media (max-width: 640px) {
      nav {
        padding: 14px 20px;
        justify-content: space-between;
      }

      .nav-actions {
        display: none !important;
      }

      .hamburger {
        display: flex;
      }
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 0.95rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--navy);
      transition: transform .25s ease;
    }

    .logo:hover {
      transform: translateY(-2px);
    }

    .logo img {
      height: 54px;
      filter: drop-shadow(0 8px 20px rgba(37, 99, 235, 0.16));
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      padding: 6px;
      background: rgba(37, 99, 235, 0.05);
      border: 1px solid rgba(37, 99, 235, 0.08);
      border-radius: 999px;
    }

    .nav-link {
      position: relative;
      padding: 8px 12px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--navy);
      opacity: 0.9;
      transition: color .25s ease, transform .25s ease;
      border-radius: 999px;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 12px;
      bottom: 6px;
      width: calc(100% - 24px);
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .25s ease;
    }

    .nav-link:hover {
      color: var(--blue);
      opacity: 1;
      transform: translateY(-1px);
    }

    .nav-link:hover::after {
      transform: scaleX(1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 13px 20px;
      border-radius: 999px;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, filter .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      filter: brightness(1.02);
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
      /* box-shadow: 0 20px 60px -15px rgb(15 23 42 / 73%); */
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
      /* box-shadow: 0 20px 60px -15px rgb(15 23 42 / 73%) */
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-secondary {
      background: rgba(37, 99, 235, 0.08);
      color: var(--blue);
      border: 1px solid rgba(37, 99, 235, 0.18);
    }

    .btn-secondary:hover {
      background: rgba(37, 99, 235, 0.14);
    }

    .icon-cal {
      width: 15px;
      height: 15px;
      display: inline-block;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(3px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 500;
    }

    .modal-overlay.active {
      display: flex;
    }

    .wlist-modal {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
      width: 100%;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
    }

    .wlist-header {
      padding: 24px 24px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .wlist-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0F172A;
      line-height: 1.3;
      margin: 0;
    }

    .wlist-subtitle {
      font-size: 0.78rem;
      color: #64748B;
      margin: 4px 0 0;
      line-height: 1.5;
    }

    .wlist-close {
      border-radius: 8px;
      border: 1px solid #E2E8F0;
      background: #fff;
      display: grid;
      width: 36px;
      height: 36px;
      place-items: center;
      color: #64748B;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      font-size: 1.2rem;
      line-height: 1;
      padding: 0;
    }

    .wlist-close:hover {
      background: #FEF2F2;
      color: #EF4444;
      border-color: #FECACA;
    }

    .wlist-content {
      padding: 20px 24px 24px;
    }

    .wlist-form {
      display: grid;
      gap: 14px;
    }

    .form-row-half {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    @media (max-width: 480px) {
      .form-row-half {
        grid-template-columns: 1fr;
      }
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-group label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #0F172A;
    }

    .form-group label .req {
      color: #EF4444;
    }

    .form-group input {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      color: #0F172A;
      background: #F8FAFC;
      border: 1.5px solid #E2E8F0;
      border-radius: 9px;
      padding: 9px 12px;
      outline: none;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .form-group input:focus {
      border-color: #2563EB;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
    }

    .field-error {
      font-size: 0.7rem;
      color: #EF4444;
      min-height: 14px;
      display: block;
    }

    .wlist-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      margin-top: 6px;
    }

    .btn-secondary.wlist-cancel {
      padding: 10px 20px;
      border-radius: 9px;
      border: 1.5px solid #E2E8F0;
      background: #fff;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #64748B;
      cursor: pointer;
      transition: background 0.15s;
      box-shadow: none;
      transform: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .btn-secondary.wlist-cancel:hover {
      background: #F8FAFC;
      color: #0F172A;
      transform: none;
      filter: none;
      border-color: #E2E8F0;
    }

    .wlist-actions .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 9px;
      border: none;
      background: #2563EB;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
      transform: none;
    }

    .wlist-actions .btn-primary::before {
      content: "";
      display: inline-block;
      width: 14px;
      height: 14px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
    }

    .wlist-actions .btn-primary:hover {
      background: #1D4ED8;
      transform: translateY(-1px);
      filter: none;
    }

    .btn-primary.loading {
      cursor: wait;
      opacity: 0.9;
    }

    .wlist-status {
      display: none;
      margin-top: 16px;
      border-radius: 9px;
      padding: 10px 12px;
      font-size: 0.8rem;
      line-height: 1.5;
      font-weight: 500;
    }

    .wlist-status.error {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: #FEF2F2;
      border: 1px solid #FECACA;
      color: #B91C1C;
    }

    .wlist-status.success {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: #F0FDF4;
      border: 1px solid #BBF7D0;
      color: #15803D;
    }

    /* Success state — replaces form content */
    .wlist-success-state {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 12px 0 8px;
      gap: 14px;
    }

    .wlist-success-state.is-visible {
      display: flex;
    }

    .wlist-success-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: 50%;
      background: #DCFCE7;
      border: 1.5px solid #86EFAC;
      display: grid;
      place-items: center;
      color: #16A34A;
    }

    .wlist-success-icon svg {
      width: 18px !important;
      height: 18px !important;
    }

    .wlist-success-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0F172A;
      margin: 0;
    }

    .wlist-success-msg {
      font-size: 0.875rem;
      color: #64748B;
      line-height: 1.65;
      margin: 0;
    }

    .wlist-success-detail {
      display: flex;
      flex-direction: column;
      gap: 6px;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 10px;
      padding: 14px 18px;
      width: 100%;
      text-align: left;
    }

    .wlist-success-detail span {
      font-size: 0.8rem;
      color: #64748B;
    }

    .wlist-success-detail strong {
      font-size: 0.875rem;
      color: #0F172A;
    }

    #successCloseBtn.btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 9px;
      border: none;
      background: #2563EB;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
      transform: none;
    }

    #successCloseBtn.btn-primary:hover {
      background: #1D4ED8;
      transform: translateY(-1px);
      filter: none;
    }

    @media (max-width: 520px) {
      .wlist-modal {
        border-radius: 20px;
      }

      .wlist-header,
      .wlist-content {
        padding-left: 16px;
        padding-right: 16px;
      }

      .wlist-actions {
        flex-direction: column-reverse;
        gap: 10px;
      }

      .btn-secondary.wlist-cancel,
      .wlist-actions .btn-primary {
        width: 100%;
        justify-content: center;
      }
    }

    .hero {
      padding: 120px 0 120px;
      overflow: hidden;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(2, 44, 68, 0.05), transparent 70%);
      text-align: center;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 100%, rgba(2, 44, 68, 0.03) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      justify-items: center;
      gap: 24px;
    }

    .hero-copy {
      margin: 0 auto;
      padding: 0;
      /* max-width: 900px; */
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      position: relative;
      min-height: 240px;
      margin-top: 32px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(2, 44, 68, 0.05);
      color: #022c44;
      font-size: 10px;
      font-weight: 600;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      letter-spacing: 0.22em;
      border-radius: 999px;
      padding: 9px 18px;
      margin-bottom: 44px;
      width: fit-content;
      border: 1px solid rgba(2, 44, 68, 0.12);
      text-transform: uppercase;
    }

    .hero h1 {
      margin-bottom: 28px;
      color: #022c44;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 64px;
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: -.022em;
    }

    .hero h1 .highlight {
      color: var(--green);
    }

    .hero h1 .accent {
      display: block;
      margin-top: 6px;
      color: #022c44;
      font-style: normal;
      font-weight: 600;
      position: relative;
    }

    .hero p.sub {
      margin: 0 auto 44px;
      font-size: 18px;
      line-height: 1.6;
      color: #4a6070;
      max-width: 520px;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 400;
      letter-spacing: .005em;
      position: relative;
    }

    .hero p.sub::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 250px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--green), rgba(34, 197, 94, 0.2));
      border-radius: 2px;
      transform: translateX(-50%) scaleX(0);
      transform-origin: center;
      animation: underlineGrow 0.8s ease forwards 1.8s;
    }

    @keyframes underlineGrow {
      to {
        transform: translateX(-50%) scaleX(1);
      }
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin-bottom: 0;
    }

    .hero-cta .btn-primary {
      padding: 16px 32px;
      font-size: 1rem;
      font-weight: 700;
      /* box-shadow: 0 20px 60px -15px rgb(15 23 42 / 73%); */
    }

    .reveal {
      opacity: 1;
      transform: translateY(0);
    }

    .social-proof {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatars img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #fff;
      object-fit: cover;
      box-shadow: none;
      margin-left: -12px;
    }

    .avatars img:first-child {
      margin-left: 0;
    }

    /* Hero visual card */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 480px;
    }

    .orbit-ring {
      position: absolute;
      width: 480px;
      height: 480px;
      border: 2.5px dashed rgba(31, 157, 99, 0.25);
      border-radius: 50%;
      animation: spin 40s linear infinite;
    }

    .float-icon {
      position: absolute;
      width: 52px;
      height: 52px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      animation: floaty 4s ease-in-out infinite;
    }

    .float-icon.top-right {
      top: 0;
      right: 30px;
      animation-delay: 0s;
    }

    .float-icon.mid-check {
      z-index: 999;
      top: 110px;
      left: calc(50% - 26px);
      background: var(--green);
      animation-delay: .6s;
    }

    .float-icon.bottom {
      bottom: 0px;
      left: calc(50% + 50px);
      animation-delay: 1.2s;
    }

    .dash-card {
      position: relative;
      z-index: 2;
      width: 420px;
      background: #fff;
      border-radius: 18px;
      padding: 26px;
      box-shadow: var(--shadow);
      opacity: 0;
      animation: fadeUp .8s ease forwards;
      animation-delay: .3s;
    }

    .dash-card .dash-logo {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-weight: 800;
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--navy);
      margin-bottom: 16px;
    }

    .dash-logo img {
      height: 22px;
    }

    .dash-bar {
      height: 10px;
      background: #bde2d1;
      border-radius: 6px;
      margin-bottom: 20px;
      width: 60%;
    }

    .chart-area {
      height: 130px;
      position: relative;
      margin-bottom: 20px;
    }

    .chart-area svg {
      width: 100%;
      height: 100%;
    }

    .chart-line {
      stroke: var(--green);
      stroke-width: 2.5;
      fill: none;
      stroke-dasharray: 400;
      stroke-dashoffset: 400;
      animation: draw 1.8s ease forwards 1s;
    }

    .chart-fill {
      fill: url(#chartGradient);
      opacity: 0;
      animation: fadeIn 1s ease forwards 2.2s;
    }

    .chart-dot {
      fill: var(--green);
      opacity: 0;
      animation: fadeIn .4s ease forwards 2.6s;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .stat-box {
      background: var(--green-pale);
      border-radius: 12px;
      padding: 14px 8px;
      text-align: center;
    }

    .stat-box .stat-icon {
      width: 26px;
      height: 26px;
      margin: 0 auto 8px;
      color: var(--green);
    }

    .stat-box .stat-label {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .stat-box .stat-value {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
    }

    .counter {
      display: inline-block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes floaty {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes draw {
      to {
        stroke-dashoffset: 0;
      }
    }

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

    .feature-card {
      padding: 24px 22px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.07);
      box-shadow: none;
      transition: transform .3s ease;
      text-align: center;
    }

    .feature-card:hover {
      transform: translateY(-4px);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(34, 197, 94, 0.08);
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      color: var(--green);
      transition: background .3s ease, transform .3s ease;
    }

    .feature-card:hover .feature-icon {
      background: rgba(34, 197, 94, 0.14);
      transform: translateY(-2px);
    }

    .feature-card h3 {
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .feature-card p {
      color: var(--text-muted);
      line-height: 1.6;
      font-size: 0.9rem;
    }

    .notjust-section {
      padding: 80px 0 88px;
      background: var(--navy);
      text-align: center;
      overflow: hidden;
    }

    .notjust-title {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 4em;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 52px;
    }

    .notjust-items {
      display: inline-flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .notjust-item {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 999px;
      padding: 14px 28px 14px 16px;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      transition: background .3s ease;
    }

    .notjust-item--green {
      background: rgba(34, 197, 94, 0.08);
      border-color: rgba(34, 197, 94, 0.2);
      color: #fff;
      font-weight: 600;
    }

    .notjust-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: grid;
      place-items: center;
      color: rgba(255, 255, 255, 0.4);
    }

    .notjust-icon--green {
      background: var(--green);
      color: #fff;
    }

    .advisor-section {
      padding: 96px 0;
      background: var(--alt-bg);
    }

    .advisor-card {
      background: #fff;
      border-radius: 28px;
      padding: 42px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 36px;
      align-items: stretch;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    }

    .advisor-overview {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
    }

    .advisor-overview h3 {
      font-size: clamp(2rem, 2.3vw, 2.6rem);
      line-height: 1.02;
      margin-bottom: 0;
      color: var(--navy);
    }

    .advisor-overview p {
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.85;
      max-width: 620px;
      margin: 0;
    }

    .advisory-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      border-radius: 999px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--blue-dark);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      width: fit-content;
    }

    .advisory-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 16px;
    }

    .advisory-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      color: var(--navy);
      font-size: 1rem;
      line-height: 1.8;
    }

    .advisory-list li .tick {
      width: 30px;
      height: 30px;
      min-width: 30px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: grid;
      place-items: center;
      margin-top: 4px;
    }

    .advisor-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 8px;
    }

    .advisor-visual {
      border: 2px solid rgb(5 46 70);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 15px;
    }

    .advisor-visual .dash-card {
      width: 100%;
      max-width: 520px;
      padding: 32px;
    }

    .dashboard-meta {
      margin-bottom: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .dashboard-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37, 99, 235, 0.08);
      color: var(--blue-dark);
      font-size: 0.85rem;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
    }

    .cta-section {
      padding: 96px 0 104px;
    }

    .cta-card {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      background: #fff;
      padding: 54px 36px;
      border-radius: 28px;
      border: 1px solid rgba(15, 23, 42, 0.05);
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.05);
    }

    .cta-card h2 {
      margin-bottom: 18px;
    }

    .cta-card p {
      margin-bottom: 34px;
      color: var(--text-muted);
    }

    footer {
      background: var(--alt-bg);
      padding: 64px 0 28px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 48px;
      margin-bottom: 42px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 380px;
    }

    .footer-logo {
      width: 150px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .footer-grid p {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 320px;
    }

    .footer-card {
      padding: 24px 28px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(15, 23, 42, 0.05);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
    }

    .footer-card h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .footer-bottom {
      text-align: center;
      font-size: 0.88rem;
      color: var(--text-muted);
      padding-top: 24px;
      border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes draw {
      to {
        stroke-dashoffset: 0;
      }
    }

    /* Typewriter */
    .typewriter-wrap {
      display: inline;
    }

    .typewriter {
      border-right: 3px solid var(--green);
      animation: blink-caret .75s step-end infinite;
    }

    @keyframes blink-caret {

      0%,
      100% {
        border-color: var(--green);
      }

      50% {
        border-color: transparent;
      }
    }

    @media (max-width: 940px) {

      .hero-grid,
      .advisor-card,
      .feature-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .advisor-card {
        padding: 10px;
      }

      .advisory-pill {
        padding: 10px 25px;
      }

      .hero {
        padding: 44px 0 28px;
      }

      nav {
        padding: 18px 0;
      }

      .dash-card {
        max-width: 100%;
      }
    }

    @media (max-width: 720px) {
      .container {
        padding: 0 20px;
      }

      .hero {
        padding: 36px 0 20px;
      }

      .hero h1 {
        font-size: 1.9rem;
        letter-spacing: -.018em;
        line-height: 1.15;
      }

      .hero p.sub {
        font-size: 16px;
      }

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

      .hero-cta {
        flex-direction: column;
        align-items: center;
      }

      .feature-card {
        padding: 28px 22px;
      }

      .footer-grid {
        gap: 28px;
      }

      .advisor-visual .dash-card {
        padding: 10px;
      }

      .notjust-title {
        font-size: 1.9rem;
      }
    }

    /* ── Booking section embedded styles ── */
    .booking-wrapper {
      display: flex;
      width: 100%;
      background: #F8FAFC;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #E2E8F0;
      box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .sidebar {
      width: 35%;
      min-width: 260px;
      background: #fff;
      border-right: 1px solid #E2E8F0;
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .sidebar-logo img {
      height: 52px;
      object-fit: contain;
    }

    .sidebar-divider {
      height: 1px;
      background: #E2E8F0;
    }

    .sidebar-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sidebar-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #2563EB;
      background: #EFF6FF;
      padding: 5px 12px;
      border-radius: 999px;
      width: fit-content;
    }

    .sidebar-title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #0F172A;
      line-height: 1.25;
      margin: 0;
    }

    .sidebar-desc {
      font-size: 0.88rem;
      color: #64748B;
      line-height: 1.75;
      margin: 0;
    }

    .sidebar-details {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .detail-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: #64748B;
    }

    .detail-row svg {
      flex-shrink: 0;
      color: #2563EB;
    }

    .main {
      flex: 1;
      padding: 40px 44px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      overflow-y: auto;
    }

    .main-heading {
      font-size: 1rem;
      font-weight: 600;
      color: #0F172A;
      margin: 0;
    }

    .main-sub {
      font-size: 0.83rem;
      color: #64748B;
      margin: 4px 0 0;
    }

    .calendar-block {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 24px 24px 20px;
    }

    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .cal-month-wrap {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .cal-month {
      font-size: 0.95rem;
      font-weight: 700;
      color: #0F172A;
    }

    .cal-month-sub {
      font-size: 0.72rem;
      color: #64748B;
    }

    .cal-nav {
      display: flex;
      gap: 6px;
    }

    .cal-nav-btn {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      border: 1px solid #E2E8F0;
      background: #fff;
      display: grid;
      place-items: center;
      color: #64748B;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .cal-nav-btn:hover {
      background: #EFF6FF;
      color: #2563EB;
      border-color: #BFDBFE;
    }

    .cal-nav-btn.disabled {
      opacity: 0.35;
      pointer-events: none;
    }

    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      margin-bottom: 4px;
    }

    .cal-wday {
      text-align: center;
      font-size: 0.68rem;
      font-weight: 600;
      color: #64748B;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      padding: 4px 0 6px;
    }

    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 3px;
    }

    .cal-day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #0F172A;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
      position: relative;
      user-select: none;
    }

    .cal-day:not(.cal-day--empty):not(.cal-day--disabled):hover {
      background: #EFF6FF;
      color: #2563EB;
      border-color: #BFDBFE;
    }

    .cal-day--selected {
      background: #2563EB !important;
      color: #fff !important;
      border-color: #2563EB !important;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
    }

    .cal-day--selected::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
    }

    .cal-day--disabled {
      color: #CBD5E1;
      cursor: default;
      font-weight: 400;
    }

    .cal-day--today {
      outline: 2px solid #2563EB;
      outline-offset: -2px;
      border-radius: 8px;
      font-weight: 700;
    }

    .cal-day--empty {
      cursor: default;
      pointer-events: none;
    }

    .cal-day--available::before {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #2563EB;
      opacity: 0.45;
    }

    .cal-day--selected.cal-day--available::before {
      display: none;
    }

    .cal-legend {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid #E2E8F0;
    }

    .cal-legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      color: #64748B;
    }

    .cal-legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .cal-legend-dot--available {
      background: #2563EB;
      opacity: 0.45;
    }

    .cal-legend-dot--selected {
      background: #2563EB;
    }

    .cal-legend-dot--disabled {
      background: #CBD5E1;
    }

    .slots-block {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 24px;
    }

    .cal-slots-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: start;
      /* max-width: 440px; */
      width: 100%;
      margin: 0 auto;
    }

    .slots-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .slots-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #0F172A;
    }

    .slots-date-label {
      font-size: 0.75rem;
      color: #64748B;
    }

    .slots-tz {
      font-size: 0.72rem;
      color: #64748B;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .slots-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .slot {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 10px 8px;
      border-radius: 9px;
      border: 1px solid #E2E8F0;
      background: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      color: #0F172A;
      cursor: pointer;
      text-align: center;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
      user-select: none;
    }

    .slot-sub {
      font-size: 0.65rem;
      font-weight: 400;
      color: #64748B;
      transition: color 0.15s;
    }

    .slot:not(.slot--disabled):not(.slot--selected):hover {
      background: #EFF6FF;
      color: #2563EB;
      border-color: #BFDBFE;
    }

    .slot:not(.slot--disabled):not(.slot--selected):hover .slot-sub {
      color: #2563EB;
    }

    .slot--selected {
      background: #2563EB;
      color: #fff;
      border-color: #2563EB;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    }

    .slot--selected .slot-sub {
      color: rgba(255, 255, 255, 0.75);
    }

    .slot--selected::after {
      content: '';
      position: absolute;
      top: 6px;
      right: 6px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
    }

    .slot--disabled {
      background: #F8FAFC;
      color: #CBD5E1;
      border-color: #E2E8F0;
      cursor: not-allowed;
    }

    .slots-confirm-wrap {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid #E2E8F0;
    }

    .btn-confirm {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 9px;
      border: none;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      cursor: not-allowed;
      background: #E2E8F0;
      color: #94A3B8;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
    }

    .btn-confirm:not(:disabled) {
      background: #2563EB;
      color: #fff;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    }

    .btn-confirm:not(:disabled):hover {
      background: #1D4ED8;
      transform: translateY(-1px);
    }

    .success-banner {
      display: none;
      align-items: flex-start;
      gap: 14px;
      background: #F0FDF4;
      border: 1.5px solid #86EFAC;
      border-radius: 12px;
      padding: 18px 20px;
    }

    .success-banner.is-visible {
      display: flex;
    }

    .success-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: 50%;
      background: #DCFCE7;
      border: 1.5px solid #86EFAC;
      display: grid;
      place-items: center;
      color: #16A34A;
    }

    .success-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: #15803D;
      margin: 0 0 4px;
    }

    .success-msg {
      font-size: 0.8rem;
      color: #166534;
      line-height: 1.6;
      margin: 0;
    }

    .success-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 10px;
    }

    .success-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 500;
      color: #15803D;
      background: #DCFCE7;
      border: 1px solid #86EFAC;
      border-radius: 999px;
      padding: 3px 10px;
    }

    .booking-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.45);
      backdrop-filter: blur(3px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 500;
    }

    .booking-modal-overlay.is-open {
      display: flex;
    }

    .booking-modal {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
      width: 100%;
      max-width: 540px;
      max-height: 90vh;
      overflow-y: auto;
    }

    .book-header {
      padding: 24px 24px 0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .book-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0F172A;
      line-height: 1.3;
      margin: 0;
    }

    .book-subtitle {
      font-size: 0.78rem;
      color: #64748B;
      margin: 4px 0 0;
    }

    .book-close {
      /* min-width: 30px; */
      border-radius: 8px;
      border: 1px solid #E2E8F0;
      background: #fff;
      display: grid;
      padding: 10px;
      place-items: center;
      color: #64748B;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
    }

    .book-close:hover {
      background: #FEF2F2;
      color: #EF4444;
      border-color: #FECACA;
    }

    .book-body {
      padding: 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .book-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .book-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .book-field label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #0F172A;
    }

    .book-field .req {
      color: #EF4444;
    }

    .book-field input,
    .book-field textarea,
    .book-field select {
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      color: #0F172A;
      background: #F8FAFC;
      border: 1.5px solid #E2E8F0;
      border-radius: 9px;
      padding: 9px 12px;
      outline: none;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .book-field textarea {
      resize: vertical;
      min-height: 80px;
    }

    .book-field select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 32px;
      cursor: pointer;
    }

    .book-field input:focus,
    .book-field textarea:focus,
    .book-field select:focus {
      border-color: #2563EB;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
    }

    .field-err {
      font-size: 0.7rem;
      color: #EF4444;
      min-height: 14px;
      display: block;
    }

    .submit-err {
      font-size: 0.8rem;
      color: #EF4444;
      margin: 0;
      text-align: center;
      min-height: 18px;
    }

    .book-footer {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding: 0 24px 24px;
    }

    .btn-cancel {
      padding: 10px 20px;
      border-radius: 9px;
      border: 1.5px solid #E2E8F0;
      background: #fff;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: #64748B;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-cancel:hover {
      background: #F8FAFC;
      color: #0F172A;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 9px;
      border: none;
      background: #2563EB;
      font-family: 'SF Pro Display', 'SF Pro Icons', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
    }

    .btn-submit:hover {
      background: #1D4ED8;
      transform: translateY(-1px);
    }

    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 860px) {
      .booking-wrapper {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 28px 24px;
        gap: 18px;
      }

      .main {
        width: 100%;
        padding: 28px 24px;
      }

      .cal-slots-row {
        grid-template-columns: 1fr;
      }

      .slots-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .book-field-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .main {
        padding: 20px 16px;
      }

      .sidebar {
        padding: 20px 16px;
      }

      .book-header,
      .book-body,
      .book-footer {
        padding-left: 16px;
        padding-right: 16px;
      }

      .book-footer {
        flex-direction: column-reverse;
      }

      .btn-cancel,
      .btn-submit {
        width: 100%;
        justify-content: center;
      }
    }