  .mlp-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: url('images/abouthero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .mlp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.25) 100%);
  }

  .mlp-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px;
  }

  .mlp-content {
    max-width: 620px;
    color: #fff;
  }

  .mlp-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
  }

  .mlp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .mlp-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
  .mlp-rating-text { color: #ddd; }

  .mlp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
  }

  .mlp-features li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #eee;
  }

  .mlp-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f5a623;
  }

  .mlp-accred {
    margin-bottom: 18px;
  }

  .mlp-accred-label {
    font-size: 12px;
    font-weight: 600;
    color: #f5a623;
    display: block;
    margin-bottom: 4px;
  }

  .mlp-accred-line {
    width: 40px;
    height: 2px;
    background: #f5a623;
    margin-bottom: 8px;
  }

  .mlp-accred-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mlp-accred-icon {
    font-size: 20px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .mlp-accred-name {
    font-size: 11.5px;
    line-height: 1.3;
    color: #ddd;
  }

  .mlp-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .mlp-price-block {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .mlp-old-price {
    font-size: 11px;
    color: #bbb;
  }

  .mlp-price {
    font-size: 18px;
    font-weight: 700;
    color: #f5a623;
  }

  .mlp-emi {
    font-size: 10.5px;
    color: #ccc;
  }

  .mlp-buttons {
    display: flex;
    gap: 10px;
  }

  .mlp-btn {
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
  }

  .mlp-btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  .mlp-btn-outline:hover { background: rgba(255,255,255,0.1); }

  .mlp-btn-solid {
    background: #1a8fe3;
    color: #fff;
  }
  .mlp-btn-solid:hover { background: #1578c2; }

  /* ===== Tablet ===== */
  @media (max-width: 768px) {
    .mlp-hero { min-height: 300px; }
    .mlp-title { font-size: 22px; }
    .mlp-content { max-width: 100%; }
    .mlp-cta-row { gap: 14px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .mlp-hero { min-height: auto; padding: 0; }
    .mlp-container { padding: 20px 16px; }
    .mlp-title { font-size: 18px; }
    .mlp-features li { font-size: 12px; }
    .mlp-rating-text { font-size: 11px; }
    .mlp-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .mlp-btn { padding: 8px 14px; font-size: 12px; }
    .mlp-accred-name { font-size: 10.5px; }
  }

   .csp-section {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }

  .csp-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .csp-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.25;
  }

  .csp-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.5;
  }

  .csp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .csp-card {
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 10px;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .csp-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transform: translateY(-2px);
  }

  .csp-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef1fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .csp-icon {
    width: 22px;
    height: 22px;
    color: #3b6ef6;
  }

  .csp-card-text {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
  }

  /* ===== Tablet ===== */
  @media (max-width: 900px) {
    .csp-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .csp-title { font-size: 22px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .csp-section { padding: 28px 14px; }
    .csp-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .csp-title { font-size: 19px; }
    .csp-subtitle { font-size: 12.5px; margin-bottom: 20px; }
    .csp-card { padding: 18px 12px; }
    .csp-icon-wrap { width: 42px; height: 42px; margin-bottom: 10px; }
    .csp-icon { width: 19px; height: 19px; }
    .csp-card-text { font-size: 12.5px; }
  }

   .prk-section {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }

  .prk-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .prk-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #f0654a;
    margin: 0 0 6px;
  }

  .prk-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 26px;
  }

  .prk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: left;
  }

  .prk-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .prk-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transform: translateY(-2px);
  }

  .prk-icon-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fdeae5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .prk-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
  }

  .prk-card-sub {
    font-size: 12px;
    color: #7a7a85;
    margin: 0;
  }

  /* ===== Tablet ===== */
  @media (max-width: 900px) {
    .prk-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .prk-title { font-size: 22px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .prk-section { padding: 28px 14px; }
    .prk-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .prk-title { font-size: 19px; }
    .prk-eyebrow { font-size: 12px; }
    .prk-card { padding: 13px; gap: 10px; }
    .prk-icon-wrap { width: 36px; height: 36px; font-size: 16px; }
    .prk-card-title { font-size: 12.5px; }
    .prk-card-sub { font-size: 11px; }
  }


   .tls-section {
    width: 100%;
    padding: 40px 0;
    background: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
  }

  .tls-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px 26px;
  }

  .tls-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
  }

  .tls-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
  }

  .tls-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  .tls-track {
    display: flex;
    align-items: center;
    width: max-content;
  }

  .tls-track-ltr { animation: tls-scroll-ltr 28s linear infinite; }
  .tls-track-rtl { animation: tls-scroll-rtl 28s linear infinite; }

  .tls-row:hover .tls-track { animation-play-state: paused; }

  @keyframes tls-scroll-ltr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
  }

  @keyframes tls-scroll-rtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .tls-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    white-space: nowrap;
  }

  .tls-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
  }

  .tls-logo span {
    font-size: 13px;
    font-weight: 600;
    color: #2b2b38;
  }

  /* ===== Tablet ===== */
  @media (max-width: 768px) {
    .tls-title { font-size: 22px; }
    .tls-logo { padding: 8px 16px; }
    .tls-logo img { height: 26px; }
    .tls-logo span { font-size: 12px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .tls-section { padding: 28px 0; }
    .tls-container { padding: 0 16px 18px; }
    .tls-title { font-size: 19px; }
    .tls-subtitle { font-size: 12px; }
    .tls-logo { padding: 6px 12px; gap: 6px; }
    .tls-logo img { height: 22px; }
    .tls-logo span { font-size: 11px; }
    .tls-track-ltr, .tls-track-rtl { animation-duration: 20s; }
  }


  .crm-section {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }

  .crm-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .crm-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin: 0 0 10px;
  }

  .crm-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 26px;
    line-height: 1.5;
  }

  .crm-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .crm-item {
    border: 1px solid #e8e8ec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
  }

  .crm-item.crm-active {
    border-color: #1a1a2e;
  }

  .crm-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    text-align: left;
  }

  .crm-header-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a2e;
  }

  .crm-item.crm-active .crm-header-title {
    color: #f0654a;
  }

  .crm-chevron {
    font-size: 15px;
    color: #f0654a;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .crm-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
  }

  .crm-item.crm-active .crm-body {
    padding: 0 20px 18px;
  }

  .crm-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .crm-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2b2b38;
    padding: 6px 0;
  }

  .crm-arrow {
    color: #f0654a;
    font-weight: 700;
    font-size: 13px;
  }

  /* ===== Tablet ===== */
  @media (max-width: 768px) {
    .crm-title { font-size: 22px; }
    .crm-header-title { font-size: 13.5px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .crm-section { padding: 28px 14px; }
    .crm-title { font-size: 19px; }
    .crm-subtitle { font-size: 12.5px; margin-bottom: 20px; }
    .crm-header { padding: 13px 14px; }
    .crm-header-title { font-size: 12.5px; }
    .crm-body { padding: 0 14px; }
    .crm-item.crm-active .crm-body { padding: 0 14px 14px; }
    .crm-list li { font-size: 12px; }
  }


    .shw-section {
    width: 100%;
    padding: 40px 20px;
    background: #f4f5f7;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }

  .shw-container { max-width: 1200px; margin: 0 auto; }

  .shw-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.25;
  }

  .shw-subtitle {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0 0 22px;
  }

  .shw-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }

  .shw-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e2e2e8;
    border-radius: 24px;
    padding: 9px 16px;
    flex: 1 1 240px;
    max-width: 320px;
  }

  .shw-search-icon { font-size: 13px; opacity: 0.6; }

  .shw-search input {
    border: none;
    outline: none;
    font-size: 13px;
    width: 100%;
    background: transparent;
  }

  .shw-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .shw-pill {
    border: 1px solid #e2e2e8;
    background: #fff;
    color: #2b2b38;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .shw-pill:hover { background: #f0f0f4; }

  .shw-pill-active {
    background: #f0654a;
    border-color: #f0654a;
    color: #fff;
  }

  .shw-slider-wrap {
    position: relative;
    overflow: hidden;
  }

  .shw-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    cursor: grab;
  }

  .shw-track.shw-dragging { cursor: grabbing; scroll-behavior: auto; }

  .shw-track::-webkit-scrollbar { height: 5px; }
  .shw-track::-webkit-scrollbar-thumb { background: #d8d8de; border-radius: 10px; }

  .shw-card {
    flex: 0 0 auto;
    width: 200px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececf0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .shw-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .shw-card.shw-hidden { display: none; }

  .shw-thumb-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: #111;
  }

  .shw-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .shw-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .shw-thumb-link:hover .shw-play {
    background: rgba(240,101,74,0.85);
    transform: translate(-50%, -50%) scale(1.08);
  }

  .shw-caption {
    font-size: 11.5px;
    color: #3b3b45;
    padding: 10px 12px 0;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shw-author {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .shw-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0654a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .shw-name { font-size: 12px; font-weight: 700; color: #1a1a2e; margin: 0; }
  .shw-cat { font-size: 11px; color: #f0654a; margin: 0; font-weight: 600; }

  /* ===== Tablet ===== */
  @media (max-width: 768px) {
    .shw-title { font-size: 22px; }
    .shw-card { width: 170px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .shw-section { padding: 28px 14px; }
    .shw-title { font-size: 19px; }
    .shw-subtitle { font-size: 12.5px; margin-bottom: 16px; }
    .shw-controls { gap: 8px; margin-bottom: 16px; }
    .shw-search { max-width: 100%; flex: 1 1 100%; padding: 7px 12px; }
    .shw-pill { font-size: 11.5px; padding: 6px 12px; }
    .shw-card { width: 145px; }
    .shw-caption { font-size: 10.5px; padding: 8px 10px 0; }
    .shw-author { padding: 8px 10px 10px; }
    .shw-avatar { width: 22px; height: 22px; font-size: 10px; }
    .shw-name { font-size: 11px; }
    .shw-cat { font-size: 10px; }
    .shw-play { width: 32px; height: 32px; font-size: 12px; }
  }


   .tst-section {
    width: 100%;
    padding: 40px 20px;
    background: #eaf1f4;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tst-container { max-width: 1100px; margin: 0 auto; }

  .tst-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 26px;
    letter-spacing: 0.3px;
  }

  .tst-bar {
    width: 4px;
    height: 20px;
    background: #4c6ef5;
    display: inline-block;
    border-radius: 2px;
  }

  .tst-slider-wrap {
    position: relative;
    overflow: hidden;
  }

  .tst-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
    cursor: grab;
  }

  .tst-track.tst-dragging { cursor: grabbing; transition: none; }

  .tst-card {
    flex: 0 0 calc(50% - 10px);
    background: #fff;
    border-radius: 14px;
    padding: 26px 24px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    opacity: 0.35;
    filter: blur(1.5px);
    transform: scale(0.94);
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
    box-sizing: border-box;
    user-select: none;
  }

  .tst-card.tst-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  .tst-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 6px;
    pointer-events: none;
    -webkit-user-drag: none;
  }

  .tst-li {
    display: inline-block;
    background: #0a66c2;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 4px;
    margin-top: -14px;
    margin-bottom: 10px;
    position: relative;
  }

  .tst-name {
    font-size: 16px;
    font-weight: 700;
    color: #2a7fd6;
    margin: 0 0 4px;
  }

  .tst-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0 0 12px;
  }

  .tst-text {
    font-size: 12.5px;
    color: #3b3b45;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
  }

  .tst-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
  }

  .tst-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #4c6ef5;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }

  .tst-arrow:hover { background: #4c6ef5; color: #fff; }

  .tst-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .tst-dot {
    width: 20px;
    height: 4px;
    border-radius: 3px;
    background: #c7d4f5;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
  }

  .tst-dot.tst-dot-active {
    background: #2a5fd6;
    width: 28px;
  }

  /* ===== Tablet ===== */
  @media (max-width: 900px) {
    .tst-card { flex: 0 0 100%; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .tst-section { padding: 28px 14px; }
    .tst-title { font-size: 16px; margin-bottom: 18px; }
    .tst-card { padding: 20px 16px; }
    .tst-avatar { width: 52px; height: 52px; }
    .tst-name { font-size: 14px; }
    .tst-stars { font-size: 12px; }
    .tst-text { font-size: 11.5px; }
    .tst-arrow { width: 30px; height: 30px; font-size: 13px; }
    .tst-nav { margin-top: 18px; gap: 12px; }
  }


   .cta-section {
    width: 100%;
    padding: 36px 20px;
    background: linear-gradient(120deg, #fdf6e3 0%, #fdeee5 50%, #fde3e0 100%);
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }

  .cta-container {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .cta-left {
    flex: 1 1 420px;
  }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #f0654a;
    margin: 0 0 10px;
  }

  .cta-title {
    font-size: 34px;
    font-weight: 800;
    color: rgb(254, 254, 255);
    line-height: 1.15;
    margin: 0 0 14px;
  }

  .cta-highlight { color: #f0654a; }

  .cta-desc {
    font-size: 14px;
    color: rgb(234, 234, 243);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 0 22px;
  }

  .cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cta-btn {
    padding: 11px 22px;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
  }

  .cta-btn-solid {
    background: #f0654a;
    color: #fff;
  }
  .cta-btn-solid:hover { background: #d94f36; }

  .cta-btn-outline {
    background: transparent;
    border: 1.5px solid #f0654a;
    color: #f0654a;
  }
  .cta-btn-outline:hover { background: rgba(109, 107, 106, 0.08); }

  .cta-right {
    flex: 1 1 420px;
  }

  .cta-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  /* ===== Tablet ===== */
  @media (max-width: 900px) {
    .cta-container { flex-direction: column-reverse; gap: 24px; }
    .cta-left, .cta-right { flex: 1 1 100%; text-align: center; }
    .cta-desc { margin-left: auto; margin-right: auto; }
    .cta-buttons { justify-content: center; }
    .cta-title { font-size: 28px; }
    .cta-image { height: 220px; }
  }

  /* ===== Mobile ===== */
  @media (max-width: 480px) {
    .cta-section { padding: 26px 14px; }
    .cta-title { font-size: 23px; }
    .cta-eyebrow { font-size: 12px; }
    .cta-desc { font-size: 12.5px; }
    .cta-btn { padding: 9px 16px; font-size: 12.5px; }
    .cta-image { height: 170px; border-radius: 10px; }
  }