/* Google Fonts loaded via <link> in header for performance */

/* ============================================================
   DIGITAL ORA — COMPLETE CSS v5
   ============================================================ */

:root {
  --black:  #000;
  --yellow: #ffde00;
  --white:  #fff;
  --grey:   #e7e7e7;
  --mid:    #555;
  --border: 2px solid #000;
  --r:  16px;
  --rs: 11px;
  --rp: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: Syne, sans-serif; font-size: 17px; line-height: 1.65; color: var(--black); background: var(--grey); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; height: auto; }
button { border: none; cursor: pointer; font-family: inherit; background: none; }
input, textarea, select { font-family: inherit; }
p { margin: 0; }

/* ---- Layout ---- */
.main-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   HEADER WRAP — fixed sticky
   ============================================================ */
.header-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--grey);        /* fills the full viewport width — no white gaps on wide screens */
}
.header { max-width: 1280px; margin: 0 auto; padding: 0 12px; }
.inner-header { border: var(--border); border-radius: 0 0 var(--r) var(--r); background: var(--grey); }

/* ============================================================
   TOP BAR TICKER
   ============================================================ */
.top-bar {
  background: var(--yellow); height: 52px; display: flex;
  align-items: center; overflow: hidden; position: relative;
}
.tob-bar-category-text {
  background: var(--black); color: var(--white); height: 100%;
  padding: 0 20px; font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1px; display: flex;
  align-items: center; flex-shrink: 0; z-index: 2;
}
.ticker-overflow { overflow: hidden; flex: 1; }
.moving-tech-list {
  display: inline-flex; white-space: nowrap;
  align-items: center; animation: ticker 30s linear infinite;
}
.moving-tech-item { display: flex; align-items: center; margin: 0 24px; }
.moving-tech-text { font-size: 15px; font-weight: 600; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { background: transparent; position: relative; }
.inner-navbar {
  background: var(--white); border-top: var(--border);
  border-radius: 0 0 var(--r) var(--r);
  display: flex; align-items: center; padding: 14px 24px;
  gap: 12px; position: relative; z-index: 100;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px;
  letter-spacing: 2px; line-height: 1; flex-shrink: 0;
}
.logo-text span {
  background: var(--yellow); padding: 0 6px;
  border-radius: 4px; border: var(--border);
}
.nav-menu {
  display: flex; align-items: center; margin-left: auto; gap: 0;
}
.menu-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  text-transform: uppercase; margin-left: 22px; padding-left: 16px;
  position: relative; transition: opacity .2s;
}
.menu-item::before {
  content: '\25C6'; font-size: 8px; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  opacity: 0; transition: opacity .2s;
}
.menu-item:hover::before, .menu-item.w--current::before { opacity: 1; }
.menu-item.w--current { text-decoration: underline; }

.nav-cta-btn {
  background: var(--yellow); color: var(--black); border: var(--border);
  border-radius: var(--rp); padding: 9px 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 19px;
  margin-left: 18px; white-space: nowrap; flex-shrink: 0;
  transition: all .2s;
}
.nav-cta-btn:hover { background: var(--black); color: var(--yellow); }

/* Desktop dropdown */
.services-dropdown-wrapper { position: relative; }
.services-dropdown {
  position: absolute; top: 100%; right: 0;
  background: var(--white); border: var(--border); border-radius: var(--r);
  min-width: 240px; z-index: 9999; padding: 8px;
  box-shadow: 4px 4px 0 #000;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  pointer-events: none;
}
.services-dropdown-wrapper:hover .services-dropdown,
.services-dropdown-wrapper:focus-within .services-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
}
/* Invisible bridge fills the gap between trigger and panel so
   mouseleave doesn't fire while the cursor moves down to the dropdown */
.dropdown-bridge {
  position: absolute; top: 100%; left: 0; right: 0;
  height: 16px;
  z-index: 9998;
  display: none;
}
.services-dropdown-wrapper:hover .dropdown-bridge {
  display: block;
}
/* Caret indicator */
#servicesToggle::after {
  content: '▾'; font-size: 10px; margin-left: 4px;
  display: inline-block; transition: transform .25s ease;
}
.services-dropdown-wrapper:hover #servicesToggle::after {
  transform: rotate(180deg);
}
.dropdown-service-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 8px; font-family: Syne, sans-serif; font-size: 14px;
  font-weight: 600; transition: background .2s ease, transform .15s ease;
  text-decoration: none; color: var(--black);
}
.dropdown-service-item:hover, .dropdown-service-item.active { background: var(--yellow); transform: translateX(4px); }

/* Hamburger — hidden on desktop */
.menu-button {
  display: none; border: var(--border); background: var(--grey);
  border-radius: 6px; padding: 6px 11px; cursor: pointer;
  margin-left: auto; flex-shrink: 0; align-items: center; justify-content: center;
}
.hamburger-icon { font-size: 24px; line-height: 1; display: block; }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #05060d; z-index: 9999;
  overflow-y: auto; overflow-x: hidden;
  padding: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  display: flex; flex-direction: column;
}

.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer.open .md-nav-link {
  animation: mdSlideIn .4s ease forwards;
  opacity: 0;
}
@keyframes mdSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Cosmic backdrop */
.md-sun {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,222,0,.30), transparent 70%);
  top: -95px; right: -75px; z-index: 1; pointer-events: none;
}
.md-stars { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.md-stars i {
  position: absolute; background: #fff; border-radius: 50%;
  animation: mdTwinkle 3s infinite;
}
@keyframes mdTwinkle { 0%,100% { opacity:.15 } 50% { opacity:.9 } }

/* Drawer header */
.md-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; border-bottom: 1px solid rgba(255,222,0,.15);
  position: relative; z-index: 2; flex-shrink: 0;
}
.md-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: #fff; letter-spacing: 2px;
}
.md-logo span {
  background: var(--yellow); color: #000;
  padding: 1px 8px; border-radius: 4px; margin-left: 4px;
  box-shadow: 0 0 18px rgba(255,222,0,.7);
}
.mobile-drawer-close {
  background: none; border: 2px solid rgba(255,222,0,.4);
  color: var(--yellow); border-radius: 50%;
  width: 38px; height: 38px; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  position: static;
}
.mobile-drawer-close:hover { border-color: var(--yellow); box-shadow: 0 0 16px rgba(255,222,0,.5); }

/* Nav links */
.md-nav { padding: 8px 24px 0; flex-shrink: 0; position: relative; z-index: 2; }
.md-nav-link {
  font-family: 'Bebas Neue', sans-serif; font-size: 30px;
  color: #fff; padding: 11px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s; letter-spacing: 1px;
}
.md-nav-link:last-child { border-bottom: none; }
.md-nav-link svg { opacity: .28; transition: all .2s; }
.md-nav-link:hover,
.md-nav-link.active { color: var(--yellow); padding-left: 8px; }
.md-nav-link.active { text-shadow: 0 0 16px rgba(255,222,0,.8); border-left: 3px solid var(--yellow); }
.md-nav-link:hover svg,
.md-nav-link.active svg { opacity: 1; stroke: var(--yellow); transform: translateX(4px); }

/* Services accordion */
.md-acc { padding: 0 24px; margin: 12px 0 0; position: relative; z-index: 2; flex-shrink: 0; }
.md-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: var(--yellow); border: none; border-radius: 10px;
  padding: 13px 15px; color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 2px;
  cursor: pointer; box-shadow: 0 0 22px rgba(255,222,0,.45);
}
.md-acc-btn .fa { transition: transform .35s; font-size: 15px; }
.md-acc-btn.open .fa { transform: rotate(180deg); }
.md-acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.md-acc-panel.open { max-height: 340px; }

/* Services grid */
.md-services {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  padding: 9px 0 2px;
}
.md-svc-link {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,222,0,.15);
  border-radius: 9px; padding: 10px;
  font-family: Syne, sans-serif; font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,.8); transition: all .2s;
}
.md-svc-icon { font-size: 13px; color: var(--yellow); width: 14px; text-align: center; flex-shrink: 0; }
.md-svc-link:hover { border-color: rgba(255,222,0,.5); background: rgba(255,222,0,.08); }
.md-svc-link.active {
  background: var(--yellow); color: #000;
  border-color: var(--yellow); box-shadow: 0 0 22px rgba(255,222,0,.55);
}
.md-svc-link.active .md-svc-icon { color: #000; }

/* Footer CTAs */
.md-footer {
  margin-top: auto; padding: 13px 24px 22px;
  display: flex; gap: 8px; align-items: center;
  border-top: 1px solid rgba(255,222,0,.15);
  position: relative; z-index: 2; flex-shrink: 0;
}
.md-cta {
  flex: 1; text-align: center;
  background: var(--yellow); color: #000;
  padding: 13px; border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 1px; box-shadow: 0 0 26px rgba(255,222,0,.6);
  transition: transform .2s;
}
.md-cta:hover { transform: scale(1.03); }
.md-wa {
  width: 48px; height: 46px; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,222,0,.4); color: var(--yellow);
  border-radius: 50px; transition: all .2s;
}
.md-wa:hover { border-color: var(--yellow); box-shadow: 0 0 16px rgba(255,222,0,.5); }

/* ============================================================
   STICKY WHATSAPP + CALL BUTTONS (desktop & mobile)
   ============================================================ */
.sticky-btns {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 9990;
}
.sticky-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif; font-size: 17px;
  letter-spacing: 1px; text-decoration: none;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 #000;
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.sticky-btn:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 #000; }
.sticky-btn:active { transform: translateY(1px); box-shadow: 1px 1px 0 #000; }
.sticky-wa   { background: #25D366; color: #fff; }
.sticky-call { background: var(--yellow); color: var(--black); }
.sticky-btn .fa { font-size: 17px; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.main-title { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.title-heading {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 80px);
  font-weight: 400; line-height: 1; text-transform: uppercase; margin: 0;
}
.title-icon { font-size: 36px; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  background: var(--yellow); border: var(--border); border-radius: var(--r);
  padding: 28px 36px; margin: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.page-banner-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 64px);
  line-height: 1; margin: 0; text-transform: uppercase; color: var(--black);
}
.page-banner-breadcrumb { font-size: 15px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; color: var(--black); }
.breadcrumb-sep { color: #888; }

/* ============================================================
   HERO V6 — Split layout: black left / white right
   ============================================================ */

/* Yellow top strip */
.hero-strip {
  background: var(--yellow);
  border-bottom: var(--border);
  padding: 10px 0;
}
.hero-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-strip-loc {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--black);
}
.hero-strip-dot { width: 7px; height: 7px; background: var(--black); border-radius: 50%; }
.hero-strip-trust { display: flex; gap: 28px; }
.hero-strip-trust span {
  font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; color: rgba(0,0,0,.5);
}
.hero-strip-trust strong { color: var(--black); }

/* Main hero — two columns */
.hero-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 540px;
  border-bottom: var(--border);
}

/* Left — black */
.hero-left {
  background: var(--black);
  padding: 52px 52px 48px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: var(--border);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,222,0,.4);
  background: rgba(255,222,0,.1);
  color: var(--yellow);
  font-size: 11px; font-weight: 700; padding: 5px 14px;
  border-radius: var(--rp); letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 24px;
  width: fit-content;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; background: #22c55e;
  border-radius: 50%; flex-shrink: 0;
  animation: hero-blink 1.4s ease-in-out infinite;
}
@keyframes hero-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 7.5vw, 108px);
  line-height: .88; text-transform: uppercase;
  letter-spacing: -2px; color: var(--white); margin: 0 0 28px;
}
.hero-hl-yellow  { color: var(--yellow); }
.hero-hl-ghost   { -webkit-text-stroke: 2px rgba(255,255,255,.25); color: transparent; }
.hero-hl-dim     { color: rgba(255,255,255,.1); font-size: .6em; letter-spacing: -1px; display: block; line-height: 1; }

.hero-sub {
  font-size: 15px; color: rgba(255,255,255,.5);
  line-height: 1.8; max-width: 440px; margin-bottom: 32px;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta-primary {
  background: var(--yellow); color: var(--black);
  border: 2px solid var(--yellow); border-radius: var(--rp);
  padding: 13px 30px; font-family: 'Bebas Neue', sans-serif;
  font-size: 21px; white-space: nowrap; transition: all .2s; display: inline-block;
}
.hero-cta-primary:hover { background: var(--white); border-color: var(--white); }
.hero-cta-secondary {
  background: transparent; color: rgba(255,255,255,.75);
  border: 2px solid rgba(255,255,255,.25); border-radius: var(--rp);
  padding: 13px 30px; font-family: 'Bebas Neue', sans-serif;
  font-size: 21px; white-space: nowrap; transition: all .2s; display: inline-block;
}
.hero-cta-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

/* Right — white */
.hero-right {
  background: var(--white);
  display: flex; flex-direction: column;
}
.hero-img-slot {
  flex: 1; overflow: hidden; border-bottom: var(--border);
  min-height: 260px; position: relative;
}
.hero-img-slot img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .6s ease;
}
.hero-img-slot:hover img { transform: scale(1.03); }
.hero-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--yellow); color: var(--black);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; border: 1.5px solid var(--black);
  text-transform: uppercase; letter-spacing: .5px;
}

.hero-result-cards {
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-result-card {
  padding: 20px 18px; border-top: var(--border);
}
.hero-result-card:first-child { border-right: var(--border); }
.hero-result-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 38px;
  color: var(--black); line-height: 1; margin-bottom: 3px;
}
.hero-result-num em { color: var(--yellow); font-style: normal; }
.hero-result-lbl {
  font-size: 11px; font-weight: 700; color: #999;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1.4;
}
.hero-result-client {
  font-size: 10px; color: #ccc;
  margin-top: 3px; text-transform: uppercase; letter-spacing: .4px;
}

/* Stats bar */
.hero-stats-bar {
  background: var(--black);
  border-bottom: var(--border);
}
.hero-stats-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch;
}
.hero-stat {
  flex: 1; padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px;
  color: var(--yellow); line-height: 1;
}
.hero-stat-lbl {
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,.3);
  text-transform: uppercase; letter-spacing: .8px; margin-top: 4px;
}

/* Pills strip */
.hero-pills-bar {
  background: var(--grey);
  border-bottom: var(--border);
  padding: 14px 0;
}
.hero-pills-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-pill {
  background: var(--white); border: 2px solid var(--black);
  color: var(--black); font-family: Syne, sans-serif;
  font-size: 11px; font-weight: 700; padding: 6px 14px;
  border-radius: var(--rp); white-space: nowrap; transition: all .2s;
}
.hero-pill:hover { background: var(--yellow); }
.hero-pill-hot   { background: var(--yellow); }

/* Client marquee */
.hero-marquee {
  background: var(--yellow); border-bottom: var(--border);
  overflow: hidden; padding: 11px 0;
}
.hero-marquee-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: hero-marquee 24s linear infinite;
  font-family: Syne, sans-serif; font-size: 11px; font-weight: 700;
  color: rgba(0,0,0,.5); text-transform: uppercase;
  letter-spacing: 2px; align-items: center;
}
.hero-mdot { color: rgba(0,0,0,.25); font-size: 7px; }
@keyframes hero-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* Responsive */
@media (max-width: 900px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-left  { padding: 40px 28px 36px; border-right: none; border-bottom: var(--border); }
  .hero-right { border-top: none; }
  .hero-img-slot { min-height: 220px; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-strip-trust { gap: 14px; }
}
@media (max-width: 600px) {
  .hero-strip-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-hl { font-size: clamp(52px, 13vw, 76px); letter-spacing: -1px; }
  .hero-left { padding: 28px 18px 28px; }
  .hero-result-num { font-size: 28px; }
  .hero-stat-num { font-size: 32px; }
  .hero-cta-primary, .hero-cta-secondary { font-size: 18px; padding: 11px 22px; }
}


/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-section { padding: 52px 0; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card {
  background: var(--white); border: var(--border); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 4px 4px 0 var(--black); }
.svc-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.svc-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.svc-card:hover .svc-card-img { transform: scale(1.05); }
.svc-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.svc-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin: 0 0 7px; text-transform: uppercase; }
.svc-card-desc { font-size: 13px; line-height: 1.6; color: #444; margin-bottom: 11px; flex: 1; }
.svc-card-stats { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.svc-stat-pill {
  background: var(--grey); border: 1px solid rgba(0,0,0,.15); border-radius: var(--rp);
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; padding: 3px 10px; white-space: nowrap;
}
.svc-card-link {
  display: inline-block; background: var(--black); color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif; font-size: 16px;
  padding: 8px 16px; border-radius: var(--rp); border: var(--border);
  transition: all .2s; width: fit-content;
}
.svc-card:hover .svc-card-link { background: var(--yellow); color: var(--black); }

/* ============================================================
   BLOG / SERVICE CARDS — services page
   ============================================================ */
.top-blog-section { padding: 40px 0 48px; }
.top-blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.top-blog-item {
  background: var(--white); border: var(--border); border-radius: var(--r);
  padding: 16px; position: relative; overflow: hidden;
  transition: box-shadow .2s;
}
.top-blog-item:hover { box-shadow: 4px 4px 0 var(--black); }
.top-blog-img-wrapper { display: block; border-radius: var(--rs); overflow: hidden; }
.top-blog-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--rs); background: var(--grey); transition: transform .3s; }
.top-blog-item:hover .top-blog-img { transform: scale(1.03); }
.top-blog-title { margin: 20px 0 14px; font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 400; line-height: 1.05; }
.top-blog-time-box { border-top: var(--border); border-bottom: var(--border); display: flex; justify-content: space-between; padding: 10px 0; }
.post-time-text { font-family: 'Bebas Neue', sans-serif; font-size: 16px; text-transform: uppercase; }
.top-blog-read-box { display: flex; align-items: center; margin-top: 14px; padding: 10px 0; }
.read-more { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.read-more-text {
  background: var(--white); color: var(--black); border: var(--border);
  border-radius: var(--rp); padding: 10px 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; line-height: 1;
  transition: background .2s;
}
.read-more:hover .read-more-text { background: var(--yellow); }
.arrow {
  background: var(--grey); border: var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; font-size: 16px; flex-shrink: 0;
  transition: background .2s;
}
.read-more:hover .arrow { background: var(--yellow); }
.read-more.read-more-education { position: absolute; bottom: 26px; right: 28px; }

/* ============================================================
   EDUCATION / ABOUT ROWS
   ============================================================ */
.education-section { padding: 52px 0; }
.education-list { display: flex; flex-direction: column; gap: 22px; }
.education-item {
  display: grid; grid-template-columns: .75fr 1fr;
  border: var(--border); border-radius: var(--r); overflow: hidden;
}
.education-img-wrapper { overflow: hidden; }
.education-img-real { width: 100%; height: 100%; min-height: 250px; display: block; }
.education-content { background: var(--yellow); padding: 13px 52px 0px; position: relative; }
.education-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 3.5vw, 52px); font-weight: 400; line-height: 1; margin: 0 0 14px; }
.education-desc { font-size: 15px; line-height: 1.7; color: #222; margin-bottom: 12px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 52px 0; }
.inner-about {
  background: var(--white); border: var(--border); border-radius: var(--r);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: start; padding: 20px;
}
.about-content { padding: 10px 4px; }
.about-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4.5vw, 52px); font-weight: 400; line-height: 1; text-transform: uppercase; margin: 0 0 10px; }
.about-span { background: var(--yellow); border: var(--border); border-radius: 5px; padding: 4px 10px; display: inline-block; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.about-paragraph { font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.about-quote { border-left: 4px solid var(--black); padding-left: 14px; margin: 16px 0; font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; line-height: 1.35; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { padding: 52px 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: var(--border); border-radius: var(--r); overflow: hidden;
}
.stat-item { background: var(--white); border-right: var(--border); text-align: center; padding: 36px 16px; transition: background .2s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--yellow); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 72px); line-height: 1; display: block; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--mid); }
.numerator-section { padding: 30px 0 52px; }
.numerator-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.numerator-item { background: var(--white); text-align: center; border: var(--border); border-radius: var(--r); padding: 36px 16px; transition: background .3s; }
.numerator-item:hover { background: var(--yellow); }
.numerator-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px, 5.5vw, 72px); font-weight: 400; line-height: 1; margin: 0 0 8px; }
.numerator-span { font-size: 14px; }
.results-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--yellow); border: var(--border); border-radius: var(--r);
  overflow: hidden; margin: 28px 0;
}
.result-box { text-align: center; padding: 26px 12px; border-right: var(--border); transition: background .2s; }
.result-box:last-child { border-right: none; }
.result-box:hover { background: var(--white); }
.result-box-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 50px); line-height: 1; margin-bottom: 4px; }
.result-box-label { font-size: 13px; color: #333; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.service-features-section { padding: 52px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: var(--white); border: var(--border); border-radius: var(--r); padding: 28px; transition: background .2s; }
.feature-card:hover { background: var(--yellow); }
.feature-icon { width: 48px; height: 48px; background: var(--black); border-radius: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.feature-icon::before { content: '✦'; color: var(--yellow); font-size: 20px; }
.feature-card:hover .feature-icon { background: var(--white); border: 2px solid var(--black); }
.feature-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; font-weight: 400; text-transform: uppercase; margin: 0 0 10px; }
.feature-desc { font-size: 14px; line-height: 1.7; color: #444; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 52px 0; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border: var(--border); border-radius: var(--r); overflow: hidden; background: var(--white); }
.process-item { padding: 30px 22px; border-right: var(--border); transition: background .2s; }
.process-item:last-child { border-right: none; }
.process-item:hover { background: var(--yellow); }
.process-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; margin-bottom: 10px; -webkit-text-stroke: 2px #000; color: transparent; }
.process-item:hover .process-num { -webkit-text-stroke: 0; color: var(--black); }
.process-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; text-transform: uppercase; margin-bottom: 8px; }
.process-desc { font-size: 13px; line-height: 1.6; color: #444; }

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.service-page-hero { padding: 6px 0 40px; }
.service-hero-inner { border: var(--border); border-radius: var(--r); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.service-hero-left { padding: 40px 44px; }
.service-hero-right { display: flex; align-items: center; justify-content: center; min-height: 300px; position: relative; overflow: hidden; }
.service-page-tag { display: inline-block; background: var(--black); color: var(--yellow); font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 1px; padding: 4px 14px; border-radius: var(--rp); margin-bottom: 12px; }
.service-page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 66px); font-weight: 400; line-height: 1; margin: 0 0 14px; text-transform: uppercase; }
.service-page-desc { font-size: 15px; line-height: 1.75; margin-bottom: 22px; max-width: 480px; }
.includes-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.includes-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; line-height: 1.5; }
.includes-list li::before { content: '\2713'; background: var(--black); color: var(--yellow); border-radius: 50%; width: 19px; height: 19px; min-width: 19px; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 1px; }

/* ============================================================
   HERO BUTTONS
   ============================================================ */
.hero-btn { background: var(--black); color: var(--yellow); border: var(--border); border-radius: var(--rp); padding: 12px 24px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; display: inline-block; transition: all .2s; }
.hero-btn:hover { background: var(--white); color: var(--black); }
.hero-btn-white { background: var(--white); color: var(--black); border: var(--border); border-radius: var(--rp); padding: 12px 24px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; display: inline-block; transition: all .2s; }
.hero-btn-white:hover { background: var(--black); color: var(--yellow); }

/* ============================================================
   SERVICE CTA BANNER
   ============================================================ */
.service-cta-banner { background: var(--black); border: var(--border); border-radius: var(--r); padding: 40px 48px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin: 14px 0 48px; }
.service-cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 4vw, 46px); line-height: 1; color: var(--white); margin-bottom: 8px; }
.service-cta-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
.service-cta-btn { background: var(--yellow); color: var(--black); border: 2px solid var(--yellow); border-radius: var(--rp); padding: 14px 26px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; white-space: nowrap; display: inline-block; transition: all .2s; }
.service-cta-btn:hover { background: var(--white); border-color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 52px 0; }
.testimonial-list { display: flex; flex-direction: column; }
.testimonial-item { display: flex; align-items: flex-start; gap: 24px; padding: 28px 0; border-bottom: var(--border); flex-wrap: wrap; }
.testimonial-quote-icon { font-size: 52px; color: var(--yellow); flex-shrink: 0; font-family: Georgia; line-height: 1; }
.testimonial-text { font-size: clamp(15px, 2vw, 20px); line-height: 1.6; flex: 1; min-width: 200px; }
.testimonial-author { flex-shrink: 0; text-align: right; min-width: 140px; }
.author-avatar { width: 46px; height: 46px; background: var(--yellow); border: var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 22px; margin-left: auto; margin-bottom: 6px; }
.author-name { font-family: 'Bebas Neue', sans-serif; font-size: 19px; margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--mid); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { padding: 52px 0; }
.contact-inner {
  background: var(--white); border: var(--border); border-radius: var(--r);
  display: grid; grid-template-columns: 1fr 1.2fr; overflow: hidden;
}
.contact-visual { background: linear-gradient(135deg,#1a1a1a,#000); min-height: 480px; position: relative; overflow: hidden; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-info { padding: 32px 36px; }
.contatc-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 52px); font-weight: 400; line-height: 1; margin: 0 0 8px; text-transform: uppercase; }
.contact-subtitle { font-size: 15px; color: #555; margin-bottom: 22px; line-height: 1.7; }
.input-field {
  border: var(--border); border-radius: 28px; margin-bottom: 12px;
  padding: 14px 18px; font-size: 16px; width: 100%; outline: none;
  display: block; background: #fff; -webkit-appearance: none; appearance: none;
  transition: border-color .2s;
}
.input-field:focus { border-color: #666; }
.input-field::placeholder { color: #888; }
.input-field.textarea { border-radius: 16px; resize: vertical; min-height: 100px; padding-top: 14px; }
.submit { background: var(--yellow); color: var(--black); border: var(--border); border-radius: 16px; width: 100%; font-family: 'Bebas Neue', sans-serif; font-size: 22px; padding: 14px; cursor: pointer; transition: all .3s; }
.submit:hover { background: var(--black); color: var(--yellow); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { padding: 52px 0; }
.inner-newsletter {
  background: var(--yellow); border: var(--border); border-radius: var(--r);
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px; padding: 28px 32px;
}
.newsletter-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3vw, 34px); line-height: 1; margin: 0; text-transform: uppercase; }
.newsletter-text { font-size: 15px; line-height: 1.6; flex: 1; min-width: 160px; }
.subscribe-form-block { flex-shrink: 0; }
.subscribe-form { position: relative; }
.subscribe-field {
  border: var(--border); border-radius: var(--rp); width: 290px; max-width: 100%;
  padding: 13px 110px 13px 16px; font-size: 14px; outline: none; display: block;
  -webkit-appearance: none;
}
.subscribe-field::placeholder { color: #444; }
.submit-button {
  background: var(--black); color: var(--yellow); text-transform: uppercase;
  border: var(--border); border-radius: var(--rp); padding: 0 16px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; cursor: pointer;
  position: absolute; top: 0; right: 0; height: 100%; transition: all .2s;
}
.submit-button:hover { background: var(--white); color: var(--black); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 0 0 24px; }
.footer-full-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; padding: 36px 0 30px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 2px; margin-bottom: 10px; }
.footer-logo span { background: var(--yellow); padding: 0 5px; border-radius: 4px; border: var(--border); }
.footer-tagline { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 10px; }
.footer-domain { font-family: 'Bebas Neue', sans-serif; font-size: 17px; background: var(--yellow); display: inline-block; padding: 3px 12px; border: var(--border); border-radius: var(--rp); margin-bottom: 10px; }
.footer-audit-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--black); color: var(--yellow); border: var(--border); border-radius: var(--rp); padding: 7px 14px; font-family: 'Bebas Neue', sans-serif; font-size: 16px; text-decoration: none; margin-bottom: 12px; transition: all .2s; }
.footer-audit-cta:hover { background: var(--yellow); color: var(--black); }
.footer-contact-list { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-item { font-size: 13px; color: #555; }
.footer-col-head { font-family: 'Bebas Neue', sans-serif; font-size: 22px; text-transform: uppercase; margin-bottom: 12px; }
.footer-services-list { display: flex; flex-direction: column; gap: 3px; }
.footer-service-link { font-size: 13px; color: #444; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,.07); transition: color .2s, font-weight .2s; }
.footer-service-link:hover { color: var(--black); font-weight: 700; }
.footer-tags-row { background: var(--yellow); border: var(--border); border-radius: var(--r); padding: 16px; margin-bottom: 18px; }
.tags-item { border: var(--border); background: var(--black); color: var(--yellow); border-radius: var(--rp); margin: 0 5px 7px 0; padding: 5px 12px; display: inline-block; font-family: Syne, sans-serif; font-size: 13px; transition: all .3s; }
.tags-item:hover { background: var(--yellow); color: var(--black); }
.social-footer { background: var(--black); border: var(--border); border-radius: var(--r); padding: 16px; }
.social-inner { background: var(--yellow); border: var(--border); border-radius: var(--r); display: grid; grid-template-columns: 1fr 1fr; }
.social-item { display: flex; align-items: center; padding: 14px 12px; border-bottom: var(--border); }
.social-item:nth-last-child(-n+2) { border-bottom: none; }
.social-item:nth-child(odd) { border-right: var(--border); }
.social-text { font-family: 'Bebas Neue', sans-serif; font-size: 18px; }
.copyright { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: var(--border); flex-wrap: wrap; gap: 10px; }
.copyright-text { font-size: 13px; color: var(--black); }
.copyright-rightside { display: flex; align-items: center; gap: 14px; }
.backtop {
  background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; font-size: 18px; color: var(--yellow);
  cursor: pointer; border: 2px solid var(--black);
  transition: background .2s, color .2s; flex-shrink: 0;
}
.backtop:hover { background: var(--yellow); color: var(--black); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 52px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { background: var(--white); border: var(--border); border-radius: var(--r); padding: 28px; transition: all .2s; }
.pricing-card.featured { background: var(--yellow); transform: translateY(-8px); }
.pricing-card:hover { background: var(--yellow); }
.pricing-tier { font-family: 'Bebas Neue', sans-serif; font-size: 24px; text-transform: uppercase; margin-bottom: 10px; }
.pricing-price { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; margin-bottom: 16px; }
.pricing-price span { font-size: 22px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 22px; border-top: var(--border); padding-top: 16px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.08); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '\2713'; background: var(--black); color: var(--yellow); border-radius: 50%; width: 20px; height: 20px; min-width: 20px; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.pricing-btn { display: block; text-align: center; background: var(--black); color: var(--yellow); border: var(--border); border-radius: var(--rp); padding: 11px 18px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; transition: all .2s; }
.pricing-btn:hover { background: var(--white); color: var(--black); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 52px 0; }
.faq-inner { background: var(--white); border: var(--border); border-radius: var(--r); padding: 14px; }
.accordion-item { border: var(--border); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.accordion-toggle { width: 100%; background: var(--white); border: none; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; transition: background .2s; gap: 12px; }
.accordion-toggle:hover, .accordion-toggle.open { background: var(--yellow); }
.accordion-title-text { font-family: 'Bebas Neue', sans-serif; font-size: clamp(17px, 2.5vw, 23px); font-weight: 400; color: var(--black); }
.accordion-icon { font-size: 22px; flex-shrink: 0; transition: transform .3s; }
.accordion-toggle.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 13px 16px 16px; border-top: var(--border); font-size: 15px; line-height: 1.7; color: #333; background: #fafafa; }
.accordion-body.open { display: block; }

/* ============================================================
   VIDEO
   ============================================================ */
.reels-section { padding: 52px 0; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; margin-bottom: 8px; }
.video-card { aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; background: #000; position: relative; border: var(--border); }
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; z-index: 1; pointer-events: none; }
.video-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.mute-btn {
  position: absolute; bottom: 12px; right: 12px;
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 50%;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  cursor: pointer; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  padding: 0; transition: background .2s, transform .15s;
  box-shadow: 0 2px 14px rgba(0,0,0,.6);
  font-size: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mute-btn:hover { background: rgba(0,0,0,.9); transform: scale(1.08); }
.mute-btn:active { transform: scale(0.96); }
.mute-btn svg { width: 20px; height: 20px; display: block; pointer-events: none; }
.mute-btn[data-muted="1"] .icon-sound { display: none !important; }
.mute-btn[data-muted="1"] .icon-mute  { display: block !important; }
.mute-btn[data-muted="0"] .icon-sound { display: block !important; }
.mute-btn[data-muted="0"] .icon-mute  { display: none !important; }

/* ============================================================
   UTILITIES
   ============================================================ */
.marketing-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.services-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 22px 0; }
.services-2col-list { border: var(--border); border-radius: var(--r) var(--r) 0 0; overflow: hidden; }
.services-2col-item { background: var(--grey); border-bottom: var(--border); display: flex; align-items: center; padding: 15px 17px; gap: 13px; transition: background .2s; }
.services-2col-item:hover { background: var(--yellow); }
.services-2col-title { font-family: Syne, sans-serif; font-size: 14px; font-weight: 600; }
.services-2col-foot { background: var(--white); border: var(--border); border-top: none; border-radius: 0 0 var(--r) var(--r); padding: 22px 26px; }
.grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.accent-yellow { background: linear-gradient(135deg,#ffde00,#e6c800); }
.accent-blue   { background: linear-gradient(135deg,#4285f4,#0d47a1); }
.accent-pink   { background: linear-gradient(135deg,#e1306c,#833ab4); }
.accent-orange { background: linear-gradient(135deg,#f97316,#ea580c); }
.accent-dark   { background: linear-gradient(135deg,#1a1a1a,#3a3a3a); }
.accent-green  { background: linear-gradient(135deg,#34a853,#1a6b2a); }

/* ============================================================
   RESPONSIVE — TABLET ≤ 991px
   ============================================================ */
@media (max-width: 991px) {
  .nav-menu    { display: none !important; }
  .nav-cta-btn { display: none; }
  .menu-button { display: flex; margin-left: auto; }

  .hero-top-band { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-sub-row { grid-template-columns: 1fr; gap: 24px; }
  .hero-cta-group { justify-content: flex-start; }
  .hero-metrics-inner { flex-wrap: wrap; }
  .hero-metric { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,.08); }

  .top-blog-list-grid { grid-template-columns: 1fr 1fr; }
  .education-item     { grid-template-columns: 1fr; }
  .education-content  { padding: 24px 28px 70px; border-radius: 0 0 14px 14px; }
  .read-more.read-more-education { right: 22px; bottom: 22px; }
  .inner-about  { grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
  .contact-visual { min-height: 280px; }
  .numerator-grid { grid-template-columns: 1fr 1fr; }
  .stats-row    { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: var(--border); border-top: var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: var(--border); }
  .features-grid{ grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-right: var(--border); border-top: var(--border); }
  .process-item:nth-child(4) { border-right: none; border-top: var(--border); }
  .results-bar  { grid-template-columns: 1fr 1fr; }
  .result-box:nth-child(2) { border-right: none; }
  .result-box:nth-child(3) { border-right: var(--border); border-top: var(--border); }
  .result-box:nth-child(4) { border-right: none; border-top: var(--border); }
  .video-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-grid     { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .footer-full-grid { grid-template-columns: 1fr 1fr; }
  .services-2col { grid-template-columns: 1fr; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-right { display: none; }
  .service-cta-banner { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .includes-list { grid-template-columns: 1fr; }
  .inner-newsletter { flex-direction: column; align-items: flex-start; }
  .subscribe-form-block { width: 100%; }
  .subscribe-field { width: 100%; }
  .grid-3col { grid-template-columns: 1fr 1fr; }
  .grid-4col { grid-template-columns: 1fr 1fr; }
  .marketing-list { grid-template-columns: 1fr; }
  .page-banner  { padding: 20px 22px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 600px
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }

  .inner-navbar { padding: 10px 14px; }
  .logo-text    { font-size: 22px; }
  .top-bar      { height: 42px; }
  .tob-bar-category-text { font-size: 16px; padding: 0 10px; }

  /* Hero v4 mobile */
  .hero-hl { font-size: clamp(54px, 14vw, 80px); letter-spacing: -1.5px; }
  .hero-hl-row1 { gap: 10px; }
  .hero-live-badge { font-size: 11px; padding: 6px 12px; }
  .hero-hl-block { padding: 28px 0 0; }
  .hero-sub-row { padding: 22px 0 28px; }
  .hero-sub-text { font-size: 14px; }
  .hero-cta-primary, .hero-cta-secondary { font-size: 18px; padding: 11px 20px; }
  .hero-metric-num { font-size: 34px; }
  .hero-metric { padding: 16px 12px; }

  .main-title { gap: 8px; margin-bottom: 20px; }
  .title-heading { font-size: clamp(32px, 9vw, 50px); }
  .title-icon { font-size: 26px; }

  .page-banner { padding: 18px 16px; flex-direction: column; align-items: flex-start; }
  .page-banner-title { font-size: clamp(26px, 8vw, 42px); }

  .top-blog-list-grid { grid-template-columns: 1fr; }
  .marketing-list     { grid-template-columns: 1fr; }
  .svc-grid           { grid-template-columns: 1fr 1fr; gap: 10px; }
  .features-grid      { grid-template-columns: 1fr; gap: 12px; }
  .grid-3col          { grid-template-columns: 1fr; }
  .grid-4col          { grid-template-columns: 1fr 1fr; }
  .process-list       { grid-template-columns: 1fr !important; }
  .process-item       { border-right: none !important; border-top: none !important; border-bottom: var(--border); }
  .process-item:last-child { border-bottom: none; }

  .top-blog-title { font-size: clamp(20px, 6vw, 28px); margin: 14px 0 10px; }
  .feature-card   { padding: 20px; }
  .feature-title  { font-size: 22px; }
  .svc-card-body  { padding: 12px 12px 14px; }
  .svc-card-title { font-size: 20px; }

  .education-title   { font-size: clamp(26px, 8vw, 42px); }
  .education-content { padding: 18px 18px 68px; }

  .about-title  { font-size: clamp(28px, 8vw, 44px); }
  .inner-about  { gap: 18px; padding: 14px; }

  .stats-row    { grid-template-columns: 1fr 1fr; }
  .stat-num     { font-size: clamp(30px, 9vw, 50px); }
  .numerator-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .numerator-heading { font-size: clamp(38px, 10vw, 60px); }
  .results-bar  { grid-template-columns: 1fr 1fr; }
  .result-box:nth-child(3), .result-box:nth-child(4) { border-top: var(--border); }
  .result-box-num { font-size: clamp(24px, 7vw, 38px); }
  .result-box-label { font-size: 11px; }

  .service-hero-inner { grid-template-columns: 1fr !important; }
  .service-hero-right { display: none !important; }
  .service-hero-left  { padding: 24px 18px; }
  .service-page-title { font-size: clamp(34px, 9vw, 54px); }
  .service-page-desc  { font-size: 14px; }
  .includes-list      { grid-template-columns: 1fr; }

  .service-cta-banner { grid-template-columns: 1fr !important; padding: 24px 18px; text-align: left; }
  .service-cta-btn    { width: 100%; text-align: center; }
  .service-cta-title  { font-size: clamp(22px, 7vw, 36px); }

  .contact-inner  { grid-template-columns: 1fr !important; }
  .contact-visual { min-height: 220px; }
  .contact-info   { padding: 20px 18px; }
  .contatc-title  { font-size: clamp(26px, 8vw, 42px); }
  .input-field    { font-size: 16px !important; }

  .inner-newsletter { padding: 20px 18px; }
  .newsletter-title { font-size: clamp(20px, 6vw, 30px); }
  .subscribe-field  { width: 100%; padding: 12px 105px 12px 14px; font-size: 16px !important; }

  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .footer-full-grid { grid-template-columns: 1fr !important; gap: 22px; }
  .footer-logo { font-size: 26px; }
  .copyright { flex-direction: column; align-items: flex-start; }
  .copyright-rightside { flex-wrap: wrap; gap: 10px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .testimonial-item { flex-direction: column; gap: 14px; }
  .testimonial-author { text-align: left; }
  .author-avatar { margin-left: 0; }

  .main-container { padding: 0 14px; }

  /* Sticky buttons smaller on mobile */
  .sticky-btns { bottom: 16px; right: 14px; gap: 8px; }
  .sticky-btn  { padding: 10px 16px; font-size: 15px; }
  .sticky-btn span { display: none; }
  .sticky-btn { padding: 12px 14px; border-radius: 50%; }
  .sticky-btn .fa { font-size: 20px; }
}

@media (max-width: 380px) {
  .logo-text  { font-size: 18px; }
  .svc-grid   { grid-template-columns: 1fr; }
}

/* ============================================================
   FIXED HEADER OFFSET — push page content below sticky header
   ============================================================ */
:root {
  --header-h: 108px;   /* topbar 52px + navbar ~56px */
  --header-h-sm: 88px; /* mobile */
}
body {
  padding-top: var(--header-h);
}
@media (max-width: 600px) {
  body { padding-top: var(--header-h-sm); }
}

/* Hero v4 on homepage bleeds full-width under header —
   compensate so black bg starts at very top of viewport */
.hero-strip {
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
@media (max-width: 600px) {
  .hero-strip {
    margin-top: calc(-1 * var(--header-h-sm));
    padding-top: var(--header-h-sm);
  }
}

/* ============================================================
   SERVICES PAGE — disable card transform hover (no flying)
   ============================================================ */
.top-blog-item {
  transition: box-shadow .2s;
}
.top-blog-item:hover {
  transform: none;
  box-shadow: 4px 4px 0 var(--black);
}

/* ============================================================
   ACCENT-DARK images fill properly
   ============================================================ */
.accent-dark { background: linear-gradient(135deg,#1a1a1a,#3a3a3a); }
.service-img-hero { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   HERO SVC CHIP — icon label only (no emoji needed)
   ============================================================ */
.hero-svc-chip {
  font-family: Syne, sans-serif; font-size: 11px; font-weight: 700;
  text-align: center;
}
/* Agentic Browsing / CLS: reserve fixed size for platform badge logos */
.trust-badge img{width:28px;height:28px;flex:0 0 28px;object-fit:contain;vertical-align:middle}