  /* ========================================
   PassMRI Static Homepage — style.css
   ======================================== */

  :root {
      --bg: hsl(40, 33%, 98%);
      --fg: hsl(210, 25%, 15%);
      --card: hsl(0, 0%, 100%);
      --card-fg: hsl(210, 25%, 15%);
      --primary: #006cb5;
      --primary-fg: hsl(0, 0%, 100%);
      --secondary: hsl(40, 30%, 95%);
      --secondary-fg: hsl(210, 25%, 15%);
      --muted: hsl(40, 20%, 94%);
      --muted-fg: hsl(210, 10%, 46%);
      --accent: #006cb5;
      --accent-fg: hsl(0, 0%, 100%);
      --border: hsl(210, 15%, 90%);
      --radius: 0.75rem;
      --shadow: 0 4px 24px -4px hsla(200, 65%, 38%, 0.08);
      --shadow-hover: 0 8px 32px -4px hsla(200, 65%, 38%, 0.15);
      --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
  }

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

  body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--fg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: var(--font-heading);
      line-height: 1.15;
  }

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

  img {
      max-width: 100%;
      height: auto;
      display: block;
  }

  ul {
      list-style: none;
  }

  .container {
      /* max-width: 1200px; */
      margin: 0 auto;
      padding: 0 1rem;
  }

  .img-fluid {
      max-width: 100%;
      height: auto;
      margin: 0 auto;
  }

  @media (min-width: 768px) {
      .container {
          padding: 0 2rem;
      }
  }

  .text-accent {
      color: var(--accent);
  }

  .text-primary {
      color: var(--primary);
  }

  .text-center {
      text-align: center;
  }

  .mt-14 {
      margin-top: 3.5rem;
  }

  .desktop-only {
      display: none;
  }

  .mobile-only {
      display: inline-flex;
  }

  @media (min-width: 768px) {
      .desktop-only {
          display: inline-flex;
      }

      .mobile-only {
          display: none;
      }
  }

  /* ---- BUTTONS ---- */
  .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      border-radius: 50px;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.95rem;
      padding: 0.6rem 1.75rem;
      justify-content: center;
  }

  .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
  }

  .btn-primary:hover {
      background: #0058a0;
      opacity: 1;
  }

  .btn-accent {
      background: var(--accent);
      color: var(--accent-fg);
  }

  .btn-accent:hover {
      transform: scale(1.02);
  }

  .btn-outline {
      background: transparent;
      border: 2px solid #006cb5fa;
      color: var(--fg);
  }

  .btn-outline:hover {
      background: #006cb5;
      color: #fff;
      border-color: #006cb5;
  }

  .btn-lg {
      font-size: 0.9375rem;
      padding: 0.875rem 1.75rem;
      border-radius: 0.875rem;
      box-shadow: var(--shadow);
  }

  /* ---- SECTION HEADER ---- */
  .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
  }

  .section-header h2 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 0.625rem;
      color: hsl(220, 25%, 18%);
      letter-spacing: -0.01em;
  }

  .section-header p {
      color: var(--muted-fg);
      font-size: 0.9375rem;
      max-width: 32rem;
      margin: 0 auto;
      line-height: 1.6;
  }

  .section-label {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.6875rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
      .section-header h2 {
          font-size: 1.75rem;
      }
  }

  /* ======== HEADER ======== */
  .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: hsla(0, 0%, 100%, 0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
  }

  .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
  }

  .logo img {
      height: 3.2rem;
  }

  .desktop-nav {
      display: none;
      gap: 2rem;
  }

  .desktop-nav a {
      font-size: 1.2rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      color: var(--muted-fg);
      transition: color 0.2s;
  }

  .desktop-nav a:hover,
  .desktop-nav .nav-active,
  .desktop-nav a.active {
      color: var(--primary);
      font-weight: 600;
  }

  .desktop-auth {
      display: none;
      gap: 0.75rem;
  }

  .mobile-toggle {
      display: block;
      background: none;
      border: none;
      color: var(--fg);
      cursor: pointer;
  }

  .mobile-menu {
      display: none;
      padding: 0 1.5rem 1.5rem;
      border-top: 1px solid var(--border);
      background: var(--card);
  }

  .mobile-menu.open {
      display: block;
  }

  .mobile-menu a {
      display: block;
      padding: 0.75rem 0;
      font-size: 1.15rem;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
  }

  .mobile-menu a.active {
      color: var(--primary);
  }

  .mobile-auth {
      display: flex;
      gap: 0.75rem;
      padding-top: 0.5rem;
  }

  .mobile-auth .btn {
      flex: 1;
      justify-content: center;
      font-size: 0.8rem;
      padding: 0.45rem 1rem;
  }

  @media (min-width: 768px) {

      .desktop-nav,
      .desktop-auth {
          display: flex;
      }

      .mobile-toggle,
      .mobile-menu {
          display: none !important;
      }
  }

  /* ======== HERO ======== */
  .hero {
      position: relative;
      overflow: hidden;
  }

  .hero-bg {
      position: absolute;
      inset: 0;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background: hsla(210, 25%, 15%, 0.7);
  }

  .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 3rem;
      align-items: center;
      padding-top: 6rem;
      padding-bottom: 4rem;
  }

  .hero-content {
      color: var(--primary-fg);
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: 9999px;
      background: hsla(0, 0%, 100%, 0.12);
      border: 1px solid hsla(0, 0%, 100%, 0.15);
      color: hsla(0, 0%, 100%, 0.9);
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
      letter-spacing: 0.02em;
  }

  .hero h1 {
      font-size: 2.25rem;
      font-weight: 800;
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
      line-height: 1.1;
  }

  .hero-desc {
      font-size: 1rem;
      color: hsla(0, 0%, 100%, 0.75);
      margin-bottom: 1.75rem;
      max-width: 30rem;
      line-height: 1.7;
  }

  .hero-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 2.5rem;
  }

  .hero-payment {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: hsla(0, 0%, 100%, 0.6);
      font-size: 0.875rem;
  }

  .hero-mockup {
      display: none;
  }

  .hero-mockup .mockup-card {
      background: hsla(255, 255, 255, 0.97);
      box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.06),
          0 12px 48px -8px rgba(0, 0, 0, 0.2),
          0 32px 80px -16px rgba(0, 0, 0, 0.15);
  }

  .hero-mockup .mockup-bar-name,
  .hero-mockup .mockup-q-text {
      color: hsl(220, 20%, 20%);
  }

  .hero-badges {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding-bottom: 3rem;
      color: hsla(0, 0%, 100%, 0.7);
      font-size: 0.875rem;
  }

  .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .trust-badge svg {
      color: var(--accent);
  }

  @media (min-width: 768px) {
      .hero h1 {
          font-size: 2.75rem;
      }

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

  @media (min-width: 1024px) {
      .hero-inner {
          grid-template-columns: 1fr 480px;
          padding-top: 5rem;
          padding-bottom: 4rem;
          gap: 2.5rem;
      }

      .hero-mockup {
          display: block;
      }

      .hero-mockup .mockup-card {
          max-width: 480px;
      }

      .hero h1 {
          font-size: 3.25rem;
      }
  }

  @media (min-width: 1280px) {
      .hero-inner {
          grid-template-columns: 1fr 540px;
          gap: 3rem;
      }

      .hero-mockup .mockup-card {
          max-width: 540px;
      }
  }

  /* ======== OVERVIEW FEATURES ======== */
  .overview-features {
      padding: 5rem 0;
  }

  .features-grid-4 {
      display: grid;
      gap: 1.5rem;
  }

  .feature-card {
      background: var(--card);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: box-shadow 0.3s;
  }

  .feature-card:hover {
      box-shadow: var(--shadow-hover);
  }

  .feature-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.625rem;
      background: hsla(200, 65%, 38%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: var(--primary);
  }

  .feature-card h3 {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
  }

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

  @media (min-width: 640px) {
      .features-grid-4 {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (min-width: 1024px) {
      .features-grid-4 {
          grid-template-columns: repeat(4, 1fr);
      }
  }

  /* ======== ABOUT ======== */
  .about-section {
      padding: 5rem 0;
  }

  .about-grid {
      display: grid;
      gap: 3.5rem;
      align-items: center;
  }

  .about-image-wrapper {
      position: relative;
  }

  .about-image-wrapper img {
      border-radius: 1.5rem;
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      box-shadow: var(--shadow);
  }

  .about-floating-card {
      position: absolute;
      bottom: -1.5rem;
      right: -1rem;
      background: var(--card);
      border-radius: 1rem;
      padding: 1.25rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
  }

  .floating-stat {
      font-size: 1.875rem;
      font-weight: 800;
      color: var(--primary);
  }

  .floating-label {
      color: var(--muted-fg);
      font-size: 0.875rem;
      font-weight: 500;
  }

  .about-content h2 {
      font-size: 1.875rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
      line-height: 1.2;
  }

  .about-desc {
      color: var(--muted-fg);
      font-size: 1.125rem;
      line-height: 1.7;
      margin-bottom: 1rem;
  }

  .about-desc-sm {
      color: var(--muted-fg);
      line-height: 1.7;
      margin-bottom: 2rem;
  }

  .values-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .value-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
  }

  .value-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.75rem;
      flex-shrink: 0;
      background: hsla(200, 65%, 38%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
  }

  .value-item h3 {
      font-weight: 700;
      margin-bottom: 0.125rem;
  }

  .value-item p {
      color: var(--muted-fg);
      font-size: 0.875rem;
      line-height: 1.6;
  }

  @media (min-width: 768px) {
      .about-content h2 {
          font-size: 2.25rem;
      }
  }

  @media (min-width: 1024px) {
      .about-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* ======== WHY CHOOSE ======== */
  .why-choose {
      padding: 4.5rem 0;
      background: hsl(210, 20%, 97%);
  }

  .why-choose .section-header {
      margin-bottom: 2.5rem;
  }

  .why-choose .section-header h2 {
      font-size: 1.5rem;
  }

  .pricing-badges {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      justify-content: center;
      margin-top: 0.875rem;
  }

  .price-current {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--accent);
  }

  .price-old {
      color: var(--muted-fg);
      text-decoration: line-through;
      font-size: 0.9375rem;
  }

  .price-tag {
      padding: 0.2rem 0.625rem;
      border-radius: 9999px;
      background: hsla(152, 60%, 42%, 0.1);
      color: hsl(152, 55%, 38%);
      font-size: 0.75rem;
      font-weight: 600;
  }

  .features-grid-3 {
      display: grid;
      gap: 1rem;
      max-width: 1100px;
      margin: 0 auto;
  }

  .why-card {
      background: #fff;
      border-radius: 0.875rem;
      padding: 1.5rem;
      border: 1px solid hsl(210, 15%, 92%);
      transition: all 0.3s;
  }

  .why-card:hover {
      box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
  }

  .why-card-inner {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
  }

  .why-card .feature-icon {
      margin: 0;
      flex-shrink: 0;
      width: 2.75rem;
      height: 2.75rem;
      border-radius: 0.625rem;
  }

  .why-card h3 {
      font-size: 0.9375rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: hsl(220, 25%, 18%);
  }

  .why-card ul {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
  }

  .why-card li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: hsl(210, 10%, 50%);
      line-height: 1.5;
  }

  .why-card li::before {
      content: '';
      width: 0.3125rem;
      height: 0.3125rem;
      border-radius: 50%;
      background: var(--accent);
      margin-top: 0.4375rem;
      flex-shrink: 0;
  }

  @media (min-width: 768px) {
      .features-grid-3 {
          grid-template-columns: 1fr 1fr;
      }

      .why-choose .section-header h2 {
          font-size: 1.75rem;
      }
  }

  @media (min-width: 1024px) {
      .features-grid-3 {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  /* ======== GUARANTEE ======== */
  .guarantee {
      position: relative;
      overflow: hidden;
      padding: 4.5rem 0;
  }

  .guarantee-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, hsl(210, 45%, 14%) 0%, hsl(200, 55%, 18%) 50%, hsl(210, 40%, 12%) 100%);
  }

  .guarantee-overlay {
      position: absolute;
      background-size: cover;
      opacity: 0.2;
      inset: 0;
      background-position: center;
  }

  .guarantee-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 44rem;
      color: #fff;
      margin: 0 auto;
      padding: 89px;
      box-sizing: border-box;
      width: 100%;
  }

  .guarantee h2 {
      font-size: 1.75rem;
      font-weight: 800;
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
  }

  .guarantee p {
      color: hsla(0, 0%, 100%, 0.7);
      font-size: 0.9375rem;
      line-height: 1.7;
      max-width: 36rem;
      margin: 0 auto 1.75rem;
  }

  .guarantee-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 2rem;
      gap: 0.625rem;
  }

  .guarantee-pill {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      border: 1px solid hsla(0, 0%, 100%, 0.12);
      background: hsla(0, 0%, 100%, 0.06);
      color: hsla(0, 0%, 100%, 0.85);
      font-size: 0.8125rem;
      font-weight: 500;
  }

  .guarantee-pill svg {
      color: #2dd4bf;
  }

  .btn-rounded {
      border-radius: 9999px;
  }

  @media (min-width: 768px) {
      .guarantee h2 {
          font-size: 2.25rem;
      }
  }

  @media (max-width: 767px) {
      .guarantee {
          padding: 2.5rem 0;
      }

      .guarantee-inner.p-10,
      .guarantee-inner {
          padding: 1.25rem 1rem !important;
          max-width: 100%;
      }

      .guarantee h2 {
          font-size: 1.4rem;
          line-height: 1.25;
          margin-bottom: 0.75rem;
      }

      .guarantee p {
          font-size: 0.875rem;
          line-height: 1.55;
          margin-bottom: 1.25rem;
      }

      .guarantee-badges {
          gap: 0.5rem;
          margin-bottom: 1.25rem;
      }

      .guarantee-pill {
          padding: 0.4rem 0.75rem;
          font-size: 0.75rem;
          white-space: nowrap;
      }

      .guarantee .btn,
      .guarantee .btn-lg {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 0.5rem;
          padding: 0.75rem 1.25rem;
          font-size: 0.9rem;
          white-space: normal;
          width: auto;
          max-width: 100%;
          line-height: 1.2;
      }
  }

  /* ======== TESTIMONIALS ======== */
  .testimonials {
      padding: 4.5rem 0;
      background: #fff;
      position: relative;
      overflow: hidden;
  }

  .testimonials .section-header {
      margin-bottom: 2.5rem;
  }

  .testimonials .section-header h2 {
      font-size: 1.5rem;
  }

  .testimonials .section-header p {
      font-size: 0.9375rem;
  }

  .decorative-blob {
      position: absolute;
      top: -9rem;
      right: -9rem;
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      background: hsla(200, 65%, 38%, 0.04);
      filter: blur(48px);
  }

  .testimonials-grid {
      display: grid;
      gap: 1.25rem;
      max-width: 64rem;
      margin: 0 auto;
  }

  .testimonial-card {
      background: hsl(210, 20%, 97%);
      border-radius: 1rem;
      padding: 1.5rem;
      border: 1px solid hsl(210, 15%, 93%);
      transition: all 0.3s;
      position: relative;
  }

  .testimonial-card:hover {
      border-color: hsl(210, 15%, 87%);
      box-shadow: 0 6px 24px -4px rgba(0, 0, 0, 0.07);
      transform: translateY(-2px);
  }

  .testimonial-accent-bar {
      position: absolute;
      top: 0;
      left: 1.5rem;
      right: 1.5rem;
      height: 3px;
      border-radius: 0 0 9999px 9999px;
      background: hsla(200, 65%, 38%, 0.15);
      transition: background 0.3s;
  }

  .testimonial-card:hover .testimonial-accent-bar {
      background: var(--primary);
  }

  .quote-icon {
      color: var(--primary);
      margin-bottom: 0.875rem;
      opacity: 0.6;
  }

  .testimonial-highlight {
      display: inline-block;
      padding: 0.1875rem 0.625rem;
      border-radius: 9999px;
      background: hsla(200, 65%, 38%, 0.08);
      color: var(--primary);
      font-size: 0.6875rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.03em;
  }

  .testimonial-text {
      color: hsl(220, 15%, 30%);
      line-height: 1.65;
      margin-bottom: 1.25rem;
      font-size: 0.875rem;
  }

  .testimonial-footer {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding-top: 0.875rem;
      border-top: 1px solid hsl(210, 15%, 90%);
  }

  .testimonial-avatar {
      width: 2.125rem;
      height: 2.125rem;
      border-radius: 50%;
      background: hsla(200, 65%, 38%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.75rem;
  }

  .testimonial-name {
      font-weight: 600;
      font-size: 0.8125rem;
      color: hsl(220, 20%, 20%);
  }

  .stars {
      color: #f59e0b;
      font-size: 0.6875rem;
      letter-spacing: 0.05em;
      margin-top: 0.125rem;
  }

  @media (min-width: 768px) {
      .testimonials-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .testimonials .section-header h2 {
          font-size: 1.75rem;
      }
  }

  /* ======== BLOG ======== */
  .blog-section {
      padding: 4rem 0;
      background: var(--bg);
  }

  .blog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2rem;
  }

  .blog-header .section-label {
      margin-bottom: 0.375rem;
  }

  .blog-header h2 {
      font-size: 1.375rem;
      font-weight: 700;
      line-height: 1.3;
  }

  .blog-header p {
      color: var(--muted-fg);
      font-size: 0.875rem;
      margin-top: 0.375rem;
      max-width: 28rem;
  }

  .blog-view-all {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.875rem;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      transition: gap 0.2s;
      white-space: nowrap;
  }

  .blog-view-all:hover {
      gap: 0.5rem;
  }

  .blog-grid {
      display: grid;
      gap: 1.25rem;
  }

  .blog-card {
      background: var(--card);
      border-radius: 0.875rem;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s;
  }

  .blog-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
  }

  .blog-image {
      aspect-ratio: 16/10;
      overflow: hidden;
  }

  .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
  }

  .blog-card:hover .blog-image img {
      transform: scale(1.05);
  }

  .blog-content {
      padding: 1rem 1.25rem 1.25rem;
  }

  .blog-date {
      color: var(--muted-fg);
      font-size: 0.75rem;
      margin-bottom: 0.375rem;
  }

  .blog-content h3 {
      font-size: 0.9375rem;
      font-weight: 600;
      line-height: 1.45;
      transition: color 0.2s;
      color: var(--fg);
  }

  .blog-card:hover h3 {
      color: var(--primary);
  }

  @media (min-width: 768px) {
      .blog-grid {
          grid-template-columns: repeat(3, 1fr);
      }

      .blog-header h2 {
          font-size: 1.5rem;
      }
  }

  /* ======== FOOTER ======== */
  .site-footer {
      background: var(--fg);
      padding: 3rem 0 1.5rem;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .footer-col-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }

  .footer-col-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
  }

  .footer-col-social {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .footer-col-title {
      color: #fff;
      font-size: 0.9375rem;
      font-weight: 600;
      margin: 0 0 0.25rem;
  }

  .footer-logo img {
      height: 2rem;
      filter: brightness(0) invert(1);
  }

  .footer-nav-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      width: 100%;
  }

  .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .footer-nav a {
      color: hsla(0, 0%, 100%, 0.7) !important;
      font-size: 0.875rem;
      transition: color 0.2s;
      text-decoration: none;
  }

  .footer-nav a:hover {
      color: white !important;
  }

  .footer-email {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: hsla(0, 0%, 100%, 0.7);
      font-size: 0.875rem;
      transition: color 0.2s;
      text-decoration: none;
  }

  .footer-email:hover {
      color: white;
  }

  .footer-email svg {
      color: inherit;
      flex-shrink: 0;
  }

  .footer-follow {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
  }

  .footer-follow-label {
      color: hsla(0, 0%, 100%, 0.7);
      font-size: 0.875rem;
      font-weight: 600;
  }

  .footer-social-icons {
      display: flex;
      gap: 0.75rem;
  }

  .footer-social-icons a {
      color: hsla(0, 0%, 100%, 0.7) !important;
      transition: color 0.2s;
  }

  .footer-social-icons a:hover {
      color: white !important;
  }

  .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid hsla(0, 0%, 100%, 0.1);
      text-align: center;
  }

  .footer-bottom p {
      color: hsla(0, 0%, 100%, 0.4);
      font-size: 0.875rem;
  }

  .footer-disclaimer {
      font-size: 0.6875rem !important;
      color: #999 !important;
      margin-top: 0.625rem;
      line-height: 1.5;
  }

  /* Tablet: 2-column grid */
  @media (min-width: 576px) {
      .footer-grid {
          grid-template-columns: 1fr 1fr;
          text-align: left;
      }

      .footer-col-brand {
          align-items: flex-start;
      }

      .footer-col-links {
          align-items: flex-start;
      }

      .footer-col-social {
          align-items: flex-start;
      }

      .footer-follow {
          align-items: flex-start;
      }
  }

  /* Desktop: 4-column grid */
  @media (min-width: 992px) {
      .footer-grid {
          grid-template-columns: 1.5fr 1fr 1fr 1fr;
          gap: 2.5rem;
      }
  }



  /* ======== BENEFIT CARDS WITH ICONS ======== */
  .benefit-card {
      position: relative;
  }

  .benefit-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      background: hsla(200, 65%, 38%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--primary);
  }

  /* ======== TESTIMONIALS SLIDER ======== */
  .slider-wrapper {
      overflow: hidden;
      position: relative;
      padding: 20px;
  }

  .slider-track {
      display: flex;
      gap: 1.5rem;
      transition: transform .4s ease;
  }

  .slider-slide {
      flex: 0 0 calc((100% - 3rem)/3);
  }

  @media(max-width:1023px) {
      .slider-slide {
          flex: 0 0 calc((100% - 1.5rem)/2);
      }
  }

  @media(max-width:639px) {
      .slider-slide {
          flex: 0 0 100%;
      }
  }

  .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
  }

  .slider-btn-prev {
      left: 0;
  }

  .slider-btn-next {
      right: 0;
  }




  /* ======== SHARED PAGE STYLES ======== */
  .breadcrumb-bar {
      background: var(--primary);
      padding: .75rem 0;
      color: var(--primary-fg);
      font-size: .875rem;
  }

  .breadcrumb-bar a {
      color: var(--primary-fg);
      opacity: .8;
  }

  .breadcrumb-bar a:hover {
      opacity: 1;
  }

  .grid-2 {
      display: grid;
      gap: 2rem;
      align-items: center;
  }

  @media (min-width: 768px) {
      .grid-2 {
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
      }
  }

  .grid-3 {
      display: grid;
      gap: 1.5rem;
  }

  @media (min-width: 768px) {
      .grid-3 {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  .text-lg {
      font-size: 1.125rem;
  }

  .text-sm {
      font-size: 0.875rem;
  }

  .text-muted {
      color: var(--muted-fg);
  }

  .fw-600 {
      font-weight: 600;
  }

  .bg-light {
      background: var(--secondary);
  }

  .bg-darker {
      background: hsl(210, 20%, 92%);
  }

  .rounded-img {
      border-radius: var(--radius);
  }

  .shadow-img {
      box-shadow: var(--shadow);
  }

  .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.5rem;
  }

  .card h3 {
      margin-bottom: .5rem;
  }

  .nav-desktop a.active {
      color: var(--primary);
      font-weight: 600;
  }

  .footer {
      background: var(--fg);
      padding: 3rem 0;
      color: white;
  }

  .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2rem;
  }

  .footer nav {
      display: flex;
      gap: 1.5rem;
  }

  .footer nav a,
  .footer a {
      color: hsla(0, 0%, 100%, .7);
      font-size: .875rem;
  }

  .footer nav a:hover,
  .footer a:hover {
      color: white;
  }

  @media (min-width: 768px) {
      .footer-inner {
          flex-direction: row;
          justify-content: space-between;
      }

      .footer-nav-wrap {
          display: contents;
      }
  }

  /* Pricing card */
  .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      max-width: 28rem;
      width: 100%;
      overflow: hidden;
      box-shadow: var(--shadow);
  }

  .pricing-top-bar {
      height: 6px;
      background: var(--primary);
  }

  .pricing-price {
      text-align: center;
      padding: 1.5rem;
  }

  .price-amount {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
  }

  .pricing-header {
      background: var(--primary);
      color: var(--primary-fg);
      text-align: center;
      padding: .75rem;
      font-weight: 600;
  }

  .pricing-list {
      padding: 1.5rem;
  }

  .pricing-list li {
      padding: .4rem 0;
      color: var(--muted-fg);
      position: relative;
      padding-left: 1.5rem;
  }

  .pricing-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--primary);
      font-weight: 700;
  }

  .btn-block {
      display: block;
      width: 100%;
      text-align: center;
  }

  .btn-rounded {
      border-radius: 50px;
  }

  /* ======== MEMBERSHIP HERO ======== */
  .membership-hero {
      position: relative;
      min-height: 520px;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .membership-hero-bg {
      position: absolute;
      inset: 0;
  }

  .membership-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, hsla(210, 50%, 12%, .95), hsla(210, 50%, 12%, .8), hsla(210, 50%, 12%, .6));
  }

  .membership-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 3rem;
      align-items: center;
      padding: 5rem 0;
  }

  @media (min-width: 768px) {
      .membership-hero-inner {
          grid-template-columns: 1fr 1fr;
      }
  }

  .hero-launch-badge {
      display: inline-flex;
      align-items: center;
      gap: .375rem;
      padding: .3125rem .75rem;
      border-radius: 9999px;
      border: 1px solid rgb(1 124 207 / 45%);
      background: rgb(1 124 207 / 8%);
      color: var(--accent);
      font-size: .75rem;
      font-weight: 600;
      margin-bottom: 1.25rem;
  }

  .mem-hero-content {
      color: #fff;
  }

  .mem-hero-title {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 1rem;
      line-height: 1.1;
      letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
      .mem-hero-title {
          font-size: 3rem;
      }
  }

  .mem-hero-subtitle {
      color: hsla(0, 0%, 100%, 0.8);
      font-size: 1rem;
      margin-bottom: 1.25rem;
      max-width: 26rem;
      line-height: 1.6;
  }

  .mem-hero-pricing {
      display: flex;
      align-items: baseline;
      gap: 0.625rem;
      margin-bottom: 0.75rem;
  }

  .mem-hero-price {
      font-family: var(--font-heading);
      color: var(--accent);
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
  }

  .mem-hero-price-old {
      color: hsla(0, 0%, 100%, 0.4);
      font-size: 1rem;
      text-decoration: line-through;
  }

  .mem-hero-price-note {
      color: hsla(0, 0%, 100%, 0.5);
      font-size: 0.8125rem;
  }

  .mem-hero-desc {
      color: hsla(0, 0%, 100%, 0.55);
      font-size: 0.875rem;
      margin-bottom: 1.75rem;
      max-width: 24rem;
      line-height: 1.6;
  }

  .mem-hero-badges {
      display: flex;
      gap: 1.25rem;
      margin-top: 1.75rem;
      color: hsla(0, 0%, 100%, 0.45);
      font-size: 0.8125rem;
      flex-wrap: wrap;
  }

  .mem-hero-badges span {
      display: flex;
      align-items: center;
      gap: 0.375rem;
  }

  .mem-hero-badges svg {
      opacity: 0.6;
  }

  .mem-hero-image {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      border: 1px solid hsla(0, 0%, 100%, 0.08);
  }

  .mem-hero-image img {
      width: 100%;
      display: block;
  }

  /* ======== ABOUT HERO ======== */
  .about-hero {
      position: relative;
      overflow: hidden;
  }

  .about-hero-bg {
      position: absolute;
      inset: 0;
  }

  /* ======== ABOUT HERO SPLIT ======== */
  .about-hero-split {
      display: flex;
      min-height: 500px;
  }

  .about-hero-split__left {
      flex: 1;
      background: #0c1a2e;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 3rem;
  }

  .about-hero-split__content {
      max-width: 520px;
  }

  .about-hero-split__label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #7cb9e8;
      margin-bottom: 1.25rem;
  }

  .about-hero-split__title {
      font-size: 3rem;
      font-weight: 400;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 1.5rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .about-hero-split__accent {
      color: #7cb9e8;
      font-style: italic;
  }

  .about-hero-split__desc {
      font-size: .95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, .65);
  }

  .about-hero-split__right {
      flex: 1;
      overflow: hidden;
  }

  .about-hero-split__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  @media (max-width: 768px) {
      .about-hero-split {
          flex-direction: column;
      }

      .about-hero-split__left {
          padding: 3rem 1.5rem;
      }

      .about-hero-split__title {
          font-size: 2rem;
      }

      .about-hero-split__right {
          min-height: 280px;
      }

      .about-hero-split__desc br {
          display: none;
      }
  }

  /* ======== OUR MISSION SECTION ======== */
  .our-mission-section {
      padding: 5rem 1.5rem;
      background: #fff;
  }

  .our-mission-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--primary, #2a7ab5);
      margin-bottom: 1.25rem;
  }

  .our-mission-title {
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 1.3;
      color: #1a1a2e;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .our-mission-desc {
      font-size: 1rem;
      line-height: 1.8;
      color: #6b7280;
      max-width: 650px;
      margin: 0 auto;
  }

  @media (max-width: 768px) {
      .our-mission-section {
          padding: 3rem 1.5rem;
      }

      .our-mission-title {
          font-size: 1.75rem;
      }
  }

  /* ======== OUR VISION SECTION ======== */
  .our-vision-section {
      padding: 5rem 1.5rem;
      background: #f7f8fa;
  }

  .our-vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
  }

  .our-vision-title {
      font-size: 2.25rem;
      font-weight: 400;
      line-height: 1.25;
      color: #1a1a2e;
      margin-bottom: 1.5rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .our-vision-desc {
      font-size: .95rem;
      line-height: 1.8;
      color: #6b7280;
      margin-bottom: 1rem;
  }

  .our-vision-img-wrap {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
  }

  .our-vision-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
      border-radius: 1rem;
  }

  .our-vision-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1rem 1.25rem;
      background: rgba(0, 0, 0, .45);
      color: #fff;
      font-size: .875rem;
      backdrop-filter: blur(4px);
      border-radius: 0 0 1rem 1rem;
  }

  @media (max-width: 768px) {
      .our-vision-grid {
          grid-template-columns: 1fr;
      }

      .our-vision-section {
          padding: 3rem 1.5rem;
      }

      .our-vision-title {
          font-size: 1.75rem;
      }

      .our-vision-img {
          height: 280px;
      }
  }

  /* ======== OUR VALUES SECTION ======== */
  .our-values-section {
      padding: 5rem 1.5rem;
      background: #0c1a2e;
  }

  .our-values-section .our-mission-label {
      color: #7cb9e8;
  }

  .our-values-title {
      font-size: 2.25rem;
      font-weight: 400;
      line-height: 1.3;
      color: #fff;
      margin-bottom: 2.5rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .our-values-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
  }

  .our-values-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 1rem;
      padding: 2rem;
  }

  .our-values-num {
      display: inline-block;
      font-size: .8rem;
      font-weight: 700;
      color: #7cb9e8;
      margin-bottom: .75rem;
  }

  .our-values-card-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: .75rem;
  }

  .our-values-card-desc {
      font-size: .9rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, .55);
  }

  @media (max-width: 768px) {
      .our-values-grid {
          grid-template-columns: 1fr;
      }

      .our-values-section {
          padding: 3rem 1.5rem;
      }

      .our-values-title {
          font-size: 1.75rem;
      }
  }

  /* ======== ABOUT FAQ SECTION ======== */
  .about-faq-section {
      padding: 5rem 1.5rem;
      background: #fff;
  }

  .about-faq-list {
      max-width: 720px;
      margin: 2.5rem auto 0;
  }

  .about-faq-item {
      border-bottom: 1px solid #e5e7eb;
  }

  .about-faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 500;
      color: #1a1a2e;
      text-align: left;
      gap: 1rem;
  }

  .about-faq-btn:hover {
      color: var(--primary, #2a7ab5);
  }

  .about-faq-chevron {
      flex-shrink: 0;
      transition: transform .3s ease;
      color: #9ca3af;
  }

  .about-faq-item.open .about-faq-chevron {
      transform: rotate(180deg);
  }

  .about-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease, padding .3s ease;
  }

  .about-faq-item.open .about-faq-answer {
      max-height: 200px;
      padding-bottom: 1.25rem;
  }

  .about-faq-answer p {
      font-size: .925rem;
      line-height: 1.7;
      color: #6b7280;
  }

  @media (max-width: 768px) {
      .about-faq-section {
          padding: 3rem 1.5rem;
      }

      .about-faq-btn {
          font-size: .925rem;
      }
  }

  /* ======== ABOUT CTA SECTION ======== */
  .about-cta-section {
      padding: 5rem 1.5rem;
      background: #0c1a2e;
  }

  .about-cta-title {
      font-size: 2.25rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 1rem;
      font-family: 'Georgia', 'Times New Roman', serif;
  }

  .about-cta-desc {
      font-size: .95rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, .55);
      max-width: 620px;
      margin: 0 auto 2rem;
  }

  .about-cta-btn {
      display: inline-block;
      padding: .875rem 2.25rem;
      background: #2563eb;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      border-radius: .5rem;
      text-decoration: none;
      transition: background .2s ease;
  }

  .about-cta-btn:hover {
      background: #1d4ed8;
      color: #fff;
  }

  @media (max-width: 768px) {
      .about-cta-section {
          padding: 3rem 1.5rem;
      }

      .about-cta-title {
          font-size: 1.75rem;
      }
  }

  /* ======== ABOUT ITEM CARDS ======== */
  .about-badge {
      display: inline-block;
      padding: .25rem .75rem;
      border-radius: 9999px;
      background: hsla(200, 65%, 38%, .1);
      color: var(--primary);
      font-size: .8125rem;
      font-weight: 600;
      margin-bottom: 1rem;
  }

  .about-item-card {
      display: flex;
      gap: 1rem;
      padding: 1rem;
      border-radius: .75rem;
      background: var(--secondary);
      margin-bottom: .75rem;
      transition: background .2s;
  }

  .about-item-card:hover {
      background: hsl(40, 30%, 92%);
  }

  .about-item-icon {
      width: 2.75rem;
      height: 2.75rem;
      border-radius: .75rem;
      background: hsla(200, 65%, 38%, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.25rem;
  }

  .about-item-card h3 {
      margin-bottom: .25rem;
  }

  .right-img-sticky {
      position: sticky;
      top: 3rem
  }

  /* Sticky Sidebar Fix */
  body {
      overflow-x: clip !important;
  }

  @media (min-width: 992px) {
      .user-profile-boxs {
          position: sticky !important;
          top: 80px !important;
          align-self: flex-start !important;
          z-index: 10;
      }

      .user-profile-boxs .user-profile-box {
          position: relative !important;
          top: auto !important;
          height: auto !important;
      }
  }

  /* ======== GUARANTEE SECTION (shared) ======== */
  .guarantee-section {
      position: relative;
      padding: 5rem 0;
      background: linear-gradient(135deg, hsl(210, 50%, 15%), hsl(200, 60%, 20%), hsl(210, 40%, 12%));
      color: #fff;
      overflow: hidden;
  }

  .guarantee-section .guarantee-overlay {
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .guarantee-content {
      position: relative;
      z-index: 1;
  }

  .section {
      padding: 4rem 0;
  }

  .hero-inner h1 {
      font-size: 2.75rem;
  }


  /* *********************** */


  /* ======== PAGE TITLE BANNER ======== */

  .page_title_banner {
      background: url(../images/brad.png);
      background-position: center;
      height: 50px;
      position: relative;
      overflow: hidden;
      background-size: cover;
  }

  .page_title_banner .content {

      align-items: center;
      justify-content: space-between;
      padding: 14px 0 0px;
      text-align: center;
  }



  .page-title-banner {
      padding: 1rem 0;
      position: relative;
      overflow: hidden;
      background: url(../images/brad.png);
      background-position: center;
      background-size: cover;
  }




  .page-title-banner .container {
      position: relative;
      z-index: 2;
  }

  .page-title-banner .banner-content {
      text-align: center;
  }

  .page-title-banner .banner-title {
      /* padding: 3rem 0; */
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .page-title-banner .banner-title a {
      color: #fff;
      text-decoration: none;
  }

  .page-title-banner .banner-title a:hover {
      text-decoration: underline;
  }

  /* ======== POLICY SECTION ======== */
  .policy-section {
      padding: 4rem 0;
      background: var(--bg);
  }

  .policy-wrapper {
      margin: 0 auto;
      background: var(--card);
      border-radius: 1rem;
      box-shadow: var(--shadow);
      overflow: hidden;
  }

  .policy-content {
      padding: 3rem;
  }

  /* Policy Content Typography */
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
      font-family: var(--font-heading);
      color: var(--fg);
      margin-top: 2rem;
      margin-bottom: 1rem;
  }

  .policy-content h1:first-child,
  .policy-content h2:first-child,
  .policy-content h3:first-child {
      margin-top: 0;
  }

  .policy-content h2 {
      font-size: 1.75rem;
      font-weight: 700;
      border-bottom: 2px solid var(--border);
      padding-bottom: 0.5rem;
  }

  .policy-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.5rem;
  }

  .policy-content p {
      color: var(--muted-fg);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-size: 1rem;
  }

  .policy-content ul,
  .policy-content ol {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
  }

  .policy-content ul {
      list-style-type: disc;
  }

  .policy-content ol {
      list-style-type: decimal;
  }

  .policy-content li {
      color: var(--muted-fg);
      line-height: 1.8;
      margin-bottom: 0.5rem;
  }

  .policy-content strong {
      color: var(--fg);
      font-weight: 600;
  }

  .policy-content a {
      color: var(--primary);
      text-decoration: underline;
      transition: color 0.3s;
  }

  .policy-content a:hover {
      color: var(--accent);
  }

  /* Alert Box */
  .alert {
      padding: 1rem 1.5rem;
      border-radius: 0.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .alert-info {
      background: hsla(200, 65%, 38%, 0.1);
      color: var(--primary);
      border: 1px solid hsla(200, 65%, 38%, 0.2);
  }

  .alert i {
      font-size: 1.25rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .page-title-banner {
          padding: 1.5rem 0;
      }

      .page-title-banner .banner-title {
          font-size: 1.1rem;
      }

      .policy-section {
          padding: 2rem 0;
      }

      .policy-content {
          padding: 2rem;
      }

      .policy-content h2 {
          font-size: 1.5rem;
      }

      .policy-content h3 {
          font-size: 1.15rem;
      }
  }

  @media (max-width: 480px) {
      .page-title-banner {
          padding: 1rem 0;
      }

      .page-title-banner .banner-title {
          font-size: 1rem;
      }

      .policy-content {
          padding: 1.5rem;
      }
  }

  .card-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-dark);
      text-transform: capitalize;
  }



  .card-title--large {
      font-size: 1.5rem;
  }

  .card-title--medium {
      font-size: 1rem;
  }

  .card-title--small {
      font-size: 0.875rem;
  }

  .bg-primary {
      background-color: #006cb5 !important;
  }

  .py-60 {
      padding: 60px 0;
  }


  /*----------------------------------------*/
  /*  SPACE CSS START
/*----------------------------------------*/
  .my-80 {
      margin: 80px 0;
  }

  @media (max-width: 1199px) {
      .my-80 {
          margin: 64px 0;
      }
  }

  @media (max-width: 991px) {
      .my-80 {
          margin: 54px 0;
      }
  }

  @media (max-width: 767px) {
      .my-80 {
          margin: 42px 0;
      }
  }

  .mt-80 {
      margin-top: 80px;
  }

  @media (max-width: 1199px) {
      .mt-80 {
          margin-top: 64px;
      }
  }

  @media (max-width: 991px) {
      .mt-80 {
          margin-top: 54px;
      }
  }

  @media (max-width: 767px) {
      .mt-80 {
          margin-top: 42px;
      }
  }

  .mb-80 {
      margin-bottom: 80px;
  }

  @media (max-width: 1199px) {
      .mb-80 {
          margin-bottom: 64px;
      }
  }

  @media (max-width: 991px) {
      .mb-80 {
          margin-bottom: 54px;
      }
  }

  @media (max-width: 767px) {
      .mb-80 {
          margin-bottom: 42px;
      }
  }

  .mt-64 {
      margin-top: 64px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .mt-64 {
          margin-top: 48px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .mt-64 {
          margin-top: 42px;
      }
  }

  @media (max-width: 767px) {
      .mt-64 {
          margin-top: 32px;
      }
  }

  .mb-64 {
      margin-bottom: 64px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .mb-64 {
          margin-bottom: 48px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .mb-64 {
          margin-bottom: 42px;
      }
  }

  @media (max-width: 767px) {
      .mb-64 {
          margin-bottom: 32px;
      }
  }

  .my-60 {
      margin: 60px 0;
  }

  @media (max-width: 1199px) {
      .my-60 {
          margin: 54px 0;
      }
  }

  @media (max-width: 991px) {
      .my-60 {
          margin: 48px 0;
      }
  }

  @media (max-width: 767px) {
      .my-60 {
          margin: 42px 0;
      }
  }

  .mt-60 {
      margin-top: 60px;
  }

  @media (max-width: 1199px) {
      .mt-60 {
          margin-top: 54px;
      }
  }

  @media (max-width: 991px) {
      .mt-60 {
          margin-top: 48px;
      }
  }

  @media (max-width: 767px) {
      .mt-60 {
          margin-top: 42px;
      }
  }

  .mb-60 {
      margin-bottom: 60px;
  }

  @media (max-width: 1199px) {
      .mb-60 {
          margin-bottom: 54px;
      }
  }

  @media (max-width: 991px) {
      .mb-60 {
          margin-bottom: 48px;
      }
  }

  @media (max-width: 767px) {
      .mb-60 {
          margin-bottom: 42px;
      }
  }

  .my-48 {
      margin: 48px 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .my-48 {
          margin: 42px 0;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .my-48 {
          margin: 32px 0;
      }
  }

  @media (max-width: 767px) {
      .my-48 {
          margin: 24px 0;
      }
  }

  .mt-48 {
      margin-top: 48px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .mt-48 {
          margin-top: 42px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .mt-48 {
          margin-top: 32px;
      }
  }

  @media (max-width: 767px) {
      .mt-48 {
          margin-top: 24px;
      }
  }

  .mb-48 {
      margin-bottom: 48px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .mb-48 {
          margin-bottom: 42px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .mb-48 {
          margin-bottom: 36px;
      }
  }

  @media (max-width: 767px) {
      .mb-48 {
          margin-bottom: 32px;
      }
  }

  .my-40 {
      margin: 40px 0;
  }

  @media (max-width: 1199px) {
      .my-40 {
          margin: 32px 0;
      }
  }

  @media (max-width: 991px) {
      .my-40 {
          margin: 28px 0;
      }
  }

  @media (max-width: 767px) {
      .my-40 {
          margin: 22px 0;
      }
  }

  .mt-40 {
      margin-top: 40px;
  }

  @media (max-width: 1199px) {
      .mt-40 {
          margin-top: 32px;
      }
  }

  @media (max-width: 991px) {
      .mt-40 {
          margin-top: 28px;
      }
  }

  @media (max-width: 767px) {
      .mt-40 {
          margin-top: 22px;
      }
  }

  .mb-40 {
      margin-bottom: 40px;
  }

  @media (max-width: 1199px) {
      .mb-40 {
          margin-bottom: 32px;
      }
  }

  @media (max-width: 991px) {
      .mb-40 {
          margin-bottom: 28px;
      }
  }

  @media (max-width: 767px) {
      .mb-40 {
          margin-bottom: 22px;
      }
  }

  .mb-32 {
      margin-bottom: 32px;
  }

  @media (max-width: 1199px) {
      .mb-32 {
          margin-bottom: 28px;
      }
  }

  @media (max-width: 991px) {
      .mb-32 {
          margin-bottom: 24px;
      }
  }

  @media (max-width: 767px) {
      .mb-32 {
          margin-bottom: 20px;
      }
  }

  .mb-30 {
      margin-bottom: 30px;
  }

  @media (max-width: 1199px) {
      .mb-30 {
          margin-bottom: 28px;
      }
  }

  @media (max-width: 991px) {
      .mb-30 {
          margin-bottom: 24px;
      }
  }

  @media (max-width: 767px) {
      .mb-30 {
          margin-bottom: 20px;
      }
  }

  .mb-24 {
      margin-bottom: 24px;
  }

  @media (max-width: 1199px) {
      .mb-24 {
          margin-bottom: 22px;
      }
  }

  @media (max-width: 991px) {
      .mb-24 {
          margin-bottom: 22px;
      }
  }

  @media (max-width: 767px) {
      .mb-24 {
          margin-bottom: 20px;
      }
  }

  .mb-16 {
      margin-bottom: 16px;
  }

  @media (max-width: 1199px) {
      .mb-16 {
          margin-bottom: 15px;
      }
  }

  @media (max-width: 991px) {
      .mb-16 {
          margin-bottom: 14px;
      }
  }

  @media (max-width: 767px) {
      .mb-16 {
          margin-bottom: 12px;
      }
  }

  .mb-12 {
      margin-bottom: 12px;
  }

  @media (max-width: 1199px) {
      .mb-12 {
          margin-bottom: 11px;
      }
  }

  @media (max-width: 991px) {
      .mb-12 {
          margin-bottom: 10px;
      }
  }

  @media (max-width: 767px) {
      .mb-12 {
          margin-bottom: 8px;
      }
  }

  .mb-8 {
      margin-bottom: 8px;
  }

  .mb-4p {
      margin-bottom: 4px;
  }

  .py-80 {
      padding: 80px 0;
  }

  @media (max-width: 1199px) {
      .py-80 {
          padding: 64px 0;
      }
  }

  @media (max-width: 991px) {
      .py-80 {
          padding: 54px 0;
      }
  }

  @media (max-width: 767px) {
      .py-80 {
          padding: 42px 0;
      }
  }

  .pt-80 {
      padding-top: 80px;
  }

  @media (max-width: 1199px) {
      .pt-80 {
          padding-top: 64px;
      }
  }

  @media (max-width: 991px) {
      .pt-80 {
          padding-top: 54px;
      }
  }

  @media (max-width: 767px) {
      .pt-80 {
          padding-top: 42px;
      }
  }

  .pb-80 {
      padding-bottom: 80px;
  }

  @media (max-width: 1199px) {
      .pb-80 {
          padding-bottom: 64px;
      }
  }

  @media (max-width: 991px) {
      .pb-80 {
          padding-bottom: 54px;
      }
  }

  @media (max-width: 767px) {
      .pb-80 {
          padding-bottom: 42px;
      }
  }

  .py-64 {
      padding: 64px 0;
  }

  @media (max-width: 1199px) {
      .py-64 {
          padding: 56px 0;
      }
  }

  @media (max-width: 991px) {
      .py-64 {
          padding: 48px 0;
      }
  }

  @media (max-width: 767px) {
      .py-64 {
          padding: 42px 0;
      }
  }

  .py-60 {
      padding: 60px 0;
  }

  @media (max-width: 1199px) {
      .py-60 {
          padding: 54px 0;
      }
  }

  @media (max-width: 991px) {
      .py-60 {
          padding: 48px 0;
      }
  }

  @media (max-width: 767px) {
      .py-60 {
          padding: 42px 0;
      }
  }

  .pt-60 {
      padding-top: 60px;
  }

  @media (max-width: 1199px) {
      .pt-60 {
          padding-top: 54px;
      }
  }

  @media (max-width: 991px) {
      .pt-60 {
          padding-top: 48px;
      }
  }

  @media (max-width: 767px) {
      .pt-60 {
          padding-top: 42px;
      }
  }

  .pb-60 {
      padding-bottom: 60px;
  }

  @media (max-width: 1199px) {
      .pb-60 {
          padding-bottom: 54px;
      }
  }

  @media (max-width: 991px) {
      .pb-60 {
          padding-bottom: 48px;
      }
  }

  @media (max-width: 767px) {
      .pb-60 {
          padding-bottom: 42px;
      }
  }

  .py-48 {
      padding: 48px 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .py-48 {
          padding: 42px 0;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .py-48 {
          padding: 32px 0;
      }
  }

  @media (max-width: 767px) {
      .py-48 {
          padding: 26px 0;
      }
  }

  .pt-48 {
      padding-top: 48px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .pt-48 {
          padding-top: 42px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .pt-48 {
          padding-top: 32px;
      }
  }

  @media (max-width: 767px) {
      .pt-48 {
          padding-top: 26px;
      }
  }

  .pb-48 {
      padding-bottom: 48px;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .pb-48 {
          padding-bottom: 42px;
      }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .pb-48 {
          padding-bottom: 36px;
      }
  }

  @media (max-width: 767px) {
      .pb-48 {
          padding-bottom: 26px;
      }
  }

  .py-40 {
      padding: 40px 0;
  }

  @media (max-width: 1199px) {
      .py-40 {
          padding: 32px 0;
      }
  }

  @media (max-width: 991px) {
      .py-40 {
          padding: 28px 0;
      }
  }

  @media (max-width: 767px) {
      .py-40 {
          padding: 22px 0;
      }
  }

  .pt-40 {
      padding-top: 40px;
  }

  @media (max-width: 1199px) {
      .pt-40 {
          padding-top: 32px;
      }
  }

  @media (max-width: 991px) {
      .pt-40 {
          padding-top: 28px;
      }
  }

  @media (max-width: 767px) {
      .pt-40 {
          padding-top: 22px;
      }
  }

  .pb-40 {
      padding-bottom: 40px;
  }

  @media (max-width: 1199px) {
      .pb-40 {
          padding-bottom: 32px;
      }
  }

  @media (max-width: 991px) {
      .pb-40 {
          padding-bottom: 28px;
      }
  }

  @media (max-width: 767px) {
      .pb-40 {
          padding-bottom: 22px;
      }
  }

  .py-32 {
      padding: 32px 0;
  }

  @media (max-width: 1199px) {
      .py-32 {
          padding: 28px 0;
      }
  }

  @media (max-width: 991px) {
      .py-32 {
          padding: 24px 0;
      }
  }

  @media (max-width: 767px) {
      .py-32 {
          padding: 20px 0;
      }
  }


  /* ========================================
   Contact Page Specific Styles
   ======================================== */

  /* Input Icon Styles */
  .input-icon-wrapper {
      position: relative;
  }

  .input-icon {
      position: absolute;
      top: 50%;
      left: 14px;
      transform: translateY(-50%);
      color: #777;
  }

  .with-icon {
      padding-left: 42px !important;
  }

  /* File Upload Styles */
  .file-input {
      display: none;
  }

  .file-label {
      padding: 10px 20px;
      background: #017ccf;
      color: #fff;
      border-radius: 5px;
      cursor: pointer;
      display: inline-block;
      transition: all 0.3s;
      font-weight: 500;
  }

  .file-label:hover {
      background: #005fa3;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(1, 124, 207, 0.3);
  }

  .file-label i {
      margin-right: 8px;
  }

  #file-name {
      font-size: 0.9rem;
      color: #666;
      margin-top: 5px;
  }




  /* Contact Form Section */
  .py-60 {
      padding: 60px 0;
  }

  @media (max-width: 1199px) {
      .py-60 {
          padding: 54px 0;
      }
  }

  @media (max-width: 991px) {
      .py-60 {
          padding: 48px 0;
      }
  }

  @media (max-width: 767px) {
      .py-60 {
          padding: 42px 0;
      }
  }

  /* Form Styles */
  .mb-24 {
      margin-bottom: 24px;
  }

  @media (max-width: 1199px) {
      .mb-24 {
          margin-bottom: 22px;
      }
  }

  @media (max-width: 991px) {
      .mb-24 {
          margin-bottom: 22px;
      }
  }

  @media (max-width: 767px) {
      .mb-24 {
          margin-bottom: 20px;
      }
  }

  .form-control {
      font-size: 16px;
      font-weight: 400;
      line-height: 150%;
      background: #ffffff;
      border: 1px solid #b7bdbb;
      padding: 7px 12px;
      color: #000;
      border-radius: 5px;
      width: 100%;
  }

  .form-control.p_lg {
      padding: 12px;
  }

  select.form-control {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: url(../images/down.svg);
      background-repeat: no-repeat;
      background-size: 20px;
      background-position: center right 15px;
  }

  .form-control:focus {
      outline: none;
      border: 1px solid #006cb5;
      box-shadow: 0 0 0 2px rgba(0, 108, 181, 0.1);
  }

  label {
      font-size: 14px;
      font-weight: 500;
      color: #333;
      margin-bottom: 8px;
      display: block;
  }

  input[type="radio"] {
      margin-right: 5px;
      margin-left: 15px;
      width: auto;
      height: auto;
  }

  input[type="radio"]:first-of-type {
      margin-left: 0;
  }

  input[type="radio"]:checked {
      accent-color: #006cb5;
  }

  textarea.form-control {
      min-height: 70px;
      resize: vertical;
  }

  /* Alert Messages */
  .alert {
      padding: 1rem 1.5rem;
      border-radius: 0.5rem;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .alert-danger {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
  }

  .alert-success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
  }

  .alert i {
      font-size: 1.25rem;
  }

  /* Contact Links */
  .contact_links {
      padding-left: 30px;
  }

  @media (max-width: 991px) {
      .contact_links {
          padding-left: 0;
          margin-top: 40px;
      }
  }

  .contact_links h2 {
      font-size: 32px;
      font-weight: 600;
      color: #333;
      margin-bottom: 30px;
  }

  .contact_link_block {
      width: 100%;
      position: relative;
      padding: 20px 20px 20px 80px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      background-color: #ffffff;
      margin-bottom: 30px;
      transition: all 0.5s ease;
      display: block;
      text-decoration: none;
      border: 1px solid #eef2f6;
  }

  .contact_link_block .icon {
      position: absolute;
      top: 50%;
      left: 20px;
      transform: translateY(-50%);
      background-color: #ffffff;
      border-radius: 50%;
      border: 2px solid rgba(0, 108, 181, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px;
      width: 50px;
      box-shadow: 0 5px 15px rgba(0, 108, 181, 0.1);
  }

  .contact_link_block .icon i {
      color: #006cb5;
      font-size: 22px;
      transition: all 0.5s ease;
  }

  .contact_link_block h6,
  .contact_link_block .h6 {
      margin: 0;
      font-size: 16px;
      font-weight: 500;
      color: #555;
      line-height: 1.4;
  }

  .contact_link_block:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 108, 181, 0.15);
      border-color: #006cb5;
  }

  .contact_link_block:hover .icon {
      background-color: #006cb5;
      border-color: #006cb5;
  }

  .contact_link_block:hover .icon i {
      color: #ffffff;
  }

  .contact_link_block:hover h6 {
      color: #006cb5;
  }

  /* Button Styles */
  .educate-btn {
      display: inline-block;
      vertical-align: middle;
      -webkit-appearance: none;
      border: none;
      outline: none !important;
      background-color: #006cb5;
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      border-radius: 50px;
      text-transform: capitalize;
      padding: 14px 32px;
      width: fit-content;
      position: relative;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 108, 181, 0.3);
  }

  .educate-btn:hover {
      background-color: #0056a0;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 108, 181, 0.4);
      color: #ffffff;
  }

  .educate-btn .educate-btn__curve {
      display: none;
  }

  /* reCAPTCHA Note */
  .recaptcha-note {
      font-size: 0.85rem;
      color: #666;
      margin-top: 15px;
  }

  .recaptcha-note i {
      margin-right: 5px;
      color: #006cb5;
  }

  .recaptcha-note a {
      color: #017ccf;
      text-decoration: underline;
  }

  .recaptcha-note a:hover {
      color: #005fa3;
  }

  /* Spinner Styles */
  .spinner-border {
      display: inline-block;
      width: 1rem;
      height: 1rem;
      vertical-align: text-bottom;
      border: 0.15em solid currentColor;
      border-right-color: transparent;
      border-radius: 50%;
      animation: spinner-border .75s linear infinite;
  }

  @keyframes spinner-border {
      to {
          transform: rotate(360deg);
      }
  }

  .me-2 {
      margin-right: 0.5rem;
  }

  .mt-3 {
      margin-top: 1rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .contact_links h2 {
          font-size: 28px;
      }

      .educate-btn {
          width: 100%;
          text-align: center;
      }

      .form-control.p_lg {
          padding: 10px;
      }
  }

  @media (max-width: 480px) {
      .py-60 {
          padding: 30px 0;
      }

      .contact_link_block {
          padding: 15px 15px 15px 70px;
      }

      .contact_link_block .icon {
          width: 45px;
          height: 45px;
          left: 15px;
      }

      .contact_link_block .icon i {
          font-size: 18px;
      }
  }

  /* ======== MOCKUP CARD ======== */
  .mockup-card {
      background: #fff;
      border-radius: 1.25rem;
      box-shadow: 0 4px 32px -4px rgba(0, 0, 0, 0.10);
      padding: 1.25rem 1.5rem 1rem;
      max-width: 560px;
      width: 100%;
  }

  /* -- Progress Section -- */
  .mockup-progress-section {
      margin-bottom: 1rem;
  }

  .mockup-progress-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.75rem;
  }

  .mockup-progress-label {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: hsl(210, 10%, 45%);
      padding-top: 0.25rem;
  }

  .mockup-progress-pct {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 800;
      color: #2dd4bf;
      line-height: 1;
  }

  .mockup-bar-group {
      margin-bottom: 0.5rem;
  }

  .mockup-bar-group:last-child {
      margin-bottom: 0;
  }

  .mockup-bar-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.25rem;
  }

  .mockup-bar-name {
      font-size: 0.8125rem;
      font-weight: 500;
      color: hsl(210, 15%, 35%);
  }

  .mockup-bar-val {
      font-size: 0.8125rem;
      font-weight: 600;
      color: hsl(210, 10%, 55%);
  }

  .mockup-bar-track {
      height: 10px;
      background: hsl(210, 20%, 93%);
      border-radius: 5px;
      overflow: hidden;
  }

  .mockup-bar-fill {
      height: 100%;
      border-radius: 5px;
  }

  .mockup-bar-safety {
      background: linear-gradient(90deg, #ef4444 0%, #f97316 40%, #2dd4bf 100%);
      width: 78%;
  }

  .mockup-bar-anatomy {
      background: linear-gradient(90deg, #3b82f6 0%, #2dd4bf 100%);
      width: 64%;
  }

  .mockup-bar-image {
      background: linear-gradient(90deg, #06b6d4 0%, #2dd4bf 100%);
      width: 91%;
  }

  /* -- Question Section -- */
  .mockup-question {
      background: hsl(195, 30%, 96%);
      border-radius: 0.875rem;
      padding: 1.125rem 1.25rem;
  }

  .mockup-q-count {
      font-family: var(--font-heading);
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #ef4444;
      margin-bottom: 0.375rem;
  }

  .mockup-q-text {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      color: hsl(220, 25%, 18%);
      margin-bottom: 0.875rem;
      line-height: 1.45;
  }

  .mockup-options {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      margin-bottom: 0.625rem;
  }

  .mockup-option {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.5rem 0.875rem;
      background: #fff;
      border-radius: 0.625rem;
      font-size: 0.8125rem;
      color: hsl(220, 15%, 30%);
      border: 1px solid hsl(210, 15%, 91%);
  }

  .mockup-option span:last-child {
      line-height: 1.4;
  }

  .mockup-option-correct {
      background: hsl(168, 50%, 93%);
      border-color: hsl(168, 45%, 78%);
      color: hsl(168, 35%, 18%);
      font-weight: 600;
  }

  .mockup-opt-letter {
      width: 1.75rem;
      height: 1.75rem;
      border-radius: 50%;
      background: hsl(210, 15%, 93%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
      color: hsl(210, 10%, 50%);
  }

  .mockup-opt-correct {
      background: hsl(168, 55%, 45%);
      color: #fff;
  }

  /* -- Explanation -- */
  .mockup-explanation {
      background: hsl(168, 40%, 94%);
      border-radius: 0.625rem;
      padding: 0.625rem 0.875rem;
  }

  .mockup-explanation p {
      font-size: 0.75rem;
      color: hsl(168, 30%, 28%);
      line-height: 1.55;
      font-style: italic;
  }

  /* -- Toolbar -- */
  .mockup-toolbar {
      display: flex;
      align-items: center;
      gap: 0.125rem;
      padding-top: 0.75rem;
      margin-top: 0.5rem;
  }

  .mockup-toolbar-btn {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: hsl(210, 10%, 62%);
      cursor: pointer;
      transition: all 0.15s;
  }

  .mockup-toolbar-btn:hover {
      background: hsl(210, 15%, 95%);
      color: hsl(210, 10%, 40%);
  }

  .mockup-toolbar-active {
      background: hsl(200, 50%, 95%);
      color: var(--primary);
  }

  @media (max-width: 480px) {
      .mockup-card {
          padding: 1.25rem 1.25rem 1rem;
          border-radius: 1rem;
      }

      .mockup-question {
          padding: 1.125rem;
      }
  }

  /* ======== WHAT'S INCLUDED ======== */
  .whats-included {
      padding: 4.5rem 0;
      background: #fff;
  }

  .whats-included .section-header {
      margin-bottom: 3rem;
  }

  .whats-included .section-header h2 {
      font-size: 1.75rem;
      font-weight: 800;
      color: hsl(220, 30%, 15%);
      line-height: 1.25;
  }

  .whats-included .section-header h2 em {
      font-style: italic;
      font-weight: 800;
  }

  @media (min-width: 768px) {
      .whats-included .section-header h2 {
          font-size: 2.25rem;
      }
  }

  @media (max-width: 767px) {
      .whats-included {
          padding: 3rem 0;
      }

      .whats-included .section-header {
          margin-bottom: 2rem;
          padding: 0 0.5rem;
      }

      .whats-included .section-header h2 {
          font-size: 1.4rem;
          line-height: 1.3;
          word-wrap: break-word;
      }

      .whats-included .section-header h2 em {
          display: inline-block;
      }

      /* Hero title nowrap override — prevents "Exam on Your First Attempt"
         from overflowing narrow viewports (Z Fold 5, small phones) */
      .hero-v2-title span[style*="nowrap"] {
          white-space: normal !important;
      }

      .hero-v2-title {
          font-size: 1.5rem !important;
          line-height: 1.25;
      }

      .hero-v2-desc {
          font-size: 0.875rem;
          line-height: 1.55;
      }

      .hero-v2-btn {
          width: auto;
          max-width: 100%;
          white-space: normal;
          padding: 0.85rem 1.25rem;
          font-size: 0.95rem;
      }

      .hero-v2-stats {
          gap: 0.75rem;
      }

      .hero-v2-stat-card {
          padding: 1rem 0.5rem;
      }

      .hero-v2-stat-number {
          font-size: 1.5rem;
      }

      .hero-v2-stat-label {
          font-size: 0.75rem;
      }
  }

  .included-grid {
      display: grid;
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
  }

  @media (min-width: 640px) {
      .included-grid {
          grid-template-columns: 1fr 1fr;
          gap: 1.5rem;
      }
  }

  @media (min-width: 960px) {
      .included-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  .included-card {
      background: #fff;
      border: 1px solid hsl(210, 15%, 92%);
      border-radius: 1rem;
      padding: 2rem 1.75rem;
      transition: all 0.3s ease;
      position: relative;
  }

  .included-card:hover {
      border-color: hsl(210, 15%, 85%);
      box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
  }

  .included-icon {
      width: 3.25rem;
      height: 3.25rem;
      border-radius: 0.875rem;
      background: hsl(220, 30%, 15%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-bottom: 1.25rem;
  }

  .included-card h3 {
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: hsl(220, 30%, 15%);
      margin-bottom: 0.625rem;
      line-height: 1.3;
  }

  .included-card p {
      color: hsl(210, 10%, 50%);
      font-size: 0.875rem;
      line-height: 1.65;
      margin-bottom: 1rem;
  }

  .included-link {
      display: inline-block;
      color: var(--primary);
      font-size: 0.8125rem;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1.5px solid currentColor;
      padding-bottom: 1px;
      transition: color 0.2s;
  }

  .included-link:hover {
      color: var(--accent);
  }

  /* ======== BUILT BY EXPERT ======== */
  .built-by-section {
      padding: 4.5rem 0;
      background: hsl(220, 30%, 15%);
      color: #fff;
      overflow: hidden;
      position: relative;
  }

  .built-by-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, hsla(168, 60%, 45%, 0.06) 0%, transparent 70%);
      pointer-events: none;
  }

  .built-by-grid {
      display: grid;
      gap: 3rem;
      align-items: start;
      position: relative;
      z-index: 1;
  }

  @media (min-width: 1024px) {
      .built-by-grid {
          grid-template-columns: 1fr 1fr;
          gap: 5rem;
          align-items: center;
      }
  }

  .built-by-content .section-label {
      color: hsl(168, 60%, 55%);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
  }

  .built-by-content h2 {
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.25rem;
      color: #fff;
      letter-spacing: -0.01em;
  }

  @media (min-width: 768px) {
      .built-by-content h2 {
          font-size: 2.125rem;
      }
  }

  .built-by-desc {
      color: hsla(0, 0%, 100%, 0.65);
      font-size: 0.9375rem;
      line-height: 1.75;
      margin-bottom: 2.25rem;
  }

  .built-by-quote {
      border-left: 3px solid hsl(168, 60%, 50%);
      padding-left: 1.5rem;
      margin-left: 0;
  }

  .built-by-quote p {
      font-style: italic;
      color: hsla(0, 0%, 100%, 0.85);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 0.75rem;
  }

  .built-by-quote footer {
      color: hsla(0, 0%, 100%, 0.45);
      font-size: 0.8125rem;
      font-weight: 500;
  }

  .built-by-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .built-badge-card {
      background: hsla(0, 0%, 100%, 0.04);
      border: 1px solid hsla(0, 0%, 100%, 0.08);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s;
  }

  .built-badge-card:hover {
      background: hsla(0, 0%, 100%, 0.07);
      border-color: hsla(0, 0%, 100%, 0.14);
      transform: translateY(-2px);
  }

  .built-badge-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
  }

  .built-badge-green {
      background: hsla(168, 60%, 45%, 0.15);
      color: hsl(168, 60%, 55%);
  }

  .built-badge-blue {
      background: hsla(200, 65%, 45%, 0.15);
      color: hsl(200, 65%, 60%);
  }

  .built-badge-red {
      background: hsla(0, 70%, 55%, 0.12);
      color: hsl(0, 65%, 65%);
  }

  .built-badge-teal {
      background: hsla(168, 60%, 45%, 0.15);
      color: hsl(168, 60%, 55%);
  }

  .built-badge-card h4 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #fff;
  }

  .built-badge-card p {
      font-size: 0.8125rem;
      color: hsla(0, 0%, 100%, 0.55);
      line-height: 1.55;
  }

  @media (max-width: 639px) {
      .built-by-badges {
          grid-template-columns: 1fr;
      }
  }

  /* ============================================================
     MEMBERSHIP PAGE
     ============================================================ */

  /* -- Shared section layout -- */
  .mem-section {
      padding: 5rem 0;
  }

  .mem-section--alt {
      background: hsl(210, 20%, 97%);
  }

  .mem-section--dark {
      background: hsl(220, 30%, 15%);
  }

  .mem-row {
      display: grid;
      gap: 2rem;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
  }

  @media (min-width: 960px) {
      .mem-row {
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
      }

      .mem-row--reverse {
          direction: rtl;
      }

      .mem-row--reverse>* {
          direction: ltr;
      }
  }

  /* -- Text block -- */
  .mem-heading {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1.2;
      color: hsl(220, 25%, 18%);
      margin-bottom: 0.875rem;
      letter-spacing: -0.015em;
  }

  @media (min-width: 768px) {
      .mem-heading {
          font-size: 2.125rem;
      }
  }

  .mem-text--light .mem-heading {
      color: #fff;
  }

  .mem-desc {
      color: hsl(210, 10%, 48%);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      max-width: 28rem;
  }

  .mem-text--light .mem-desc {
      color: hsla(0, 0%, 100%, 0.6);
  }

  /* -- Checklist -- */
  .mem-checklist {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .mem-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 0.875rem;
      color: hsl(210, 10%, 38%);
      line-height: 1.55;
  }

  .mem-checklist li::before {
      content: '';
      width: 1.125rem;
      height: 1.125rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232dd4bf' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  }

  .mem-checklist li strong {
      font-weight: 600;
      color: hsl(220, 20%, 22%);
  }

  .mem-checklist--light li {
      color: hsla(0, 0%, 100%, 0.65);
  }

  .mem-checklist--light li strong {
      color: hsla(0, 0%, 100%, 0.9);
  }

  /* -- Visual block -- */
  .mem-visual {
      display: flex;
      justify-content: center;
  }

  @media (min-width: 960px) {
      .mem-visual {
          justify-content: flex-end;
      }

      .mem-row--reverse .mem-visual {
          justify-content: flex-start;
      }
  }

  /* ---- Quiz Card ---- */
  .mem-quiz-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 2px 24px -4px rgba(0, 0, 0, 0.07);
      border: 1px solid hsl(210, 15%, 92%);
      max-width: 500px;
      width: 100%;
  }

  .mem-quiz-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.875rem;
  }

  .mem-quiz-cat {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: hsl(210, 10%, 50%);
  }

  .mem-quiz-mode {
      font-size: 0.625rem;
      font-weight: 600;
      padding: 0.25rem 0.5rem;
      border-radius: 0.3125rem;
      background: hsl(210, 20%, 96%);
      color: hsl(210, 10%, 42%);
  }

  .mem-quiz-q {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 600;
      color: hsl(220, 25%, 18%);
      line-height: 1.5;
      margin-bottom: 0.875rem;
  }

  .mem-quiz-opts {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      margin-bottom: 0.625rem;
  }

  .mem-quiz-opt {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      padding: 0.5rem 0.75rem;
      background: #fff;
      border: 1px solid hsl(210, 15%, 91%);
      border-radius: 0.5rem;
      font-size: 0.8125rem;
      color: hsl(220, 15%, 30%);
      transition: background 0.15s;
  }

  .mem-quiz-opt--correct {
      background: hsl(168, 50%, 93%);
      border-color: hsl(168, 45%, 78%);
      color: hsl(168, 35%, 18%);
      font-weight: 600;
  }

  .mem-opt-ltr {
      width: 1.625rem;
      height: 1.625rem;
      border-radius: 50%;
      background: hsl(210, 15%, 93%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6875rem;
      font-weight: 700;
      flex-shrink: 0;
      color: hsl(210, 10%, 50%);
  }

  .mem-opt-ltr--correct {
      background: hsl(168, 55%, 45%);
      color: #fff;
  }

  .mem-quiz-explain {
      background: hsl(168, 40%, 94%);
      border-radius: 0.5rem;
      padding: 0.625rem 0.75rem;
  }

  .mem-quiz-explain p {
      font-size: 0.75rem;
      color: hsl(168, 30%, 25%);
      line-height: 1.55;
  }

  .mem-quiz-explain strong {
      color: hsl(168, 40%, 30%);
  }

  /* ---- Progress Card ---- */
  .mem-progress-card {
      background: hsl(220, 30%, 15%);
      border-radius: 1rem;
      padding: 1.75rem;
      color: #fff;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.25);
  }

  .mem-prog-label {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: hsla(0, 0%, 100%, 0.4);
  }

  .mem-prog-big {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.1;
      margin: 0.125rem 0;
  }

  .mem-prog-sub {
      font-size: 0.6875rem;
      color: hsla(0, 0%, 100%, 0.35);
      margin-bottom: 1.25rem;
  }

  .mem-prog-bars {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      margin-bottom: 1.25rem;
  }

  .mem-prog-bar-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.6875rem;
      color: hsla(0, 0%, 100%, 0.6);
      margin-bottom: 0.1875rem;
  }

  .mem-prog-track {
      height: 7px;
      background: hsla(0, 0%, 100%, 0.08);
      border-radius: 4px;
      overflow: hidden;
  }

  .mem-prog-fill {
      height: 100%;
      border-radius: 4px;
  }

  .mem-prog-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px solid hsla(0, 0%, 100%, 0.08);
  }

  .mem-prog-stat {
      text-align: center;
  }

  .mem-prog-stat-num {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.375rem;
      font-weight: 800;
  }

  .mem-prog-stat-lbl {
      font-size: 0.5625rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: hsla(0, 0%, 100%, 0.35);
  }

  /* ---- Exam Card ---- */
  .mem-exam-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 4px 32px -4px rgba(0, 0, 0, 0.15);
  }

  .mem-exam-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
  }

  .mem-exam-title {
      font-family: var(--font-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: hsl(220, 25%, 18%);
  }

  .mem-exam-badge {
      font-size: 0.625rem;
      font-weight: 600;
      padding: 0.1875rem 0.5rem;
      border-radius: 0.3125rem;
      background: hsl(200, 65%, 92%);
      color: var(--primary);
  }

  .mem-exam-progress {
      display: flex;
      justify-content: space-between;
      font-size: 0.6875rem;
      color: hsl(210, 10%, 50%);
      margin-bottom: 0.3125rem;
  }

  .mem-exam-prog-pct {
      font-weight: 700;
  }

  .mem-exam-bar {
      height: 7px;
      background: hsl(210, 15%, 93%);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 1.25rem;
  }

  .mem-exam-bar-fill {
      height: 100%;
      border-radius: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
  }

  .mem-exam-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px solid hsl(210, 15%, 93%);
  }

  .mem-exam-stat {
      text-align: center;
  }

  .mem-exam-stat-num {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.375rem;
      font-weight: 800;
  }

  .mem-exam-stat-lbl {
      font-size: 0.5625rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: hsl(210, 10%, 50%);
  }

  /* ---- CE Card ---- */
  .mem-ce-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: 0 2px 24px -4px rgba(0, 0, 0, 0.07);
      border: 1px solid hsl(210, 15%, 92%);
      max-width: 500px;
      width: 100%;
  }

  .mem-ce-badge {
      display: inline-block;
      font-size: 0.625rem;
      font-weight: 700;
      padding: 0.1875rem 0.5rem;
      border-radius: 9999px;
      background: hsl(168, 50%, 93%);
      color: hsl(168, 42%, 32%);
      margin-bottom: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
  }

  .mem-ce-title {
      font-family: var(--font-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: hsl(220, 25%, 18%);
      margin-bottom: 0.1875rem;
  }

  .mem-ce-sub {
      font-size: 0.75rem;
      color: hsl(210, 10%, 50%);
      margin-bottom: 1rem;
  }

  .mem-ce-steps {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      margin-bottom: 1rem;
  }

  .mem-ce-step {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.75rem;
      background: hsl(210, 20%, 97%);
      border-radius: 0.5rem;
      font-size: 0.8125rem;
      color: hsl(210, 10%, 40%);
  }

  .mem-ce-step--done {
      color: hsl(220, 15%, 22%);
      font-weight: 500;
  }

  .mem-ce-check {
      width: 1.25rem;
      height: 1.25rem;
      border-radius: 50%;
      background: hsl(168, 55%, 45%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .mem-ce-download {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.625rem 0.875rem;
      background: hsl(200, 55%, 95%);
      border-radius: 0.5rem;
  }

  .mem-ce-download span {
      font-size: 0.75rem;
      font-weight: 500;
      color: hsl(210, 10%, 30%);
  }

  .mem-ce-btn {
      font-size: 0.6875rem;
      font-weight: 700;
      padding: 0.3125rem 0.75rem;
      border-radius: 0.3125rem;
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      transition: opacity 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
  }

  .mem-ce-btn:hover {
      opacity: 0.9;
  }

  .mem-ce-btn.disabled {
      pointer-events: none;
      cursor: default;
      opacity: 0.5;
  }

  /* ---- Image Card ---- */
  .mem-image-card {
      background: hsl(220, 30%, 18%);
      border-radius: 1rem;
      overflow: hidden;
      max-width: 500px;
      width: 100%;
      box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.2);
  }

  .mem-image-label {
      font-size: 0.5625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: hsla(0, 0%, 100%, 0.4);
      padding: 1.25rem 1.25rem 0.625rem;
  }

  .mem-image-wrap {
      padding: 0 0.875rem;
  }

  .mem-image-wrap img {
      width: 100%;
      border-radius: 0.5rem;
      display: block;
  }

  .mem-image-caption {
      font-size: 0.6875rem;
      color: hsla(0, 0%, 100%, 0.4);
      padding: 0.75rem 1.25rem;
  }

  /* ---- CTA Section ---- */
  .mem-cta {
      background: linear-gradient(180deg, hsl(220, 30%, 15%) 0%, hsl(220, 35%, 11%) 100%);
      padding: 5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .mem-cta::before {
      content: '';
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, hsla(200, 65%, 40%, 0.12) 0%, transparent 70%);
      pointer-events: none;
  }

  .mem-cta-inner {
      position: relative;
      z-index: 1;
  }

  .mem-cta h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
  }

  .mem-cta h2 em {
      font-style: italic;
      color: #006cb5fa;
  }

  .mem-cta-inner>p:first-of-type {
      color: hsla(0, 0%, 100%, 0.45);
      font-size: 0.9375rem;
      margin-bottom: 1.75rem;
  }

  .mem-cta-price {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.375rem;
      margin-bottom: 1.75rem;
  }

  .mem-cta-amount {
      font-family: var(--font-heading);
      font-size: 3.25rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
  }

  .mem-cta-period {
      font-size: 1rem;
      color: hsla(0, 0%, 100%, 0.4);
  }

  .mem-cta-btn {
      margin-bottom: 1rem;
  }

  .mem-cta-fine {
      font-size: 0.80rem;
      color: hsl(0deg 0% 100% / 89%);
  }

  @media (min-width: 768px) {
      .mem-cta h2 {
          font-size: 2.5rem;
      }
  }

  .mem-cta-extra {
      background: linear-gradient(180deg, hsl(220, 30%, 15%) 0%, hsl(220, 35%, 11%) 100%);
      padding: 60px 20px;
      text-align: center;
  }

  .mem-cta-extra-inner {
      display: flex;
      justify-content: center;
  }

  .mem-cta-extra-btn {
      background: #2680ff;
      color: #fff;
      font-size: 1.6rem;
      font-weight: 700;
      padding: 22px 70px;
      border-radius: 999px;
      border: none;
      box-shadow: 0 8px 24px rgba(38, 128, 255, 0.35);
      text-decoration: none;
      display: inline-block;
      transition: transform .2s ease, box-shadow .2s ease;
  }

  .mem-cta-extra-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(38, 128, 255, 0.5);
      background: #1e6fe0;
      color: #fff;
  }

  /* ======== CARD HOVER EFFECTS ======== */
  .mem-quiz-card,
  .mem-exam-card,
  .mem-ce-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mem-quiz-card:hover,
  .mem-exam-card:hover,
  .mem-ce-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
  }

  .mem-progress-card,
  .mem-image-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mem-progress-card:hover,
  .mem-image-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.35);
  }

  /* ======== SECTION LABEL IMPROVEMENT ======== */
  .mem-section .section-label,
  .mem-faq .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--primary);
      background: hsla(200, 65%, 38%, 0.08);
      padding: 0.3rem 0.75rem;
      border-radius: 9999px;
      margin-bottom: 1rem;
  }

  /* ======== MEMBERSHIP PAGE HERO ======== */
  .mem-page-hero {
      position: relative;
      padding: 5rem 0;
      text-align: center;
      overflow: hidden;
  }

  .mem-page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  .mem-page-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10, 25, 50, 0.75) 0%, rgba(10, 25, 50, 0.65) 100%);
      z-index: 1;
  }

  .mem-page-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin: 0 auto;
  }

  .mem-page-hero-title {
      font-family: var(--font-heading);
      font-size: 2.75rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 1.25rem;
  }

  .mem-page-hero-title em {
      font-style: italic;
      color: #5ba3d9;
  }

  .mem-page-hero-desc {
      color: rgba(255, 255, 255, 0.65);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
  }

  .mem-page-hero-btn {
      display: inline-block;
      background: #006cb5;
      color: #fff;
      padding: 0.875rem 2.5rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.2s ease;
  }

  .mem-page-hero-btn:hover {
      background: #0058a0;
      color: #fff;
      transform: translateY(-2px);
  }

  @media (max-width: 768px) {
      .mem-page-hero {
          padding: 3.5rem 0;
      }

      .mem-page-hero-title {
          font-size: 2rem;
      }

      .mem-page-hero-desc {
          font-size: 0.9375rem;
      }
  }

  @media (max-width: 480px) {
      .mem-page-hero-title {
          font-size: 1.625rem;
      }
  }

  /* ======== WHAT'S INCLUDED SECTION ======== */
  .mem-included {
      padding: 5rem 0 4rem;
      background: #fff;
  }

  .mem-included-header {
      text-align: center;
      margin-bottom: 3rem;
  }

  .mem-included-title {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: hsl(220, 25%, 18%);
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
      .mem-included-title {
          font-size: 2.5rem;
      }
  }

  .mem-included-sub {
      color: hsl(210, 10%, 48%);
      font-size: 1rem;
  }

  .mem-included-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      max-width: 1100px;
      margin: 0 auto;
  }

  @media (min-width: 600px) {
      .mem-included-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (min-width: 960px) {
      .mem-included-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  .mem-included-item {
      padding: 1.75rem;
      border-radius: 1rem;
      border: 1px solid hsl(210, 15%, 92%);
      background: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .mem-included-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.1);
      border-color: hsl(200, 65%, 80%);
  }

  .mem-included-icon {
      width: 3rem;
      height: 3rem;
      border-radius: 0.75rem;
      background: hsla(200, 65%, 38%, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
  }

  .mem-included-icon--teal {
      background: hsla(168, 55%, 45%, 0.1);
      color: hsl(168, 55%, 35%);
  }

  .mem-included-icon--purple {
      background: hsla(260, 50%, 55%, 0.1);
      color: hsl(260, 50%, 50%);
  }

  .mem-included-icon--green {
      background: hsla(145, 50%, 42%, 0.1);
      color: hsl(145, 50%, 35%);
  }

  .mem-included-icon--orange {
      background: hsla(30, 80%, 55%, 0.1);
      color: hsl(30, 80%, 45%);
  }

  .mem-included-icon--red {
      background: hsla(0, 65%, 55%, 0.1);
      color: hsl(0, 65%, 48%);
  }

  .mem-included-item h3 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: hsl(220, 25%, 18%);
      margin-bottom: 0.375rem;
  }

  .mem-included-item p {
      font-size: 0.875rem;
      color: hsl(210, 10%, 48%);
      line-height: 1.6;
  }

  /* ======== FAQ SECTION ======== */
  .mem-faq {
      padding: 5rem 0;
      background: hsl(210, 20%, 97%);
  }

  .mem-faq-header {
      text-align: center;
      margin-bottom: 2.5rem;
  }

  .mem-faq-header .mem-heading {
      margin-bottom: 0;
  }

  .mem-faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }

  .mem-faq-item {
      background: #fff;
      border-radius: 0.75rem;
      border: 1px solid hsl(210, 15%, 92%);
      overflow: hidden;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .mem-faq-item:hover {
      border-color: hsl(200, 65%, 80%);
  }

  .mem-faq-item[open] {
      box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
      border-color: hsl(200, 65%, 75%);
  }

  .mem-faq-item summary {
      padding: 1.125rem 1.25rem;
      font-family: var(--font-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      color: hsl(220, 25%, 18%);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: background 0.2s;
  }

  .mem-faq-item summary:hover {
      background: hsl(210, 20%, 98%);
  }

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

  .mem-faq-item summary::after {
      content: '';
      width: 1.25rem;
      height: 1.25rem;
      flex-shrink: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center / contain;
      transition: transform 0.3s ease;
  }

  .mem-faq-item[open] summary::after {
      transform: rotate(180deg);
  }

  .mem-faq-answer {
      padding: 0 1.25rem 1.25rem;
  }

  .mem-faq-answer p {
      font-size: 0.875rem;
      color: hsl(210, 10%, 42%);
      line-height: 1.7;
  }

  /* ======== ENHANCED CTA BUTTONS ======== */
  .mem-hero-content .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1rem;
      padding: 0.875rem 2rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .mem-hero-content .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.25);
  }

  .mem-cta-btn {
      transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .mem-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
  }

  .guarantee .btn {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .guarantee .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
  }

  /* ======== SCROLL REVEAL ANIMATIONS ======== */
  .reveal-item {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .mem-row .mem-text {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
  }

  .mem-row .mem-visual {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
  }

  .mem-row.revealed .mem-text,
  .mem-row.revealed .mem-visual {
      opacity: 1;
      transform: translateY(0);
  }

  /* Stagger included items */
  .mem-included-item:nth-child(1) {
      transition-delay: 0s;
  }

  .mem-included-item:nth-child(2) {
      transition-delay: 0.08s;
  }

  .mem-included-item:nth-child(3) {
      transition-delay: 0.16s;
  }

  .mem-included-item:nth-child(4) {
      transition-delay: 0.24s;
  }

  .mem-included-item:nth-child(5) {
      transition-delay: 0.32s;
  }

  .mem-included-item:nth-child(6) {
      transition-delay: 0.4s;
  }

  /* Stagger FAQ items */
  .mem-faq-item:nth-child(1) {
      transition-delay: 0s;
  }

  .mem-faq-item:nth-child(2) {
      transition-delay: 0.06s;
  }

  .mem-faq-item:nth-child(3) {
      transition-delay: 0.12s;
  }

  .mem-faq-item:nth-child(4) {
      transition-delay: 0.18s;
  }

  .mem-faq-item:nth-child(5) {
      transition-delay: 0.24s;
  }

  .mem-faq-item:nth-child(6) {
      transition-delay: 0.3s;
  }

  /* ======== MOBILE IMPROVEMENTS ======== */
  @media (max-width: 599px) {
      .mem-hero-badges {
          flex-direction: column;
          gap: 0.625rem;
      }

      .mem-hero-badges span {
          font-size: 0.875rem;
      }

      .mem-hero-title {
          font-size: 2rem !important;
      }

      .mem-hero-pricing {
          flex-wrap: wrap;
      }

      .mem-section {
          padding: 3.5rem 0;
      }

      .mem-included {
          padding: 3.5rem 0 3rem;
      }

      .mem-faq {
          padding: 3.5rem 0;
      }

      .mem-included-item {
          padding: 1.25rem;
      }
  }

  /* ===== HERO V2 ===== */
  .hero-v2 {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .hero-v2-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
  }

  .hero-v2-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10, 25, 50, 0.92) 0%, rgba(10, 25, 50, 0.75) 100%);
      z-index: 1;
  }

  .hero-v2-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      padding: 5rem 0;
  }

  .hero-v2-content {
      flex: 1;
      max-width: 540px;
  }

  .hero-v2-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 1.25rem;
      letter-spacing: 0.02em;
  }

  .hero-v2-title {
      color: #fff;
      font-size: 2.75rem;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      font-weight: 400;
  }

  .hero-v2-bold {
      font-weight: 800;
  }

  .hero-v2-light {
      font-weight: 400;
  }

  .hero-v2-desc {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 1.75rem;
      max-width: 460px;
  }

  .hero-v2-btn {
      display: inline-block;
      background: #006cb5;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s;
      margin-bottom: 1rem;
  }

  .hero-v2-btn:hover {
      background: #0058a0;
      color: #fff;
  }

  .hero-v2-payment {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.82rem;
  }

  .hero-v2-payment svg {
      stroke: rgba(255, 255, 255, 0.5);
  }

  /* Stats Grid */
  .hero-v2-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      flex-shrink: 0;
  }

  .hero-v2-stat-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      padding: 1.5rem 2rem;
      text-align: center;
      min-width: 170px;
  }

  .hero-v2-stat-number {
      display: block;
      color: #fff;
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 0.3rem;
  }

  .hero-v2-stat-label {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.8rem;
      font-weight: 500;
  }

  /* Hero V2 Responsive */
  @media (max-width: 991px) {
      .hero-v2-inner {
          flex-direction: column;
          text-align: center;
          padding: 4rem 1.25rem;
      }

      .hero-v2-content {
          max-width: 100%;
      }

      .hero-v2-desc {
          max-width: 100%;
      }

      .hero-v2-title {
          font-size: 2.25rem;
      }

      .hero-v2-payment {
          justify-content: center;
      }

      .hero-v2-stats {
          width: 100%;
          max-width: 420px;
          margin: 0 auto;
      }
  }

  @media (max-width: 576px) {
      .hero-v2 {
          min-height: auto;
      }

      .hero-v2-inner {
          padding: 2.5rem 1rem;
      }

      .hero-v2-title {
          font-size: 1.75rem;
      }

      .hero-v2-content {
          padding: 0 0.25rem;
      }

      .hero-v2-stats {
          max-width: 100%;
          gap: 0.75rem;
          padding: 0;
      }

      .hero-v2-stat-card {
          padding: 1.1rem 0.75rem;
          min-width: 0;
          border-radius: 14px;
      }

      .hero-v2-stat-number {
          font-size: 1.5rem;
      }

      .hero-v2-stat-label {
          font-size: 0.72rem;
          line-height: 1.3;
      }
  }

  /* ===================== Blog Page Styles ===================== */

  /* Blog Hero Section */
  .blog-hero-section {
      background: #0d1b3e;
      height: 230px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .blog-hero-section .container {
      width: 100%;
  }

  .blog-hero-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .blog-hero-subtitle {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: #64b5f6;
      letter-spacing: 2px;
      margin-bottom: 14px;
  }

  .blog-hero-title {
      font-family: 'Instrument Serif', serif;
      font-size: 40px;
      font-weight: 400;
      color: white;
      margin-bottom: 12px;
  }

  .blog-hero-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.7;
      font-weight: 300;
      white-space: nowrap;
  }

  /* Blog Filter Tabs */
  .blog-filter-section {
      background: white;
      padding: 16px 48px;
      border-bottom: 0.5px solid #e0e8f5;
  }

  .blog-filter-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
  }

  .blog-filter-btn {
      padding: 7px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid #e0e8f5;
      background: white;
      color: #444;
      transition: all 0.2s ease;
  }

  .blog-filter-btn:hover {
      border-color: #1976d2;
      color: #1976d2;
  }

  .blog-filter-btn.active {
      background: #1976d2;
      color: white;
      border-color: #1976d2;
  }

  /* Blog Section Label */
  .blog-section-label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: #1976d2;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
  }

  /* Featured Article */
  .blog-featured-section {
      padding: 48px 48px 40px;
      background: #f4f7fb;
  }

  .blog-featured-card {
      background: #0d1b3e;
      border-radius: 14px;
      overflow: hidden;
      height: 290px;
  }

  .blog-featured-img {
      position: relative;
      height: 270px;
      overflow: hidden;
  }

  .blog-featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .blog-featured-body {
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
  }

  .blog-category-badge {
      display: inline-block;
      background: rgba(25, 118, 210, 0.3);
      color: #64b5f6;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      width: fit-content;
      margin-bottom: 14px;
  }

  .blog-featured-date {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 10px;
  }

  .blog-featured-title {
      font-family: 'Instrument Serif', serif;
      font-size: 24px;
      color: white;
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .blog-featured-excerpt {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.8;
      margin-bottom: 20px;
  }

  .blog-featured-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #1976d2;
      color: white;
      font-size: 13px;
      font-weight: 500;
      padding: 9px 18px;
      border-radius: 6px;
      text-decoration: none;
      width: fit-content;
      transition: background 0.2s ease;
  }

  .blog-featured-btn:hover {
      background: #1565c0;
      color: #fff;
  }

  /* Blog Cards Grid */
  .blog-grid-section {
      padding: 0 48px 60px;
      background: #f4f7fb;
  }

  .blog-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      height: 100%;
      border: 0.5px solid #e0e8f5;
  }

  .blog-card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .blog-card-img {
      position: relative;
      height: 160px;
      overflow: hidden;
  }

  .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .blog-card:hover .blog-card-img img {
      transform: scale(1.05);
      transition: transform 0.3s ease;
  }

  .blog-card-body {
      padding: 20px;
  }

  .blog-card-category {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
  }

  .blog-card-title {
      font-size: 14px;
      font-weight: 600;
      color: #0d1b3e;
      line-height: 1.4;
      margin-bottom: 8px;
  }

  .blog-card-excerpt {
      font-size: 12px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 14px;
  }

  .blog-card-link {
      font-size: 13px;
      color: #1976d2;
      font-weight: 500;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
  }

  .blog-card-link:hover {
      color: #1565c0;
  }

  /* Quick Tips Section */
  .blog-tips-section {
      padding: 2.9rem 0;
      background: white;
      border-top: 0.5px solid #e0e8f5;
      border-bottom: 0.5px solid #e0e8f5;
  }

  .blog-tips-heading {
      font-size: 28px;
      font-weight: 400;
      color: #0d1b3e;
      margin-bottom: 0;
  }

  .blog-tips-subheading {
      font-size: 13px;
      color: #888;
      margin-top: 4px;
      margin-bottom: 0;
  }

  .blog-tip-card {
      background: #f4f7fb;
      border-radius: 10px;
      padding: 18px;
      height: 100%;
      border: 0.5px solid #e0e8f5;
  }

  .blog-tip-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: #2563eb;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      border-radius: 6px;
      margin-bottom: 1rem;
  }

  .blog-tip-title {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 0.6rem;
      line-height: 1.35;
  }

  .blog-tip-text {
      font-size: 0.88rem;
      color: #64748b;
      line-height: 1.6;
      margin: 0;
  }

  /* Blog CTA Section */
  .blog-cta-section {
      background: #0f1b3d;
      padding: 4.5rem 0;
  }

  .blog-cta-title {
      font-size: 34px;
      color: white;
      font-weight: 400;
      margin-bottom: 12px;
  }

  .blog-cta-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 28px;
  }

  .blog-cta-btn {
      background: #1976d2;
      color: white;
      font-size: 15px;
      font-weight: 500;
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      display: inline-block;
  }

  .blog-cta-btn:hover {
      background: #1d4ed8;
      color: #fff;
  }

  .blog-load-more-btn {
      background: #1976d2;
      color: white;
      font-size: 15px;
      font-weight: 500;
      padding: 13px 36px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background 0.2s;
  }

  .blog-load-more-btn:hover {
      background: #1d4ed8;
  }

  .blog-load-more-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
  }

  /* Blog Responsive */
  /* Blog Responsive - Tablet */
  @media (max-width: 991px) {
      .blog-hero-section {
          height: 200px;
          padding: 0 24px;
      }

      .blog-hero-title {
          font-size: 30px;
      }

      .blog-hero-desc {
          font-size: 13px;
          white-space: normal;
      }

      .blog-featured-card {
          height: auto;
      }

      .blog-featured-img {
          height: 220px;
      }

      .blog-featured-body {
          padding: 24px;
      }

      .blog-featured-title {
          font-size: 20px;
          white-space: normal;
      }

      .blog-featured-section,
      .blog-grid-section {
          padding: 24px 24px;
      }

      .blog-filter-section {
          padding: 16px 24px;
      }

      .blog-cta-section {
          padding: 3rem 0;
      }

      .blog-cta-title {
          font-size: 26px;
      }
  }

  /* Blog Responsive - Mobile */
  @media (max-width: 768px) {
      .blog-hero-section {
          height: 180px;
          padding: 0 16px;
      }

      .blog-hero-subtitle {
          font-size: 10px;
          letter-spacing: 1.5px;
          margin-bottom: 10px;
      }

      .blog-hero-title {
          font-size: 24px;
      }

      .blog-hero-desc {
          font-size: 12px;
          white-space: normal;
      }

      .blog-filter-section {
          padding: 12px 16px;
      }

      .blog-filter-btn {
          padding: 6px 12px;
          font-size: 12px;
      }

      .blog-featured-section,
      .blog-grid-section {
          padding: 20px 16px;
      }

      .blog-featured-card {
          height: auto;
      }

      .blog-featured-img {
          height: 200px;
      }

      .blog-featured-body {
          padding: 20px;
      }

      .blog-featured-title {
          font-size: 18px;
          white-space: normal;
      }

      .blog-featured-excerpt {
          font-size: 13px;
      }

      .blog-featured-btn {
          padding: 10px 20px;
          font-size: 13px;
      }

      .blog-card-img {
          height: 140px;
      }

      .blog-card-body {
          padding: 16px;
      }

      .blog-card-title {
          font-size: 13px;
      }

      .blog-card-excerpt {
          font-size: 11px;
      }

      .blog-tips-section {
          padding: 2rem 0;
      }

      .blog-tips-heading {
          font-size: 22px;
      }

      .blog-tip-card {
          padding: 14px;
      }

      .blog-cta-section {
          padding: 2.5rem 0;
      }

      .blog-cta-title {
          font-size: 22px;
      }

      .blog-cta-desc {
          font-size: 13px;
      }

      .blog-cta-btn {
          padding: 11px 24px;
          font-size: 14px;
      }
  }

  /* Blog Responsive - Small Mobile */
  @media (max-width: 480px) {
      .blog-hero-section {
          height: 160px;
      }

      .blog-hero-title {
          font-size: 20px;
      }

      .blog-hero-desc {
          font-size: 11px;
      }

      .blog-featured-img {
          height: 180px;
      }

      .blog-featured-title {
          font-size: 16px;
      }

      .blog-cta-title {
          font-size: 20px;
      }
  }