
      /* -----------------------------
         Reset / Base (no CSS variables)
      ------------------------------ */
      html {
        scroll-behavior: smooth;
      }
      body {
        margin: 0;
        font-family: Inter, sans-serif;
        color: #0a0c0b;
        background: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
      * {
        font-style: normal !important;
        box-sizing: border-box;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: "Inter", sans-serif;
        font-weight: 900;
        color: #0a0c0b;
      }

      /* Scrollbar (WebKit) */
      ::-webkit-scrollbar {
        width: 8px;
      }
      ::-webkit-scrollbar-track {
        background: #ffffff;
      }
      ::-webkit-scrollbar-thumb {
        background: #e2e8f0;
        border-radius: 4px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: #2563eb;
      }

      /* -----------------------------
         Namespaced Design Tokens (direct colors)
      ------------------------------ */
      .as-text-dim {
        color: #52525b;
      }
      .as-text-muted-600 {
        color: #52525b;
      }
      .as-zinc-600 {
        color: #52525b;
      }
      .as-zinc-500 {
        color: #71717a;
      }
      .as-zinc-400 {
        color: #a1a1aa;
      }
      .as-bg-surface {
        background: #f8fafc;
      }
      .as-primary {
        color: #2563eb;
      }
      .as-bg-primary {
        background: #2563eb;
      }
      .as-border-soft {
        border-color: rgba(10, 12, 11, 0.05) !important;
      }

      /* -----------------------------
         Layout helpers
      ------------------------------ */
      .as-page {
        min-height: 100vh;
        overflow-x: hidden;
      }
      .as-container-1200 {
        max-width: 1200px;
      }
      .as-container-1100 {
        max-width: 1100px;
      }
      .as-container-1000 {
        max-width: 1000px;
      }
      .as-container-900 {
        max-width: 900px;
      }
      .as-container-850 {
        max-width: 850px;
      }
      .as-container-800 {
        max-width: 800px;
      }
      .as-gap-6 {
        gap: 1.5rem;
      }
      .as-gap-8 {
        gap: 2rem;
      }
      .as-gap-10 {
        gap: 2.5rem;
      }
      .as-gap-16 {
        gap: 4rem;
      }

      /* -----------------------------
         Header
      ------------------------------ */
      .as-header {
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        border-bottom: 1px solid rgba(10, 12, 11, 0.05);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      .as-brand-icon {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
      }
      .as-nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: #52525b;
        text-decoration: none;
        transition: color 0.2s ease;
      }
      .as-nav-link:hover {
        color: #2563eb;
      }
      .as-btn-pill {
        height: 44px;
        padding: 0 24px;
        border-radius: 9999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        font-weight: 800;
        text-decoration: none;
        border: none;
        transition: all 0.2s ease;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
      }
      .as-btn-pill-primary {
        background: #2563eb;
        color: #ffffff;
      }
      .as-btn-pill-primary:hover {
        background: #1d4ed8;
        color: #ffffff;
      }

      /* ---------- Hero ---------- */
      .as-hero {
        padding: 64px 0 80px;
        background: linear-gradient(to bottom, #ffffff, #f8fafc);
      }
      .as-hero-title {
        font-family: Inter, sans-serif;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.05;
        font-size: 3.1rem;
        margin: 0;
      }
      @media (min-width: 768px) {
        .as-hero-title {
          font-size: 4.4rem;
        }
      }
      .as-hero-subtitle {
        font-size: 1.05rem;
        color: #52525b;
        line-height: 1.5;
        margin: 0 auto;
        max-width: 800px;
      }
      @media (min-width: 768px) {
        .as-hero-subtitle {
          font-size: 1.25rem;
        }
      }

      /* video card */
      .as-video-wrap {
        max-width: 900px;
      }
      .as-video-card {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #dbeafe;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #bfdbfe;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
      }
      .as-video-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.8;
        mix-blend-mode: multiply;
      }
      .as-video-overlay {
        position: absolute;
        inset: 0;
        background: rgba(37, 99, 235, 0.2);
      }
      .as-play-btn {
        position: absolute;
        inset: 0;
        margin: auto;
        width: 96px;
        height: 96px;
        border-radius: 9999px;
        background: #2563eb;
        border: none;
        color: #fff;
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .as-video-card:hover .as-play-btn {
        transform: scale(1.1);
      }

      .as-cta-big {
        width: 100%;
        min-width: 320px;
        height: 64px;
        padding: 0 40px;
        border-radius: 9999px;
        background: #2563eb;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
        transition: all 0.2s ease;
      }
      .as-cta-big:hover {
        background: #1d4ed8;
        color: #fff;
      }
      .as-cta-big:active {
        transform: scale(0.98);
      }
      @media (min-width: 768px) {
        .as-cta-big {
          width: auto;
        }
      }

      .as-quote-card {
        background: #fff;
        border: 1px solid #e4e4e7;
        border-radius: 20px;
        padding: 18px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
        text-align: center;
        height: 100%;
      }
      .as-quote-name {
        margin-top: 12px;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-weight: 800;
        color: #2563eb;
      }
      .as-hero-footnote {
        font-size: 14px;
        font-weight: 500;
        color: #a1a1aa;
        margin-top: 8px;
      }

      @media (max-width: 575.98px) {
        .as-hero-title {
          font-size: 2.4rem;
          line-height: 1.25;
        }
        .as-section-heading {
          font-size: 2.25rem;
        }
      }

      /* CTA big */
      .as-cta-btn {
        min-width: 320px;
        height: 64px;
        padding: 0 40px;
        border-radius: 9999px;
        background: #2563eb;
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 900;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
        transition: all 0.2s ease;
      }
      .as-cta-btn:hover {
        background: #1d4ed8;
        color: #ffffff;
      }
      .as-cta-btn:active {
        transform: scale(0.98);
      }

      /* Review cards */
      .as-review-grid {
        max-width: 900px;
        margin: 0 auto;
      }
      .as-review-card {
        background: #ffffff;
        border: 1px solid #e4e4e7;
        border-radius: 0.75rem;
        padding: 1.25rem;
        text-align: center;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      }
      .as-stars {
        color: #2563eb;
        margin-bottom: 0.5rem;
        display: inline-flex;
        gap: 0.15rem;
      }
      .as-review-quote {
        font-size: 0.875rem;
        font-weight: 500;
        color: #3f3f46;
        margin: 0;
        line-height: 1.35;
      }
      .as-review-name {
        margin-top: 0.75rem;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #2563eb;
      }

      /* Qualification strip */
      .as-qual-strip {
        background: #f8fafc;
        border-top: 1px solid #e4e4e7;
        border-bottom: 1px solid #e4e4e7;
        padding: 2.5rem 0;
      }
      .as-qual-label {
        text-align: center;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #2563eb;
        margin-bottom: 2rem;
      }
      .as-qual-item {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
      }
      .as-qual-item span:first-child {
        color: #2563eb;
      }
      .as-qual-item .as-qual-text {
        font-size: 0.875rem;
        font-weight: 700;
        color: #0a0c0b;
      }

      /* -----------------------------
         About
      ------------------------------ */
      .as-section {
        padding: 6rem 1rem;
      }
      @media (min-width: 768px) {
        .as-section {
          padding: 6rem 2.5rem;
        }
      }
      .as-about-image {
        position: relative;
        border-radius: 1.5rem;
        overflow: hidden;
        background: #eff6ff;
        border: 4px solid #eff6ff;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
        aspect-ratio: 4 / 5;
      }
      .as-about-image .as-about-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.9;
        mix-blend-mode: multiply;
      }
      .as-about-image .as-about-grad {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(37, 99, 235, 0.2),
          rgba(0, 0, 0, 0)
        );
      }
      .as-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        color: #2563eb;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 0.875rem;
      }
      .as-eyebrow-line {
        width: 48px;
        height: 1px;
        background: #2563eb;
      }
      .as-about-name {
        font-family: Inter, sans-serif;
        font-weight: 900;
        letter-spacing: -0.02em;
        line-height: 1.1;
      }
      .as-about-subhead {
        font-size: 1.5rem;
        color: #2563eb;
        font-weight: 800;
        margin: 0;
      }
      .as-about-paras p {
        font-size: 1.125rem;
        line-height: 1.75;
        color: #52525b;
        margin-bottom: 1.5rem;
      }
      .as-pill-check {
        width: 28px;
        height: 28px;
        border-radius: 9999px;
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
      }
      .as-join-btn {
        height: 56px;
        padding: 0 32px;
        border-radius: 9999px;
        background: #2563eb;
        color: #ffffff;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
        transition: all 0.2s ease;
      }
      .as-join-btn:hover {
        background: #1d4ed8;
        color: #ffffff;
      }

      /* -----------------------------
         Services (details accordion look)
      ------------------------------ */
      .as-services {
        background: #f8fafc;
      }
      .as-services-title {
        font-family: Inter, sans-serif;
        font-weight: 900;
        letter-spacing: -0.02em;
      }
      .as-details {
        border: 1px solid #e4e4e7;
        border-radius: 1rem;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
      }
      .as-details.as-details-soft {
        background: rgba(255, 255, 255, 0.5);
        box-shadow: none;
      }
      .as-details.as-details-soft:hover {
        border-color: #93c5fd;
      }
      .as-summary {
        list-style: none;
        cursor: pointer;
        padding: 1.5rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
      }
      @media (min-width: 768px) {
        .as-summary {
          padding: 2rem 2rem;
        }
      }
      .as-summary::-webkit-details-marker {
        display: none;
      }
      .as-summary-left {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
      }
      .as-chevron {
        color: #2563eb;
        font-size: 2rem;
        transition: transform 0.3s ease;
      }
      details[open] .as-chevron {
        transform: rotate(90deg);
      }
      .as-badge {
        background: #2563eb;
        color: #ffffff;
        border: 1px solid rgba(37, 99, 235, 0.2);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        white-space: nowrap;
      }
      .as-details-body {
        padding: 0 2rem 2.5rem;
      }
      @media (min-width: 768px) {
        .as-details-body {
          padding: 0 5rem 3rem;
        }
      }
      .as-details-inner {
        border-top: 1px solid #f4f4f5;
        padding-top: 2rem;
      }
      .as-section-link-btn {
        height: 56px;
        padding: 0 40px;
        border-radius: 9999px;
        background: #2563eb;
        color: #ffffff;
        font-weight: 900;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
        transition: all 0.2s ease;
      }
      .as-section-link-btn:hover {
        background: #1d4ed8;
        color: #ffffff;
      }

      /* -----------------------------
         Testimonials
      ------------------------------ */
      .as-video-thumb {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        aspect-ratio: 16 / 9;
        background: #eff6ff;
        border: 1px solid #dbeafe;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        cursor: pointer;
      }
      .as-video-thumb .as-thumb-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.8;
        mix-blend-mode: multiply;
        transition: opacity 0.2s ease;
      }
      .as-video-thumb:hover .as-thumb-bg {
        opacity: 0.6;
      }
      .as-video-thumb .as-thumb-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
      }
      .as-thumb-play {
        position: relative;
        z-index: 1;
        width: 80px;
        height: 80px;
        border-radius: 9999px;
        background: rgba(37, 99, 235, 0.9);
        color: #ffffff;
        border: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
      }
      .as-video-thumb:hover .as-thumb-play {
        transform: scale(1.1);
      }
      .as-testimonial-quote {
        font-family: "Inter", sans-serif;
        font-size: 1.25rem;
        margin: 0 0 0.5rem;
        font-weight: 600;
      }
      .as-testimonial-meta {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #2563eb;
        margin: 0;
      }

      /* -----------------------------
         Relationship Check
      ------------------------------ */
      .as-check-section {
        background: #f8fafc;
      }
      .as-check-card {
        border-radius: 1rem;
        padding: 2.5rem;
        background: rgba(37, 99, 235, 0.05);
        border: 1px solid rgba(37, 99, 235, 0.1);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
      .as-check-card.as-check-card-strong {
        border-color: rgba(37, 99, 235, 0.2);
      }
      .as-icon-box {
        width: 56px;
        height: 56px;
        border-radius: 1rem;
        background: rgba(37, 99, 235, 0.2);
        color: #2563eb;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
      }
      .as-list-item {
        display: flex;
        gap: 0.75rem;
        font-weight: 500;
        color: #3f3f46;
        font-size: 16px;
      }

      /* -----------------------------
         Pricing
      ------------------------------ */
      .as-pricing {
        background: linear-gradient(to bottom, #ffffff, #f8fafc);
      }
      .as-price-card {
        position: relative;
        background: #ffffff;
        border-radius: 2.5rem;
        border: 2px solid #2563eb;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
      }
      .as-limited-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        background: #2563eb;
        color: #ffffff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 10;
      }
      .as-price-left {
        background: rgba(37, 99, 235, 0.05);
        border-right: 1px solid #f4f4f5;
        padding: 2.5rem;
        text-align: center;
      }
      @media (min-width: 768px) {
        .as-price-left {
          padding: 3.5rem;
        }
      }
      .as-price-right {
        padding: 2.5rem;
      }
      @media (min-width: 768px) {
        .as-price-right {
          padding: 3.5rem;
        }
      }
      .as-price-number {
        font-family: Inter, sans-serif;
        font-weight: 700;
        color: #2563eb;
        font-size: 3rem;
        line-height: 1;
      }
      @media (min-width: 768px) {
        .as-price-number {
          font-size: 3.75rem;
        }
      }
      .as-includes-label {
        font-size: 0.875rem;
        font-weight: 900;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #2563eb;
        margin-bottom: 2rem;
      }
      .as-include-item {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
      }
      .as-include-item .material-symbols-outlined {
        color: #2563eb;
        font-size: 1.5rem;
        line-height: 1;
        margin-top: 0.1rem;
      }
      .as-join-now {
        width: 100%;
        height: 64px;
        border-radius: 9999px;
        background: #2563eb;
        color: #ffffff;
        font-size: 1.25rem;
        font-weight: 700;
        border: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
        transition: all 0.2s ease;
      }
      .as-join-now:hover {
        background: #1d4ed8;
        color: #ffffff;
        transform: translateY(-4px);
      }

      /* -----------------------------
         FAQ (details)
      ------------------------------ */
      .as-faq-card {
        background: #f8fafc;
        border: 1px solid #e4e4e7;
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
      }
      .as-faq-summary {
        list-style: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 1.25rem;
      }
      .as-faq-summary::-webkit-details-marker {
        display: none;
      }
      .as-faq-toggle {
        width: 40px;
        height: 40px;
        border-radius: 9999px;
        background: #e4e4e7;
        color: #0a0c0b;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        flex: 0 0 auto;
      }
      details[open] .as-faq-toggle {
        background: #2563eb;
        color: #ffffff;
      }
      .as-faq-body {
        margin-top: 1.5rem;
        font-size: 1.125rem;
        line-height: 1.7;
        color: #52525b;
      }

      /* -----------------------------
         Footer
      ------------------------------ */
      .as-footer {
        background: #ffffff;
        border-top: 1px solid #e4e4e7;
        padding: 4rem 1rem;
      }
      @media (min-width: 768px) {
        .as-footer {
          padding: 4rem 2.5rem;
        }
      }
      .as-footer-links a {
        font-size: 0.875rem;
        font-weight: 700;
        color: #71717a;
        text-decoration: none;
        transition: color 0.2s ease;
      }
      .as-footer-links a:hover {
        color: #2563eb;
      }
      .as-social a {
        color: #71717a;
        transition: color 0.2s ease;
        text-decoration: none;
      }
      .as-social a:hover {
        color: #2563eb;
      }

      /* Mobile bottom bar */
      .as-mobile-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #e4e4e7;
        padding: 1rem;
        z-index: 40;
      }
      .as-mobile-bar .as-mobile-btn {
        width: 100%;
        height: 56px;
        border-radius: 9999px;
        background: #2563eb;
        color: #ffffff;
        font-weight: 900;
        font-size: 1.125rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }
      .as-mobile-bar .as-mobile-btn:hover {
        background: #1d4ed8;
        color: #ffffff;
      }

      /* Utility: sr-only */
      .as-sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }
      /* Inline-style replacements */
      .as-header-icon {
        font-size: 30px;
      }
      .as-brand-name {
        font-size: 1.25rem;
        font-weight: 900;
        letter-spacing: -0.02em;
      }
      .as-header-nav {
        gap: 2.25rem;
      }
      .as-menu-icon {
        cursor: pointer;
      }

      .as-hero-stack {
        gap: 32px;
      }
      .as-hero-heading-stack {
        gap: 18px;
      }
      .as-video-bg--hero {
        background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBPGFqGwKrkYshvNQzytimYB7xidG4q_xiT5xcRgyL39n1gEyKDvHFeNgqA4bjpI-PKGh6OrnRpkoEDP8JHMVRozayJ-BTxwEabSOUqL2p7BNbHlVPhnfQhC3qgWmJPSzYhJMoJ6ZWCzYec2NJPKlzY2GggzvOJCQq6yj0Eao78EIPct8k4QNZEhAo9YsKZPqGNy9M65efqMG255XP-PNHviWE493ly93sxbv_7Krenrk3fLF_-u_Nin2DGidCJfrwmVa6cHoqjRqE");
      }
      .as-hero-cta-group {
        gap: 24px;
      }
      .as-cta-icon {
        transition: transform 0.2s ease;
      }
      .as-hero-quote-row {
        max-width: 900px;
        margin: 0 auto;
      }
      .as-fill-star {
        font-variation-settings: "FILL" 1;
      }
      .as-quote-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: #3f3f46;
        line-height: 1.35;
      }

      .as-qual-grid {
        gap: 2rem 4rem;
      }
      .as-qual-icon {
        font-size: 24px;
      }

      @media (max-width: 575.98px) {
        .as-qual-grid {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 1.5rem;
          justify-items: center;
        }
        .as-qual-item {
          width: 100%;
          justify-content: center;
        }
        .as-qual-item .as-qual-text {
          text-align: center;
        }
      }
      @media (max-width: 767.98px) {
        .as-qual-grid {
          display: flex !important;
          flex-wrap: wrap !important;
          gap: 1rem 1rem !important;
          justify-content: center !important;
        }

        .as-qual-item {
          flex: 0 0 calc(50% - 1rem);
          justify-content: center;
        }

        .as-qual-item .as-qual-text {
          white-space: nowrap;
          font-size: 0.8rem;
        }
      }

      .as-about-bg--portrait {
        background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBggMeDdnFdZ_uOqRWbrLAnCHJMFZpIZPik935cCs6HiyhzEAkIk8bgI4qxaHypyuf8Ref4tK9gMS525F3qWAgIPmvPnCSYI3sD1QfTZQyZzgEIxpwEpq4sDlJ68_pwFSTgRCGkKpbVFeJ41MtCv6A4sYP7smgHnvzBcNU3uHh_97R0IzxSKVovwHNkAf1bZztedMyLkVwe4Ll2vDetyaBdPxuyO-o-0BBBz5XbPYcPlxutAVUH7Gd1RcwfQqt7a7WYzs41DVi9Bo4");
      }

      .as-about-row {
        row-gap: 4rem;
      }
      .as-about-stack {
        gap: 2rem;
      }
      .as-about-title {
        font-size: 3rem;
      }
      .as-highlight {
        color: #2563eb;
        font-weight: 600;
      }
      .as-bullet-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
      }
      .as-pill-icon {
        font-size: 20px;
      }
      .as-bold-600 {
        font-weight: 600;
      }

      .as-section-title {
        margin-bottom: 4rem !important;
      }
      .as-section-heading {
        font-family: Inter, sans-serif;
        font-weight: 900;
        letter-spacing: -0.02em;
        font-size: 3rem;
      }
      .as-section-subhead {
        font-size: 1.25rem;
        margin: 0;
      }
      .as-service-stack {
        gap: 1.25rem;
      }
      .as-summary h3 {
        font-family: Inter, sans-serif;
        font-weight: 800;
        letter-spacing: -0.02em;
      }
      .as-details-body-p {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 2rem;
      }
      .as-details-body-p--compact {
        font-size: 1.125rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }
      .as-detail-label {
        color: #2563eb;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 0.875rem;
        font-weight: 900;
      }
      .as-detail-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
      }
      .as-detail-title {
        font-weight: 700;
      }
      .as-detail-subtext {
        font-size: 0.875rem;
        color: #71717a;
      }
      .as-detail-link,
      .as-service-explore {
        color: #2563eb;
        font-weight: 900;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .as-service-explore {
        color: #52525b;
        font-weight: 600;
      }

      .as-testimonial-stack {
        gap: 4rem;
      }
      .as-section-intro {
        max-width: 700px;
        margin: 0 auto;
      }
      .as-testimonial-item {
        gap: 1.5rem;
      }
      .as-thumb-bg--amira {
        background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAV1H74YXoV5SzCSw7uyRa_jIXuy97mr_kixbKDzJOYktQBdCyspn3t_6jt02pFUjTzVXXgPCM_1QPanosg51izYofXzKW3BIXaOo4mMK0KOHr_4TjtLMR3rl_kSExH-S29vSQn-7gk9FiIYIaTpnPAhcu9zK8QiMY6Pe8CgV9aUgAhyx-_YjurtQdMndpMHVJ8e12LljKpmxIBqAPpGbtGMc0NdQF19p0o8sl33hvrUdHsiaTDv_5Z3jYo_TEBQCWvX8oN2A2xwQA");
      }
      .as-thumb-bg--sarah {
        background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAK_dUqvGsp7QhbbujMzcYVhhJ8PVVCCGxC2gw4-Ynt85CXAceyYn-Mjc10GMsBxz5lVfRPlp-Nti_Sv2lPP5yMQj0CVlBpyMGNt-HeMsLkRt9is7-jsKSiJFJMilKkeuWNKgt3M8Pzq7xxpzWcUB9Yj_-UUssZkIZpxGFP553pOSiaVrybBbaJgHM42OHxFywAFV2pEH6VZzluwLw699zZu1w2lGlejqc27mTyxCPDzz1GqvD1QpisDsQUb5awjG1xyUUZqbfRvzk");
      }
      .as-thumb-bg--anonymous {
        background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBeoLhBqTO1JHDAFl1VT3lZTkrAS1GL3p3FVFW0-i9mCC79WmjgxT8-eykN8arv3LTZr776KuiMfTEtUnpBK-PGW_T9_TARARpu2EJdrfdGHsol4j3sJAJ_-a3CSnccJ-wKGTI31HojFDJiWqv3qeoVjbIs9LV_fj8svTlRJpVQu-UWCkjajNpTt-7-0aa15_20sA6ybY88OKJsJbr5RfUObJ5VMhJpmPkxabhReLc2-n_SqDprHxIG3XKJyRpaFd3AUeML-1YnZCg");
      }
      .as-thumb-play-icon {
        font-size: 42px;
      }

      .as-checklist {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      .as-check-icon {
        color: #2563eb;
        font-size: 22px;
      }
      .as-icon-box .material-symbols-outlined {
        font-size: 32px;
      }
      .as-check-heading {
        font-family: Inter, sans-serif;
        font-weight: 600;
      }
      .as-check-row {
        align-items: stretch;
      }
      .as-check-section-title {
        font-family: Inter, sans-serif;
        font-weight: 900;
        letter-spacing: -0.02em;
      }

      .as-plan-title {
        font-family: Inter, sans-serif;
        font-weight: 800;
      }
      .as-price-highlight {
        gap: 0.25rem;
        margin: 1.5rem 0;
      }
      .as-price-note {
        font-size: 0.875rem;
        font-weight: 600;
      }
      .as-price-detail {
        font-size: 0.875rem;
        font-weight: 600;
        line-height: 1.6;
      }
      .as-include-title {
        font-weight: 700;
      }
      .as-include-detail {
        font-size: 0.75rem;
        color: #71717a;
      }
      .as-join-stack {
        gap: 1.5rem;
      }

      .as-faq-stack {
        gap: 1.25rem;
      }
      .as-faq-icon {
        display: block;
      }
      .as-footer-layout {
        gap: 2.5rem;
      }
      .as-footer-brand {
        gap: 0.75rem;
      }
      .as-footer-icon {
        font-size: 30px;
        color: #2563eb;
      }
      .as-footer-name {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        font-size: 1.75rem;
      }
      .as-footer-note {
        font-size: 0.875rem;
        color: #71717a;
        font-weight: 600;
      }
      .as-footer-links {
        gap: 2.5rem;
      }
      .as-footer-social {
        gap: 1.5rem;
      }
      .as-footer-social svg {
        width: 24px;
        height: 24px;
      }
      .as-footer-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .as-footer-social-link i {
        font-size: 1.35rem;
      }

      /* Testimonials */
      .gpos-testimonials {
        padding: 5rem 0;
        background: #f8f9fa;
      }

      .gpos-testimonial-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        transition: transform 0.3s;
      }

      .gpos-testimonial-card:hover {
        transform: translateY(-5px);
      }

      .gpos-testimonial-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
      }

      .gpos-testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        color: #6c757d;
        font-size: 16px;
      }

      .gpos-star-group span {
        font-size: 22px;
        color: gold;
      }

      .gpos-author-text h4 {
        font-weight: 600;
        font-size: 16px;
      }

      .gpos-author-text p {
        color: #6c757d;
        font-size: 14px;
      }

      @media (max-width: 575.98px) {
        .as-section-heading {
          font-size: 2rem;
        }
        .as-section-subhead {
          font-size: 1.2rem;
          margin: 0;
        }
      }