/* =====================================================================
   Cybelock — custom theme layered on top of the Neotix template.
   Loaded AFTER main.css, so :root + selectors here win.
   Brand: refined royal-azure blue + teal accent, on clean white.
   ===================================================================== */

:root {
  /* refined blue system (deeper + richer than the old flat #1CA7EC) */
  --cl-blue:    #1A73E8;
  --cl-blue-d:  #0B57C9;
  --cl-blue-l:  #4F9DFF;
  --cl-accent:  #18D2C2;          /* teal secondary accent           */
  --cl-grad:    linear-gradient(135deg, #2E86F6 0%, #1457D6 100%);
  --cl-grad-2:  linear-gradient(135deg, #1A73E8 0%, #18D2C2 120%);

  --cl-ink:     #0A1224;          /* near-black navy for dark areas  */
  --cl-ink-2:   #0E1B33;
  --cl-soft:    #F3F8FF;          /* faint blue-white section tint    */
  --cl-line:    #E7EDF5;          /* light borders                    */

  /* override template tokens so the WHOLE site retunes at once */
  --theme:  #1A73E8;
  --bg:     #ffffff;              /* was beige #EFEDE5 — now white     */
  --body:   #ffffff;
  --text:   #5A6475;
  --header: #0A1224;
}

/* ---- White everywhere by default ---- */
html, body { background-color: #ffffff !important; }

/* ---- CRITICAL: template ships no global img rule, so unconstrained
   images (e.g. .cl-app-shot) render at natural size and overflow their
   column, painting over adjacent text. This is the safety net. ---- */
img { max-width: 100%; height: auto; }

/* slightly tighter, more confident type */
h1, h2, h3, h4, h5, h6 { color: var(--header); letter-spacing: -0.01em; }

/* =====================================================================
   1.  BUTTONS — gradient, soft glow, premium feel
   ===================================================================== */
.theme-btn {
  background: var(--cl-grad) !important;
  border: 0 !important;
  box-shadow: 0 12px 26px rgba(26,115,232,.28);
  border-radius: 50px;
  letter-spacing: .2px;
}
.theme-btn::before,
.theme-btn::after { background: var(--cl-ink) !important; }
.theme-btn:hover { box-shadow: 0 16px 34px rgba(10,18,36,.30); }
.theme-btn.style-2 {
  background: transparent !important;
  border: 1.5px solid var(--cl-line) !important;
  box-shadow: none;
  color: var(--cl-ink) !important;
}
.theme-btn.style-2::before,
.theme-btn.style-2::after { background: var(--cl-ink) !important; }
.theme-btn.style-2:hover { color: #fff !important; }
/* In dark/hero contexts style-2 stays white */
.cl-hero .theme-btn.style-2,
.cl-dark .theme-btn.style-2 {
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
}
.cl-hero .theme-btn.style-2::before,
.cl-hero .theme-btn.style-2::after,
.cl-dark .theme-btn.style-2::before,
.cl-dark .theme-btn.style-2::after { background: #fff !important; }
.cl-hero .theme-btn.style-2:hover,
.cl-dark .theme-btn.style-2:hover { color: var(--cl-ink) !important; }

/* =====================================================================
   2.  FULL-WIDTH / IMMERSIVE SECTIONS
   ===================================================================== */
.section-padding { padding: 130px 0; }
@media (max-width: 991px){ .section-padding { padding: 90px 0; } }

/* wider, more breathing container on big screens */
@media (min-width: 1400px){
  .custom-container, .container { max-width: 1520px; }
}
@media (min-width: 1200px){
  .container { max-width: 1200px; }
  .container-fluid { padding-left: 40px; padding-right: 40px; }
}
@media (min-width: 1400px){
  .container-fluid { padding-left: 60px; padding-right: 60px; }
}
@media (min-width: 1700px){
  .container-fluid { padding-left: 90px; padding-right: 90px; }
}

.cl-fullheight { min-height: 100vh; display: flex; align-items: center; }
@media (max-width: 991px) { .cl-fullheight { min-height: auto; } }

/* faint section tint helper */
.cl-soft-bg { background: var(--cl-soft); }

/* =====================================================================
   3.  HERO — full-height image SLIDER
   ===================================================================== */
.cl-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--cl-ink);
}
@media (max-width: 991px){ .cl-hero { height: auto; min-height: 0; padding: 150px 0 90px; } }

.cl-hero .swiper,
.cl-hero .swiper-wrapper,
.cl-hero .swiper-slide { height: 100%; }

.cl-hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
/* darken + brand-tint each slide so white text always reads */
.cl-hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,14,28,.92) 0%, rgba(8,14,28,.72) 42%, rgba(8,14,28,.30) 100%),
    radial-gradient(900px 500px at 85% 0%, rgba(26,115,232,.40), transparent 60%);
}
.cl-hero-slide > .container { position: relative; z-index: 2; }

/* slow zoom on the active slide */
.cl-hero-slide .cl-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.cl-hero .swiper-slide-active .cl-hero-bg { transform: scale(1); }

.cl-hero-content { max-width: 680px; color: #fff; }
.cl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  color: #fff; padding: 9px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 26px;
}
.cl-hero-eyebrow i { color: var(--cl-accent); }
.cl-hero-content h1 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.04;
  margin-bottom: 22px;
}
.cl-hero-content h1 .cl-hl {
  background: linear-gradient(120deg, var(--cl-blue-l), var(--cl-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cl-hero-content p {
  color: rgba(255,255,255,.82);
  font-size: 18px; line-height: 1.7; max-width: 560px; margin-bottom: 34px;
}
.cl-hero-btns { display: flex; flex-wrap: wrap; gap: 16px; }

/* animate content in when slide becomes active (base state stays visible
   so text always renders even if JS/animation doesn't run) */
@keyframes clHeroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
.cl-hero .swiper-slide-active .cl-hero-eyebrow    { animation: clHeroUp .8s both .20s; }
.cl-hero .swiper-slide-active .cl-hero-content h1 { animation: clHeroUp .8s both .35s; }
.cl-hero .swiper-slide-active .cl-hero-content p  { animation: clHeroUp .8s both .50s; }
.cl-hero .swiper-slide-active .cl-hero-btns       { animation: clHeroUp .8s both .65s; }
.cl-hero .swiper-slide-active .cl-hero-chips      { animation: clHeroUp .8s both .80s; }

/* hero chips reused under buttons */
.cl-hero-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.cl-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  color: #fff; padding: 10px 16px; border-radius: 50px;
  font-size: 13.5px; font-weight: 600;
}
.cl-chip i { color: var(--cl-accent); }

/* hero arrows + pagination */
.cl-hero-nav {
  position: absolute; right: 50px; bottom: 48px; z-index: 5;
  display: flex; gap: 12px;
}
@media (max-width: 991px){ .cl-hero-nav { display: none; } }
.cl-hero-nav button {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06); color: #fff; font-size: 16px;
  backdrop-filter: blur(6px); transition: .35s;
}
.cl-hero-nav button:hover { background: var(--cl-grad); border-color: transparent; }
.cl-hero .swiper-pagination {
  position: absolute; left: 0; right: 0; bottom: 30px; z-index: 5;
  display: flex; justify-content: center; gap: 10px;
}
.cl-hero .swiper-pagination-bullet {
  width: 30px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.35);
  opacity: 1; transition: .35s;
}
.cl-hero .swiper-pagination-bullet-active { width: 52px; background: var(--cl-accent); }

/* floating status card on hero */
.cl-hero-float {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  background: rgba(10,18,36,.72); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px); border-radius: 18px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px; z-index: 4; color:#fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.40);
}
@media (max-width: 1199px){ .cl-hero-float { display: none; } }
.cl-hero-float .ic {
  width: 48px; height: 48px; border-radius: 12px; flex: 0 0 48px;
  display: grid; place-items: center; color: #fff; font-size: 20px;
  background: var(--cl-grad-2);
}
.cl-hero-float h5 { margin: 0; font-size: 17px; line-height: 1.1; color:#fff !important; }
.cl-hero-float span { font-size: 12.5px; color: rgba(255,255,255,.75) !important; }

/* =====================================================================
   4.  SECTION TITLES / EYEBROWS
   ===================================================================== */
.cl-eyebrow{
  display:inline-flex; align-items:center; gap:8px; font-weight:700;
  text-transform:uppercase; letter-spacing:1.6px; font-size:13px; color:var(--cl-blue);
  margin-bottom:16px;
}
.cl-eyebrow i{ font-size:12px; color: var(--cl-accent); }
.section-title h2 { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.1; }

/* =====================================================================
   5.  FEATURE / STEP / PRODUCT / CARD COMPONENTS
   ===================================================================== */
.cl-feature-card {
  background: #fff;
  border: 1px solid var(--cl-line);
  border-radius: 22px;
  padding: 40px 34px;
  height: 100%;
  transition: .4s ease;
  position: relative;
  overflow: hidden;
}
.cl-feature-card::after{
  content:""; position:absolute; inset:auto -40% -60% auto; width:220px; height:220px;
  background: radial-gradient(circle, rgba(26,115,232,.16), transparent 70%);
  opacity:0; transition:.4s;
}
.cl-feature-card:hover { transform: translateY(-10px); box-shadow: 0 34px 70px rgba(10,18,36,.12); border-color: transparent; }
.cl-feature-card:hover::after{ opacity:1; }
.cl-feature-card .cl-ic {
  width: 68px; height: 68px; border-radius: 18px; margin-bottom: 26px;
  display: grid; place-items: center; font-size: 28px; color: #fff;
  background: var(--cl-grad);
  box-shadow: 0 12px 26px rgba(26,115,232,.30);
  transition:.4s;
}
.cl-feature-card:hover .cl-ic { transform: rotateY(180deg); }
.cl-feature-card h4 { font-size: 22px; margin-bottom: 12px; }
.cl-feature-card p { margin: 0; color: var(--text); }

.cl-feature-card.is-dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.cl-feature-card.is-dark h4 { color:#fff; }
.cl-feature-card.is-dark p { color: rgba(255,255,255,.66); }
.cl-feature-card.is-dark .cl-ic { background: var(--cl-grad-2); }

/* steps */
.cl-step {
  background:#fff; border:1px solid var(--cl-line); border-radius:22px;
  padding: 38px 30px 32px; height:100%; position:relative; transition:.4s;
}
.cl-step:hover{ transform: translateY(-10px); box-shadow:0 34px 70px rgba(10,18,36,.12); }
.cl-step .cl-num {
  font-size: 16px; font-weight:700; color:#fff; width:48px; height:48px;
  border-radius:50%; display:grid; place-items:center; margin-bottom:24px;
  background: var(--cl-grad);
  box-shadow: 0 10px 22px rgba(26,115,232,.30);
}
.cl-step .cl-stic{ font-size:30px; color:var(--cl-blue); margin-bottom:16px; }
.cl-step h4 { font-size: 20px; margin-bottom: 10px; }
.cl-step p { margin:0; color:var(--text); font-size:15px; }
.cl-step:not(:last-child)::after{
  content:"\f061"; font-family:"Font Awesome 6 Pro","Font Awesome 6 Free"; font-weight:900;
  position:absolute; top:56px; right:-30px; color:var(--cl-blue); opacity:.35; font-size:22px; z-index:2;
}
@media (max-width:991px){ .cl-step:not(:last-child)::after{ display:none; } }

/* use-case cards */
.cl-usecase {
  position:relative; border-radius:22px; overflow:hidden; height:320px;
  display:flex; align-items:flex-end; color:#fff; background:var(--cl-ink);
}
.cl-usecase img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:.6s; }
.cl-usecase::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,18,36,0) 28%, rgba(10,18,36,.90)); z-index:1; }
.cl-usecase:hover img{ transform:scale(1.08); }
.cl-usecase .cl-uc-body{ position:relative; z-index:2; padding:30px; }
.cl-usecase .cl-uc-body i{ color:var(--cl-accent); font-size:26px; margin-bottom:10px; display:block; }
.cl-usecase .cl-uc-body h4{ color:#fff; font-size:21px; margin:0 0 6px; }
.cl-usecase .cl-uc-body p{ color:rgba(255,255,255,.72); margin:0; font-size:14px; }

/* app/phone mockup block */
.cl-app-shot{ position:relative; }
.cl-app-shot .cl-glow{
  position:absolute; left:50%; top:50%; width:84%; height:84%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(26,115,232,.38), transparent 65%);
  filter: blur(24px); z-index:0;
}
.cl-app-shot img{ position:relative; z-index:1; width:100%; height:auto; border-radius:24px; box-shadow: 0 40px 90px rgba(10,18,36,.18); }

/* ---- Premium media frame (split sections) ---- */
.cl-media{ position:relative; }
.cl-media .cl-media-frame{
  position:relative; border-radius:28px; overflow:hidden;
  box-shadow:0 50px 100px rgba(10,18,36,.22);
  aspect-ratio: 5/5.6;
}
.cl-media .cl-media-frame img{
  width:100%; height:100%; object-fit:cover; display:block; transition:.8s ease;
}
.cl-media:hover .cl-media-frame img{ transform:scale(1.05); }
.cl-media .cl-media-frame::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,18,36,0) 55%, rgba(10,18,36,.45));
}
/* decorative accent ring behind frame */
.cl-media::before{
  content:""; position:absolute; right:-26px; top:-26px; width:160px; height:160px;
  border-radius:24px; background:var(--cl-grad-2); opacity:.18; z-index:-1;
}
/* floating glass stat badge on the frame */
.cl-media-badge{
  position:absolute; left:-22px; bottom:34px; z-index:3;
  display:flex; align-items:center; gap:14px;
  background:rgba(255,255,255,.92); backdrop-filter:blur(10px);
  border-radius:18px; padding:16px 20px; box-shadow:0 24px 60px rgba(10,18,36,.22);
}
.cl-media-badge .ic{
  width:50px; height:50px; flex:0 0 50px; border-radius:14px; display:grid; place-items:center;
  color:#fff; font-size:20px; background:var(--cl-grad); box-shadow:0 12px 24px rgba(26,115,232,.32);
}
.cl-media-badge h5{ margin:0; font-size:18px; line-height:1; color:var(--cl-ink); }
.cl-media-badge span{ font-size:13px; color:var(--text); }
@media (max-width:575px){ .cl-media-badge{ left:10px; bottom:12px; padding:12px 14px; } }

/* small inline stat row */
.cl-statline{ display:flex; gap:34px; flex-wrap:wrap; margin:30px 0 6px; }
.cl-statline .num{ font-size:34px; font-weight:800; line-height:1; color:var(--cl-blue); }
.cl-statline .lbl{ font-size:13.5px; color:var(--text); margin-top:6px; }
.cl-dark .cl-statline .num{ color:var(--cl-blue-l); }
.cl-dark .cl-statline .lbl{ color:rgba(255,255,255,.6); }

/* product cards */
.cl-product-card{
  background:#fff; border:1px solid var(--cl-line); border-radius:24px; overflow:hidden; height:100%;
  transition:.4s; display:flex; flex-direction:column;
}
.cl-product-card:hover{ transform:translateY(-10px); box-shadow:0 34px 70px rgba(10,18,36,.14); }
.cl-product-card .cl-pc-thumb{ position:relative; height:270px; overflow:hidden; background:var(--cl-ink); }
.cl-product-card .cl-pc-thumb img{ width:100%; height:100%; object-fit:cover; transition:.6s; }
.cl-product-card:hover .cl-pc-thumb img{ transform:scale(1.08); }
.cl-product-card .cl-pc-tag{
  position:absolute; top:18px; left:18px; z-index:2; background:var(--cl-grad); color:#fff;
  font-size:12px; font-weight:700; padding:6px 14px; border-radius:50px; letter-spacing:.5px;
  box-shadow: 0 10px 22px rgba(26,115,232,.30);
}
.cl-product-card .cl-pc-body{ padding:30px; display:flex; flex-direction:column; flex:1; }
.cl-product-card .cl-pc-body h3{ font-size:23px; margin:0 0 10px; }
.cl-product-card .cl-pc-body h3 a{ color:var(--cl-ink); }
.cl-product-card .cl-pc-body h3 a:hover{ color:var(--cl-blue); }
.cl-product-card .cl-pc-body p{ color:var(--text); margin:0 0 18px; font-size:15px; }
.cl-product-card .cl-pc-meta{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:22px; }
.cl-product-card .cl-pc-meta span{ font-size:12px; font-weight:600; color:var(--cl-blue-d);
  background:rgba(26,115,232,.10); padding:6px 13px; border-radius:50px; }
.cl-product-card .cl-pc-foot{ margin-top:auto; }

/* gallery */
.cl-gallery-item{ position:relative; border-radius:20px; overflow:hidden; display:block; }
.cl-gallery-item img{ width:100%; height:100%; object-fit:cover; transition:.6s; aspect-ratio:4/3; }
.cl-gallery-item::after{
  content:"\f00e"; font-family:"Font Awesome 6 Pro","Font Awesome 6 Free"; font-weight:900; color:#fff;
  position:absolute; inset:0; display:grid; place-items:center; font-size:28px;
  background:linear-gradient(135deg, rgba(26,115,232,.85), rgba(24,210,194,.82));
  opacity:0; transition:.4s;
}
.cl-gallery-item:hover img{ transform:scale(1.1); }
.cl-gallery-item:hover::after{ opacity:1; }

/* check list */
.cl-checks{ list-style:none; padding:0; margin:0; }
.cl-checks li{ position:relative; padding:9px 0 9px 36px; color:var(--text); font-weight:500; }
.cl-checks li::before{
  content:"\f00c"; font-family:"Font Awesome 6 Pro","Font Awesome 6 Free"; font-weight:900;
  position:absolute; left:0; top:8px; color:#fff; background:var(--cl-grad);
  width:24px; height:24px; border-radius:50%; font-size:11px; display:grid; place-items:center;
}

/* pills */
.cl-pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 16px; border-radius:50px;
  background:rgba(26,115,232,.12); color:var(--cl-blue-d); font-weight:700; font-size:14px; }

/* spec table */
.cl-spec{ width:100%; border-collapse:collapse; border:1px solid var(--cl-line); border-radius:16px; overflow:hidden; }
.cl-spec th, .cl-spec td{ padding:15px 20px; text-align:left; font-size:15px; border-bottom:1px solid var(--cl-line); }
.cl-spec th{ width:38%; background:var(--cl-soft); color:var(--cl-ink); font-weight:700; }
.cl-spec tr:last-child th, .cl-spec tr:last-child td{ border-bottom:0; }

/* =====================================================================
   6.  DARK SECTION + GRID GLOW
   ===================================================================== */
.cl-dark{ background:var(--cl-ink); color:#fff; position:relative; }
.cl-dark h2,.cl-dark h3,.cl-dark h4,.cl-dark h5{ color:#fff; }
.cl-dark p{ color:rgba(255,255,255,.66); }
.cl-grid-bg { position: relative; overflow: hidden; }
.cl-grid-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,115,232,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,115,232,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}

/* =====================================================================
   7.  TESTIMONIALS / CONTACT / LEGAL  (kept, retuned to blue)
   ===================================================================== */
.cl-contact-card{ background:#fff; border:1px solid var(--cl-line); border-radius:20px; padding:32px; height:100%; transition:.4s; }
.cl-contact-card:hover{ box-shadow:0 28px 56px rgba(10,18,36,.10); transform:translateY(-8px); }
.cl-contact-card .ic{ width:60px;height:60px;border-radius:16px;display:grid;place-items:center;font-size:22px;
  color:#fff; background:var(--cl-grad); margin-bottom:20px; box-shadow:0 12px 26px rgba(26,115,232,.30); }
.cl-contact-card h5{ font-size:19px; margin-bottom:8px; }
.cl-contact-card p, .cl-contact-card a{ color:var(--text); margin:0; }
.cl-contact-card a:hover{ color:var(--cl-blue); }
.cl-map iframe{ width:100%; height:460px; border:0; border-radius:20px; filter:grayscale(.15); }

.cl-legal{ padding: 120px 0; }
.cl-legal h2{ font-size:30px; margin:42px 0 16px; }
.cl-legal h2:first-child{ margin-top:0; }
.cl-legal h3{ font-size:21px; margin:28px 0 12px; }
.cl-legal p, .cl-legal li{ color:var(--text); line-height:1.85; }
.cl-legal ul{ padding-left:20px; margin-bottom:18px; }
.cl-legal li{ margin-bottom:8px; }
.cl-legal .cl-legal-meta{ color:var(--cl-blue-d); font-weight:600; margin-bottom:34px; }
.cl-legal-toc{ background:var(--cl-soft); border:1px solid var(--cl-line); border-radius:20px; padding:30px; position:sticky; top:110px; }
.cl-legal-toc h4{ font-size:18px; margin-bottom:16px; }
.cl-legal-toc ul{ list-style:none; padding:0; margin:0; }
.cl-legal-toc li{ margin-bottom:10px; }
.cl-legal-toc a{ color:var(--text); font-weight:500; }
.cl-legal-toc a:hover{ color:var(--cl-blue); }
.cl-legal-toc a.theme-btn,
.cl-legal-toc a.theme-btn:hover{ color:#fff !important; }

/* =====================================================================
   8.  MISC HELPERS
   ===================================================================== */
.cl-text-blue{ color:var(--cl-blue) !important; }
.bg-cl-ink{ background:var(--cl-ink) !important; }
.cl-divider{ height:1px; background:var(--cl-line); margin:0; border:0; }
.cl-mw-720{ max-width:720px; }
.cl-mw-640{ max-width:640px; }
.footer-section .contact-item input{ width:100%; }

/* =====================================================================
   9.  BRAND BACKGROUNDS — override template's orange imagery
   ===================================================================== */
/* ---- universal fix: section fills full viewport width ---- */
section, .marquee-section, .counter-section, .testimonial-section,
.footer-section, .faq-section, .news-section, .about-section,
.project-section { width: 100%; overflow-x: hidden; }

/* Override template's 30px side margins that prevent full-width backgrounds */
.counter-section { margin: 0 !important; border-radius: 0 !important; }
.footer-area { margin: 0 !important; border-radius: 0 !important; }

/* Ensure tp_fade_anim elements remain visible when GSAP scroll trigger doesn't fire */
.tp_fade_anim { opacity: 1 !important; transform: none !important; }

.counter-section{
  background-color:var(--cl-ink)!important;
  background-image:
    radial-gradient(800px 420px at 85% 0%, rgba(26,115,232,.24), transparent 60%),
    radial-gradient(700px 460px at 0% 100%, rgba(24,210,194,.12), transparent 55%),
    linear-gradient(160deg,#0A1224 0%,#0e2238 100%)!important;
  background-repeat:no-repeat!important; background-size:cover!important;
}
.footer-section .footer-area{
  background-color:var(--cl-ink)!important;
  background-image:
    radial-gradient(900px 500px at 90% 0%, rgba(26,115,232,.16), transparent 60%),
    linear-gradient(180deg,#0A1224 0%,#070d18 100%)!important;
  background-repeat:no-repeat!important; background-size:cover!important;
}
.breadcrumb-wrapper{
  background-color:var(--cl-ink)!important;
  background-image:
    radial-gradient(900px 480px at 85% -20%, rgba(26,115,232,.30), transparent 60%),
    radial-gradient(700px 460px at 0% 120%, rgba(24,210,194,.14), transparent 55%),
    linear-gradient(160deg,#0A1224 0%,#0d1b30 60%,#0A1224 100%)!important;
  background-repeat:no-repeat!important; background-size:cover!important;
}

/* =====================================================================
   10. FULL-WIDTH / FULL-HEIGHT SECTION UPGRADES + VISUAL POLISH
   ===================================================================== */

/* ---- About / intro section (legacy pages) ---- */
.about-section {
  min-height: unset;
}
.about-section .cl-media .cl-media-frame { aspect-ratio: 4/5; }

/* ---- Introduction section — editorial full-bleed split ---- */
.cl-intro-section {
  background: #fff;
  overflow: hidden;
}
.cl-intro-inner {
  display: flex;
  min-height: 600px;
}
.cl-intro-visual {
  flex: 0 0 46%;
  position: relative;
  overflow: hidden;
  background: var(--cl-ink);
}
.cl-intro-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .88;
  transition: transform .9s ease;
}
.cl-intro-section:hover .cl-intro-visual img { transform: scale(1.04); }
.cl-intro-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,18,36,.10) 30%, rgba(10,18,36,.82) 100%);
  z-index: 1;
}
.cl-intro-visual-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cl-intro-kpi {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.cl-intro-kpi:last-child { border-right: 0; }
.cl-intro-kpi strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--cl-accent);
  margin-bottom: 5px;
}
.cl-intro-kpi span {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.cl-intro-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  background: #fff;
}
.cl-intro-body h2 {
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.cl-intro-body > p {
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0 0 38px;
  max-width: 520px;
}
.cl-intro-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 44px;
}
.cl-ifc {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.cl-ifc-ic {
  flex: 0 0 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--cl-grad);
  color: #fff;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(26,115,232,.28);
  flex-shrink: 0;
}
.cl-ifc h5 {
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--cl-ink);
  line-height: 1.2;
}
.cl-ifc p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cl-intro-inner { flex-direction: column; }
  .cl-intro-visual { flex: 0 0 auto; height: 340px; position: relative; }
  .cl-intro-visual img { position: absolute; }
  .cl-intro-body { padding: 50px 32px; }
}
@media (max-width: 575px) {
  .cl-intro-body { padding: 40px 20px; }
  .cl-intro-visual-foot { flex-direction: row; }
  .cl-intro-kpi { padding: 16px 16px; }
}

/* ---- Products section ---- */
.project-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cl-soft) 100%);
  position: relative;
  overflow: hidden;
}
.project-section::before {
  content: "";
  position: absolute;
  left: -10%; top: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(26,115,232,.07), transparent 65%);
  pointer-events: none;
}
.project-section .cl-product-card { min-height: 480px; }

/* ---- Why Cybelock section ---- */
.cl-soft-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.cl-feature-card { min-height: 240px; }

/* ---- How It Works section ---- */
.cl-howworks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cl-howworks-section::after {
  content: "";
  position: absolute;
  right: -5%; bottom: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(24,210,194,.06), transparent 65%);
  pointer-events: none;
}
.cl-step { min-height: 280px; }

/* ---- Security dark section ---- */
.cl-dark.section-padding {
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.cl-dark .cl-media .cl-media-frame { aspect-ratio: 4/5; }

/* ---- Counter section ---- */
.counter-section { min-height: 60vh; display: flex; align-items: center; }

/* ---- Testimonials ---- */
.testimonial-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--cl-soft);
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 50%, rgba(26,115,232,.07), transparent 60%),
    radial-gradient(800px 500px at 10% 80%, rgba(24,210,194,.06), transparent 60%);
  pointer-events: none;
}
.testimonial-box-item {
  background: #fff;
  border-radius: 24px;
  padding: 36px 38px;
  border: 1px solid var(--cl-line);
  height: 100%;
  box-shadow: 0 8px 40px rgba(10,18,36,.06);
  transition: .4s;
}
.testimonial-box-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,18,36,.12);
}
.testimonial-box-item .star { margin-bottom: 16px; }
.testimonial-box-item .star i { color: #F59E0B; font-size: 14px; margin-right: 2px; }
.testimonial-box-item p {
  font-size: 16px; line-height: 1.75;
  color: var(--text); margin-bottom: 28px;
  font-style: italic;
}
.testimonial-box-item .client-info-item {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.testimonial-box-item .info-item {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-box-item .info-item img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--cl-line);
}
.testimonial-box-item .content h4 { font-size: 17px; margin: 0 0 4px; }
.testimonial-box-item .content span { font-size: 13px; color: var(--text); }

/* ---- FAQ section ---- */
.faq-section .accordion-item {
  border: 1px solid var(--cl-line) !important;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-section .accordion-item:hover { box-shadow: 0 8px 32px rgba(10,18,36,.08); }
.faq-section .accordion-button {
  font-size: 17px;
  font-weight: 600;
  padding: 22px 28px;
  color: var(--cl-ink);
  background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--cl-blue);
  background: rgba(26,115,232,.04);
  box-shadow: none;
}
.faq-section .accordion-button::after {
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--cl-blue);
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(26,115,232,.1);
  transition: .3s;
}
.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: var(--cl-grad);
  color: #fff;
  transform: none;
}
.faq-section .accordion-body {
  padding: 0 28px 22px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.8;
}

/* ---- Blog / News section ---- */
.news-section { padding-bottom: 80px; }
.news-card-items {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--cl-line);
  transition: .4s;
  display: flex;
  flex-direction: column;
}
.news-card-items:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,18,36,.11);
}
.news-card-items .news-image {
  position: relative;
  overflow: hidden;
  height: 190px;
  flex-shrink: 0;
}
/* Override template's hover-reveal (img:first-child starts hidden) — make it always visible */
.news-card-items .news-image img:first-child {
  position: relative !important;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: transform .6s;
  display: block !important;
}
.news-card-items .news-image img:last-child { display: none; }
.news-card-items:hover .news-image img:first-child { transform: scale(1.07) !important; }
.news-card-items .news-top-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-card-items .news-content h3 {
  font-size: 17px; line-height: 1.4; margin: 0 0 6px;
}
.news-card-items .news-content h3 a { color: var(--cl-ink); }
.news-card-items .news-content h3 a:hover { color: var(--cl-blue); }
.news-card-items .news-content span { font-size: 12.5px; color: var(--text); }
.news-card-items .read-button { margin-top: 0; }
.news-card-items .read-button .link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cl-blue); font-weight: 700; font-size: 13.5px;
  letter-spacing: .3px;
}
.news-card-items .read-button .link-btn:hover { color: var(--cl-blue-d); }

/* ---- Section title area (blog header row) ---- */
.section-title-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

/* ---- Icon box refinements ---- */
.cl-ic,
.cl-feature-card .cl-ic,
.cl-contact-card .ic {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--cl-grad);
  transition: .4s;
}
.cl-ic, .cl-feature-card .cl-ic {
  width: 72px; height: 72px;
  border-radius: 20px;
  font-size: 30px;
  box-shadow: 0 14px 30px rgba(26,115,232,.32);
  margin-bottom: 28px;
  flex-shrink: 0;
}
.cl-feature-card:hover .cl-ic { transform: scale(1.1) rotateY(20deg); }
.cl-feature-card.is-dark .cl-ic { background: var(--cl-grad-2); }

/* ---- Marquee section ---- */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
}
.marquee-group {
  display: flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee .text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  padding: 0 36px;
  white-space: nowrap;
  color: rgba(255,255,255,.75) !important;
}
.marquee .text img { width: 16px; height: 16px; opacity: .5; }
.marquee .text:hover { color: #fff !important; }

/* ---- Counter box ---- */
.counter-box-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 32px 28px;
  transition: .4s;
}
.counter-box-item:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(26,115,232,.40);
  transform: translateY(-4px);
}
.counter-box-item .counter-top-item h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin: 0 0 10px;
}
.counter-box-item h4 {
  color: rgba(255,255,255,.65);
  font-size: 15px; font-weight: 500; margin: 0;
}

/* ---- Statline ---- */
.cl-statline .num { font-size: 38px; }

/* ---- Feature card deeper look ---- */
.cl-feature-card {
  background: #fff;
  border: 1.5px solid var(--cl-line);
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: .4s ease;
}
.cl-feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cl-grad);
  opacity: 0;
  transition: opacity .4s;
}
.cl-feature-card:hover::before { opacity: 1; }
.cl-feature-card h4 { font-size: 20px; margin-bottom: 12px; letter-spacing: -.01em; }
.cl-feature-card p { line-height: 1.7; }

/* ---- Step card ---- */
.cl-step {
  background: #fff;
  border: 1.5px solid var(--cl-line);
  border-radius: 24px;
  padding: 44px 34px 38px;
  height: 100%;
  position: relative;
  transition: .4s;
}
.cl-step::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cl-grad-2);
  opacity: 0;
  border-radius: 0 0 24px 24px;
  transition: opacity .4s;
}
.cl-step:hover::before { opacity: 1; }
.cl-step .cl-num {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: var(--cl-grad);
  box-shadow: 0 12px 28px rgba(26,115,232,.30);
}
.cl-step .cl-stic {
  font-size: 34px;
  color: var(--cl-blue);
  margin-bottom: 18px;
  display: block;
  background: none !important;
  width: auto;
}
.cl-step h4 { font-size: 20px; margin-bottom: 12px; }

/* ---- Product card tag badge ---- */
.cl-product-card .cl-pc-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ---- Section heading accents ---- */
.section-title h2 { font-weight: 800; letter-spacing: -.02em; }
.cl-eyebrow { font-size: 12px; letter-spacing: 2px; }

/* ---- Stronger link-btn arrow ---- */
.link-btn i { font-size: 11px; }

/* ---- Video circle in counter section ---- */
.video-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px; height: 100px;
}
.video-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cl-grad);
  color: #fff; font-size: 18px;
  box-shadow: 0 16px 40px rgba(26,115,232,.40);
  transition: .3s;
  position: relative; z-index: 2;
}
.video-btn::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(26,115,232,.30);
  animation: ripple-ring 2s linear infinite;
}
@keyframes ripple-ring {
  0%   { transform: scale(.8); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Float-bob-y keyframe (in case template doesn't define it) ---- */
@keyframes float-bob-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.float-bob-y { animation: float-bob-y 3s ease-in-out infinite; }

/* ---- Back to top ---- */
#back-top {
  background: var(--cl-grad) !important;
  border: none !important;
  box-shadow: 0 10px 24px rgba(26,115,232,.35) !important;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cl-ink); }
::-webkit-scrollbar-thumb { background: var(--cl-blue); border-radius: 6px; }

/* =====================================================================
   11.  FOOTER WHITESPACE FIX
   ===================================================================== */
footer.footer-section { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.footer-section .footer-area { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.footer-section .footer-bottom-wrapper { padding-bottom: 24px !important; }
#smooth-wrapper, #smooth-content { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* =====================================================================
   12.  RESPONSIVE FIXES
   ===================================================================== */
@media (max-width: 1199px) {
  .about-section { min-height: auto; }
  .cl-dark.section-padding { min-height: auto; }
  .cl-howworks-section { min-height: auto; }
  .testimonial-section { min-height: auto; }
  .counter-section { min-height: auto; }
}
@media (max-width: 767px) {
  .news-card-items .news-image { height: 170px; }
  .cl-feature-card { min-height: auto; }
  .cl-step { min-height: auto; }
  .cl-product-card { min-height: auto; }
  .section-title-area { flex-direction: column; align-items: flex-start; }
}


/* =====================================================================
   FLOATING CONTACT BUTTONS (right side)
   ===================================================================== */
.cl-float-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: -4px 0 24px rgba(10,18,36,.18);
}
.cl-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: padding-right .25s, opacity .2s;
  white-space: nowrap;
  overflow: hidden;
  max-width: 56px;
}
.cl-float-btn span {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .25s, max-width .25s;
  font-size: 13px;
  letter-spacing: .3px;
}
.cl-float-btn:hover {
  max-width: 160px;
  padding-right: 22px;
  color: #fff;
  text-decoration: none;
}
.cl-float-btn:hover span {
  opacity: 1;
  max-width: 100px;
}
.cl-float-call    { background: var(--cl-blue); }
.cl-float-call:hover { background: var(--cl-blue-d); }
.cl-float-whatsapp { background: #25D366; }
.cl-float-whatsapp:hover { background: #1db954; }
.cl-float-mail    { background: var(--cl-accent); }
.cl-float-mail:hover { background: #13b8aa; }
.cl-float-btn i   { font-size: 18px; flex-shrink: 0; }
@media (max-width: 575px) {
  .cl-float-btn { padding: 12px 14px; }
  .cl-float-btn i { font-size: 16px; }
}

/* =====================================================================
   13.  COMPREHENSIVE MOBILE RESPONSIVE — extended breakpoints
   ===================================================================== */

/* ---- Global overflow guard ---- */
html { overflow-x: hidden; }

/* ---- Section padding — tighter steps at each phone breakpoint ---- */
@media (max-width: 767px)  { .section-padding { padding: 70px 0; } }
@media (max-width: 575px)  { .section-padding { padding: 50px 0; } }
@media (max-width: 375px)  { .section-padding { padding: 40px 0; } }

/* ---- Hero — reduce top/bottom padding as viewport shrinks ---- */
@media (max-width: 767px) {
  .cl-hero { padding: 130px 0 80px; }
}
@media (max-width: 575px) {
  .cl-hero { padding: 110px 0 60px; }
  .cl-hero-content p { font-size: 15px; line-height: 1.65; margin-bottom: 24px; }
  .cl-hero-eyebrow { font-size: 11px; padding: 7px 13px; letter-spacing: 1px; gap: 7px; }
  .cl-hero-chips { gap: 8px; margin-top: 22px; }
  .cl-chip { font-size: 12px; padding: 8px 12px; gap: 7px; }
  .cl-hero-btns { gap: 10px; }
}
@media (max-width: 380px) {
  .cl-hero { padding: 100px 0 50px; }
  .cl-hero-btns { flex-direction: column; align-items: flex-start; }
  .cl-hero-btns .theme-btn { width: 100%; justify-content: center; }
}

/* ---- Intro section — stack better and tighten KPI numbers ---- */
@media (max-width: 991px) {
  .cl-intro-inner { min-height: 0; }
}
@media (max-width: 480px) {
  .cl-intro-visual { height: 260px; }
  .cl-intro-kpi { padding: 14px 12px; }
  .cl-intro-kpi strong { font-size: 20px; }
  .cl-intro-kpi span { font-size: 10px; letter-spacing: .4px; }
}

/* ---- Cards and steps — tighter internal padding on phones ---- */
@media (max-width: 767px) {
  .cl-feature-card { padding: 34px 28px; }
  .cl-step         { padding: 34px 26px 30px; }
  .cl-product-card .cl-pc-body { padding: 24px 22px; }
}
@media (max-width: 575px) {
  .cl-feature-card { padding: 28px 22px; }
  .cl-step         { padding: 28px 20px 24px; }
  .cl-ic,
  .cl-feature-card .cl-ic {
    width: 58px; height: 58px; font-size: 22px;
    margin-bottom: 20px; border-radius: 16px;
  }
  .cl-product-card .cl-pc-thumb { height: 220px; }
  .cl-product-card .cl-pc-body  { padding: 20px 18px; }
}

/* ---- Theme button — narrower horizontal padding on small screens ---- */
@media (max-width: 480px) {
  .theme-btn                          { padding: 14px 26px 12px; font-size: 14.5px; }
  /* Header Get-a-Quote specifically */
  .header-main .header-right
    .header-btn .header-button
    .theme-btn                        { padding: 10px 14px 9px; font-size: 13.5px; }
}
@media (max-width: 375px) {
  .theme-btn { padding: 13px 20px 11px; font-size: 14px; }
}

/* ---- Spec table — allow horizontal scroll on narrow screens ---- */
@media (max-width: 575px) {
  .cl-spec {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cl-spec th { width: auto; min-width: 120px; }
  .cl-spec th,
  .cl-spec td { padding: 12px 14px; font-size: 14px; }
}

/* ---- Contact map — shorter on phones ---- */
@media (max-width: 767px) { .cl-map iframe { height: 320px; } }
@media (max-width: 480px) { .cl-map iframe { height: 240px; } }

/* ---- Legal pages — static sidebar TOC on all mobile, tighter padding ---- */
@media (max-width: 991px) {
  .cl-legal-toc { position: static; margin-bottom: 40px; }
}
@media (max-width: 767px) {
  .cl-legal          { padding: 80px 0; }
  .cl-legal h2       { font-size: 24px; }
  .cl-legal h3       { font-size: 18px; }
}
@media (max-width: 575px) {
  .cl-legal          { padding: 60px 0; }
  .cl-legal h2       { font-size: 22px; margin: 28px 0 12px; }
}

/* ---- Stat line — tighter spacing on phones ---- */
@media (max-width: 575px) {
  .cl-statline       { gap: 20px; }
  .cl-statline .num  { font-size: 30px; }
}

/* ---- Counter boxes ---- */
@media (max-width: 575px) {
  .counter-box-item { padding: 22px 18px; }
  .counter-box-item .counter-top-item h2 { font-size: clamp(28px, 8vw, 44px); }
}

/* ---- Testimonial cards ---- */
@media (max-width: 575px) {
  .testimonial-box-item   { padding: 26px 22px; }
  .testimonial-box-item p { font-size: 14.5px; }
}

/* ---- FAQ accordion ---- */
@media (max-width: 575px) {
  .faq-section .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }
  .faq-section .accordion-body {
    padding: 0 20px 18px;
    font-size: 14.5px;
    line-height: 1.75;
  }
}

/* ---- Media badge — keep it inside the frame at all widths ---- */
@media (max-width: 767px) {
  .cl-media-badge { left: 10px; bottom: 20px; }
}

/* ---- Floating dark sections — switch from flex to block when stacked ---- */
@media (max-width: 991px) {
  .cl-dark.section-padding,
  .cl-soft-section,
  .cl-howworks-section,
  .counter-section,
  .testimonial-section { display: block; min-height: auto; }
}

/* ---- Breadcrumb — reduce space on very small phones ---- */
@media (max-width: 480px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

/* ---- Section title helper ---- */
@media (max-width: 575px) {
  .section-title p    { font-size: 15px; }
  .section-title-area { margin-bottom: 30px; }
}

/* ---- News cards ---- */
@media (max-width: 575px) {
  .news-card-items .news-top-content { padding: 16px 18px; gap: 10px; }
}

/* ---- Gallery — square thumbs on very small phones ---- */
@media (max-width: 480px) {
  .cl-gallery-item img { aspect-ratio: 1/1; }
}

/* ---- Use-case cards — shorter fixed height on phones ---- */
@media (max-width: 575px) {
  .cl-usecase { height: 260px; }
}

/* ---- Theme button — full-width convenience helper inside product cards ---- */
@media (max-width: 480px) {
  .cl-product-card .cl-pc-foot .theme-btn { width: 100%; justify-content: center; }
}

/* ---- Product detail gallery — shorter main slider on phones ---- */
@media (max-width: 575px) {
  .cl-gallery-main .swiper-slide img { height: 260px !important; }
}

/* =====================================================================
   14.  DESIGN POLISH v2 — depth, texture & editorial detail
   Goal: lift the flat "all-white-cards" minimalism with real design
   craft (resting shadows, single-colour textures, ghost numerals,
   corner brackets, kicker pills) — WITHOUT adding gradient washes.
   ===================================================================== */
:root{
  /* single-colour SVG textures (patterns, not gradient washes) */
  --cl-dot-tex:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='1.5' cy='1.5' r='1.5' fill='%231A73E8' fill-opacity='0.09'/%3E%3C/svg%3E");
  --cl-grid-tex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M46 0H0V46' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");

  /* layered, believable elevation */
  --cl-sh-rest:  0 1px 2px rgba(10,18,36,.04), 0 16px 38px -22px rgba(10,18,36,.20);
  --cl-sh-lift:  0 30px 70px -28px rgba(10,18,36,.30);
}

/* ---------------------------------------------------------------
   14.1  Kicker / eyebrow → premium pill
   --------------------------------------------------------------- */
.cl-eyebrow{
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(26,115,232,.08);
  border: 1px solid rgba(26,115,232,.18);
  color: var(--cl-blue-d);
  line-height: 1;
}
.cl-eyebrow i{ color: var(--cl-accent); }
.cl-dark .cl-eyebrow{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: #d4e4ff;
}

/* ---------------------------------------------------------------
   14.2  Section-title accent — a unifying brand underline
   --------------------------------------------------------------- */
.section-title.text-center{ position: relative; }
.section-title.text-center::after{
  content: "";
  display: block;
  width: 58px; height: 4px;
  margin: 24px auto 0;
  border-radius: 50px;
  background: var(--cl-blue);
  box-shadow: 14px 0 0 -1px rgba(24,210,194,.9), -14px 0 0 -1px rgba(24,210,194,.9);
}
.cl-dark .section-title.text-center::after{ background: var(--cl-blue-l); }

/* ---------------------------------------------------------------
   14.3  Universal card depth — no more flat white boxes
   --------------------------------------------------------------- */
.cl-feature-card,
.cl-step,
.cl-product-card,
.cl-contact-card,
.news-card-items{ box-shadow: var(--cl-sh-rest); }

.cl-feature-card:hover,
.cl-step:hover,
.cl-product-card:hover,
.cl-contact-card:hover,
.news-card-items:hover{ box-shadow: var(--cl-sh-lift); }

/* faint dot texture nestled in the corner of feature cards (replaces
   the old radial glow on ::after) — reads as craft, not a colour wash */
.cl-feature-card::after{
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 132px; height: 132px;
  background-image: var(--cl-dot-tex);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(circle at bottom right, #000, transparent 72%);
          mask-image: radial-gradient(circle at bottom right, #000, transparent 72%);
  opacity: .55;
  transition: opacity .4s;
  pointer-events: none;
}
.cl-feature-card:hover::after{ opacity: 1; }
.cl-feature-card.is-dark::after{ filter: brightness(0) invert(1); opacity: .12; }

/* icon boxes — soft halo ring for a richer, dimensional look */
.cl-feature-card .cl-ic,
.cl-contact-card .ic{
  box-shadow: 0 14px 30px rgba(26,115,232,.30),
              0 0 0 6px rgba(26,115,232,.07);
}
.cl-feature-card.is-dark .cl-ic{
  box-shadow: 0 14px 30px rgba(0,0,0,.30),
              0 0 0 6px rgba(255,255,255,.06);
}

/* ---------------------------------------------------------------
   14.4  "How it works" steps — giant ghost numerals + cleaner connector
   --------------------------------------------------------------- */
.cl-howworks-section .row{ counter-reset: clstep; }
.cl-howworks-section .cl-step{
  counter-increment: clstep;
  isolation: isolate;          /* keep the ghost numeral inside the card */
}
.cl-howworks-section .cl-step::after{
  content: counter(clstep, decimal-leading-zero);
  position: absolute; top: 12px; right: 26px; z-index: -1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800; font-size: 104px; line-height: 1;
  color: var(--cl-blue); opacity: .07;
  pointer-events: none;
}
/* connector arrow moves to the icon's pseudo (::after now holds the numeral) */
.cl-howworks-section .cl-step:not(:last-child) .cl-stic::after{
  content: "\f061";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 60px; right: -30px;
  color: var(--cl-blue); opacity: .3; font-size: 22px; z-index: 2;
}
@media (max-width: 991px){
  .cl-howworks-section .cl-step:not(:last-child) .cl-stic::after{ display: none; }
  .cl-howworks-section .cl-step::after{ font-size: 88px; }
}

/* ---------------------------------------------------------------
   14.5  Light-section textures — subtle, single colour, masked
   --------------------------------------------------------------- */
.cl-soft-section{ position: relative; }
.cl-soft-section::before{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--cl-dot-tex);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 78%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 78%);
  opacity: .7;
  pointer-events: none;
}
.cl-soft-section > .container-fluid{ position: relative; z-index: 1; }

.cl-howworks-section::before{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--cl-dot-tex);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 0% 100%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 70% at 0% 100%, #000, transparent 70%);
  opacity: .6;
  pointer-events: none;
}
.cl-howworks-section > .container-fluid{ position: relative; z-index: 1; }

/* products section keeps its existing soft wash + adds a dot weave */
.project-section{
  background-color: var(--cl-soft);
  background-image: var(--cl-dot-tex), linear-gradient(180deg, #ffffff 0%, var(--cl-soft) 100%);
  background-size: 20px 20px, auto;
  background-repeat: repeat, no-repeat;
}

/* ---------------------------------------------------------------
   14.6  Media frame — editorial corner bracket
   --------------------------------------------------------------- */
.cl-media::after{
  content: "";
  position: absolute; right: -14px; bottom: -14px;
  width: 86px; height: 86px;
  border-right: 3px solid var(--cl-accent);
  border-bottom: 3px solid var(--cl-accent);
  border-radius: 0 0 14px 0;
  opacity: .85; z-index: 2;
  pointer-events: none;
}

/* ---------------------------------------------------------------
   14.7  Product card — corner tick + thumb framing
   --------------------------------------------------------------- */
.cl-product-card{ position: relative; }
.cl-product-card .cl-pc-thumb::after{
  content: "";
  position: absolute; inset: 0;
  border-bottom: 1px solid var(--cl-line);
  pointer-events: none;
}
.cl-product-card .cl-pc-body h3{
  position: relative; padding-bottom: 14px; margin-bottom: 14px;
}
.cl-product-card .cl-pc-body h3::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 34px; height: 3px; border-radius: 50px;
  background: var(--cl-accent);
}

/* ---------------------------------------------------------------
   14.8  Testimonials — ghost quotation mark
   --------------------------------------------------------------- */
.testimonial-section .testimonial-box-item{ position: relative; overflow: hidden; }
.testimonial-section .testimonial-box-item::after{
  content: "\201D";
  position: absolute; top: 6px; right: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 120px; line-height: 1; color: var(--cl-blue);
  opacity: .08; pointer-events: none;
}

/* ---------------------------------------------------------------
   14.9  FAQ — numbered, framed accordions
   --------------------------------------------------------------- */
.faq-section .accordion-item{
  background: #fff;
  box-shadow: var(--cl-sh-rest);
}
.faq-section .accordion-button{ letter-spacing: -.01em; }

/* ---------------------------------------------------------------
   14.10 Inner-page hero (breadcrumb) — texture, accent, bigger title
   --------------------------------------------------------------- */
.breadcrumb-wrapper{ position: relative; overflow: hidden; }
.breadcrumb-wrapper::after{
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--cl-grid-tex);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 72% 10%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 72% 10%, #000, transparent 75%);
  pointer-events: none;
}
.breadcrumb-wrapper .container{ position: relative; z-index: 1; }
.breadcrumb-wrapper .page-heading h1{
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -.02em;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items{
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 18px; padding: 10px 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* ---------------------------------------------------------------
   14.11 Footer — refined newsletter input + top hairline
   --------------------------------------------------------------- */
.footer-section .footer-area{ position: relative; }
.footer-section .footer-area::before{
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: rgba(255,255,255,.10);
}
.footer-widget-wrapper .footer-widget-items .contact-item form input,
.footer-section .contact-item input{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50px;
  padding: 14px 22px;
  color: #fff;
  transition: border-color .3s, background .3s;
}
.footer-widget-wrapper .footer-widget-items .contact-item form input::placeholder,
.footer-section .contact-item input::placeholder{ color: rgba(255,255,255,.5); }
.footer-widget-wrapper .footer-widget-items .contact-item form input:focus,
.footer-section .contact-item input:focus{
  outline: none;
  border-color: var(--cl-blue-l);
  background: rgba(255,255,255,.10);
}

/* ---------------------------------------------------------------
   14.12 Trust marquee — give the strip a refined top/bottom hairline
   --------------------------------------------------------------- */
.marquee-section{
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06),
              inset 0 -1px 0 rgba(255,255,255,.06);
}
.marquee .text img{ filter: brightness(0) invert(1); opacity: .45; }

/* ---------------------------------------------------------------
   14.13 Mobile guards for the new texture layers
   --------------------------------------------------------------- */
@media (max-width: 575px){
  .testimonial-section .testimonial-box-item::after{ font-size: 90px; right: 20px; }
  .section-title.text-center::after{ width: 48px; height: 3px; margin-top: 18px; }
  .cl-media::after{ width: 60px; height: 60px; right: -8px; bottom: -8px; }
}

/* ---------------------------------------------------------------
   14.14 Solutions slider — image carousel
   --------------------------------------------------------------- */
.cl-solutions-head{ margin-bottom: 44px; align-items: flex-end; }
.cl-solutions-stage{ max-width: 1140px; margin: 0 auto; }
.cl-solutions-slider{
  width: 100%; overflow: hidden; border-radius: 24px;
}
.cl-solutions-slide{
  background: #fff; border: 1px solid var(--cl-line); border-radius: 24px;
  overflow: hidden; box-shadow: 0 24px 60px -30px rgba(9, 20, 40, .25);
}
.cl-solutions-media{
  width: 100%; aspect-ratio: 3 / 2;
}
.cl-solutions-media img{
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.cl-solutions-caption{
  display: flex; align-items: center; gap: 22px;
  padding: 22px 32px; border-top: 1px solid var(--cl-line);
}
.cl-solutions-num{
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--theme, #0d6efd); color: #fff;
  font-weight: 700; font-size: 17px; letter-spacing: .5px;
}
.cl-solutions-caption h4{ font-size: 21px; margin-bottom: 4px; }
.cl-solutions-caption p{ margin: 0; color: var(--text); font-size: 15px; }
.cl-solutions-dots{ margin-top: 30px; }
@media (max-width: 991px){
  .cl-solutions-caption{ padding: 20px 24px; }
}
@media (max-width: 767px){
  .cl-solutions-head{ align-items: flex-start; }
  .cl-solutions-caption{ gap: 16px; padding: 18px 20px; }
  .cl-solutions-num{ width: 42px; height: 42px; font-size: 15px; }
  .cl-solutions-caption h4{ font-size: 18px; }
  .cl-solutions-caption p{ font-size: 14px; }
}

/* ---------------------------------------------------------------
   Our Story (About) — founder narrative
   --------------------------------------------------------------- */
.cl-story-lead{
  font-size: 22px; line-height: 1.4; font-weight: 700; color: var(--cl-ink);
}
.cl-story p{ color: #46536b; }
.cl-story-sign{
  display: flex; align-items: center; gap: 16px;
  margin-top: 8px; padding-top: 22px; border-top: 1px solid rgba(10,18,36,.10);
}
.cl-story-mark{
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cl-blue), var(--cl-blue-d));
  color: #fff; font-size: 20px;
}
.cl-story-sign strong{ display: block; color: var(--cl-ink); font-size: 17px; line-height: 1.2; }
.cl-story-sign span{ display: block; color: var(--cl-blue); font-size: 13.5px; margin-top: 3px; }

