html {
        scroll-behavior: smooth;
      }
      body {
        background: #eaedf8;
        color: #2a383f;
        font-family: "DM Sans", system-ui, sans-serif;
        overflow-x: hidden;
      }
      .page {
        display: none;
      }
      .page.active-page {
        display: block;
      }
      .display-hero {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.75rem, 6.5vw, 5rem);
        line-height: 1.06;
        letter-spacing: -0.02em;
        font-weight: 600;
      }
      .display-h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.75rem, 3.5vw, 2.75rem);
        line-height: 1.15;
        letter-spacing: -0.01em;
        font-weight: 600;
      }
      .display-h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.625rem;
        line-height: 1.25;
        font-weight: 600;
      }
      .eyebrow {
        font-family: "DM Sans", sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #6265b5;
      }
      .body-lg {
        font-size: 1.05rem;
        line-height: 1.78;
      }
      .body-sm {
        font-size: 0.9375rem;
        line-height: 1.72;
        color: #6b7a87;
      }
      .logo-mark {
        font-family: "Cormorant Garamond", serif;
        font-weight: 700;
        font-size: 1.625rem;
        letter-spacing: -0.03em;
        color: #2a383f;
        text-decoration: none;
      }
      .logo-mark .sh {
        color: #6265b5;
      }
      .nav-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transition:
          background 0.4s,
          box-shadow 0.4s;
      }
      .nav-wrap.scrolled {
        background: rgba(234, 237, 248, 0.97);
        backdrop-filter: blur(16px);
        box-shadow: 0 1px 0 rgba(98, 101, 181, 0.14);
      }
      .nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: #2a383f;
        position: relative;
        transition: color 0.25s;
        cursor: pointer;
        text-decoration: none;
        background: none;
        border: none;
        font-family: "DM Sans", sans-serif;
      }
      .nav-link::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: #6265b5;
        border-radius: 1px;
        transition: width 0.35s ease;
      }
      .nav-link:hover,
      .nav-link.active {
        color: #6265b5;
      }
      .nav-link:hover::after,
      .nav-link.active::after {
        width: 100%;
      }
      .has-dropdown {
        position: relative;
      }
      .dropdown-menu {
        position: absolute;
        top: calc(100% + 2px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        background: #ffffff;
        border: 1px solid rgba(98, 101, 181, 0.15);
        border-radius: 12px;
        padding: 0.5rem;
        min-width: 270px;
        box-shadow: 0 20px 48px rgba(42, 56, 63, 0.12);
        opacity: 0;
        pointer-events: none;
        transition:
          opacity 0.25s,
          transform 0.25s;
      }
      .has-dropdown:hover .dropdown-menu,
      .has-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        pointer-events: all;
        transform: translateX(-50%) translateY(0);
      }
      .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 0;
        right: 0;
        height: 10px;
       }
      .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.625rem;
        padding: 0.625rem 0.875rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        color: #2a383f;
        transition:
          background 0.2s,
          color 0.2s;
        cursor: pointer;
        font-family: "DM Sans", sans-serif;
      }
      .dropdown-item:hover {
        background: #eaedf8;
        color: #6265b5;
      }
      .di-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: #eaedf8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.2s;
      }
      .dropdown-item:hover .di-icon {
        background: #c2c3e8;
      }
      .dropdown-arrow {
        display: inline-block;
        margin-left: 3px;
        transition: transform 0.25s;
      }
      .has-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
      }
      .btn-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #1a1b35;
        color: #ffffff;
        font-family: "DM Sans", sans-serif;
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.04em;
        padding: 0.875rem 1.875rem;
        border-radius: 8px;
        transition:
          background 0.3s,
          transform 0.3s,
          box-shadow 0.3s;
        text-decoration: none;
      }
      .btn-cta:hover {
        background: #3a3d82;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(58, 61, 130, 0.28);
      }
      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 1.5px solid #1a1b35;
        color: #1a1b35;
        font-family: "DM Sans", sans-serif;
        font-weight: 600;
        font-size: 0.875rem;
        letter-spacing: 0.04em;
        padding: 0.875rem 1.875rem;
        border-radius: 8px;
        transition: all 0.3s;
        text-decoration: none;
      }
      .btn-outline:hover {
        background: #1a1b35;
        color: #ffffff;
        transform: translateY(-2px);
      }
      .card-white {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(98, 101, 181, 0.12);
        box-shadow: 0 4px 16px rgba(42, 56, 63, 0.06);
        transition:
          transform 0.35s,
          box-shadow 0.35s,
          border-color 0.35s;
      }
      .card-white:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 48px rgba(42, 56, 63, 0.1);
        border-color: rgba(98, 101, 181, 0.25);
      }
      .card-bg {
        background: #eaedf8;
        border-radius: 16px;
        border: 1px solid rgba(98, 101, 181, 0.1);
      }
      .service-tile {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(98, 101, 181, 0.12);
        box-shadow: 0 4px 16px rgba(42, 56, 63, 0.06);
        transition:
          transform 0.35s,
          box-shadow 0.35s,
          border-color 0.35s;
        cursor: pointer;
        padding: 2.25rem;
      }
      .service-tile:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 56px rgba(42, 56, 63, 0.13);
        border-color: #6265b5;
      }
      .service-tile:hover .tile-arrow {
        transform: translateX(5px);
      }
      .tile-icon {
        width: 52px;
        height: 52px;
        background: #eaedf8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
      }
      .tile-arrow {
        transition: transform 0.3s;
      }
      .stat-number {
        font-family: "Cormorant Garamond", serif;
        font-size: 3.25rem;
        font-weight: 700;
        color: #c2c3e8;
        line-height: 1;
      }
      .stat-divider {
        width: 2rem;
        height: 2px;
        background: rgba(194, 195, 232, 0.5);
        border-radius: 1px;
        margin: 0.625rem auto;
      }
      .testi-card {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(98, 101, 181, 0.12);
        padding: 2rem;
        box-shadow: 0 4px 16px rgba(42, 56, 63, 0.05);
      }
      .testi-quote {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-style: italic;
        line-height: 1.7;
        color: #2a383f;
      }
      .process-badge {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: #6265b5;
        color: #ffffff;
        font-family: "Cormorant Garamond", serif;
        font-size: 1.375rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .peri-band {
        background: #3a3d82;
      }
      .dark-band {
        background: #1a1b35;
      }
      .badge {
        display: inline-flex;
        align-items: center;
        background: #c2c3e8;
        color: #3a3d82;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        border-radius: 100px;
        padding: 0.2rem 0.65rem;
        margin-bottom: 0.75rem;
      }
      .svc-number {
        font-family: "Cormorant Garamond", serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: rgba(98, 101, 181, 0.15);
        line-height: 1;
        flex-shrink: 0;
        width: 3.5rem;
      }
      .check-item {
        display: flex;
        align-items: flex-start;
        gap: 0.625rem;
        margin-bottom: 0.5rem;
      }
      .check-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6265b5;
        flex-shrink: 0;
        margin-top: 0.5rem;
      }
      .form-field {
        width: 100%;
        background: #ffffff;
        border: 1px solid #d8dce8;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        font-family: "DM Sans", sans-serif;
        font-size: 0.875rem;
        color: #2a383f;
        transition:
          border-color 0.25s,
          box-shadow 0.25s;
      }
      .form-field:focus {
        outline: none;
        border-color: #6265b5;
        box-shadow: 0 0 0 3px rgba(98, 101, 181, 0.15);
      }
      .form-field::placeholder {
        color: #a8b0ba;
      }
      .form-label {
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #6265b5;
        margin-bottom: 0.5rem;
        display: block;
      }
      .hero-photo {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 24px 64px rgba(42, 56, 63, 0.18);
      }
      .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(98, 101, 181, 0.12) 0%,
          rgba(58, 61, 130, 0.04) 100%
        );
      }
      .peri-line {
        height: 2px;
        background: linear-gradient(90deg, #6265b5, #c2c3e8);
        border-radius: 1px;
        width: 2.5rem;
      }
      .dark-hero {
        background: #1a1b35;
      }
      .mobile-nav-link {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        font-weight: 500;
        color: #2a383f;
        border-bottom: 1px solid rgba(98, 101, 181, 0.08);
        transition: color 0.2s;
        text-decoration: none;
      }
      .mobile-nav-link:hover {
        color: #6265b5;
      }
      .fade-up {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.75s ease,
          transform 0.75s ease;
      }
      .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .d1 {
        transition-delay: 0.1s;
      }
      .d2 {
        transition-delay: 0.2s;
      }
      .d3 {
        transition-delay: 0.3s;
      }
      .d4 {
        transition-delay: 0.4s;
      }
      .logo-light {
        display: none;
      }
      .logo-dark {
        display: block;
      }
      .nav-wrap.scrolled .logo-light {
        display: block;
      }
      .nav-wrap.scrolled .logo-dark {
        display: none;
      }
