 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --indigo: #3730A3;
    --indigo-dark: #1e1b5e;
    --indigo-light: #EEF2FF;
    --indigo-mid: #6366F1;
    --gold: #D97706;
    --gold-light: #FEF3C7;
    --surface: #F8F7FF;
    --white: #FFFFFF;
    --text: #111118;
    --text-muted: #5B5B7A;
    --border: rgba(55, 48, 163, 0.15);
    --red: #DC2626;
    --green: #059669;
    --radius: 12px;
    --radius-sm: 8px;
  }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  ul{
    list-style: none;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--indigo-dark);
    color: #C7D2FE;
    text-align: center;
    font-size: 13px;
    padding: 10px 20px;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .topbar strong { color: #fff; }
  .topbar .pill {
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ── NAV ── */
  /* nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    font-family: "Sofia Sans", sans-serif;
    font-size: 22px;
    color: var(--indigo-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 34px; height: 34px;
    background: var(--indigo);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
  }
  .nav-links a { text-decoration: none; color: inherit; }
  .nav-links a:hover { color: var(--indigo); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .btn-ghost {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
  }
  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--indigo);
    border: none;
    cursor: pointer;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--indigo-dark); } */

  /* ── HERO ── */
  .hero {
    background: linear-gradient(120.34deg, #00A3E2 -11.05%, #2E2F75 92.39%);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 70%);
    bottom: -100px; left: 50px;
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #C7D2FE;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .hero-eyebrow .dot {
    width: 7px; height: 7px;
    background: #86EFAC;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }
  .hero h1 {
     font-family: "Sofia Sans", sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .hero h1 em {
    font-style: italic;
    color: #A5B4FC;
  }
  .hero-sub {
    font-size: 18px;
    color: #C7D2FE;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .btn-hero {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.15s;
  }
  .btn-hero-main {
    background: #fff;
    color: var(--indigo-dark);
  }
  .btn-hero-main:hover { background: #EEF2FF; transform: translateY(-1px); }
  .btn-hero-outline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
  }
  .btn-hero-outline:hover { background: rgba(255,255,255,0.18); }

  /* Hero trust strip */
  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    list-style: none;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C7D2FE;
    font-size: 14px;
  }
  .hero-trust-icon {
    width: 20px; height: 20px;
    background: rgba(165,180,252,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: #A5B4FC;
    flex-shrink: 0;
  }
  .trust-divider {
    width: 1px; height: 20px;
    background: rgba(255,255,255,0.15);
  }

  /* ── SOCIAL PROOF BAR ── */
  .proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .proof-item strong {
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
  }

 .stars-row {
    display: flex;
    gap: 2px;
  }
  .star { color: var(--gold); font-size: 14px; }
  .proof-sep {
    width: 1px; height: 28px;
    background: var(--border);
  }

  /* ── SECTION SCAFFOLDING ── */
  .section { padding: 72px 40px; }
  .section-inner { 
    max-width: 1240px; 
    margin: 0 auto; 
  }
  .section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--indigo-mid);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: "Sofia Sans", sans-serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--indigo-dark);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: auto;
    line-height: 1.6;
  }
  .section-header {
    margin-bottom: 48px;
    text-align: center;
  }
  .section-header.centered {
    text-align: center;
  }
  .section-header.centered .section-sub {
    margin: 0 auto;
  }

  /* ── PRODUCT CATEGORIES ── */
  .cat-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .cat-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 25px 0px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 28px 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* max-width:33% ; */
    min-height: 330px;
  }
  .width-33{
     max-width:33% ;
  }
  .cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--indigo);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .cat-card:hover {
    border-color: var(--indigo-mid);
    box-shadow: 0 8px 32px rgba(55,48,163,0.1);
    transform: translateY(-2px);
  }
  .cat-card:hover::before { transform: scaleX(1); }
  .cat-icon {
    width: 80px; 
    height: 80px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  
  .cat-icon.office,
  .cat-icon.windows,
  .cat-icon.server { 
    background: #EFF6FF; 
  }
  
  .cat-title {
    font-family: "Sofia Sans", sans-serif;
    font-size: 22px;
    color: var(--indigo-dark);
    margin-bottom: 8px;
  }
.cat-icon img {
    width: 50px;
}
  .cat-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .cat-from {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cat-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--indigo);
  }
  .cat-price-was {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
  }
  .cat-arrow {
    margin-left: auto;
    color: var(--indigo-mid);
    font-size: 18px;
  }

  /* ── FEATURED PRODUCTS ── */
  .products-bg { background: var(--surface); }
  .product-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    max-width:23% ;
     min-height: 560px; 
    /* min-height: 454px; */

  }
  .product-card:hover {
    box-shadow: 0 8px 32px rgba(55,48,163,0.1);
    transform: translateY(-2px);
    border: 2px solid var(--indigo-mid);
  }
  .product-card.featured {
    border: 2px solid var(--indigo-mid);
    position: relative;
  }
  .badge-best {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--indigo);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    z-index: 2;
  }
  .product-img {
    width: 100%;
    /* height: 180px; */
    background: #fff;
    display: flex; 
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .product-img img {
    width: auto;
    height: auto;
    object-fit: cover;
  }
  .product-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 6px;
  }
  .product-compat {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
  }
  .product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
  }
  .product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--indigo-dark);
  }
  .product-was {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
  }
  .product-save {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: #ECFDF5;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: auto;
  }
  .product-footer {
    padding: 0 20px 18px;
    display: flex;
    gap: 8px;
  }
  .btn-add-cart, .add_to_cart_button {
    flex: 1!important;
    font-family: 'DM Sans', sans-serif!important;
    font-size: 14px!important;
    font-weight: 600!important;
    background: var(--indigo)!important;
    color: #fff!important;
    border: none!important;
    border-radius: var(--radius-sm)!important;
    padding: 11px 0;
    cursor: pointer!important;
    text-align: center!important;
    transition: background 0.15s!important;
  }
  a.added_to_cart.wc-forward {
    display: none!important;
}

a.button.product_type_simple {
    flex: 1 !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: var(--indigo) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-sm) !important;
    padding: 15px 0;
    cursor: pointer !important;
    text-align: center !important;
    transition: background 0.15s !important;
}


  .btn-add-cart:hover, 
  .add_to_cart_button:hover,
   a.button.product_type_simple :hover {
     background: var(--indigo-dark)!important; 
    }
  .btn-wishlist {
    width: 42px; height: 42px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: #F59E0B;
    transition: all 0.15s;
  }
  .btn-wishlist:hover { border-color: var(--indigo); color: var(--indigo); }
  .product-card-link {
     cursor: pointer;
  }
  .product-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .tag-new { background: #EDE9FE; color: #4C1D95; }
  .tag-top { background: #FEF3C7; color: #92400E; }
  .tag-sale { background: #ECFDF5; color: #065F46; }

  /* ── VALUE PROPS ── */
  .value-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .value-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
  }
  .value-card:hover {
    border-color: var(--indigo-mid);
    background: var(--indigo-light);
  }
  .value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(0, 177, 245, 0.4);
    border: 1px solid #EEF2FF;
    box-shadow: 0px 1px 12px rgba(0, 177, 245, 0.2);
    border-radius: 35px;
  }
  .value-card:hover .value-icon { background: #fff; }
  .value-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 6px;
  }
  .value-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  /* ── HOW IT WORKS ── */
  .hiw-bg { background: var(--indigo-dark); }
  .hiw-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    position: relative;
  }
  .hiw-steps::before {
    content: '';
    position: absolute;
    top: 30px; left: 10%; right: 10%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(165,180,252,0.4) 0, rgba(165,180,252,0.4) 6px, transparent 6px, transparent 14px);
    z-index: 0;
  }
  .hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hiw-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(99,102,241,0.25);
    border: 1px solid rgba(165,180,252,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    color: #A5B4FC;
    margin: 0 auto 20px;
  }
  .hiw-title {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
  }
  .hiw-desc {
    font-size: 13px;
    color: #A5B4FC;
    line-height: 1.6;
  }
  .hiw-label { color: #A5B4FC; }
  .hiw-label .section-title { color: #fff; }
  .hiw-label .section-sub { color: #C7D2FE; }

  /* ── TESTIMONIALS ── */

/* .Gtestimonial .text-center-mt-md {
    margin-top: 8px;
} */
 .grw-review-inner.grw-backgnd {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 24px !important;
    transition: all 0.2s !important;
}
  .grw-review-inner.grw-backgnd:hover { box-shadow: 0 6px 24px rgba(55,48,163,0.08)!important; }
  .review-stars { margin-bottom: 12px ; display: flex; gap: 2px; } 
  .reviews-grid .grw-header,  .reviews-grid .grw-slider-header{
    display: none !important;
  }
  .wp-gr .wp-google-stars .wp-star {
      padding: 0 2px 0 0 !important;
      line-height: 22px !important;
  }
  .wp-gr .wp-star svg {
      width: 13px !important;
      height: 11px !important;
      vertical-align: middle !important;
  }
  .reviews-grid .wp-google-text {
    font-size: 13px!important;
    color: var(--text-muted)!important;
    margin-bottom: 18px!important;
    font-style: italic!important;
  }

  .google-review-highlight .wp-google-center-inner  {
    text-align: center !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px !important;
    padding: 4px 12px!important;
    font-size: 12px !important;
    color: #555 !important;
    font-weight: 500 !important;
    margin-bottom: 32px !important;

}
  .google-review-highlight .wp-google-center-inner a:hover {
text-decoration: underline !important;
   }
.google-review-highlight .wp-google-center-inner span.text-b, 
.google-review-highlight span.wp-review-count,
.google-review-highlight #wpgoogle-center-inner span.text-b,
.google-review-highlight span.wp-google-rating {
    font-size: 12px !important;
    font-weight: normal !important;
}
.google-review-highlight .wp-google-place .wp-google-center-inner span.wp-google-rating span.wp-stars span.wp-star svg{
   width: 12px !important;
    height: 8px !important;
}
.google-review-highlight .wp-google-center-inner div span.margin-lr ,
 .google-review-highlight #wpgoogle-center-inner div span.margin-lr {
    padding: 4px !important;
}
   
.google-review-highlight .wp-google-center div span.margin-lr svg {
    width: 11px!important;
    height: 11px!important;
     filter: grayscale(1);
}
.wp-gr .wp-google-place {
    text-align: center !important;
}
span#ratings {
    font-size: 12px !important;
    font-weight: 300 !important;
    color: #495057 !important;
}
  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .wp-gr.wpac .wp-google-left img  {
    width: 36px!important; 
    height: 36px!important;
    border-radius: 50%!important;
    background: var(--indigo-light)!important;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--indigo);
    flex-shrink: 0;
  }
  .wp-gr.wpac a.wp-google-name {
    font-size: 13px!important;
    font-weight: 600!important;
    color: var(--text)!important;
  }
  .wp-gr .wp-google-time {
    color: #555 !important;
    font-size: 10px !important;
    /* margin-top: -9px !important; */
}
.wp-gr .grw-review .wp-google-feedback {
    margin-bottom: 20px !important;
}
.wp-gr .grw-review .wp-google-stars {
    margin: 1px 0 7px !important;
}
  .review-sub {
    font-size: 12px;
    color: var(--text-muted);
  }
  .google-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: #555;
    font-weight: 500;
    margin-bottom: 2px;
  }

  /* ── VETERAN BANNER ── */
  .vet-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius);
    padding: 48px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }
  .vet-banner::before {
    content: '';
    background: url(../img/img-home-3/us-flag-icon.jpg) no-repeat;
    position: absolute;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.03);
    right: 0;
    top: 0;
    bottom: 0;
    width: 375px;
    height: 100%;
    background-size: cover;
    opacity: 0.10;
    pointer-events: none;
  }
  .vet-flag {
    font-size: 56px;
    flex-shrink: 0;
  }
  .vet-text h3 {
    font-family: "Sofia Sans", sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
  }
  .vet-text p {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 500px;
  }
  .vet-cta {
    margin-left: auto;
    flex-shrink: 0;
  }
  .btn-white {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    color: #0F172A;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
  }

  /* ── NEWSLETTER ── */
  .newsletter-bg { background: var(--indigo-light); }
  .newsletter-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .newsletter-form {
  
    margin-top: 28px;
  }
  .newsletter-input {
    flex: 1;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    outline: none;
  }
  .newsletter-input:focus { border-color: var(--indigo-mid); }
  .newsletter-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
  }

  

  /* ── URGENCY STRIP ── */
  .urgency {
    background: #FEF3C7;
    border-top: 1px solid #FDE68A;
    border-bottom: 1px solid #FDE68A;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    color: #5D2300;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .urgency strong { 
    color: #92400E; 
    font-weight: bold;
  }

  /* ── GUARANTEE STRIP ── */
  .guarantee-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .g-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
  }
  .g-icon img{
      vertical-align: middle;
  }

  /* ── UTILITY CLASSES ── */
  
  /* Text Transform */
  .text-uppercase {
    text-transform: uppercase;
  }
  
  /* Position */
  .pos-relative {
    position: relative;
  }
  
  /* Flex & Margin */
  .flex-grow {
    margin-top: auto;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-center-auto-margin {
    text-align: center;
    margin: 0 auto;
  }
  
  /* Spacing */
  .text-center-mt-lg {
    text-align: center;
    margin-top: 36px;
  }
  
  .text-center-mt-md {
    text-align: center;
    margin-top: 32px;
  }
  
  .section-no-top-padding {
    padding-top: 0;
  }
  
  /* Button Sizes */
  .btn-primary-lg {
    padding: 15px 32px 12px 32px;
    font-size: 15px;
    display: inline-block;
    border-radius: var(--radius-sm);
    background: #232454 !important;
    font-weight: 600;
  }
  
  .btn-primary-sm {
    padding: 13px 24px;
    font-size: 15px;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    background: #232454 !important;
  }
  
  /* Text Sizes */
  .text-sm-icon {
    font-size: 14px;
  }
  
  .text-sm-link {
    font-size: 14px;
  }
  
  /* Links */
  .link-secondary {
    font-size: 14px;
    font-weight: 500;
    color: var(--indigo);
    text-decoration: none;
  }
  
  /* Section Labels */
  .section-label-highlight {
    color: #818CF8;
  }
  
  /* Proof Item */
  .proof-item-uppercase {
    text-transform: uppercase;
  }




/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 767px) {
   .cat-grid {
      flex-direction: column;
    }
  .cat-card, .width-33 {
    max-width:100% ;
  }


  .product-card,
  .value-card{
      max-width: 47%;
  }


  .review-card {
    width: 90%;
    margin: 0 auto;
  }

  .vet-banner{
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .vet-cta{
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-trust {
    justify-content: center;
    /* justify-content: flex-start; */
  }
  .trust-divider{ 
    display:none;
  }

  .width-33 {
    max-width:90% ;
  }


  .product-card,
  .value-card{
      max-width: 90%;
      width: 100%;
  }

  .newsletter-form {
      flex-direction: column;
  }


  .hiw-steps {
    width: 90%;
    margin: 15px auto;
    flex-direction: column;
  }

  .section {
      padding: 72px 10px;
  }

  .urgency{
    text-align: left;
    align-items: flex-start;
  }

  .urgency img{
    width: 14px;
    margin: 3px 0 0 0;
  }
}











/*new*/



.newsletter-bg .newsletter-form .btn-primary{
    background-color: #2E2F75;
    color: #fff;
    border: none;
  }



.value-card {
    width: 23%;
}

.Gtestimonial .grw-slider-review .grw-slider-review-inner{
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.05) !important;
  border-radius: 16px !important;
  margin-top:15px;
  margin-bottom:20px;
}

#shop{
  background-color:#fff;
}


.values-section{
  background-color: #fff;
}

@media (max-width: 1200px) {
  .product-card{
        max-width: 30%;
  }
}
@media (max-width: 992px) {
  .value-grid {
      gap: 20px;
  }

  .value-card {
      width: 47%;
  }
  .product-card{
    max-width: 42%;
    width: 100%;
  }

  .value-card {
    padding: 30px 15px;
  }
}
 

@media (max-width: 767px) {
  .product-card{
    max-width: 42%;
    width: 100%;
  }

  .section {
      padding: 72px 15px;
  }

}
 
@media (max-width: 576px) {
  .hero{
      padding: 80px 15px 60px;
  }
  .trust-divider,
  .proof-sep{
    display: none;
  }

  .product-card {
    max-width: 90%;
    width: 100%;
  }

  .value-card {
      width: 95%;
  }

  .hiw-steps{
    align-items: center;
  }
}
/*new*/




