@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&display=swap');

/* ── RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --blue: #1557c0;
  --blue-dk: #0d3d8f;
  --blue-lt: #dbeafe;
  --teal: #0899e6;
  --teal-dk: #0670a8;
  --teal-lt: #e0f4fd;
  --ink: #0d1117;
  --ink2: #374151;
  --muted: #6b7280;
  --bg: #f4f6fa;
  --surface: #fff;
  --border: #e4e8ef;
  --sh: 0 2px 12px rgba(13, 17, 23, .06);
  --sh-md: 0 8px 32px rgba(13, 17, 23, .1);
  --sh-lg: 0 24px 60px rgba(13, 17, 23, .14);
  --fh: 'Bricolage Grotesque', sans-serif;
  --fb: 'Inter', sans-serif;
}

body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--fh);
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink)
}



/* ── REVEAL ANIMATIONS */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease
}

.rv.in {
  opacity: 1;
  transform: none
}

.rv.d1 {
  transition-delay: .1s
}

.rv.d2 {
  transition-delay: .2s
}

.rv.d3 {
  transition-delay: .3s
}

/* ── CHIP LABELS */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--blue-lt);
  color: var(--blue);
  border: 1px solid rgba(21, 87, 192, .2);
  margin-bottom: 1.2rem
}

.chip.grn {
  background: var(--teal-lt);
  color: var(--teal-dk);
  border-color: rgba(8, 153, 230, .25)
}

/* ── GRADIENT TEXT */
.grad {
  background: linear-gradient(110deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.grad-grn {
  background: linear-gradient(110deg, var(--teal), #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

/* ── TYPOGRAPHY */
.sec-h {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem
}

.sec-p {
  font-size: 1rem;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 560px
}

/* ── BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  transition: all .25s;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none
}

/* Force consistent color — blocks Bootstrap black text bleed */
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none
}

/* PRIMARY — Blue (used on dark backgrounds) */
.btn-blue {
  background: var(--blue);
  color: #fff
}

.btn-blue:hover,
.btn-blue:focus {
  background: var(--blue-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21, 87, 192, .3)
}

/* PRIMARY ALT — White (slider CTA, on dark/image backgrounds) */
.btn-wht {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .13)
}

.btn-wht:hover,
.btn-wht:focus {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21, 87, 192, .25)
}

/* PRIMARY GREEN — Teal (internet/wireless CTAs) */
.btn-grn {
  background: var(--teal);
  color: #fff
}

.btn-grn:hover,
.btn-grn:focus {
  background: var(--teal-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 153, 230, .35)
}

/* SECONDARY — Outlined (light backgrounds) */
.btn-out {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: none
}

.btn-out:hover,
.btn-out:focus {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(21, 87, 192, .2)
}

/* GHOST — Semi-transparent (on dark/gradient backgrounds) */
.btn-ghost {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .28)
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, .25);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px)
}

/* PHONE — Subtle transparent (CTA band) */
.btn-phone {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .22)
}

.btn-phone:hover,
.btn-phone:focus {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-2px)
}

.a-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--blue);
  transition: gap .2s
}

.a-link:hover {
  gap: 10px
}

.a-link.grn {
  color: var(--teal)
}

/* ── CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem
}

/* ── NAV */
.hsc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.nav-logo {
  height: 44px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem
}

.nav-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink2);
  transition: color .2s
}

.nav-link:hover {
  color: var(--blue)
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all .25s
}

.nav-cta:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21, 87, 192, .25)
}

@media(max-width:767px) {
  .hsc-nav {
    padding: 0 1.5rem;
    height: 68px
  }

  .nav-links {
    gap: 1rem
  }

  .nav-link {
    display: none
  }

  .nav-logo {
    height: 36px
  }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 680px;
  overflow: hidden;
  margin-top: 0;
  background: #0a0f1e
}

@media(max-width:767px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .hero-track {
    height: auto;
  }
  .hero-slide {
    height: auto;
    min-height: 440px;
  }
}

/* Track — only translateX, no scale here */
.hero-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform .9s cubic-bezier(.77, 0, .175, 1);
  will-change: transform;
  background: #0a0f1e
}

/* Slide — plain container, NO transform so flex layout is stable */
.hero-slide {
  flex: 0 0 25%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #0a0f1e;
  isolation: isolate
}

/* Inner background div — Ken Burns via @keyframes (survives GPU layer eviction) */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.08) translate3d(0,0,0);
  z-index: 0
}

/* Active slide: start the Ken Burns animation */
.hero-slide.on .hero-slide-bg {
  animation: kb-zoom 8s ease forwards
}

@keyframes kb-zoom {
  from { transform: scale(1.08) translate3d(0,0,0) }
  to   { transform: scale(1)    translate3d(0,0,0) }
}

/* Gradient overlay */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg,
    rgba(5,10,24,.88) 0%,
    rgba(5,10,24,.52) 50%,
    rgba(5,10,24,.12) 100%)
}

@media(max-width:767px) {
  .hero-slide::after {
    background: linear-gradient(180deg,
      rgba(5,10,24,.55) 0%,
      rgba(5,10,24,.92) 60%,
      rgba(5,10,24,.98) 100%)
  }
}

/* Content layer sits above overlay */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-bottom: 3.5rem
}

.hero-body .container {
  text-align: left;
  width: 100%
}

@media(max-width:767px) {
  .hero-body {
    align-items: center;
    padding: 2rem 0 3.5rem;
  }
  .hero-body .container {
    text-align: center;
    padding: 0 1.25rem;
  }
}

.h-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-lt);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: .3rem .85rem;
  margin-bottom: 1.1rem
}

.h-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.1rem;
  max-width: 820px
}

.h-sub {
  font-size: clamp(.98rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.2rem
}

@media(max-width:767px) {
  .h-title {
    font-size: 2.2rem;
    line-height: 1.12;
    margin-bottom: .85rem
  }
  .h-sub {
    font-size: .97rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
    max-width: 100%
  }
  .hero-body .btn {
    width: 100%;
    justify-content: center
  }
}

.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 20;
  background: rgba(255,255,255,.1)
}

.hero-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width 6s linear
}

.hero-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center
}

.hdot {
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: rgba(255,255,255,.3);
  border: none;
  transition: all .35s;
  padding: 0;
  cursor: pointer
}

.hdot.on {
  width: 32px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.4)
}

.hero-count {
  position: absolute;
  bottom: 1.85rem;
  right: 2rem;
  z-index: 20;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .06em;
  font-family: var(--fh)
}

/* ── TRUST STRIP */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border)
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

@media(max-width:767px) {
  .trust-row {
    grid-template-columns: 1fr 1fr
  }
}

.trust-col {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center
}

.trust-col:last-child {
  border-right: none
}

@media(max-width:767px) {
  .trust-col {
    border-bottom: 1px solid var(--border);
    border-right: none
  }

  .trust-col:nth-child(odd) {
    border-right: 1px solid var(--border)
  }
}

.trust-val {
  font-family: var(--fh);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px
}

.trust-lbl {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  margin: .2rem 0 .1rem
}

.trust-note {
  font-size: .72rem;
  color: var(--muted)
}

/* ── SECTIONS */
.sec {
  padding: 5.5rem 0
}

.sec-wht {
  background: var(--surface)
}

/* ── RICH DARK SERVICES BG */
.sec-rich {
  background: #060d1f;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(8, 153, 230, .18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(21, 87, 192, .2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(8, 153, 230, .1) 0%, transparent 40%);
  position: relative;
}

.sec-rich .chip {
  background: rgba(8, 153, 230, .15);
  color: #7dd3fc;
  border-color: rgba(8, 153, 230, .3)
}

.sec-rich .sec-h {
  color: #f1f5f9
}

.sec-rich .grad {
  background: linear-gradient(110deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.sec-rich .sec-p {
  color: rgba(255, 255, 255, .6)
}

/* Dark glassmorphism service cards */
.sec-rich .svc-card {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .02) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.sec-rich .svc-card:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .15);
  border-color: rgba(8, 153, 230, .35);
}

.sec-rich .svc-card h3 {
  color: #f1f5f9
}

.sec-rich .svc-card>p {
  color: rgba(255, 255, 255, .65)
}

.sec-rich .svc-tag {
  color: rgba(255, 255, 255, .4)
}

.sec-rich .svc-ico.ico-b {
  background: rgba(21, 87, 192, .3);
  color: #93c5fd
}

.sec-rich .svc-ico.ico-g {
  background: rgba(8, 153, 230, .25);
  color: #7dd3fc
}

.sec-rich .chklist li {
  color: rgba(255, 255, 255, .75)
}

.sec-rich .chklist li i {
  color: #38bdf8
}

.sec-rich .chklist.grn li i {
  color: #38bdf8
}

.sec-rich .a-link {
  color: #60a5fa
}

.sec-rich .a-link:hover {
  color: #93c5fd
}

.sec-rich .a-link.grn {
  color: #38bdf8
}

/* Force grn card to match dark glassmorphism — no white gradient */
.sec-rich .svc-card.grn {
  background: rgba(255, 255, 255, .05) !important;
  background-image: linear-gradient(145deg, #054162 0%, #0899e6 100%) !important;
  border-color: rgba(255, 255, 255, .08);
}

.sec-rich .svc-card.grn:hover {
  border-color: rgba(8, 153, 230, .35) !important;
  background: rgba(255, 255, 255, .09) !important;
}


/* ── SERVICE CARDS GRID */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem
}

@media(max-width:991px) {
  .svc-grid {
    grid-template-columns: 1fr
  }
}

/* ── Dark gradient card 1 (Security) */
.svc-card {
  background: linear-gradient(145deg, #0d1b35 0%, #1a3464 100%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(13, 27, 53, .35)
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

/* ── Teal gradient card 2 (Internet) */
.svc-card.grn {
  background: linear-gradient(145deg, #054162 0%, #0899e6 100%) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: 0 8px 32px rgba(8, 153, 230, .3)
}

.svc-card.grn::after {
  background: linear-gradient(90deg, #38bdf8, #fff)
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(13, 27, 53, .4)
}

.svc-card.grn:hover {
  box-shadow: 0 24px 50px rgba(8, 153, 230, .4) !important
}

.svc-card:hover::after {
  transform: scaleX(1)
}

/* Text overrides for dark cards */
.svc-card h3 {
  color: #f1f5f9;
  font-size: 1.5rem;
  margin-bottom: .8rem
}

.svc-card>p {
  color: rgba(255, 255, 255, .7);
  font-size: .97rem;
  line-height: 1.65;
  margin-bottom: 1.75rem
}

.svc-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .7rem;
  display: block
}

.svc-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.6rem;
  flex-shrink: 0
}

.ico-b {
  background: rgba(255, 255, 255, .12);
  color: #93c5fd
}

.ico-g {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

.chklist {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
  flex-grow: 1
}

.chklist li {
  display: flex;
  gap: 10px;
  font-size: .94rem;
  color: rgba(255, 255, 255, .8);
  align-items: flex-start;
  line-height: 1.5
}

.chklist li i {
  font-size: 1.05rem;
  margin-top: 1px;
  flex-shrink: 0;
  color: #60a5fa
}

.chklist.grn li i {
  color: rgba(255, 255, 255, .9)
}

/* a-link overrides ONLY inside dark service cards */
.svc-card .a-link {
  color: #93c5fd
}

.svc-card .a-link:hover {
  gap: 10px;
  color: #fff
}

.svc-card .a-link.grn {
  color: rgba(255, 255, 255, .9)
}

.svc-card .a-link.grn:hover {
  color: #fff
}

/* ── RICH PROCESS UI */
.proc-rich {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center
}

@media(max-width:991px) {
  .proc-rich {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

.proc-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.proc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.5rem 2rem 2rem;
  border-left: 3px solid var(--border);
  cursor: pointer;
  transition: all .3s ease;
  position: relative
}

.proc-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease
}

.proc-item.active::before {
  transform: scaleY(1)
}

.proc-item:hover {
  background: var(--bg)
}

.proc-item.active {
  background: var(--surface);
  box-shadow: var(--sh-md);
  border-radius: 0 16px 16px 0;
  border-left-color: transparent;
  z-index: 1
}

.pi-main {
  display: flex;
  gap: 1.5rem;
  flex-grow: 1;
  align-items: flex-start
}

.pi-num {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .3s;
  margin-top: -3px
}

.proc-item.active .pi-num {
  color: var(--blue)
}

.pi-text h4 {
  font-family: var(--fh);
  font-size: 1.3rem;
  margin-bottom: .5rem;
  color: var(--ink);
  transition: color .3s
}

.proc-item.active .pi-text h4 {
  color: var(--blue)
}

.pi-text p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  display: none
}

.proc-item.active .pi-text p {
  display: block;
  animation: fadeUp .4s ease forwards
}

.pi-arrow {
  font-size: 1.2rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s ease
}

.proc-item:hover .pi-arrow {
  opacity: .5;
  transform: translateX(-4px)
}

.proc-item.active .pi-arrow {
  opacity: 1;
  color: var(--blue);
  transform: translateX(0)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.proc-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
  background: var(--border)
}

.proc-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease
}

.proc-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.6) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap
}

.pc-text {
  color: #fff;
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3)
}

.pc-text span {
  display: block;
  font-size: .9rem;
  font-family: var(--fb);
  color: rgba(255, 255, 255, .8);
  font-weight: 400;
  margin-top: 5px;
  text-shadow: none
}

@media(max-width:991px) {
  .proc-visual {
    aspect-ratio: 16/10;
    order: -1
  }

  .proc-item {
    padding: 1.5rem 1rem
  }

  .proc-cta {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem
  }
}

/* ── DEEP DIVE SECTIONS */
.dd-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: center
}

.dd-layout.flip {
  grid-template-columns: 6fr 5fr
}

.dd-layout.flip .dd-text {
  order: 2
}

.dd-layout.flip .dd-photo {
  order: 1
}

@media(max-width:991px) {

  .dd-layout,
  .dd-layout.flip {
    grid-template-columns: 1fr;
    gap: 4rem
  }

  .dd-layout.flip .dd-text,
  .dd-layout.flip .dd-photo {
    order: unset
  }
}

.dd-photo {
  position: relative;
  z-index: 1;
}

.dd-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transition: transform .5s ease;
}

.dd-photo:hover img {
  transform: scale(1.03);
}

.dd-badge {
  position: absolute;
  bottom: -2rem;
  left: 2.5rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .1), inset 0 0 0 1px rgba(255,255,255,0.5);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.dd-photo:hover .dd-badge {
  transform: translateY(-5px);
}

.dd-badge .bico {
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(21, 87, 192, 0.25);
}

.dd-badge .bico.grn {
  background: linear-gradient(135deg, var(--teal), #10b981);
  box-shadow: 0 8px 20px rgba(8, 153, 230, 0.25);
}

.dd-badge strong {
  font-family: var(--fh);
  font-size: 1rem;
  display: block;
  color: var(--ink);
  font-weight: 700
}

.dd-badge span {
  font-size: .82rem;
  color: var(--muted)
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem
}

.tile {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfd 100%);
  border: 1px solid rgba(21, 87, 192, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .02);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(21, 87, 192, 0.4), rgba(8, 153, 230, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.tile.grn::before {
  background: linear-gradient(135deg, rgba(8, 153, 230, 0.4), rgba(34, 197, 94, 0.4));
}

.tile:hover::before {
  opacity: 1;
}

.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(21, 87, 192, .08);
  background: #fff;
}

.tile.grn:hover {
  box-shadow: 0 15px 35px rgba(8, 153, 230, .08);
}

.tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: linear-gradient(135deg, rgba(21, 87, 192, 0.06), rgba(8, 153, 230, 0.06));
  color: var(--blue);
  margin-bottom: 1rem;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(21, 87, 192, 0.1);
}

.tile:hover .tile-ico {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(21, 87, 192, .25);
  border-color: transparent;
}

.tile-ico.grn {
  background: linear-gradient(135deg, rgba(8, 153, 230, 0.06), rgba(34, 197, 94, 0.06));
  color: var(--teal);
  border-color: rgba(8, 153, 230, 0.1);
}

.tile.grn:hover .tile-ico {
  background: linear-gradient(135deg, var(--teal), #10b981);
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 153, 230, .25);
  border-color: transparent;
}

.tile h5 {
  font-family: var(--fh);
  font-size: 1rem;
  margin-bottom: .3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.tile p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0
}

.dd-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

@media(max-width:575px) {
  .tiles {
    grid-template-columns: 1fr
  }

  .dd-badge {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 10px
  }
}

/* ── INTERACTIVE IMAGE CARDS (EXPERT UI) ── */
.image-why-card {
  position: relative;
  height: 340px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer
}

.iwc-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
  transform: scale(1.02)
}

.iwc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .95) 0%, rgba(15, 23, 42, .4) 50%, rgba(15, 23, 42, .1) 100%);
  transition: all .5s ease
}

.image-why-card:hover .iwc-bg {
  transform: scale(1.1)
}

.image-why-card:hover .iwc-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, .95) 0%, rgba(21, 87, 192, .6) 100%)
}

.iwc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%
}

.iwc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all .5s cubic-bezier(.2, .8, .2, 1);
  transform: translateY(20px);
  border: 1px solid rgba(255, 255, 255, .2)
}

.iwc-text-wrap {
  transition: all .5s cubic-bezier(.2, .8, .2, 1);
  transform: translateY(15px)
}

.image-why-card:hover .iwc-icon {
  transform: translateY(0) scale(1.1);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .3)
}

.image-why-card:hover .iwc-text-wrap {
  transform: translateY(0)
}

.iwc-text-wrap h4 {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
  letter-spacing: -.5px
}

.iwc-text-wrap p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  margin: 0;
  opacity: .8;
  transition: opacity .5s
}

.image-why-card:hover .iwc-text-wrap p {
  opacity: 1;
  color: rgba(255, 255, 255, .95)
}

@media(max-width:767px) {
  .image-why-card {
    height: 300px
  }

  .iwc-content {
    padding: 1.75rem
  }
}

/* ── FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start
}

@media(max-width:991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
}

details {
  border-bottom: 1px solid var(--border)
}

details:first-child {
  border-top: 1px solid var(--border)
}

summary {
  font-family: var(--fh);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 1rem;
  user-select: none
}

summary::-webkit-details-marker {
  display: none
}

summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform .3s;
  flex-shrink: 0;
  line-height: 1
}

details[open] summary {
  color: var(--blue)
}

details[open] summary::after {
  transform: rotate(45deg);
  color: var(--blue)
}

.faq-ans {
  font-size: .97rem;
  color: var(--ink2);
  line-height: 1.8;
  padding: 0 2rem 1.5rem 0
}

/* ── CTA BAND */
.cta-band {
  background: #0a1628;
  border-radius: 28px;
  padding: 5rem 3rem;
  text-align: center;
  margin-bottom: 4rem;
  background-image: radial-gradient(ellipse at 15% 60%, rgba(21, 87, 192, .35) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(14, 165, 233, .2) 0%, transparent 55%)
}

.cta-band h2 {
  font-family: var(--fh);
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  margin-bottom: .8rem
}

.cta-band>p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 2.75rem;
  line-height: 1.7
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center
}

@media(max-width:575px) {
  .cta-band {
    padding: 3.5rem 1.75rem;
    border-radius: 20px
  }
}

/* ── CUSTOM FOOTER */
.hsc-footer {
  background: #040914;
  color: rgba(255, 255, 255, .6);
  padding: 6rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 0
}

.hsc-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent)
}

.hf-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto
}

.hf-brand {
  flex: 1;
  min-width: 300px;
  max-width: 400px
}

.hf-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.5rem
}

.hf-desc {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem
}

.hf-social {
  display: flex;
  gap: 1rem
}

.hf-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  transition: all .3s;
  text-decoration: none
}

.hf-social a:hover {
  background: var(--blue);
  transform: translateY(-3px);
  color: #fff
}

.hf-links-group {
  display: flex;
  gap: 4rem;
  flex: 1;
  min-width: 300px
}

.hf-col {
  flex: 1
}

.hf-col h4,
.hf-contact h4 {
  color: #fff;
  font-family: var(--fh);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700
}

.hf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem
}

.hf-col a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s;
  font-size: .9rem
}

.hf-col a:hover {
  color: #fff
}

.hf-contact {
  flex: 1;
  min-width: 280px
}

.hfc-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.hfc-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.hfc-row i {
  color: var(--blue);
  font-size: 1.2rem;
  margin-top: 2px
}

.hfc-row span {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 2px
}

.hfc-row a,
.hfc-row strong {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s;
  font-size: .95rem
}

.hfc-row a:hover {
  color: var(--blue-lt)
}

.hf-legal {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 0 auto 2rem;
  max-width: 1200px
}

.hf-legal p {
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .4);
  margin: 0;
  text-align: justify
}

.hf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .85rem;
  max-width: 1200px;
  margin: 0 auto
}

.hfb-right {
  display: flex;
  gap: 1.5rem
}

.hfb-right a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s
}

.hfb-right a:hover {
  color: #fff
}

@media(max-width:991px) {
  .hf-links-group {
    flex-direction: column;
    gap: 2.5rem
  }

  .hf-top {
    gap: 3rem
  }

  .hf-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center
  }
}

/* ── FAB CALL BUTTON */
.fab-call {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 0;
  background: #0899e6;
  color: #fff;
  border-radius: 100px;
  padding: 0;
  height: 56px;
  width: 56px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 153, 230, .4);
  transition: width .4s cubic-bezier(.2, .8, .2, 1), box-shadow .3s;
  text-decoration: none;
  cursor: pointer
}

.fab-call i {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  line-height: 56px
}

.fab-call-label {
  font-family: var(--fb);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .3s, max-width .4s cubic-bezier(.2, .8, .2, 1);
  padding-right: 0
}

.fab-call:hover {
  width: 220px;
  box-shadow: 0 12px 32px rgba(8, 153, 230, .5)
}

.fab-call:hover .fab-call-label {
  opacity: 1;
  max-width: 160px;
  padding-right: 1.25rem
}

.fab-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(8, 153, 230, .4);
  animation: fab-pulse 2.4s ease-out infinite;
  pointer-events: none
}

@keyframes fab-pulse {
  0% {
    transform: scale(1);
    opacity: .8
  }

  70% {
    transform: scale(1.35);
    opacity: 0
  }

  100% {
    transform: scale(1.35);
    opacity: 0
  }
}

/* ── SCROLL TO TOP */
.fab-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1557c0;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(21, 87, 192, .35);
  pointer-events: none
}

.fab-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto
}

.fab-top:hover {
  background: var(--blue-dk);
  box-shadow: 0 10px 28px rgba(21, 87, 192, .45);
  transform: translateY(-3px)
}

@media(max-width:767px) {
  .fab-call {
    bottom: 1.25rem;
    left: 1.25rem;
    height: 52px;
    width: 52px
  }

  .fab-call i {
    width: 52px;
    line-height: 52px;
    font-size: 1.2rem
  }

  .fab-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    font-size: 1rem
  }
}

/* ── SEC HEAD helper */
.sec-head {
  max-width: 600px;
  margin-bottom: 3.5rem
}

.sec-small {
  max-width: 520px;
  margin-bottom: 3.5rem
}


/* ════════════════════════════════════════
   PRODUCTION-READY MOBILE FIXES
   ════════════════════════════════════════ */

/* ── Tablet (≤991px) ── */
@media(max-width:991px) {

  /* Sections */
  .sec {
    padding: 4rem 0
  }

  /* Service cards */
  .svc-grid {
    grid-template-columns: 1fr
  }

  /* DD badge — avoid overflow on split layout */
  .dd-badge {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1rem 1.25rem;
    gap: 12px
  }

  .dd-badge strong {
    font-size: .95rem
  }

  /* Why cards — full height on tablet */
  .image-why-card {
    height: 300px
  }

  /* Tiles stay 2-col on tablet */
  .tiles {
    grid-template-columns: repeat(2, 1fr)
  }

  /* CTA band */
  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  /* Footer links */
  .hf-links-group {
    flex-direction: column;
    gap: 2rem
  }

  .hf-top {
    gap: 2.5rem
  }

  .hf-bottom {
    flex-direction: column;
    text-align: center
  }
}

/* ── Mobile (≤767px) ── */
@media(max-width:767px) {

  /* Base */
  .container {
    padding: 0 1.25rem
  }

  .sec {
    padding: 3.5rem 0
  }

  /* Typography scale-down */
  .sec-h {
    font-size: 1.75rem !important;
    letter-spacing: -.02em
  }

  .sec-p {
    font-size: .95rem
  }

  h2.sec-h {
    margin-bottom: .85rem
  }

  /* Trust strip — 2 cols */
  .trust-row {
    grid-template-columns: 1fr 1fr
  }

  .trust-col {
    padding: 1.5rem 1rem
  }

  .trust-val {
    font-size: 1.4rem
  }

  /* Service cards */
  .svc-card {
    padding: 2rem 1.5rem
  }

  .svc-grid {
    gap: 1.25rem
  }

  /* Process section */
  .proc-rich {
    gap: 2rem
  }

  .proc-item {
    padding: 1.25rem 1rem
  }

  .pi-text h4 {
    font-size: 1.1rem
  }

  .proc-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem 1.5rem
  }

  .pc-text {
    font-size: 1.1rem
  }

  /* Deep Dive */
  .dd-layout,
  .dd-layout.flip {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .dd-layout.flip .dd-text,
  .dd-layout.flip .dd-photo {
    order: unset
  }

  .dd-text .sec-h {
    font-size: 1.65rem
  }

  .tiles {
    grid-template-columns: 1fr 1fr;
    gap: .85rem
  }

  .tile {
    padding: 1.15rem
  }

  .tile-ico {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 1rem
  }

  .dd-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start
  }

  .dd-actions .btn {
    width: 100%;
    justify-content: center
  }

  .dd-badge {
    position: static;
    margin-top: 1.5rem;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    gap: 12px;
    background: rgba(255, 255, 255, .97)
  }

  .dd-photo {
    aspect-ratio: 16/10
  }

  /* Why Section */
  #why-us .container {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  #why-us h2 {
    font-size: 1.75rem !important
  }

  .image-why-card {
    height: 260px
  }

  .iwc-content {
    padding: 1.5rem
  }

  .iwc-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transform: none
  }

  .iwc-text-wrap {
    transform: none
  }

  .iwc-text-wrap h4 {
    font-size: 1.2rem
  }

  .iwc-text-wrap p {
    font-size: .9rem;
    opacity: 1;
    color: rgba(255, 255, 255, .85)
  }

  /* FAQ */
  .faq-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem
  }
  .faq-left {
    display: contents;
  }
  .faq-header {
    order: 1;
  }
  .faq-layout > div:last-child {
    order: 2;
  }
  .faq-contact {
    order: 3;
    margin-top: 1rem;
  }

  summary {
    font-size: 1rem;
    padding: 1rem 0
  }

  .faq-ans {
    font-size: .93rem;
    padding-bottom: 1.25rem
  }

  /* CTA Band */
  .cta-band {
    padding: 3rem 1.5rem;
    border-radius: 18px
  }

  .cta-band h2 {
    font-size: 1.7rem
  }

  .cta-btns {
    flex-direction: column;
    align-items: center
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center
  }

  /* Footer */
  .hf-brand {
    min-width: unset;
    max-width: 100%
  }

  .hsc-footer {
    padding: 4rem 1.5rem 2rem
  }

  .hf-top {
    flex-direction: column;
    gap: 2.5rem
  }

  .hf-links-group {
    flex-direction: column;
    gap: 2rem;
    min-width: unset
  }

  .hf-bottom {
    flex-direction: column;
    text-align: center;
    gap: .75rem
  }

  .hfb-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem
  }

  /* Buttons */
  .btn {
    font-size: .88rem;
    padding: 11px 22px
  }
}

/* ── Small Mobile (≤480px) ── */
@media(max-width:480px) {
  .tiles {
    grid-template-columns: 1fr
  }

  .tile {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem
  }

  .tile-ico {
    flex-shrink: 0;
    margin-bottom: 0
  }

  .trust-row {
    grid-template-columns: 1fr
  }

  .trust-col {
    border-right: none !important;
    border-bottom: 1px solid var(--border)
  }

  .trust-col:last-child {
    border-bottom: none
  }

  .image-why-card {
    height: 240px
  }

  .iwc-text-wrap h4 {
    font-size: 1.1rem
  }

  .iwc-text-wrap p {
    display: none
  }

  .hero-count {
    display: none
  }

  .proc-visual {
    aspect-ratio: 4/3
  }

  .hf-social a {
    width: 36px;
    height: 36px;
    font-size: .9rem
  }

  .hf-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem
  }
}

/* ── Touch Device: Disable hover effects that feel broken ── */
@media(hover:none) {
  .image-why-card .iwc-icon {
    transform: none
  }

  .image-why-card .iwc-text-wrap {
    transform: none
  }

  .image-why-card:hover .iwc-bg {
    transform: scale(1.02)
  }

  .tile:hover {
    transform: none;
    box-shadow: none
  }

  .svc-card:hover {
    transform: none;
    box-shadow: var(--sh)
  }

  .svc-card:hover::after {
    transform: scaleX(1)
  }

  .proc-item:hover {
    background: none
  }
}

/* ══════════════════════════════════════
   PARTNER LOGOS STRIP
══════════════════════════════════════ */
.partner-logos {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}

.pl-label {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.1rem;
}

.pl-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 2.5rem;
}

.pl-badge {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  opacity: .55;
  transition: opacity .25s;
  cursor: default;
  user-select: none;
}

.pl-badge:hover {
  opacity: 1;
}

@media(max-width:600px) {
  .pl-row { gap: .6rem 1.5rem; }
  .pl-badge { font-size: 1rem; }
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media(max-width:991px) {
  .testi-grid { grid-template-columns: 1fr; }
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.6rem;
  box-shadow: var(--sh);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.1rem;
  color: #f59e0b;
  font-size: .9rem;
}

.testi-quote {
  position: relative;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-qt {
  display: block;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .6;
  color: var(--blue-lt);
  margin-bottom: .4rem;
  pointer-events: none;
}

.testi-body {
  font-size: .95rem;
  line-height: 1.72;
  color: var(--ink2);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
}

.testi-loc {
  font-size: .76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

.testi-badge {
  margin-left: auto;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--blue-lt);
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   QUOTE FORM
══════════════════════════════════════ */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media(max-width:991px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.quote-text .sec-h {
  margin-bottom: .9rem;
}

.quote-text .sec-p {
  margin-bottom: 1.75rem;
}

.quote-perks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.quote-perks li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink2);
}

.quote-perks li i {
  color: var(--blue);
  font-size: 1rem;
  flex-shrink: 0;
}

.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--sh-lg);
}

@media(max-width:600px) {
  .quote-form {
    padding: 1.5rem 1.25rem;
  }
}

.qf-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media(max-width:600px) {
  .qf-row { 
    gap: .6rem; 
  }
}

.qf-group {
  margin-bottom: 1rem;
}

.qf-group label {
  display: block;
  font-size: .79rem;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}

.qf-group input,
.qf-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .95rem;
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

@media(max-width:600px) {
  .qf-group label {
    font-size: .72rem;
  }
  .qf-group input,
  .qf-group select {
    padding: .6rem .75rem;
    font-size: .88rem;
  }
}

.qf-group input:focus,
.qf-group select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21,87,192,.1);
}

.qf-submit {
  width: 100%;
  justify-content: center;
  padding: .9rem;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: .5rem;
}

.qf-note {
  text-align: center;
  font-size: .73rem;
  color: var(--muted);
  margin-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── Legal disclaimer below submit button */
.qf-legal {
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: #f8faff;
  border: 1px solid #e2e8f4;
  border-radius: 8px;
  font-size: .69rem;
  color: #6b7280;
  line-height: 1.55;
}

.qf-legal ol {
  margin: .4rem 0 0 0;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.qf-legal ol li {
  padding-left: .15rem;
}

.qf-legal a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.qf-legal a:hover {
  color: var(--blue-dk, #0f40a0);
}

/* ── Quote Form Alerts */
.qf-alert-success,
.qf-alert-error {
  border-radius: 10px;
  padding: .85rem 1.1rem;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.qf-alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1.5px solid #bbf7d0;
}

.qf-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1.5px solid #fecaca;
}

/* ── Consent Checkbox */
.qf-consent {
  margin-bottom: 1rem;
}

.qf-consent-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
}

.qf-consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.qf-consent-label span {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Per-field validation states */
.qf-has-error input,
.qf-has-error select,
.qf-has-error.qf-consent {
  border-color: #ef4444 !important;
  background: #fff5f5;
}

.qf-has-error input:focus,
.qf-has-error select:focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,.12);
  border-color: #ef4444 !important;
}

.qf-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 600;
  color: #dc2626;
  margin-top: .35rem;
}

.qf-field-error i {
  font-size: .8rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — complete redesign
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.ct-hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #0f1e3a 100%);
  padding: 7rem 0 4rem;
  text-align: center;
}
.ct-hero-h {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}
.ct-hero-p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.ct-hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem;
}
.ct-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  border-radius: 100px;
  padding: .4rem 1rem;
}
.ct-hero-badges i { color: var(--blue-lt); }

/* Body layout */
.ct-body {
  background: #f4f6fa;
  padding: 4rem 0 5rem;
}
.ct-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}
@media(max-width:1024px) {
  .ct-layout { grid-template-columns: 280px 1fr; gap: 2rem; }
}
@media(max-width:767px) {
  .ct-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .ct-hero { padding: 6rem 0 3rem; }
}

/* Info sidebar */
.ct-info { display: flex; flex-direction: column; gap: 1rem; }
.ct-info-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  overflow: hidden;
}
/* Only the text div gets flex:1 — NOT the icon */
.ct-info-card > div:not(.ct-info-ico) {
  min-width: 0;
  flex: 1;
}
.ct-info-ico {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.ct-info-lbl {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: .15rem;
}
.ct-info-val {
  display: block;
  font-size: .9rem; font-weight: 700;
  color: var(--ink); text-decoration: none;
  word-break: break-all;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
a.ct-info-val:hover { color: var(--blue); }
.ct-info-note { font-size: .74rem; color: var(--muted); margin-top: .1rem; line-height: 1.35; }

.ct-trust-row {
  background: linear-gradient(135deg, #1557c0, #0899e6);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.ct-trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.ct-trust-item i { color: #fff; font-size: .88rem; }

/* Form card */
.ct-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  border-top: 4px solid var(--blue);
}
.ct-form-head { margin-bottom: 1.75rem; }
.ct-form-head h2 {
  font-size: 1.45rem; font-weight: 800;
  color: var(--ink); margin-bottom: .3rem;
}
.ct-form-head p { font-size: .92rem; color: var(--muted); margin: 0; }

/* Alerts */
.ct-alert {
  border-radius: 10px;
  padding: .9rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.ct-alert-ok { background:#f0fdf4; color:#166534; border:1.5px solid #bbf7d0; }
.ct-alert-err { background:#fef2f2; color:#991b1b; border:1.5px solid #fecaca; }

/* 2-column row — always 2 cols, even on mobile */
.ct-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}
@media(max-width:400px) {
  .ct-row-2 { gap: .6rem; }
}

/* Fields */
.ct-field { display: flex; flex-direction: column; margin-bottom: .85rem; }
.ct-field-full { grid-column: 1 / -1; }
.ct-field label, .ct-field > label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink2);
  letter-spacing: .01em;
  margin-bottom: .38rem;
  text-transform: uppercase;
}
.ct-field input,
.ct-field textarea,
.ct-field select {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: .7rem .9rem;
  font-size: .93rem;
  font-family: var(--fb);
  color: var(--ink);
  background: #f9fafb;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.ct-field input:focus,
.ct-field textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21,87,192,.1);
}
.ct-field textarea { resize: vertical; min-height: 90px; }
.ct-optional { font-weight: 400; color: var(--muted); text-transform: none; font-size: .75rem; }

/* Service cards — always 2×2 grid */
.ct-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .4rem;
}
.ct-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: .85rem .5rem;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: #f9fafb;
}
.ct-svc-card input[type="radio"] { display: none; }
.ct-svc-card i { font-size: 1.4rem; color: var(--muted); transition: color .2s; }
.ct-svc-card span { font-size: .8rem; font-weight: 600; color: var(--ink2); }
.ct-svc-card:hover,
.ct-svc-card.selected {
  border-color: var(--blue);
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(21,87,192,.09);
}
.ct-svc-card:hover i,
.ct-svc-card.selected i { color: var(--blue); }
.ct-svc-card.selected span { color: var(--blue); }

/* Consent */
.ct-consent { margin: .75rem 0 1rem; }
.ct-consent-label {
  display: flex; align-items: flex-start; gap: .6rem; cursor: pointer;
}
.ct-consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--blue); cursor: pointer;
}
.ct-consent-label span {
  font-size: .76rem; color: var(--muted); line-height: 1.55;
}
.ct-consent-label a { color: var(--blue); text-decoration: underline; }

/* reCAPTCHA */
.ct-recaptcha { margin: .75rem 0 1rem; transform-origin: left; }
@media(max-width:360px) {
  .ct-recaptcha { transform: scale(.88); }
}

/* Submit */
.ct-submit {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  padding: .95rem;
  background: linear-gradient(135deg, #1557c0, #0899e6);
  color: #fff;
  border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(21,87,192,.28);
}
.ct-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(21,87,192,.35);
}
.ct-submit:active { transform: translateY(0); }

.ct-privacy-note {
  text-align: center; font-size: .72rem;
  color: var(--muted); margin-top: .75rem;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* Service card selection via JS */

/* ── STATS COUNTER BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(21,87,192,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: center;
  padding: 1rem 1.5rem;
  text-align: left;
}
.stat-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #60a5fa;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.stat-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}
.stat-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Counter animation */
.stat-num { transition: color 0.3s; }

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    gap: 0;
  }
  .stat-item {
    width: 100%;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    justify-content: flex-start;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-divider { display: none; }
  .stat-num { font-size: 2.2rem; }
}
@media (min-width: 769px) and (max-width: 991px) {
  .stat-item { padding: 1rem 1rem; gap: 1rem; }
  .stat-ico { width: 46px; height: 46px; font-size: 1.2rem; }
  .stat-num { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════
   PREMIUM SECURITY DEEP DIVE — New Design
   ═══════════════════════════════════════════════ */

.sec-security {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 7rem;
  background: linear-gradient(160deg, #f8faff 0%, #f0f4ff 40%, #edf6fd 100%);
}

.sec-deco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

.sec-security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Left text column */
.sdd-text {
  display: flex;
  flex-direction: column;
}

.sdd-heading {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-family: var(--fh);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 1rem 0 1.25rem;
}

.sdd-grad {
  background: linear-gradient(100deg, #1557c0 10%, #0899e6 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sdd-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink2);
  margin: 0 0 2rem;
}

/* Feature list */
.sdd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sdd-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(21,87,192,.08);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(4px);
}

.sdd-features li:hover {
  background: #fff;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(21,87,192,.08);
}

.sdd-ficon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1557c0, #0899e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: .05rem;
  box-shadow: 0 4px 12px rgba(21,87,192,.25);
}

.sdd-features li strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .18rem;
  font-family: var(--fh);
}

.sdd-features li span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Actions */
.sdd-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.sdd-call {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--blue);
  text-decoration: none;
  transition: color .2s;
}
.sdd-call:hover { color: var(--teal); }

.sdd-disclaimer {
  font-size: .75rem;
  color: var(--muted);
  margin: 0;
}

/* ── Right visual column */
.sdd-visual {
  position: relative;
}

/* Glowing blob */
.sdd-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  background: radial-gradient(ellipse at center, rgba(21,87,192,.12) 0%, rgba(8,153,230,.06) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: blobPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes blobPulse {
  0%   { transform: scale(1) translate(0,0); opacity: .7; }
  50%  { transform: scale(1.08) translate(4px, -8px); opacity: 1; }
  100% { transform: scale(.95) translate(-4px, 6px); opacity: .8; }
}

/* Image wrapper */
.sdd-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  overflow: visible;
}

.sdd-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(13,17,23,.14), 0 0 0 1px rgba(21,87,192,.06);
  display: block;
  transition: transform .6s cubic-bezier(.165,.84,.44,1);
}

.sdd-img-wrap:hover img {
  transform: scale(1.02);
}

/* Floating stat cards */
.sdd-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 3;
  animation: floatBob 4s ease-in-out infinite;
}

.sdd-float--tl {
  top: -1.2rem;
  left: -1.5rem;
  animation-delay: 0s;
}

.sdd-float--br {
  bottom: 3.5rem;
  right: -1.5rem;
  animation-delay: 2s;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.sdd-float strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--fh);
  line-height: 1;
}

.sdd-float span {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1;
}

.sdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1557c0, #0899e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(21,87,192,.25);
}

.sdf-icon--grn {
  background: linear-gradient(135deg, #0899e6, #10b981);
  box-shadow: 0 4px 12px rgba(8,153,230,.25);
}

/* Bottom badge */
.sdd-badge {
  position: absolute;
  bottom: -1.75rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 18px;
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  z-index: 2;
  transition: transform .4s ease;
}

.sdd-img-wrap:hover .sdd-badge {
  transform: translateY(-4px);
}

.sdd-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1557c0, #0899e6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(21,87,192,.3);
}

.sdd-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--fh);
}

.sdd-badge span {
  font-size: .8rem;
  color: var(--muted);
}

/* Animated pulsing live dot */
.sdd-badge-pulse {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  position: relative;
}

.sdd-badge-pulse::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34,197,94,.3);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0; }
}

/* Responsive */
@media (max-width: 991px) {
  .sec-security-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .sdd-float--tl { top: -1rem; left: 0; }
  .sdd-float--br { bottom: 2.5rem; right: 0; }
}

@media (max-width: 575px) {
  .sec-security { padding: 4rem 0 5.5rem; }
  .sdd-float { display: none; }
  .sdd-badge { left: 1rem; right: 1rem; bottom: -1.5rem; }
}