
 
  .products-section {
    --card-bg: #ffffff;
    --card-radius: 14px;
    --accent: #2a7c4f;
    --accent-light: #e8f5ee;
    --text-primary: #1a1a1a;
    --text-muted: #8a8a8a;
    --red: #d94f4f;
    --border: #efefef;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.13);
  }
 
  .products-section .swiper-slide {
    width: 230px !important;
  }
 
  .products-section .product-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
 
  .products-section .product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
  }
 
  /* Image wrapper */
  .products-section .product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f7f5f2;
    aspect-ratio: 4/3;
    display: block;
  }
 
  .products-section .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
  }
 
  .products-section .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
  }
 
  /* Discount badge */
  .products-section .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 20px;
  }
 
  /* Card body */
  .products-section .product-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
 
  .products-section .product-name {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
 
  .products-section .product-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
  }
 
  /* Divider */
  .products-section .card-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
  }
 
  /* Price row */
  .products-section .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
  }
 
  .products-section .price-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
 
  .products-section .price-mrp {
    font-size: 11.5px;
    color: var(--red);
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1;
  }
 
  .products-section .price-selling {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
 
  .products-section .price-selling span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
  }
 
  /* Add to cart button */
  .products-section .btn-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 13px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    text-decoration: none;
  }
 
  .products-section .btn-cart:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.04);
  }
 
  .products-section .btn-cart svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
 
  /* Swiper navigation */
  .products-section .swiper-button-next,
  .products-section .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    border: 1px solid var(--border);
    color: var(--text-primary);
    top: 42%;
  }
 
  .products-section .swiper-button-next::after,
  .products-section .swiper-button-prev::after {
    font-size: 13px;
    font-weight: 700;
  }



  .promo-section .promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    gap: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
 
  .promo-section .promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  }
 
  /* Promo 1 — warm gold */
  .promo-section .promo-card-1 {
    background: linear-gradient(135deg, #fdf6e3 0%, #ffe680 60%, #ffca3a 100%);
    box-shadow: 0 4px 24px rgba(255, 202, 58, 0.25);
    flex-direction: row;
    align-items: center;
  }
 
  /* Promo 2 — cool blue-green */
  .promo-section .promo-card-2 {
    background: linear-gradient(135deg, #e8f4ff 0%, #d0f0e0 60%, #b2dff5 100%);
    box-shadow: 0 4px 24px rgba(33, 103, 178, 0.13);
    flex-direction: row;
    align-items: center;
  }
 
  /* Decorative blurred orb behind image */
  .promo-section .promo-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    pointer-events: none;
    left: -40px;
    top: -40px;
  }
 
  .promo-section .promo-card-1::before { background: #ffca3a; }
  .promo-section .promo-card-2::before { background: #3cb749; }
 
  /* Image container */
  .promo-section .promo-img-wrap {
    flex-shrink: 0;
    width: 45%;
    position: relative;
    z-index: 1;
  }
 
  .promo-section .promo-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: block;
  }
 
  /* Content */
  .promo-section .promo-content {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  /* Tag label */
  .promo-section .promo-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
  }
 
  .promo-section .promo-card-1 .promo-tag {
    background: rgba(255,255,255,0.7);
    color: #b07d00;
  }
 
  .promo-section .promo-card-2 .promo-tag {
    background: rgba(255,255,255,0.7);
    color: #1a5c9e;
  }
 
  .promo-section .promo-title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: var(--font-secondary);
  }
 
  .promo-section .promo-subtitle {
    font-size: 13.5px;
    line-height: 1.6;
    color: #3f3f3f;
    margin-bottom: 20px;
    font-family: var(--font-primary, inherit);
  }
 
  .promo-section .promo-card-2 .promo-subtitle {
    font-weight: 600;
    color: var(--primary-color2, #2167b2);
  }
 
  /* CTA Button */
  .promo-section .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    width: fit-content;
    min-width: 150px;
    justify-content: center;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
    font-family: var(--font-secondary, inherit);
  }
 
  .promo-section .promo-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  }
 
  .promo-section .promo-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
 
  .promo-section .promo-btn:hover svg {
    transform: translateX(3px);
  }
 
  .promo-section .promo-card-1 .promo-btn {
    background: var(--secondary-red, #d94f4f);
    color: #fff;
    box-shadow: 0 4px 14px rgba(217,79,79,0.3);
  }
 
  .promo-section .promo-card-2 .promo-btn {
    background: var(--primary-color1, #2167b2);
    color: #fff;
    box-shadow: 0 4px 14px rgba(33,103,178,0.3);
  }
 
  /* Responsive */
  @media (max-width: 640px) {
    .promo-section .promo-card {
      flex-direction: column !important;
      padding: 24px 20px;
    }
    .promo-section .promo-img-wrap {
      width: 100%;
    }
    .promo-section .promo-img-wrap img {
      max-height: 200px;
    }
  }
 
  @media (min-width: 641px) and (max-width: 1023px) {
    .promo-section .promo-img-wrap {
      width: 42%;
    }
  }
    .promo-section-2 .promo-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }
 
  .promo-section-2 .promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  }
 
  /* Decorative orb */
  .promo-section-2 .promo-card::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.3;
    pointer-events: none;
    left: -40px;
    top: -40px;
    background: rgba(255,255,255,0.6);
  }
 
  /* Image */
  .promo-section-2 .promo-img-wrap {
    flex-shrink: 0;
    width: 45%;
    position: relative;
    z-index: 1;
  }
 
  .promo-section-2 .promo-img-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: block;
  }
 
  /* Content */
  .promo-section-2 .promo-content {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  /* Tag pill */
  .promo-section-2 .promo-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: fit-content;
    background: rgba(255,255,255,0.7);
    color: #555;
    font-family: var(--font-secondary, inherit);
  }
 
  .promo-section-2 .promo-title {
    font-size: clamp(19px, 2.1vw, 27px);
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-family: var(--font-secondary, inherit);
  }
 
  .promo-section-2 .promo-subtitle {
    font-size: 13.5px;
    line-height: 1.6;
    color: #3f3f3f;
    margin-bottom: 20px;
    font-family: var(--font-primary, inherit);
  }
 
  /* CTA */
  .promo-section-2 .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    width: fit-content;
    min-width: 150px;
    justify-content: center;
    text-decoration: none;
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
    font-family: var(--font-secondary, inherit);
  }
 
  .promo-section-2 .promo-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  }
 
  .promo-section-2 .promo-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }
 
  .promo-section-2 .promo-btn:hover svg {
    transform: translateX(3px);
  }
 
  .promo-section-2 .promo-card-3 .promo-btn {
    background: var(--secondary-red, #d94f4f);
    color: #fff;
    box-shadow: 0 4px 14px rgba(217,79,79,0.3);
  }
 
  .promo-section-2 .promo-card-4 .promo-btn {
    background: var(--primary-color1, #2167b2);
    color: #fff;
    box-shadow: 0 4px 14px rgba(33,103,178,0.3);
  }
 
  /* Responsive */
  @media (max-width: 640px) {
    .promo-section-2 .promo-card {
      flex-direction: column !important;
      padding: 24px 20px;
    }
    .promo-section-2 .promo-img-wrap {
      width: 100%;
    }
  }


  .faq-section {
    background: #F6F8FB;
  }
 
  .faq-section .faq-header {
    text-align: center;
    margin-bottom: 40px;
  }
 
  .faq-section .faq-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color1, #2167b2);
    background: rgba(33,103,178,0.08);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--font-secondary, inherit);
  }
 
  .faq-section .faq-headline {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 10px;
  }
 
  .faq-section .faq-subtext {
    font-size: 14.5px;
    color: #7a7a7a;
    font-family: var(--font-primary, inherit);
  }
 
  /* Accordion item */
  .faq-section .faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8eef7;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    margin-bottom: 10px;
  }
 
  .faq-section .faq-item:last-child {
    margin-bottom: 0;
  }
 
  .faq-section .faq-item.active {
    border-color: var(--primary-color1, #2167b2);
    box-shadow: 0 4px 20px rgba(33,103,178,0.1);
  }
 
  /* Toggle button */
  .faq-section .faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-secondary, inherit);
  }
 
  .faq-section .faq-toggle:hover {
    background: #f7faff;
  }
 
  .faq-section .faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    flex: 1;
    font-family: var(--font-secondary, inherit);
  }
 
  .faq-section .faq-item.active .faq-question {
    color: var(--primary-color1, #2167b2);
  }
 
  /* Icon circle */
  .faq-section .faq-icon-wrap {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f4fb;
    border: 1.5px solid #dce6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.3s;
  }
 
  .faq-section .faq-item.active .faq-icon-wrap {
    background: var(--primary-color1, #2167b2);
    border-color: var(--primary-color1, #2167b2);
    transform: rotate(45deg);
  }
 
  .faq-section .faq-icon-wrap svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-color1, #2167b2);
    transition: stroke 0.25s;
  }
 
  .faq-section .faq-item.active .faq-icon-wrap svg {
    stroke: #fff;
  }
 
  /* Answer */
  .faq-section .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 22px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    font-family: var(--font-primary, inherit);
  }
 
  .faq-section .faq-content.open {
    max-height: 600px;
    padding: 0 22px 18px;
  }
 
  /* Left accent line when open */
  .faq-section .faq-answer-inner {
    border-left: 3px solid var(--primary-color1, #2167b2);
    padding-left: 14px;
    color: #555;
  }
 
  .faq-section .faq-answer-inner a {
    color: var(--primary-color1, #2167b2);
    text-decoration: underline;
  }
 
  /* Empty state */
  .faq-section .faq-empty {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    padding: 40px 0;
    font-family: var(--font-primary, inherit);
  }

  .vendors-section {
    background: linear-gradient(135deg, rgba(60,183,73,0.07) 0%, rgba(60,183,73,0.13) 100%);
    position: relative;
    overflow: hidden;
  }
 
  /* Subtle decorative background dots */
  .vendors-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(60,183,73,0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
  }
 
  /* Section header */
  .vendors-section .vendors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }
 
  .vendors-section .vendors-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a7c35;
    background: rgba(60,183,73,0.12);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-family: var(--font-secondary, inherit);
    display: block;
    width: fit-content;
  }
 
  .vendors-section .vendors-headline {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
  }
 
  /* Vendor card */
  .vendors-section .vendor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
 
  .vendors-section .vendor-logo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e2f5e3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(60,183,73,0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
 
  .vendors-section .vendor-card:hover .vendor-logo-wrap {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 28px rgba(60,183,73,0.2);
    border-color: #3cb749;
  }
 
  .vendors-section .vendor-logo-wrap img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
  }
 
  .vendors-section .vendor-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #3a3a3a;
    text-align: center;
    max-width: 88px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-primary, inherit);
    transition: color 0.2s;
  }
 
  .vendors-section .vendor-card:hover .vendor-name {
    color: #2a7c35;
  }
 
  /* Swiper overrides */
  .vendors-section .brandSwiper {
    position: relative;
    z-index: 1;
    padding-bottom: 36px !important;
  }
 
  .vendors-section .swiper-pagination-bullet {
    background: #3cb749;
    opacity: 0.3;
    width: 7px;
    height: 7px;
  }
 
  .vendors-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 4px;
    background: #3cb749;
    transition: width 0.3s;
  }
 
  .vendors-section .swiper-button-next,
  .vendors-section .swiper-button-prev {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1.5px solid #e2f5e3;
    color: #2a7c35;
    top: 40%;
  }
 
  .vendors-section .swiper-button-next::after,
  .vendors-section .swiper-button-prev::after {
    font-size: 12px;
    font-weight: 800;
  }
 
  .vendors-section .swiper-button-next:hover,
  .vendors-section .swiper-button-prev:hover {
    background: #3cb749;
    color: #fff;
    border-color: #3cb749;
  }
 
  @media (max-width: 640px) {
    .vendors-section .vendor-logo-wrap {
      width: 68px;
      height: 68px;
      border-radius: 10px;
    }
    .vendors-section .vendor-logo-wrap img {
      width: 52px;
      height: 52px;
    }
    .vendors-section .vendor-name {
      max-width: 68px;
      font-size: 10.5px;
    }
  }



   .brands-section {
    background: linear-gradient(135deg, rgba(33,103,178,0.05) 0%, rgba(33,103,178,0.1) 100%);
    position: relative;
    overflow: hidden;
  }
 
  .brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.5;
  }
 
  /* Header */
  .brands-section .brands-eyebrow {
    display: block;
    width: fit-content;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color1, #2167b2);
    background: rgba(33,103,178,0.1);
    padding: 4px 12px;
    margin-bottom: 8px;
    font-family: var(--font-secondary, inherit);
  }
 
  .brands-section .brands-headline {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 28px;
  }
 
  /* Brand card */
  .brands-section .brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
 
  .brands-section .brand-logo-wrap {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(33,103,178,0.07), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
  }
 
  /* Subtle gloss overlay for visual consistency across varied logo backgrounds */
  .brands-section .brand-logo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.5) 0%, transparent 55%);
    pointer-events: none;
  }
 
  .brands-section .brand-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(20%) contrast(0.95);
    transition: filter 0.28s ease, transform 0.28s ease;
    position: relative;
    z-index: 1;
  }
 
  .brands-section .brand-card:hover .brand-logo-wrap img {
    transform: scale(1.07);
  }
 
  .brands-section .brand-name {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-align: center;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-primary, inherit);
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }
 
  .brands-section .brand-card:hover .brand-name {
  }
 
  /* Swiper */
  .brands-section .brandSwiper {
    position: relative;
    z-index: 1;
    padding-bottom: 40px !important;
  }
 
  .brands-section .swiper-pagination-bullet {
    background: var(--primary-color1, #2167b2);
    opacity: 0.25;
    width: 7px;
    height: 7px;
  }
 
  .brands-section .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
    border-radius: 4px;
    background: var(--primary-color1, #2167b2);
    transition: width 0.3s;
  }
 
  .brands-section .swiper-button-next,
  .brands-section .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(33,103,178,0.12);
    border: 1.5px solid #dce8f7;
    color: var(--primary-color1, #2167b2);
    top: 42%;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
 
  .brands-section .swiper-button-next::after,
  .brands-section .swiper-button-prev::after {
    font-size: 12px;
    font-weight: 800;
  }
 
  .brands-section .swiper-button-next:hover,
  .brands-section .swiper-button-prev:hover {
    background: var(--primary-color1, #2167b2);
    color: #fff;
    border-color: var(--primary-color1, #2167b2);
  }
 
  @media (max-width: 640px) {
    .brands-section .brand-logo-wrap {
      width: 76px;
      height: 76px;
      border-radius: 12px;
      padding: 10px;
    }
    .brands-section .brand-name {
      max-width: 76px;
      font-size: 10px;
    }
  }


   .brands-page {
    position: relative;
    overflow: hidden;
  }
 
  /* Subtle background */
  .brands-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
  }
 
  /* Breadcrumb */
  .brands-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: var(--font-primary, inherit);
  }
 
  .brands-page .breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
  }
 
  .brands-page .breadcrumb a:hover {
    color: var(--primary-color1, #2167b2);
  }
 
  .brands-page .breadcrumb .sep {
    color: #ccc;
    font-size: 12px;
  }
 
  .brands-page .breadcrumb .active {
    color: var(--primary-color1, #2167b2);
    font-weight: 600;
  }
 
  /* Page header */
  .brands-page .page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
 
  .brands-page .page-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color1, #2167b2);
    background: rgba(33,103,178,0.09);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--font-secondary, inherit);
  }
 
  .brands-page .page-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
  }
 
  .brands-page .page-subtitle {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    font-family: var(--font-primary, inherit);
  }
 
  /* Decorative underline */
  .brands-page .page-title-wrap {
    display: inline-block;
    position: relative;
  }
 
  .brands-page .page-title-wrap::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary-color1, #2167b2);
    border-radius: 2px;
    margin: 10px auto 0;
  }
 
  /* Grid */
  .brands-page .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
  }
 
  @media (min-width: 640px) {
    .brands-page .brands-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 22px;
    }
  }
 
  @media (min-width: 1024px) {
    .brands-page .brands-grid {
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 24px;
    }
  }
 
  /* Brand card */
  .brands-page .brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e4edf8;
    padding: 20px 16px 16px;
    box-shadow: 0 2px 12px rgba(33,103,178,0.06), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
  }
 
  /* Gloss top-left shine */
  .brands-page .brand-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
  }
 
  .brands-page .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(33,103,178,0.14), 0 3px 8px rgba(0,0,0,0.06);
    border-color: var(--primary-color1, #2167b2);
  }
 
  /* Logo box */
  .brands-page .brand-logo-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafd;
    border-radius: 10px;
    overflow: hidden;
    padding: 12px;
    position: relative;
    z-index: 1;
  }
 
  .brands-page .brand-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(15%) contrast(0.95);
    transition: filter 0.28s ease, transform 0.28s ease;
  }
 
  .brands-page .brand-card:hover .brand-logo-box img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.07);
  }
 
  /* Name */
  .brands-page .brand-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-primary, inherit);
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
  }
 
  .brands-page .brand-card:hover .brand-label {
    color: var(--primary-color1, #2167b2);
  }
 
  /* Arrow indicator on hover */
  .brands-page .brand-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(33,103,178,0.08);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
    position: relative;
    z-index: 1;
  }
 
  .brands-page .brand-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--primary-color1, #2167b2);
  }
 
  .brands-page .brand-card:hover .brand-arrow {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* Empty state */
  .brands-page .brands-empty {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    padding: 60px 0;
    grid-column: 1 / -1;
    font-family: var(--font-primary, inherit);
  }

  .vendors-page {
    position: relative;
    overflow: hidden;
  }
 
  /* Dot grid background */
  .vendors-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(60,183,73,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
  }
 
  /* Breadcrumb */
  .vendors-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-family: var(--font-primary, inherit);
    justify-content: center;
    margin-bottom: 14px;
  }
 
  .vendors-page .breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
  }
 
  .vendors-page .breadcrumb a:hover {
    color: #2a7c35;
  }
 
  .vendors-page .breadcrumb .sep {
    color: #ccc;
    font-size: 12px;
  }
 
  .vendors-page .breadcrumb .active {
    color: #2a7c35;
    font-weight: 600;
  }
 
  /* Page header */
  .vendors-page .page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
 
  .vendors-page .page-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a7c35;
    background: rgba(60,183,73,0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--font-secondary, inherit);
  }
 
  .vendors-page .page-title-wrap {
    display: inline-block;
    position: relative;
  }
 
  .vendors-page .page-title-wrap::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #3cb749;
    border-radius: 2px;
    margin: 10px auto 0;
  }
 
  .vendors-page .page-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
  }
 
  .vendors-page .page-subtitle {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    font-family: var(--font-primary, inherit);
  }
 
  /* Grid */
  .vendors-page .vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
  }
 
  @media (min-width: 640px) {
    .vendors-page .vendors-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 22px;
    }
  }
 
  @media (min-width: 1024px) {
    .vendors-page .vendors-grid {
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 24px;
    }
  }
 
  /* Vendor card */
  .vendors-page .vendor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e2f5e3;
    padding: 20px 16px 16px;
    box-shadow: 0 2px 12px rgba(60,183,73,0.07), 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
  }
 
  .vendors-page .vendor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
  }
 
  .vendors-page .vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(60,183,73,0.16), 0 3px 8px rgba(0,0,0,0.06);
    border-color: #3cb749;
  }
 
  /* Logo box */
  .vendors-page .vendor-logo-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4fbf5;
    border-radius: 10px;
    overflow: hidden;
    padding: 12px;
    position: relative;
    z-index: 1;
  }
 
  .vendors-page .vendor-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(15%) contrast(0.95);
    transition: filter 0.28s ease, transform 0.28s ease;
  }
 
  .vendors-page .vendor-card:hover .vendor-logo-box img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.07);
  }
 
  /* Name */
  .vendors-page .vendor-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-primary, inherit);
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
    z-index: 1;
  }
 
  .vendors-page .vendor-card:hover .vendor-label {
    color: #2a7c35;
  }
 
  /* Arrow */
  .vendors-page .vendor-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(60,183,73,0.1);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
    position: relative;
    z-index: 1;
  }
 
  .vendors-page .vendor-arrow svg {
    width: 13px;
    height: 13px;
    stroke: #2a7c35;
  }
 
  .vendors-page .vendor-card:hover .vendor-arrow {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* Empty state */
  .vendors-page .vendors-empty {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    padding: 60px 0;
    grid-column: 1 / -1;
    font-family: var(--font-primary, inherit);
  }


    /* ── VENDOR ZONE PAGE STYLES ───────────────────────── */
  .vz-page {
    --blue: var(--primary-color1, #2167b2);
    --blue-dark: #174f8a;
    --blue-light: rgba(33,103,178,0.08);
    --blue-mid: rgba(33,103,178,0.15);
    --text-dark: #111827;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
  }

  /* Shared fade-up animation */
  @keyframes vz-fadeup {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .vz-fadeup { animation: vz-fadeup 0.65s ease both; }
  .vz-fadeup-d1 { animation-delay: 0.1s; }
  .vz-fadeup-d2 { animation-delay: 0.2s; }
  .vz-fadeup-d3 { animation-delay: 0.3s; }

  /* ── HERO ───────────────────────────────────────────── */
  .vz-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf2ff 0%, #f0f9f1 100%);
    padding: 80px 0 60px;
  }

  /* Background mesh */
  .vz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 60% 50% at 85% 20%, rgba(33,103,178,0.13) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 10% 80%, rgba(60,183,73,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Dot grid */
  .vz-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.4;
  }

  .vz-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .vz-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(33,103,178,0.15);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
    font-family: var(--font-primary, inherit);
  }

  .vz-breadcrumb a { color: var(--text-mid); text-decoration: none; }
  .vz-breadcrumb a:hover { color: var(--blue); }
  .vz-breadcrumb .sep { color: #ccc; }
  .vz-breadcrumb .cur { color: var(--blue); font-weight: 600; }

  .vz-hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-family: var(--font-secondary, inherit);
  }

  .vz-hero-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 18px;
  }

  .vz-hero-title span {
    color: var(--blue);
    position: relative;
  }

  /* Underline squiggle on highlight */
  .vz-hero-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    opacity: 0.35;
  }

  .vz-hero-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto 30px;
    font-family: var(--font-primary, inherit);
  }

  .vz-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .vz-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    box-shadow: 0 6px 20px rgba(33,103,178,0.3);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  }

  .vz-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33,103,178,0.35);
  }

  .vz-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.8);
    color: var(--blue);
    border: 1.5px solid var(--blue);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
  }

  .vz-btn-outline:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
  }

  /* Hero images strip */
  .vz-hero-images {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 14px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
  }

  .vz-hero-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  }

  .vz-hero-images img:nth-child(2) {
    height: 230px;
    margin-top: -15px;
    box-shadow: 0 14px 40px rgba(33,103,178,0.2);
  }

  @media (max-width: 640px) {
    .vz-hero { padding: 60px 0 40px; }
    .vz-hero-images { grid-template-columns: 1fr; gap: 10px; }
    .vz-hero-images img { height: 180px !important; margin-top: 0 !important; }
  }

  /* ── WHO WE ARE ─────────────────────────────────────── */
  .vz-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  @media (min-width: 768px) {
    .vz-split { flex-direction: row; gap: 60px; }
    .vz-split.reverse { flex-direction: row-reverse; }
    .vz-split-text { width: 50%; }
    .vz-split-img  { width: 50%; }
  }

  .vz-split-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    display: block;
  }

  .vz-section-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .vz-section-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .vz-section-body {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  /* Check list */
  .vz-check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .vz-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  .vz-check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232167b2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ── CATEGORIES ─────────────────────────────────────── */
  .vz-categories-bg {
    background: linear-gradient(135deg, #f0f6ff 0%, #f5fdf6 100%);
    position: relative;
    overflow: hidden;
  }

  .vz-categories-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
  }

  .vz-categories-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
  }

  .vz-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .vz-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #dce8f7;
    color: var(--text-dark);
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-primary, inherit);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: default;
  }

  .vz-tag:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(33,103,178,0.22);
  }

  .vz-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .vz-tag:hover .vz-tag-dot { background: rgba(255,255,255,0.7); }

  /* ── WHY CHOOSE US ──────────────────────────────────── */
  .vz-why-bg {
    background: #fff;
  }

  .vz-why-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .vz-cards-grid {  
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .vz-feature-card {
    background: #fff;
    border: 1.5px solid #e8eef7;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    flex: 1 1 200px;
    max-width: 240px;
    overflow: hidden;
  }

  .vz-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), #3cb749);
    opacity: 0;
    transition: opacity 0.25s;
  }

  .vz-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(33,103,178,0.12);
    border-color: var(--blue);
  }

  .vz-feature-card:hover::before { opacity: 1; }

  .vz-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s;
  }

  .vz-feature-card:hover .vz-feature-icon {
    background: var(--blue);
  }

  .vz-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: none;
    transition: filter 0.25s;
  }

  .vz-feature-card:hover .vz-feature-icon img {
    filter: brightness(0) invert(1);
  }

  .vz-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-secondary, inherit);
  }

  .vz-feature-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  /* ── CTA STRIP ──────────────────────────────────────── */
  .vz-cta-strip {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2a9d4f 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .vz-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  .vz-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  @media (min-width: 768px) {
    .vz-cta-inner { flex-direction: row; justify-content: space-between; }
  }

  .vz-cta-text-block .vz-section-eyebrow {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.15);
  }

  .vz-cta-text-block .vz-section-title { color: #fff; margin-bottom: 10px; }
  .vz-cta-text-block .vz-section-body { color: rgba(255,255,255,0.75); }

  .vz-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  .vz-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--blue);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .vz-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .vz-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
  }

  .vz-btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
  }

  /* Arrow icon in buttons */
  .vz-arr {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  a:hover .vz-arr { transform: translateX(3px); }

  /* Stats row */
  .vz-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin-top: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid #e8eef7;
    background: #fff;
    box-shadow: 0 4px 20px rgba(33,103,178,0.07);
  }

  .vz-stat {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid #e8eef7;
    position: relative;
  }

  .vz-stat:last-child { border-right: none; }

  .vz-stat-num {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    font-family: var(--font-secondary, inherit);
    margin-bottom: 6px;
  }

  .vz-stat-label {
    font-size: 12.5px;
    color: var(--text-light);
    font-family: var(--font-primary, inherit);
    font-weight: 500;
  }

  @media (max-width: 480px) {
    .vz-stats { flex-direction: column; }
    .vz-stat { border-right: none; border-bottom: 1px solid #e8eef7; }
    .vz-stat:last-child { border-bottom: none; }
  }

    /* ── ABOUT PAGE STYLES ─────────────────────────────── */
  .ab-page {
    --blue: var(--primary-color1, #2167b2);
    --blue-dark: #174f8a;
    --blue-light: rgba(33,103,178,0.08);
    --green: #3cb749;
    --text-dark: #111827;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
  }

  @keyframes ab-fadeup {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .ab-fadeup   { animation: ab-fadeup 0.6s ease both; }
  .ab-d1 { animation-delay: 0.1s; }
  .ab-d2 { animation-delay: 0.2s; }
  .ab-d3 { animation-delay: 0.3s; }

  /* ── HERO ───────────────────────────────────────────── */
  .ab-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf2ff 0%, #f5fdf6 100%);
    padding: 80px 0 64px;
  }

  .ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 55% 50% at 90% 15%, rgba(33,103,178,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 45% 55% at 5% 85%, rgba(60,183,73,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .ab-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.09) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.45;
  }

  .ab-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .ab-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(33,103,178,0.14);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: var(--font-primary, inherit);
    backdrop-filter: blur(4px);
  }

  .ab-breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .ab-breadcrumb a:hover { color: var(--blue); }
  .ab-breadcrumb .sep { color: #ccc; }
  .ab-breadcrumb .cur { color: var(--blue); font-weight: 600; }

  .ab-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: var(--font-secondary, inherit);
  }

  .ab-hero-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(28px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
    margin-bottom: 18px;
  }

  .ab-hero-title .hl {
    color: var(--blue);
    position: relative;
  }

  .ab-hero-title .hl::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    opacity: 0.3;
  }

  .ab-hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 40px;
    font-family: var(--font-primary, inherit);
  }

  /* Staggered images */
  .ab-images {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .ab-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .ab-images img:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  }

  .ab-images img:nth-child(2) {
    height: 232px;
    margin-top: -16px;
    box-shadow: 0 14px 40px rgba(33,103,178,0.18);
  }

  @media (max-width: 600px) {
    .ab-hero { padding: 56px 0 40px; }
    .ab-images { grid-template-columns: 1fr; gap: 10px; }
    .ab-images img { height: 180px !important; margin-top: 0 !important; }
  }

  /* Stats bar */
  .ab-stats {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid #e4edf8;
    background: #fff;
    box-shadow: 0 4px 20px rgba(33,103,178,0.07);
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
  }

  .ab-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid #e4edf8;
  }

  .ab-stat:last-child { border-right: none; }

  .ab-stat-num {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--blue);
    font-family: var(--font-secondary, inherit);
    line-height: 1;
    margin-bottom: 5px;
  }

  .ab-stat-lbl {
    font-size: 12px;
    color: var(--text-light);
    font-family: var(--font-primary, inherit);
    font-weight: 500;
  }

  @media (max-width: 480px) {
    .ab-stats { flex-direction: column; }
    .ab-stat { border-right: none; border-bottom: 1px solid #e4edf8; }
    .ab-stat:last-child { border-bottom: none; }
  }

  /* ── SPLIT SECTIONS ─────────────────────────────────── */
  .ab-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  @media (min-width: 768px) {
    .ab-split { flex-direction: row; gap: 56px; }
    .ab-split.rev { flex-direction: row-reverse; }
    .ab-split-text { flex: 1; }
    .ab-split-img { flex: 1; }
  }

  .ab-split-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    display: block;
  }

  .ab-sec-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .ab-sec-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .ab-sec-body {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  .ab-check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  .ab-check-list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232167b2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  }

  /* ── WHAT WE OFFER ──────────────────────────────────── */
  .ab-offer-bg {
    background: linear-gradient(135deg, #f0f6ff 0%, #f5fdf6 100%);
    position: relative;
    overflow: hidden;
  }

  .ab-offer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
  }

  .ab-offer-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 34px;
    position: relative;
    z-index: 1;
  }

  .ab-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .ab-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #dce8f7;
    color: var(--text-dark);
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-primary, inherit);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
  }

  .ab-tag:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(33,103,178,0.22);
  }

  .ab-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .ab-tag:hover .ab-tag-dot { background: rgba(255,255,255,0.7); }

  /* ── WHY CHOOSE US ──────────────────────────────────── */
  .ab-why-header { text-align: center; margin-bottom: 40px; }

  .ab-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .ab-feature-card {
    flex: 1 1 200px;
    max-width: 240px;
    background: #fff;
    border: 1.5px solid #e8eef7;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }

  .ab-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .ab-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(33,103,178,0.12);
    border-color: var(--blue);
  }

  .ab-feature-card:hover::before { opacity: 1; }

  .ab-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s;
  }

  .ab-feature-card:hover .ab-feature-icon { background: var(--blue); }

  .ab-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.25s;
  }

  .ab-feature-card:hover .ab-feature-icon img { filter: brightness(0) invert(1); }

  .ab-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-secondary, inherit);
  }

  .ab-feature-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  /* ── CONTACT SPLIT ──────────────────────────────────── */
  .ab-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f7faff;
    border: 1.5px solid #e4edf8;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-family: var(--font-primary, inherit);
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .ab-contact-item:hover {
    background: var(--blue-light);
    border-color: var(--blue);
    color: var(--blue);
    transform: translateX(4px);
  }

  .ab-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .ab-contact-item:hover .ab-contact-icon { background: var(--blue); }

  .ab-contact-icon svg { transition: stroke 0.2s; }
  .ab-contact-item:hover .ab-contact-icon svg { stroke: #fff !important; }

  .ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    box-shadow: 0 6px 20px rgba(33,103,178,0.28);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: 24px;
    width: fit-content;
  }

  .ab-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33,103,178,0.35);
  }

  .ab-arr {
    width: 15px; height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .ab-btn-primary:hover .ab-arr { transform: translateX(3px); }


    .tc-page {
    --blue: var(--primary-color1, #2167b2);
    --blue-light: rgba(33,103,178,0.08);
    --blue-mid: rgba(33,103,178,0.15);
    --text-dark: #111827;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
  }

  /* ── HERO ── */
  .tc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf2ff 0%, #f5fdf6 100%);
    padding: 72px 0 56px;
  }

  .tc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 90% 10%, rgba(33,103,178,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .tc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.45;
  }

  .tc-hero-inner {
    position: relative;
    z-index: 1;
  }

  .tc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(33,103,178,0.14);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-family: var(--font-primary, inherit);
    backdrop-filter: blur(4px);
  }

  .tc-breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .tc-breadcrumb a:hover { color: var(--blue); }
  .tc-breadcrumb .sep { color: #ccc; }
  .tc-breadcrumb .cur { color: var(--blue); font-weight: 600; }

  .tc-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .tc-hero-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .tc-hero-meta {
    font-size: 13px;
    color: var(--text-light);
    font-family: var(--font-primary, inherit);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .tc-hero-meta .dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-light);
  }

  /* ── LAYOUT ── */
  .tc-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }

  /* Sticky TOC sidebar */
  .tc-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
  }

  @media (max-width: 1023px) {
    .tc-sidebar { display: none; }
  }

  .tc-toc {
    background: #fff;
    border: 1.5px solid #e4edf8;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 2px 12px rgba(33,103,178,0.07);
  }

  .tc-toc-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .tc-toc a {
    display: block;
    font-size: 13px;
    color: var(--text-mid);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-primary, inherit);
    border-left: 2px solid transparent;
    line-height: 1.4;
  }

  .tc-toc a:hover {
    background: var(--blue-light);
    color: var(--blue);
    border-left-color: var(--blue);
  }

  /* ── CONTENT ── */
  .tc-content {
    flex: 1;
    min-width: 0;
  }

  /* Section block */
  .tc-section {
    background: #fff;
    border: 1.5px solid #e8eef7;
    border-radius: var(--radius-md);
    padding: 28px 30px;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .tc-section:hover {
    border-color: rgba(33,103,178,0.3);
    box-shadow: 0 4px 20px rgba(33,103,178,0.07);
  }

  .tc-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: var(--font-secondary, inherit);
  }

  .tc-section-title {
    font-family: var(--font-secondary, inherit);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .tc-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
    margin-bottom: 12px;
  }

  .tc-section p:last-child { margin-bottom: 0; }

  .tc-section p b, .tc-section p strong {
    color: var(--text-dark);
    font-weight: 600;
  }

  .tc-section a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Sub-section */
  .tc-sub {
    border-left: 3px solid var(--blue-mid);
    padding-left: 16px;
    margin-bottom: 16px;
  }

  .tc-sub:last-child { margin-bottom: 0; }

  .tc-sub-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: var(--font-secondary, inherit);
  }

  .tc-sub p {
    margin-bottom: 0;
  }

  /* Bullet list */
  .tc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .tc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  .tc-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    margin-top: 9px;
  }

  /* Warning / highlight block */
  .tc-warning {
    background: #fff8f0;
    border: 1.5px solid #f5d0a0;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #7a4a00;
    font-family: var(--font-primary, inherit);
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .tc-warning-icon {
    flex-shrink: 0;
    font-size: 16px;
    margin-top: 1px;
  }

  /* Disclaimer */
  .tc-disclaimer {
    background: #f8faff;
    border: 1.5px dashed #c4d8f0;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    font-family: var(--font-primary, inherit);
    margin-top: 4px;
  }

  /* ── CONTACT CARD ── */
  .tc-contact-card {
    background: linear-gradient(135deg, #174f8a 0%, var(--blue) 60%, #2a9d4f 100%);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border: none;
  }

  .tc-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
  }

  @media (min-width: 640px) {
    .tc-contact-card { flex-direction: row; align-items: center; justify-content: space-between; }
  }

  .tc-contact-text { position: relative; z-index: 1; }

  .tc-contact-text h3 {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .tc-contact-text p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-primary, inherit);
    line-height: 1.6;
    margin: 0;
  }

  .tc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-primary, inherit);
  }

  .tc-contact-details span {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  /* ── BUTTON ── */
  .ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--blue);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-secondary, inherit);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    width: fit-content;
    flex-shrink: 0;
  }

  .ab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  .ab-arr {
    width: 15px; height: 15px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .ab-btn-primary:hover .ab-arr { transform: translateX(3px); }

  @media (max-width: 640px) {
    .tc-section { padding: 22px 18px; }
    .tc-contact-card { padding: 28px 22px; }
  }


   .ct-page {
    --blue: var(--primary-color1, #2167b2);
    --blue-dark: #174f8a;
    --blue-light: rgba(33,103,178,0.08);
    --blue-mid: rgba(33,103,178,0.15);
    --green: #3cb749;
    --text-dark: #111827;
    --text-mid: #4b5563;
    --text-light: #9ca3af;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
  }

  /* ── HERO ── */
  .ct-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #eaf2ff 0%, #f5fdf6 100%);
    padding: 72px 0 56px;
  }

  .ct-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse 60% 50% at 90% 10%, rgba(33,103,178,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 55% at 5% 85%, rgba(60,183,73,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  .ct-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.45;
  }

  .ct-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .ct-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(33,103,178,0.14);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-family: var(--font-primary, inherit);
    backdrop-filter: blur(4px);
  }

  .ct-breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .ct-breadcrumb a:hover { color: var(--blue); }
  .ct-breadcrumb .sep { color: #ccc; }
  .ct-breadcrumb .cur { color: var(--blue); font-weight: 600; }

  .ct-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .ct-hero-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .ct-hero-title .hl {
    color: var(--blue);
    position: relative;
  }

  .ct-hero-title .hl::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    opacity: 0.3;
  }

  .ct-hero-sub {
    font-size: 15px;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── MAIN SPLIT ── */
  .ct-split {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  @media (min-width: 768px) {
    .ct-split { flex-direction: row; gap: 40px; align-items: flex-start; }
    .ct-left  { width: 46%; flex-shrink: 0; }
    .ct-right { flex: 1; }
  }

  /* ── LEFT: INFO ── */
  .ct-info-card {
    background: #fff;
    border: 1.5px solid #e4edf8;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(33,103,178,0.07);
    height: 100%;
  }

  .ct-sec-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: var(--font-secondary, inherit);
  }

  .ct-sec-title {
    font-family: var(--font-secondary, inherit);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .ct-sec-body {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
    margin-bottom: 24px;
  }

  /* Contact items */
  .ct-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ct-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    background: #f7faff;
    border: 1.5px solid #e4edf8;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-family: var(--font-primary, inherit);
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .ct-contact-item:hover {
    background: var(--blue-light);
    border-color: var(--blue);
    color: var(--blue);
    transform: translateX(4px);
  }

  .ct-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }

  .ct-contact-item:hover .ct-contact-icon {
    background: var(--blue);
  }

  .ct-contact-icon svg {
    transition: fill 0.2s;
  }

  .ct-contact-item:hover .ct-contact-icon svg {
    fill: #fff !important;
  }

  /* ── RIGHT: FORM ── */
  .ct-form-card {
    background: #fff;
    border: 1.5px solid #e4edf8;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(33,103,178,0.07);
  }

  .ct-form-title {
    font-family: var(--font-secondary, inherit);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }

  .ct-form-subtitle {
    font-size: 13.5px;
    color: var(--text-light);
    font-family: var(--font-primary, inherit);
    margin-bottom: 24px;
  }

  .ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width: 500px) {
    .ct-form-row { grid-template-columns: 1fr; }
  }

  .ct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
  }

  .ct-field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-mid);
    font-family: var(--font-secondary, inherit);
    letter-spacing: 0.3px;
  }

  .ct-field input,
  .ct-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e8f4;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    background: #f9fbff;
    font-family: var(--font-primary, inherit);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
  }

  .ct-field input:focus,
  .ct-field textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(33,103,178,0.1);
  }

  .ct-field input::placeholder,
  .ct-field textarea::placeholder {
    color: #b0bec5;
  }

  .ct-field textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* Submit button */
  .ct-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary, inherit);
    box-shadow: 0 6px 20px rgba(33,103,178,0.28);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  .ct-submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(33,103,178,0.35);
  }

  .ct-submit-btn svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .ct-submit-btn:hover svg { transform: translateX(3px); }

  /* ── WHY CHOOSE US ── */
  .ct-why-bg {
    background: linear-gradient(135deg, #f0f6ff 0%, #f5fdf6 100%);
    position: relative;
    overflow: hidden;
  }

  .ct-why-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(33,103,178,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .ct-why-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .ct-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .ct-feature-card {
    flex: 1 1 200px;
    max-width: 240px;
    background: #fff;
    border: 1.5px solid #e8eef7;
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }

  .ct-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .ct-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(33,103,178,0.12);
    border-color: var(--blue);
  }

  .ct-feature-card:hover::before { opacity: 1; }

  .ct-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s;
  }

  .ct-feature-card:hover .ct-feature-icon { background: var(--blue); }

  .ct-feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.25s;
  }

  .ct-feature-card:hover .ct-feature-icon img { filter: brightness(0) invert(1); }

  .ct-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: var(--font-secondary, inherit);
  }

  .ct-feature-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-mid);
    font-family: var(--font-primary, inherit);
  }

  @media (max-width: 640px) {
    .ct-hero { padding: 56px 0 40px; }
    .ct-info-card, .ct-form-card { padding: 24px 18px; }
  }


  