/*
  Techivo IT Solutions — professional fintech payment gateway theme
  Compatibility target: WordPress 6.6.1 / WooCommerce 9.2.1
*/

:root {
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --blue: #155eef;
  --blue2: #0b4dcc;
  --green: #12b76a;
  --green2: #32d583;
  --blue-rgb: 21 94 239;
  --green-rgb: 18 183 106;
  --text-rgb: 16 24 40;
  --navy: #07152f;
  --navy-soft: #0c2347;
  --bg: #f4f7fb;
  --bg2: #ffffff;
  --surface: #ffffff;
  --surface2: #f8fafc;
  --border: #e3e8ef;
  --text: #101828;
  --muted: #667085;
  --muted-2: #98a2b3;
  --success: #079455;
  --danger: #d92d20;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 12px 32px rgba(16, 24, 40, .08);
  --shadow-lg: 0 28px 70px rgba(7, 21, 47, .18);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.core-theme {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.core-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 0%, rgba(21, 94, 239, .07), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(18, 183, 106, .06), transparent 24rem);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
button, input, select, textarea { font: inherit; }
::selection { color: #fff; background: var(--blue); }

h1, h2, h3, h4, h5, h6,
.cl-title, .cl-h2 {
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: -.035em;
}

.cl-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.cl-section { padding: clamp(64px, 7vw, 104px) 0; }
.cl-grid { display: grid; gap: 24px; }
.cl-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cl-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.layout-boxed .cl-container { width: min(980px, calc(100% - 40px)); }

/* Colour schemes retained for Customizer compatibility. */
.colour-scheme-dark {
  --blue: #4f8cff;
  --blue2: #2f6ee5;
  --green: #32d583;
  --green2: #6ce9a6;
  --blue-rgb: 79 140 255;
  --green-rgb: 50 213 131;
  --bg: #07111f;
  --bg2: #0b1728;
  --surface: #0d1d31;
  --surface2: #12243a;
  --border: #24364d;
  --text: #f2f4f7;
  --muted: #b3bdcc;
  --text-rgb: 242 244 247;
}
.colour-scheme-ocean {
  --blue: #0077b6;
  --blue2: #005f92;
  --green: #0e9384;
  --green2: #15b79e;
  --blue-rgb: 0 119 182;
  --green-rgb: 14 147 132;
}
.colour-scheme-forest {
  --blue: #176b50;
  --blue2: #10513c;
  --green: #12b76a;
  --green2: #32d583;
  --blue-rgb: 23 107 80;
  --green-rgb: 18 183 106;
}
.colour-scheme-alt {
  --blue: #6938ef;
  --blue2: #5925dc;
  --green: #0ba5ec;
  --green2: #36bffa;
  --blue-rgb: 105 56 239;
  --green-rgb: 11 165 236;
}

/* Header and navigation */
.cl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(227, 232, 239, .85);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
  backdrop-filter: blur(18px);
}
.admin-bar .cl-header { top: 32px; }
.cl-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cl-brand { display: inline-flex; align-items: center; min-width: 0; }
.cl-brand-logo-header {
  width: clamp(220px, 24vw, 320px);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.cl-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.cl-links > a:not(.cl-cart-link) {
  padding: 10px 11px;
  color: #475467;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 650;
  transition: color .18s ease, background .18s ease;
}
.cl-links > a:not(.cl-cart-link):hover,
.cl-links > a[aria-current="page"]:not(.cl-cart-link) {
  color: var(--blue);
  background: rgba(21, 94, 239, .07);
}
.cl-nav-cta { display: flex; align-items: center; gap: 10px; }
.cl-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}
.cl-mobile { display: none; padding: 0 0 18px; }
.cl-mobile a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 14px;
  color: #344054;
  border-bottom: 1px solid #eef1f5;
  font-weight: 650;
}
.cl-mobile a:last-child { border-bottom: 0; }

/* Buttons */
.cl-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.cl-btn-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 8px 18px rgba(21, 94, 239, .22);
}
.cl-btn-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(21, 94, 239, .28);
}
.cl-btn-ghost {
  color: #344054;
  border-color: #d0d5dd;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cl-btn-ghost:hover { color: var(--blue); border-color: rgba(21, 94, 239, .35); background: #f8faff; }
.cl-btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(21, 94, 239, .25);
  outline-offset: 2px;
}

.cl-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 5px;
  padding: 9px 11px;
  color: #344054;
  border: 1px solid #e4e7ec;
  border-radius: 9px;
  background: #fff;
  font-size: .88rem;
  font-weight: 700;
}
.cl-cart-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.cl-cart-link:hover { color: var(--blue); border-color: rgba(21, 94, 239, .28); }
.cl-cart-count {
  min-width: 20px;
  padding: 1px 5px;
  color: var(--blue);
  border-radius: 999px;
  background: rgba(21, 94, 239, .08);
  text-align: center;
}

/* Hero */
.cl-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 74% 18%, rgba(50, 213, 131, .2), transparent 28rem),
    radial-gradient(circle at 12% 94%, rgba(79, 140, 255, .2), transparent 34rem),
    linear-gradient(122deg, #061229 0%, #0a234a 55%, #0a3261 100%);
}
.cl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.cl-hero-inner { position: relative; z-index: 1; }
.cl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
}
.cl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: #d1fadf;
  border: 1px solid rgba(108, 233, 166, .28);
  border-radius: 999px;
  background: rgba(18, 183, 106, .12);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cl-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #32d583; box-shadow: 0 0 0 4px rgba(50,213,131,.14); }
.cl-title {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  font-weight: 800;
  line-height: 1.02;
}
.cl-hero .cl-title { color: #fff; max-width: 12ch; }
.cl-lead {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}
.cl-hero .cl-lead { color: rgba(234, 240, 250, .82); }
.cl-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cl-hero .cl-btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); box-shadow: none; }
.cl-hero .cl-btn-ghost:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.13); }
.cl-hero-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.cl-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.cl-hero .cl-hero-card { aspect-ratio: 1.22 / 1; background: #071a35; }
.cl-hero .cl-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.08);
}

/* Trust and payment partners */
.cl-trust {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.cl-trust-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cl-trust-title { color: #475467; font-size: .86rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.cl-logo-grid { display: flex; align-items: center; justify-content: flex-end; gap: 28px; }
.cl-logo { width: auto; max-width: 132px; height: 34px; object-fit: contain; filter: none; opacity: 1; }

/* Section typography */
.cl-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.cl-h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}
.cl-sub { max-width: 68ch; margin-bottom: 0; color: var(--muted); line-height: 1.75; }

/* Cards */
.cl-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cl-card:hover { transform: translateY(-3px); border-color: rgba(21,94,239,.22); box-shadow: var(--shadow); }
.cl-card h2, .cl-card h3 { margin-bottom: 10px; font-weight: 750; line-height: 1.3; }
.cl-card h3 { font-size: 1.17rem; }
.cl-card p:last-child { margin-bottom: 0; }
.cl-card p { color: var(--muted); }
.cl-card a:not(.cl-btn) { color: var(--blue); }
.cl-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cl-features .cl-card { padding: 30px; }
.cl-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(21, 94, 239, .16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(21,94,239,.1), rgba(18,183,106,.06));
}
.cl-icon svg { width: 23px; height: 23px; }
.cl-partners {
  max-width: 680px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.cl-partners .cl-card { min-height: 118px; display: grid; place-items: center; padding: 24px; }
.cl-partners .cl-card:hover { transform: none; }
.cl-partners img { width: auto; max-width: 190px; height: 52px; object-fit: contain; }
.cl-product-item { display: flex; flex-direction: column; align-items: flex-start; }
.cl-product-item .cl-btn { margin-top: auto; }
.cl-price { color: var(--text) !important; font-family: var(--font-display); font-size: 1.15rem; font-weight: 750 !important; }

/* Inner pages */
.cl-page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 62px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(50,213,131,.16), transparent 22rem),
    linear-gradient(120deg, #07152f 0%, #0b2b58 100%);
}
.cl-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, transparent 15%, #000 100%);
}
.cl-page-hero .cl-container { position: relative; z-index: 1; }
.cl-page-hero .cl-title { max-width: 16ch; margin-bottom: 14px; color: #fff; font-size: clamp(2.1rem, 4vw, 3.5rem); }
.cl-page-hero .cl-lead { color: rgba(234,240,250,.78); }
.cl-breadcrumb { color: #b2ccff; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.cl-section > .cl-container > .cl-hero-card { border-color: var(--border); box-shadow: var(--shadow); }
.cl-section > .cl-container > .cl-hero-card img { width: 100%; max-height: 520px; object-fit: cover; }
.cl-company-card { background: linear-gradient(135deg, #fff, #f7faff); }
.cl-company-card h2 { overflow-wrap: anywhere; }

/* Content and legal pages */
.cl-content {
  max-width: 900px;
  color: #344054;
}
.cl-content > *:first-child { margin-top: 0; }
.cl-content h2 { margin: 40px 0 14px; font-size: 1.5rem; }
.cl-content h3 { margin: 28px 0 10px; font-size: 1.14rem; }
.cl-content p, .cl-content li { line-height: 1.78; }
.cl-content ul, .cl-content ol { padding-left: 22px; }
.cl-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.cl-legal-section { padding-top: 52px; }
.cl-legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.cl-legal-aside {
  position: sticky;
  top: 118px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cl-legal-aside strong { display: block; margin-bottom: 8px; font-family: var(--font-display); }
.cl-legal-aside p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.cl-legal-content {
  max-width: none;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cl-legal-content > p:first-child {
  color: #344054;
  font-size: 1.08rem;
  font-weight: 600;
}
.cl-legal-content h2 {
  padding-top: 28px;
  border-top: 1px solid #eef1f5;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}
.cl-legal-content h2:first-of-type { margin-top: 30px; }
.cl-legal-content ul { margin-bottom: 26px; }
.cl-legal-content li + li { margin-top: 8px; }

/* Forms */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"], input[type="search"], select, textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--text);
  border: 1px solid #d0d5dd;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16,24,40,.04);
  transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(21,94,239,.1);
}
label { color: #344054; font-size: .9rem; font-weight: 650; }

/* Cart and checkout */
.cl-cart-table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cl-cart-table th, .cl-cart-table td { padding: 17px 18px; border-bottom: 1px solid #eef1f5; text-align: left; vertical-align: middle; }
.cl-cart-table th { color: #475467; background: #f8fafc; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.cl-cart-table tbody tr:last-child td { border-bottom: 0; }
.cl-cart-summary {
  margin-left: auto;
  max-width: 460px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cl-cart-summary p { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 9px; color: #475467; }
.cl-cart-actions { flex-wrap: wrap; }
.cl-cart-actions .cl-btn { margin-left: 0; }

/* WooCommerce */
.woocommerce { max-width: 1180px; margin-inline: auto; }
.woocommerce .woocommerce-breadcrumb { color: var(--muted); }
.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.woocommerce ul.products li.product { padding: 18px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--text); font-family: var(--font-display); font-weight: 700; }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--blue); font-weight: 750; }
.woocommerce span.onsale { min-width: 48px; min-height: 48px; line-height: 48px; background: var(--green); }
.woocommerce table.shop_table { overflow: hidden; border-color: var(--border); border-radius: var(--radius); background: #fff; }
.woocommerce-checkout #payment { border: 1px solid var(--border); border-radius: var(--radius); background: #f8fafc; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--blue); background: #fff; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--blue); }

/* Footer */
.cl-footer {
  padding: 68px 0 28px;
  color: #d0d5dd;
  background:
    radial-gradient(circle at 88% 8%, rgba(18,183,106,.11), transparent 22rem),
    #07152f;
}
.cl-footer-grid { display: grid; grid-template-columns: 1.35fr .7fr 1fr; gap: 56px; }
.cl-footer h4 { margin-bottom: 14px; color: #fff; font-size: .95rem; letter-spacing: .02em; }
.cl-footer p { color: #98a2b3; }
.cl-footer a { color: #b9c2d0; transition: color .18s ease; }
.cl-footer a:hover { color: #fff; }
.cl-footer-brand { margin-bottom: 18px; padding: 11px 14px; border-radius: 12px; background: #fff; }
.cl-brand-logo-footer { width: min(340px, 100%); max-height: 72px; object-fit: contain; object-position: left center; }
.cl-contact-details { margin: 0; overflow-wrap: anywhere; }
.cl-contact-details strong { display: inline-block; margin-bottom: 8px; color: #fff; }
.cl-footer-legal { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.cl-footer-legal a { display: block; padding: 3px 0; font-size: .9rem; }
.cl-copyright { margin: 44px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7f8da1 !important; font-size: .86rem; }

/* Toast and WhatsApp */
.cl-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 32px);
  padding: 14px 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: #101828;
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
  font-weight: 650;
}
.cl-toast a { color: #84adff; text-decoration: underline; }
.cl-toast button { padding: 0; color: #fff; border: 0; background: transparent; font-size: 1.3rem; cursor: pointer; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: #16a75c;
  box-shadow: 0 16px 34px rgba(16,24,40,.2);
  font-weight: 750;
  transition: transform .18s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float svg { width: 20px; height: 20px; }

.cl-pagination { margin-top: 30px; }
.cl-pagination .nav-links { display: flex; gap: 8px; }
.cl-pagination a, .cl-pagination .current { padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.cl-pagination .current { color: #fff; border-color: var(--blue); background: var(--blue); }

/* Responsive */
@media (max-width: 1080px) {
  .cl-container { width: min(1180px, calc(100% - 30px)); }
  .cl-links { display: none; }
  .cl-burger { display: inline-flex; }
  .cl-mobile[aria-hidden="false"] { display: block; }
  .cl-nav-cta .cl-btn { display: none; }
  .cl-hero-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cl-brand-logo-header { width: min(300px, 62vw); }
}
@media (max-width: 900px) {
  .cl-grid-2, .cl-grid-3, .cl-features, .cl-hero-grid { grid-template-columns: 1fr; }
  .cl-hero { padding-top: 68px; }
  .cl-hero .cl-title { max-width: 14ch; }
  .cl-hero .cl-hero-card { max-width: 720px; }
  .cl-trust-row { align-items: flex-start; flex-direction: column; }
  .cl-logo-grid { justify-content: flex-start; }
  .cl-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cl-footer-grid > div:first-child { grid-column: 1 / -1; }
  .cl-legal-shell { grid-template-columns: 1fr; }
  .cl-legal-aside { position: static; }
  .admin-bar .cl-header { top: 46px; }
}
@media (max-width: 640px) {
  .cl-container { width: min(100% - 24px, 1180px); }
  .cl-nav { min-height: 72px; }
  .cl-brand-logo-header { width: min(246px, 70vw); max-height: 50px; }
  .cl-title { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .cl-hero { padding: 58px 0 64px; }
  .cl-page-hero { padding: 54px 0 46px; }
  .cl-section { padding: 58px 0; }
  .cl-card { padding: 22px; }
  .cl-partners { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cl-partners .cl-card { min-height: 94px; padding: 16px; }
  .cl-partners img { max-width: 130px; height: 38px; }
  .cl-footer-grid { grid-template-columns: 1fr; }
  .cl-footer-grid > div:first-child { grid-column: auto; }
  .cl-legal-content { padding: 24px 20px; }
  .cl-cart-table { display: block; overflow-x: auto; border-radius: 12px; }
  .cl-cart-table th, .cl-cart-table td { min-width: 125px; padding: 13px; }
  .cl-cart-summary { max-width: 100%; }
  .cl-cart-actions { justify-content: stretch !important; }
  .cl-cart-actions .cl-btn { flex: 1 1 100%; }
  .whatsapp-float { width: 48px; height: 48px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
}

/* FAQs */
.cl-faq-shell{max-width:980px;margin:0 auto}
.cl-faq-list{display:grid;gap:1rem}
.cl-faq-item{background:rgba(255,255,255,.92);border:1px solid rgba(8,82,165,.08);border-radius:18px;padding:0 1.15rem;box-shadow:0 18px 40px rgba(9,30,66,.08);overflow:hidden}
.cl-faq-item summary{list-style:none;cursor:pointer;padding:1.2rem 2.4rem 1.2rem 0;font-family:"Manrope",sans-serif;font-size:1.05rem;font-weight:700;color:var(--cl-ink,#0c2340);position:relative}
.cl-faq-item summary::-webkit-details-marker{display:none}
.cl-faq-item summary::after{content:'+';position:absolute;right:0;top:50%;transform:translateY(-50%);width:1.75rem;height:1.75rem;border-radius:999px;background:rgba(8,82,165,.08);display:grid;place-items:center;color:#0852A5;font-size:1.15rem;font-weight:700}
.cl-faq-item[open] summary::after{content:'–'}
.cl-faq-item p{margin:0 0 1.2rem;color:var(--cl-muted,#516076);line-height:1.7}
.cl-faq-content > .cl-faq-list{margin-top:.35rem}
/* =========================================================
   Techivo v5 — premium fintech presentation layer
   ========================================================= */
.cl-topbar{background:#061126;color:#cbd5e1;font-size:.78rem;border-bottom:1px solid rgba(255,255,255,.07)}
.cl-topbar-inner{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.cl-topbar-points{display:flex;gap:22px;align-items:center}
.cl-topbar-points span,.cl-topbar-points a{position:relative;padding-left:13px}
.cl-topbar-points span::before,.cl-topbar-points a::before{content:"";position:absolute;left:0;top:50%;width:5px;height:5px;border-radius:50%;background:#32d583;transform:translateY(-50%)}
.cl-header{background:rgba(255,255,255,.96);border-bottom-color:rgba(9,30,66,.08);box-shadow:0 10px 35px rgba(9,30,66,.04)}
.cl-nav{min-height:88px}
.cl-brand-logo-header{width:clamp(230px,24vw,335px);max-height:62px}
.cl-links{gap:2px}
.cl-links>a:not(.cl-cart-link){font-size:.88rem;padding:10px 10px}
.cl-nav-cta .cl-btn{padding-inline:16px}
.cl-btn-lg{min-height:52px;padding:14px 22px;border-radius:12px}
.cl-btn-block{width:100%}
.cl-btn-light{color:#07152f;background:#fff;border-color:#fff;box-shadow:0 12px 30px rgba(0,0,0,.16)}
.cl-btn-light:hover{color:#07152f;background:#f8fafc;transform:translateY(-1px)}
.cl-kicker-light{color:#8ff0c5}
.cl-section-white{background:#fff}
.cl-section-tinted{background:linear-gradient(180deg,#f5f8fd 0%,#eef4fb 100%)}
.cl-section-heading{max-width:760px;margin-bottom:38px}
.cl-section-heading-center{text-align:center;margin-inline:auto}
.cl-heading-after-image{margin-top:52px}
.cl-page-hero-v5{padding:78px 0 68px;background:
 radial-gradient(circle at 86% 10%,rgba(50,213,131,.16),transparent 22rem),
 radial-gradient(circle at 15% 0%,rgba(21,94,239,.22),transparent 28rem),
 linear-gradient(135deg,#061126 0%,#0a2450 58%,#0d326f 100%)}
.cl-page-hero-v5 .cl-title{max-width:18ch;font-size:clamp(2.45rem,5vw,4.6rem);line-height:1.02}
.cl-page-hero-v5 .cl-lead{max-width:780px;font-size:1.08rem}
.cl-hero-v5{position:relative;overflow:hidden;padding:88px 0 92px;background:
 radial-gradient(circle at 82% 8%,rgba(18,183,106,.13),transparent 22rem),
 radial-gradient(circle at 16% 0%,rgba(21,94,239,.15),transparent 26rem),
 linear-gradient(180deg,#f9fbff 0%,#eef4fb 100%)}
.cl-hero-v5::after{content:"";position:absolute;inset:auto -8% -240px 35%;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(21,94,239,.09),transparent 68%);filter:blur(2px)}
.cl-hero-v5 .cl-hero-grid{position:relative;z-index:1;grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);gap:58px;align-items:center}
.cl-hero-copy .cl-title{max-width:11ch;margin:18px 0 22px;font-size:clamp(3rem,5.4vw,5.35rem);line-height:.98;letter-spacing:-.055em}
.cl-hero-copy .cl-lead{max-width:660px;color:#475467;font-size:1.08rem;line-height:1.75}
.cl-eyebrow{display:inline-flex;align-items:center;gap:10px;padding:8px 12px;border:1px solid rgba(21,94,239,.13);border-radius:999px;background:rgba(255,255,255,.74);color:#174ea6;font-size:.79rem;font-weight:800;letter-spacing:.045em;text-transform:uppercase;box-shadow:0 8px 24px rgba(9,30,66,.05)}
.cl-eyebrow span{width:8px;height:8px;border-radius:50%;background:#12b76a;box-shadow:0 0 0 5px rgba(18,183,106,.12)}
.cl-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.cl-proof-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:34px}
.cl-proof-row>div{padding:16px 17px;border:1px solid rgba(9,30,66,.08);border-radius:14px;background:rgba(255,255,255,.78);box-shadow:0 12px 28px rgba(9,30,66,.05)}
.cl-proof-row strong,.cl-proof-row span{display:block}.cl-proof-row strong{color:#0c2347;font-family:var(--font-display);font-size:1rem}.cl-proof-row span{margin-top:3px;color:#667085;font-size:.77rem}
.cl-hero-visual-wrap{position:relative;padding:22px}
.cl-hero-card-v5{padding:10px;border:1px solid rgba(255,255,255,.9);border-radius:28px;background:rgba(255,255,255,.82);box-shadow:0 35px 80px rgba(9,30,66,.19);transform:perspective(1200px) rotateY(-2deg) rotateX(1deg)}
.cl-hero-card-v5 img{width:100%;min-height:510px;object-fit:cover;border-radius:20px}
.cl-float-card{position:absolute;z-index:3;min-width:190px;padding:14px 16px;border:1px solid rgba(255,255,255,.85);border-radius:16px;background:rgba(255,255,255,.94);box-shadow:0 22px 48px rgba(9,30,66,.18);backdrop-filter:blur(12px)}
.cl-float-card strong,.cl-float-card small{display:block}.cl-float-card strong{font-size:.88rem}.cl-float-card small{margin-top:3px;color:#667085;font-size:.72rem}.cl-float-card-a{left:-2px;bottom:88px}.cl-float-card-b{right:-5px;top:70px}.cl-status-dot{display:inline-block;width:8px;height:8px;margin-right:7px;border-radius:50%;background:#12b76a;box-shadow:0 0 0 5px rgba(18,183,106,.13)}
.cl-trust-v5{padding:34px 0;border-top:1px solid #e8edf3;border-bottom:1px solid #e8edf3;background:#fff}
.cl-trust-v5 .cl-trust-row{display:flex;justify-content:space-between;align-items:center;gap:32px}.cl-trust-v5 h2{margin:5px 0 0;font-size:1.35rem}.cl-logo-grid{display:flex;gap:14px;align-items:center}.cl-partner-logo{display:grid;place-items:center;width:190px;height:84px;padding:16px 24px;border:1px solid #e5eaf0;border-radius:16px;background:#fff;box-shadow:0 10px 25px rgba(9,30,66,.05)}.cl-partner-logo img{max-width:145px;max-height:48px;object-fit:contain}
.cl-capability-grid{margin-top:18px}.cl-feature-card{position:relative;overflow:hidden;min-height:300px;padding:30px}.cl-feature-card::after{content:"";position:absolute;right:-50px;bottom:-60px;width:160px;height:160px;border-radius:50%;background:radial-gradient(circle,rgba(21,94,239,.08),transparent 70%)}.cl-feature-card h3{margin-top:22px;font-size:1.25rem}.cl-feature-card p{color:#667085}.cl-feature-card>a{position:relative;z-index:1;color:#155eef;font-weight:750}.cl-icon-blue{background:#eaf0ff!important;color:#155eef!important}.cl-icon-green{background:#e9fbf3!important;color:#079455!important}.cl-icon-violet{background:#f1ecff!important;color:#6938ef!important}
.cl-split-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(380px,.88fr);gap:64px;align-items:center}.cl-check-list{padding:0;margin:28px 0;list-style:none}.cl-check-list li{position:relative;padding:8px 0 8px 34px;color:#344054}.cl-check-list li::before{content:"✓";position:absolute;left:0;top:8px;display:grid;place-items:center;width:22px;height:22px;border-radius:50%;color:#079455;background:#eafbf3;font-size:.77rem;font-weight:900}
.cl-operations-panel{padding:30px;border:1px solid rgba(21,94,239,.11);border-radius:24px;background:linear-gradient(145deg,#07152f,#0e2f66);box-shadow:0 28px 60px rgba(7,21,47,.2);color:#fff}.cl-mini-metric{display:flex;justify-content:space-between;gap:16px;padding:13px 0;border-bottom:1px solid rgba(255,255,255,.09)}.cl-mini-metric span{color:#aab8cc}.cl-mini-metric strong{color:#fff}.cl-mini-chart{height:150px;display:flex;align-items:flex-end;gap:10px;padding:25px 0 10px}.cl-mini-chart div{flex:1;border-radius:7px 7px 2px 2px;background:linear-gradient(180deg,#32d583,#155eef)}.cl-mini-chart div:nth-child(1){height:30%}.cl-mini-chart div:nth-child(2){height:45%}.cl-mini-chart div:nth-child(3){height:40%}.cl-mini-chart div:nth-child(4){height:68%}.cl-mini-chart div:nth-child(5){height:58%}.cl-mini-chart div:nth-child(6){height:86%}.cl-operations-panel p{margin:16px 0 0;color:#b8c5d8;font-size:.92rem}
.cl-process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.cl-process-grid article{position:relative;padding:30px 28px;border:1px solid #e4e9f0;border-radius:20px;background:#fff}.cl-process-grid article::after{content:"";position:absolute;top:43px;right:-24px;width:24px;border-top:1px dashed #aac2e8}.cl-process-grid article:last-child::after{display:none}.cl-process-grid span{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;color:#fff;background:linear-gradient(135deg,#155eef,#12b76a);font-family:var(--font-display);font-weight:800}.cl-process-grid h3{margin:20px 0 9px}.cl-process-grid p{margin:0;color:#667085}
.cl-cta-section{padding:72px 0;background:#fff}.cl-cta-panel{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:46px 52px;border-radius:28px;background:radial-gradient(circle at 85% 0%,rgba(50,213,131,.2),transparent 20rem),linear-gradient(135deg,#061126,#0c2f65);box-shadow:0 28px 70px rgba(7,21,47,.22);color:#fff}.cl-cta-panel h2{max-width:650px;margin:7px 0 10px;color:#fff;font-size:clamp(2rem,3.4vw,3.1rem)}.cl-cta-panel p{max-width:720px;margin:0;color:#b9c5d6}
.cl-image-card{padding:10px;border-radius:24px}.cl-image-card img{width:100%;height:100%;min-height:420px;object-fit:cover;border-radius:17px}.cl-wide-image img{max-height:540px;min-height:360px}.cl-about-intro{grid-template-columns:minmax(420px,.95fr) minmax(0,1fr)}.cl-inline-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:28px}.cl-inline-facts>div{padding:16px;border:1px solid #e5eaf0;border-radius:14px;background:#f9fbfd}.cl-inline-facts strong,.cl-inline-facts span{display:block}.cl-inline-facts span{margin-top:3px;color:#667085;font-size:.78rem}.cl-value-card>span{color:#155eef;font-family:var(--font-display);font-size:.8rem;font-weight:800;letter-spacing:.08em}.cl-value-card h3{margin-top:18px}.cl-dark-card{padding:36px;color:#fff;background:linear-gradient(145deg,#061126,#0d326f);box-shadow:0 24px 60px rgba(7,21,47,.22)}.cl-dark-card h3{color:#fff;font-size:1.7rem}.cl-dark-card p{color:#b9c5d6}
.cl-security-image img{object-fit:contain;background:#07152f}.cl-security-card>span{display:inline-flex;padding:6px 9px;border-radius:999px;color:#155eef;background:#eef3ff;font-size:.73rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.cl-pricing-grid{align-items:stretch}.cl-pricing-card{position:relative;display:flex;flex-direction:column;padding:30px}.cl-pricing-card ul{padding-left:0;list-style:none;margin:22px 0}.cl-pricing-card li{position:relative;padding:7px 0 7px 28px;color:#475467}.cl-pricing-card li::before{content:"✓";position:absolute;left:0;color:#079455;font-weight:900}.cl-pricing-card .cl-btn{margin-top:auto}.cl-pricing-featured{border-color:rgba(21,94,239,.35);box-shadow:0 26px 65px rgba(21,94,239,.14);transform:translateY(-12px)}.cl-pricing-badge{position:absolute;top:-13px;right:22px;padding:6px 10px;border-radius:999px;color:#fff;background:#155eef;font-size:.72rem;font-weight:800}
.cl-contact-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(420px,.9fr);gap:56px;align-items:start}.cl-contact-cards{display:grid;gap:14px;margin-top:30px}.cl-contact-card{display:flex;flex-direction:column;padding:22px 24px}.cl-contact-card>span{color:#155eef;font-size:.76rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.cl-contact-card>strong{margin-top:7px;color:#101828;font-size:1.05rem}.cl-contact-card>small{margin-top:5px;color:#667085}.cl-response-note{margin-top:24px;padding:22px;border-left:4px solid #12b76a;border-radius:0 14px 14px 0;background:#f0fbf6}.cl-response-note p{margin:6px 0 0;color:#475467}.cl-contact-image img{min-height:600px}
.cl-products-intro{margin-bottom:58px}.cl-product-grid{margin-top:24px}.cl-product-item{display:grid;grid-template-columns:60px minmax(0,1fr);gap:20px;padding:28px}.cl-product-icon,.cl-cart-item-mark{display:grid;place-items:center;width:54px;height:54px;border-radius:15px;color:#fff;background:linear-gradient(135deg,#155eef,#12b76a);font-family:var(--font-display);font-weight:800;box-shadow:0 12px 25px rgba(21,94,239,.2)}.cl-product-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:22px;padding-top:20px;border-top:1px solid #edf0f4}.cl-product-footer span,.cl-product-footer small,.cl-product-footer strong{display:block}.cl-product-footer small{color:#98a2b3}.cl-product-footer strong{margin-top:2px}.cl-product-detail{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.85fr);gap:56px;align-items:center}.cl-product-price{margin:25px 0;padding:18px;border:1px solid #e4e9f0;border-radius:16px;background:#f8fafc}.cl-product-price span,.cl-product-price strong{display:block}.cl-product-price span{color:#667085;font-size:.8rem}.cl-product-price strong{margin-top:2px;color:#155eef;font-family:var(--font-display);font-size:1.5rem}.cl-product-form{display:grid;grid-template-columns:90px 1fr 1fr;gap:10px;align-items:end}.cl-product-form label{grid-column:1/-1}.cl-product-form input[type=number]{max-width:90px}
.cl-cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:34px;align-items:start}.cl-cart-items-panel{border:1px solid #e4e9f0;border-radius:22px;background:#fff;box-shadow:0 18px 45px rgba(9,30,66,.07);overflow:hidden}.cl-panel-heading{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:26px 28px;border-bottom:1px solid #edf0f4}.cl-panel-heading h2{margin:5px 0 0;font-size:1.35rem}.cl-panel-heading>a{color:#155eef;font-weight:750}.cl-cart-items{padding:0 28px}.cl-cart-item{display:grid;grid-template-columns:58px minmax(0,1fr) auto;gap:20px;align-items:center;padding:24px 0;border-bottom:1px solid #edf0f4}.cl-cart-item:last-child{border-bottom:0}.cl-cart-item-copy h3{margin:0 0 5px}.cl-cart-item-copy p{margin:0 0 6px;color:#667085;font-size:.88rem}.cl-cart-item-copy span{color:#98a2b3;font-size:.78rem}.cl-cart-item-price{text-align:right}.cl-cart-item-price strong,.cl-cart-item-price small,.cl-cart-item-price a{display:block}.cl-cart-item-price small{margin-top:3px;color:#98a2b3}.cl-cart-item-price a{margin-top:10px;color:#d92d20;font-size:.8rem;font-weight:700}.cl-cart-assurance{margin:0 28px 28px;padding:20px;border-radius:14px;background:#f4f8fd}.cl-cart-assurance p{margin:5px 0 0;color:#667085;font-size:.9rem}.cl-cart-summary-v5{position:sticky;top:132px;max-width:none;padding:28px;border-radius:22px;box-shadow:0 20px 50px rgba(9,30,66,.09)}.cl-cart-summary-v5 h2{margin:6px 0 22px;font-size:1.35rem}.cl-cart-summary-v5 dl,.cl-checkout-summary dl{margin:0}.cl-cart-summary-v5 dl>div,.cl-checkout-summary dl>div{display:flex;justify-content:space-between;gap:20px;padding:9px 0;color:#475467}.cl-total-row{margin-top:10px;padding-top:17px!important;border-top:1px solid #e5eaf0;color:#101828!important;font-size:1.1rem;font-weight:800}.cl-cart-back{display:block;margin-top:13px;color:#155eef;text-align:center;font-size:.88rem;font-weight:750}.cl-secure-note{display:flex;gap:10px;margin-top:22px;padding-top:20px;border-top:1px solid #edf0f4}.cl-secure-note>span{display:grid;place-items:center;flex:0 0 28px;width:28px;height:28px;border-radius:50%;color:#079455;background:#eafbf3;font-weight:900}.cl-secure-note p{margin:0!important;color:#667085!important;font-size:.78rem!important;line-height:1.5}.cl-secure-note strong{color:#344054}.cl-empty-state,.cl-success-state{max-width:760px;margin:0 auto;padding:54px 44px;border:1px solid #e4e9f0;border-radius:24px;background:#fff;box-shadow:0 24px 60px rgba(9,30,66,.08);text-align:center}.cl-empty-icon,.cl-success-icon{display:grid;place-items:center;width:68px;height:68px;margin:0 auto 20px;border-radius:20px;color:#155eef;background:#edf3ff;font-family:var(--font-display);font-size:1.5rem;font-weight:900}.cl-success-icon{color:#079455;background:#eafbf3}.cl-order-reference{display:inline-flex;flex-direction:column;gap:3px;margin:18px 0 8px;padding:14px 22px;border-radius:12px;background:#f4f7fb}.cl-order-reference span{color:#667085;font-size:.76rem}.cl-order-reference strong{font-size:1.1rem;letter-spacing:.04em}
.cl-checkout-alert{margin-bottom:22px;padding:15px 18px;border:1px solid #fecdca;border-radius:12px;color:#b42318;background:#fef3f2}.cl-checkout-layout{display:grid;grid-template-columns:minmax(0,1fr) 390px;gap:34px;align-items:start}.cl-checkout-main{display:grid;gap:20px}.cl-checkout-card,.cl-checkout-summary{padding:30px;border:1px solid #e4e9f0;border-radius:22px;background:#fff;box-shadow:0 18px 45px rgba(9,30,66,.07)}.cl-checkout-heading{display:flex;gap:14px;align-items:flex-start;margin-bottom:26px}.cl-checkout-heading>span{display:grid;place-items:center;flex:0 0 36px;width:36px;height:36px;border-radius:11px;color:#fff;background:linear-gradient(135deg,#155eef,#12b76a);font-weight:800}.cl-checkout-heading h2{margin:0;font-size:1.3rem}.cl-checkout-heading p{margin:4px 0 0;color:#667085;font-size:.86rem}.cl-checkout-card>label,.cl-form-grid label{display:block;margin-top:15px}.cl-checkout-card label em{color:#d92d20;font-style:normal}.cl-form-grid{display:grid;gap:14px}.cl-form-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}.cl-payment-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.cl-payment-option{position:relative;margin:0!important}.cl-payment-option>input{position:absolute;opacity:0;pointer-events:none}.cl-payment-option>span{display:flex;min-height:150px;flex-direction:column;align-items:center;justify-content:center;padding:18px;border:2px solid #e5eaf0;border-radius:16px;background:#fff;text-align:center;cursor:pointer;transition:.18s ease}.cl-payment-option img{max-width:130px;max-height:44px;margin-bottom:12px;object-fit:contain}.cl-payment-option strong,.cl-payment-option small{display:block}.cl-payment-option small{margin-top:3px;color:#667085}.cl-payment-option>input:checked+span{border-color:#155eef;background:#f4f7ff;box-shadow:0 0 0 4px rgba(21,94,239,.08)}.cl-checkbox-row{display:flex!important;gap:10px;align-items:flex-start;margin-top:22px!important;color:#475467}.cl-checkbox-row input{margin-top:5px}.cl-checkbox-row a{color:#155eef;text-decoration:underline}.cl-checkout-summary{position:sticky;top:132px}.cl-checkout-summary h2{margin:6px 0 20px;font-size:1.35rem}.cl-summary-items{margin-bottom:18px;padding-bottom:18px;border-bottom:1px solid #edf0f4}.cl-summary-items>div{display:flex;justify-content:space-between;gap:18px;padding:10px 0}.cl-summary-items span,.cl-summary-items strong,.cl-summary-items small{display:block}.cl-summary-items small{margin-top:3px;color:#98a2b3}.cl-summary-items b{white-space:nowrap;font-size:.88rem}
.cl-footer-grid-v5{grid-template-columns:1.35fr .65fr .65fr 1fr}.cl-footer-intro>p{max-width:430px}.cl-footer-badges{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px}.cl-footer-badges span{padding:6px 9px;border:1px solid rgba(255,255,255,.12);border-radius:999px;color:#b9c5d6;font-size:.72rem}.cl-footer-bottom-v5{display:flex;justify-content:space-between;gap:25px;margin-top:44px;padding-top:22px;border-top:1px solid rgba(255,255,255,.1)}.cl-footer-bottom-v5 p{margin:0;color:#7f8da1}.cl-footer-bottom-v5>div{display:flex;gap:18px;flex-wrap:wrap}.cl-footer-bottom-v5 a{font-size:.82rem}

@media(max-width:1080px){.cl-topbar{display:none}.cl-hero-v5 .cl-hero-grid,.cl-contact-layout,.cl-product-detail,.cl-about-intro{grid-template-columns:1fr}.cl-hero-copy .cl-title{max-width:14ch}.cl-hero-visual-wrap{max-width:820px}.cl-float-card-b{right:8px}.cl-cart-layout,.cl-checkout-layout{grid-template-columns:minmax(0,1fr) 340px}.cl-footer-grid-v5{grid-template-columns:1.4fr 1fr 1fr}.cl-footer-grid-v5>div:last-child{grid-column:1/-1}.cl-links{display:none}.cl-burger{display:inline-flex}.cl-mobile[aria-hidden="false"]{display:block}.cl-nav-cta .cl-btn{display:none}}
@media(max-width:900px){.cl-split-layout,.cl-cart-layout,.cl-checkout-layout{grid-template-columns:1fr}.cl-cart-summary-v5,.cl-checkout-summary{position:static}.cl-proof-row,.cl-process-grid,.cl-inline-facts{grid-template-columns:1fr}.cl-process-grid article::after{display:none}.cl-trust-v5 .cl-trust-row{align-items:flex-start;flex-direction:column}.cl-product-form{grid-template-columns:90px 1fr}.cl-product-form .cl-btn-ghost{grid-column:1/-1}.cl-footer-grid-v5{grid-template-columns:1fr 1fr}.cl-footer-grid-v5>div:first-child,.cl-footer-grid-v5>div:last-child{grid-column:1/-1}.cl-pricing-featured{transform:none}.cl-contact-image img{min-height:420px}}
@media(max-width:640px){.cl-hero-v5{padding:60px 0}.cl-hero-v5 .cl-hero-grid{gap:30px}.cl-hero-copy .cl-title{font-size:clamp(2.65rem,13vw,4rem)}.cl-proof-row{gap:8px}.cl-hero-visual-wrap{padding:0}.cl-hero-card-v5{transform:none}.cl-hero-card-v5 img{min-height:300px}.cl-float-card{position:static;margin-top:10px}.cl-float-card-b{display:none}.cl-logo-grid{width:100%}.cl-partner-logo{width:50%;height:72px}.cl-cta-panel{align-items:flex-start;flex-direction:column;padding:34px 25px}.cl-product-item{grid-template-columns:1fr}.cl-product-footer{align-items:flex-start;flex-direction:column}.cl-cart-item{grid-template-columns:48px 1fr}.cl-cart-item-price{grid-column:2;text-align:left}.cl-panel-heading{align-items:flex-start;flex-direction:column}.cl-form-grid-2,.cl-payment-options{grid-template-columns:1fr}.cl-checkout-card,.cl-checkout-summary{padding:22px}.cl-empty-state,.cl-success-state{padding:38px 22px}.cl-footer-grid-v5{grid-template-columns:1fr}.cl-footer-grid-v5>div{grid-column:auto!important}.cl-footer-bottom-v5{align-items:flex-start;flex-direction:column}.cl-topbar-inner{display:none}}
.cl-woocommerce-shell{padding:28px;border:1px solid #e4e9f0;border-radius:22px;background:#fff;box-shadow:0 18px 45px rgba(9,30,66,.07)}
.cl-faq-intro{margin-bottom:54px}.cl-faq-intro .cl-image-card img{min-height:360px}

/* v5.1 checkout and homepage contrast corrections */
.cl-hero-v5 .cl-hero-copy .cl-title{
  color:#0b1f3a;
  text-shadow:none;
}
.cl-cart-summary-v5 > .cl-btn-block{
  text-align:center;
  text-decoration:none;
}
