/* ═══════════════════════════════════════════════════
   Occlumedia — Main Stylesheet
   Author: Daksh B | occlumedia.com | v5.2.2
   Primary: Orange #f97316
════════════════════════════════════════════════════ */

/* ── CSS VARS ── */
:root {
  --orange:     #f97316;
  --orange-d:   #ea580c;
  --orange-l:   #fb923c;
  --orange-xl:  #fed7aa;
  --orange-f:   rgba(249,115,22,.12);
  --orange-f2:  rgba(249,115,22,.06);

  --bg:         #080810;
  --bg2:        #0d0d1a;
  --sur:        #111120;
  --card:       #14142a;
  --card2:      #18183a;
  --bdr:        #1e1e3a;
  --bdr2:       #2a2a50;

  --txt:        #f1f5f9;
  --txt2:       #94a3b8;
  --muted:      #64748b;
  --white:      #ffffff;

  --green:      #10b981;
  --blue:       #3b82f6;
  --red:        #ef4444;

  --font:       'DM Sans', sans-serif;
  --display:    'Syne', sans-serif;
  --mono:       'JetBrains Mono', monospace;

  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --shadow:     0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.5);
  --glow:       0 0 40px rgba(249,115,22,.2);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width:100%; display:block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  transition: transform .1s, width .2s, height .2s;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998; transform: translate(-50%,-50%);
  transition: all .15s ease;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--txt2);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.loader-logo span { color: var(--orange); }
.loader-bar {
  width: 200px; height: 3px;
  background: var(--bdr2);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-l));
  border-radius: 3px;
  width: 0;
  transition: width .05s linear;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 5%;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(8,8,16,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bdr);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 18px;
  font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.nav-logo b { color: var(--orange); }
.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--txt2);
  transition: all .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: var(--orange-f);
}
.nav-link.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff !important; border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px; font-size: 13px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  box-shadow: 0 2px 10px rgba(249,115,22,.35);
  transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.btn-nav:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,.45); }
.nav-ham {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px;
}
.nav-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--txt2); border-radius: 2px;
  transition: all .3s;
}
.nav-ham.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.active span:nth-child(2) { opacity: 0; }
.nav-ham.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── WRAP ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: rgba(249,115,22,.18);
  top: -150px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: rgba(234,88,12,.12);
  bottom: -80px; left: -80px;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
.orb-3 {
  width: 250px; height: 250px;
  background: rgba(249,115,22,.08);
  top: 40%; left: 40%;
  animation: orbFloat 10s ease-in-out infinite 2s;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.25);
  color: var(--orange-l); padding: 7px 16px;
  border-radius: 30px; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.tag-dot {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -1px; margin-bottom: 22px;
  color: var(--white);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-h1 em { font-style: italic; color: var(--orange); }
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-l), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; color: var(--txt2);
  line-height: 1.8; margin-bottom: 32px;
}
.hero-sub strong { color: var(--orange); }
.hero-btns { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 13px 26px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
  transition: all .2s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--txt2);
  border: 1px solid var(--bdr2);
  border-radius: var(--radius-sm);
  padding: 13px 24px; font-size: 14px; font-weight: 600;
  font-family: var(--font); cursor: pointer;
  transition: all .2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.hero-stats {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 4px;
  justify-content: flex-start;
}
.hstat { text-align: center; padding: 0 20px; }
.hstat-n {
  display: block;
  font-family: var(--display); font-size: 26px; font-weight: 800;
  color: var(--white);
}
.hstat-l { font-size: 12px; color: var(--muted); }
.hstat-div {
  width: 1px; height: 36px;
  background: var(--bdr2);
}

/* Hero Visual Cards */
.hero-visual { position: relative; height: 420px; }
.hero-card-stack { position: relative; width: 100%; height: 100%; }
.hcard {
  position: absolute;
  background: var(--card2); border: 1px solid var(--bdr2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.hcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hcard-1 { top: 60px; left: 20px; right: 40px; z-index: 3; animation: cardFloat 6s ease-in-out infinite; }
.hcard-2 { top: 180px; left: 0; right: 60px; z-index: 2; animation: cardFloat 8s ease-in-out infinite 1s; }
.hcard-3 { top: 300px; left: 40px; right: 20px; z-index: 1; animation: cardFloat 7s ease-in-out infinite 2s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hcard-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
}
.hcard-text { flex: 1; }
.hcard-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.hcard-text span { font-size: 12px; color: var(--muted); }
.hcard-badge {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.hcard-badge.green { background: rgba(16,185,129,.15); color: var(--green); }
.hcard-badge.orange { background: var(--orange-f); color: var(--orange); }
.hcard-badge.blue { background: rgba(59,130,246,.15); color: var(--blue); }
.hcard-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--orange-f);
  border-top: 1px solid rgba(249,115,22,.15);
  border-bottom: 1px solid rgba(249,115,22,.15);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.mq-item {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--display); font-size: 13px;
  font-weight: 600; color: var(--orange-l);
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0 32px; white-space: nowrap;
}
.mq-item i { font-size: 8px; color: var(--orange); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ── SECTIONS ── */
.section { padding: 90px 0; }
.section-dark { background: var(--bg2); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.2);
  color: var(--orange); padding: 5px 14px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800; color: var(--white);
  line-height: 1.18; letter-spacing: -0.3px;
  margin-bottom: 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.section-sub {
  font-size: 16px; color: var(--txt2);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative; overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.svc-card:hover {
  border-color: rgba(249,115,22,.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), var(--glow);
}
.svc-card:hover .svc-bg-shape { opacity: 1; }
.svc-card:hover .svc-link { color: var(--orange); gap: 10px; }
.svc-num {
  font-family: var(--display); font-size: 48px;
  font-weight: 800; color: var(--bdr2);
  line-height: 1; margin-bottom: -8px;
  transition: color .2s;
}
.svc-card:hover .svc-num { color: rgba(249,115,22,.15); }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--orange);
  margin-bottom: 16px; transition: all .2s;
}
.svc-card:hover .svc-icon { background: var(--orange); color: #fff; }
.svc-card h3 { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: var(--txt2); line-height: 1.7; margin-bottom: 20px; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all .2s;
}
.svc-bg-shape {
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  opacity: 0; transition: opacity .3s;
}

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-right { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--radius); padding: 18px 20px;
  transition: all .2s;
}
.why-item:hover { border-color: rgba(249,115,22,.3); }
.why-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--orange);
}
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--txt2); line-height: 1.6; }

/* ── PRODUCTS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.prod-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all .25s; position: relative;
}
.prod-card:hover { border-color: var(--bdr2); transform: translateY(-3px); box-shadow: var(--shadow); }
.prod-card.featured {
  border-color: rgba(249,115,22,.4);
  background: linear-gradient(160deg, var(--card2) 0%, var(--card) 100%);
  box-shadow: 0 0 0 1px rgba(249,115,22,.1), var(--glow);
}
.prod-badge {
  position: absolute; top: -12px; left: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.prod-icon { font-size: 40px; margin-bottom: 14px; }
.prod-card h3 { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.prod-card p { font-size: 14px; color: var(--txt2); line-height: 1.7; margin-bottom: 16px; }
.prod-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.prod-meta span { font-size: 12px; color: var(--txt2); display: flex; align-items: center; gap: 8px; }
.prod-meta span i { color: var(--green); font-size: 11px; }
.prod-price {
  font-family: var(--display); font-size: 26px;
  font-weight: 800; color: var(--orange);
}
.prod-price span { font-size: 14px; color: var(--muted); font-weight: 400; font-family: var(--font); }

/* ── PRICING ── */
.pricing-toggle {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 40px;
}
.pt-label { font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .2s; }
.pt-label.active { color: var(--orange); }
.pt-switch {
  width: 52px; height: 28px;
  background: var(--bdr2); border-radius: 14px;
  cursor: pointer; position: relative;
  transition: background .2s;
}
.pt-switch.on { background: var(--orange); }
.pt-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: #fff; border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.pt-switch.on .pt-thumb { transform: translateX(24px); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.price-card {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--radius); padding: 28px 24px;
  position: relative; transition: all .25s;
}
.price-card:hover { border-color: var(--bdr2); transform: translateY(-2px); }
.price-card.popular {
  border-color: rgba(249,115,22,.4);
  background: var(--card2);
  box-shadow: var(--glow);
  margin-top: 14px;      /* Space for badge above */
}
.pc-popular {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; padding: 4px 18px; border-radius: 20px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.pc-name { font-size: 12px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.pc-price { margin-bottom: 6px; line-height: 1; }
.pc-cur { font-size: 20px; font-weight: 700; color: var(--txt2); vertical-align: top; margin-top: 6px; display: inline-block; }
.pc-num { font-family: var(--display); font-size: 46px; font-weight: 800; color: var(--white); }
.pc-per { font-size: 13px; color: var(--muted); margin-left: 4px; }
.pc-desc { font-size: 13px; color: var(--txt2); margin: 10px 0 18px; line-height: 1.6; }
.pc-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--txt2); }
.pc-list li i { font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.pc-list li i.fa-check { color: var(--green); }
.pc-list li i.fa-times { color: var(--red); }
.pc-list li.no { color: var(--muted); }
.btn-pc {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 12px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  box-shadow: 0 2px 10px rgba(249,115,22,.3);
  transition: all .2s;
}
.btn-pc:hover { opacity: .9; transform: translateY(-1px); }
.btn-pc-g {
  display: block; width: 100%; text-align: center;
  background: var(--bdr); color: var(--txt2);
  border: none; border-radius: var(--radius-sm);
  padding: 12px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  transition: all .2s;
}
.btn-pc-g:hover { background: var(--bdr2); color: var(--txt); }

/* ── TESTIMONIALS ── */
.testimonial-carousel { position: relative; overflow: hidden; }
.tc-track {
  display: flex; gap: 18px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tc-card {
  flex: 0 0 calc(33.33% - 12px);
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .2s;
}
.tc-card:hover { border-color: rgba(249,115,22,.3); }
.tc-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tc-card > p { font-size: 14px; color: var(--txt2); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
}
.tc-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.tc-author span { font-size: 12px; color: var(--muted); }
.tc-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px;
}
.tc-btn {
  width: 42px; height: 42px;
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: 50%; color: var(--txt2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all .2s;
}
.tc-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.tc-dots { display: flex; gap: 6px; }
.tc-dot {
  width: 8px; height: 8px;
  background: var(--bdr2); border-radius: 50%;
  cursor: pointer; transition: all .2s;
}
.tc-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; align-items: start;
}
.proc-item {
  background: var(--card); border: 1px solid var(--bdr);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: all .25s;
}
.proc-item:hover { border-color: rgba(249,115,22,.3); transform: translateY(-3px); }
.proc-num {
  font-family: var(--display); font-size: 36px;
  font-weight: 800; color: var(--orange-f);
  line-height: 1; margin-bottom: 12px;
  transition: color .2s;
}
.proc-item:hover .proc-num { color: rgba(249,115,22,.3); }
.proc-icon {
  width: 48px; height: 48px;
  background: var(--orange-f); border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--orange);
  transition: all .2s;
}
.proc-item:hover .proc-icon { background: var(--orange); color: #fff; }
.proc-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.proc-item p { font-size: 12px; color: var(--txt2); line-height: 1.6; }
.proc-arrow { display: none; }

/* ── CTA ── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--card2) 0%, var(--card) 100%);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius-lg); padding: 64px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--glow);
}
.cta-orb {
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800; color: var(--white);
  margin: 10px 0 14px; letter-spacing: -0.5px;
}
.cta-box > .cta-content > p { font-size: 16px; color: var(--txt2); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--sur);
  border-top: 1px solid var(--bdr);
  padding: 64px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 12px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bdr); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted);
  transition: all .2s;
}
.social-link:hover { background: var(--orange); color: #fff; }
.footer-col h5 {
  font-family: var(--display); font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 24px; border-top: 1px solid var(--bdr);
  font-size: 12px; color: var(--muted);
}
.footer-bottom strong { color: var(--orange); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tc-card { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(8,8,16,.98); padding: 20px; gap: 6px; border-bottom: 1px solid var(--bdr); backdrop-filter: blur(20px); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-ham { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .tc-card { flex: 0 0 100%; }
  .cta-box { padding: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-h1 { font-size: clamp(32px, 8vw, 48px); }
  .hstat { padding: 0 12px; }
  .hstat-n { font-size: 20px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .hero-stats { gap: 4px; }
  .hstat { padding: 0 8px; }
  .hstat-div { display: none; }
}

/* ══════════════════════════════════════
   ADDITIONAL GLOBAL RESPONSIVE FIXES
   ══════════════════════════════════════ */

/* Nav mobile links full width */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(8,8,16,.98);
    border-bottom: 1px solid var(--bdr);
    backdrop-filter: blur(20px);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    display: none;
    z-index: 499;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-link.active {
    background: var(--orange-f);
  }
  .nav-ham { display: flex; }
  .btn-nav { font-size: 12px; padding: 8px 14px; }
}

/* Section padding mobile */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-h2 { font-size: clamp(24px, 5vw, 36px); }
  .section-sub { font-size: 14px; }
  .cta-box { padding: 36px 20px; }
  .cta-h2 { font-size: clamp(22px, 5vw, 36px); }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer { padding: 48px 5% 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* Testimonial mobile */
@media (max-width: 768px) {
  .tc-card { flex: 0 0 100%; }
}

/* Process mobile */
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-arrow { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .proc-item { padding: 18px 16px; }
}

/* Why grid mobile */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-left { text-align: center; }
  .why-left .section-sub { text-align: center; }
  .why-left .btn-primary { margin: 24px auto 0; display: inline-flex; }
}

/* Services grid mobile */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Products grid mobile */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* Pricing grid mobile */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Stats bar mobile */
@media (max-width: 600px) {
  .stats-bar { gap: 16px; padding: 20px 0; justify-content: center; }
  .stat-item .num { font-size: 22px; }
  .stat-item .lbl { font-size: 10px; }
  .hstat-div { display: none; }
}

/* Marquee text size mobile */
@media (max-width: 480px) {
  .mq-item { font-size: 11px; padding: 0 20px; }
}

/* Hero buttons full width on small screens */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn-primary, .cta-btns .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
}

/* Overflow fix for all pages */
* { min-width: 0; }
img { max-width: 100%; height: auto; }
table { min-width: 0; }

/* ═══════════════════════════════════════════════
   NEWSLETTER + PROFESSIONAL FOOTER
   ═══════════════════════════════════════════════ */

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 56px 0;
}
.newsletter-box {
  background: linear-gradient(135deg, var(--card2) 0%, var(--card) 100%);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-box::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.nl-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative; z-index: 1;
}
.nl-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.nl-text h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 6px;
}
.nl-text p {
  font-size: 14px; color: var(--txt2);
  line-height: 1.7; margin: 0;
}
.nl-form {
  display: flex; gap: 10px;
  position: relative; z-index: 1;
  flex-direction: column;
}
.nl-right-col {
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 1;
}
.nl-input-wrap {
  position: relative; flex: 1;
}
.nl-input-icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); font-size: 14px;
  pointer-events: none;
}
.nl-input-wrap input {
  width: 100%;
  background: rgba(5,5,15,.8);
  border: 1px solid var(--bdr2);
  color: var(--txt);
  border-radius: 10px;
  padding: 13px 16px 13px 44px;
  font-size: 14px;
  font-family: var(--font);
  transition: all .2s;
}
.nl-input-wrap input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.nl-input-wrap input::placeholder { color: var(--muted); }
.nl-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  color: #fff; border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 14px; font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
  white-space: nowrap;
}
.nl-btn:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.4); }
.nl-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.nl-success {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  color: var(--green);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 600;
  position: relative; z-index: 1;
  animation: fadeInSucc .3s ease;
}
@keyframes fadeInSucc{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.nl-note {
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  margin-top: 4px;
  position: relative; z-index: 1;
  grid-column: 1 / -1;
}

/* ── FOOTER WRAPPER ── */
.footer {
  background: var(--sur);
  border-top: 1px solid var(--bdr);
}

/* ── FOOTER TOP ── */
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--bdr);
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-col {}
.footer-logo {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange-d), var(--orange));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 20px; font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  flex-shrink: 0;
}
.footer-logo-text span {
  display: block;
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-text span b { color: var(--orange); }
.footer-logo-text small {
  font-size: 10px; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
  font-family: var(--font);
}
.footer-brand-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.8; margin-bottom: 20px;
}
.footer-contact-mini {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.fcontact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--txt2);
  transition: color .2s;
}
.fcontact-item:hover { color: var(--orange); }
.fcontact-item i {
  width: 28px; height: 28px;
  background: var(--orange-f);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--orange);
  flex-shrink: 0;
}
.footer-social-row {
  display: flex; gap: 8px;
}
.fsocial {
  width: 36px; height: 36px;
  background: var(--card);
  border: 1px solid var(--bdr2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--muted);
  transition: all .2s;
}
.fsocial:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249,115,22,.3);
}

/* Footer links columns */
.footer-links-wrap {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 13px; font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .5px;
}
.footer-col h5 i {
  color: var(--orange); font-size: 11px;
}
.footer-col ul {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  transition: all .2s; line-height: 1.4;
}
.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-col ul li a i {
  font-size: 9px; color: var(--bdr2);
  transition: color .2s; flex-shrink: 0;
}
.footer-col ul li a:hover i { color: var(--orange); }
.fcol-badge {
  display: inline-block;
  background: var(--orange-f);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,.2);
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .5px;
  margin-left: 4px;
}

/* ── FOOTER STATS BAR ── */
.footer-stats-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--bdr);
  padding: 20px 0;
}
.footer-stats-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.fstat {
  display: flex; flex-direction: column;
  align-items: center; padding: 8px 36px;
  text-align: center;
}
.fstat-n {
  font-family: var(--display);
  font-size: 22px; font-weight: 800;
  color: var(--orange); line-height: 1;
}
.fstat-l {
  font-size: 11px; color: var(--muted);
  margin-top: 3px; text-transform: uppercase;
  letter-spacing: .5px;
}
.fstat-div {
  width: 1px; height: 36px;
  background: var(--bdr);
}

/* ── FOOTER BOTTOM ── */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left p {
  font-size: 12px; color: var(--muted);
  line-height: 1.6;
}
.footer-bottom-left strong { color: var(--orange); }
.footer-bottom-center {
  display: flex; gap: 8px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--card);
  border: 1px solid var(--bdr);
  color: var(--muted);
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600;
}
.footer-badge i { color: var(--orange); font-size: 10px; }
.footer-bottom-right {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.footer-bottom-right a {
  color: var(--muted); transition: color .2s;
}
.footer-bottom-right a:hover { color: var(--orange); }
.footer-bottom-right span { color: var(--bdr2); }

/* ── NEWSLETTER + FOOTER RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-links-wrap { grid-column: 1 / -1; grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .newsletter-box { grid-template-columns: 1fr; gap: 24px; padding: 36px 32px; }
  .footer-stats-inner { gap: 0; }
  .fstat { padding: 8px 20px; }
}
@media (max-width: 768px) {
  .newsletter-section { padding: 40px 0; }
  .newsletter-box { padding: 28px 24px; }
  .nl-left { flex-direction: column; gap: 12px; }
  .nl-icon { width: 46px; height: 46px; font-size: 18px; }
  .footer-top { padding: 48px 0 36px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-wrap { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-stats-inner { justify-content: flex-start; }
  .fstat-div { display: none; }
  .fstat { padding: 8px 16px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-center { order: -1; }
}
@media (max-width: 480px) {
  .newsletter-box { padding: 22px 18px; }
  .nl-btn { width: 100%; }
  .footer-links-wrap { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { align-items: center; text-align: center; }
  .footer-bottom-right { justify-content: center; }
  .fstat-n { font-size: 18px; }
  .footer-stats-inner { justify-content: center; flex-wrap: wrap; }
  .fstat { padding: 6px 12px; }
}


/* ══ GLOBAL OVERFLOW & TEXT FIXES ══ */
/* Prevent ANY element from overflowing its container */
.wrap { overflow-x: hidden; }
.section { overflow: hidden; }

/* All text containers */
h1, h2, h3, h4, h5, p, span, a, li {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Cards never overflow */
.svc-card, .tc-card,
.why-item, .val-card, .hcard, .feat-card,
.step-card, .proc-item, .fstat {
  min-width: 0;
  overflow: hidden;
}
/* Cards with badges need overflow visible */
.prod-card, .price-card {
  min-width: 0;
  overflow: visible;
}

/* Grid children min-width fix */
.services-grid > *, .products-grid > *,
.pricing-grid > *, .why-grid > *,
.features-grid > *, .values-grid > *,
.footer-grid > *, .footer-links-wrap > * {
  min-width: 0;
}

/* Nav links never overflow */
.nav-links { overflow: hidden; }
.nav-link { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Testimonial cards */
.tc-track { min-width: 0; }
.tc-card p { overflow: hidden; }

/* Process grid at all sizes */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-h1 { letter-spacing: -0.5px; font-size: clamp(28px, 8vw, 44px); }
  .section-h2 { letter-spacing: 0; }
  .hero-stats { gap: 8px; }
  .hstat { padding: 0 10px; }
  .stats-bar { margin: 36px 0; }
}
@media (max-width: 400px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(26px, 9vw, 36px); }
  .section-h2 { font-size: clamp(22px, 7vw, 32px); }
  .hstat-n { font-size: 18px; }
  .hstat-l { font-size: 10px; }
  .hstat { padding: 0 6px; }
  .btn-primary, .btn-ghost { font-size: 13px; padding: 11px 18px; }
}

/* ══ CORE WEB VITALS OPTIMIZATIONS ══ */
/* Reduce CLS - reserve space for images */
img { width: 100%; height: auto; display: block; aspect-ratio: attr(width) / attr(height); }
/* Reduce LCP - hero image/text loads first */
.hero { contain: layout style; }
/* Font display swap to prevent FOIT */
@font-face { font-display: swap; }
/* Reduce layout shifts */
.nav { height: 70px; contain: layout; }
.footer-logo-mark { width: 40px; height: 40px; }
.nav-logo-mark { width: 34px; height: 34px; }
/* Smooth scroll without jank */
html { scroll-behavior: smooth; }
/* GPU acceleration for animations */
.reveal, .hcard, .marquee-track, .tc-track {
  will-change: transform;
  transform: translateZ(0);
}
/* Preconnect hints handled in HTML, CSS contains: */
.hero-orb { will-change: transform; }
/* Reduce paint areas */
.svc-card, .prod-card, .price-card { contain: layout style; }
/* Prevent invisible text flash */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* Touch action for mobile */
a, button { touch-action: manipulation; }
/* Input performance */
input, textarea, select { -webkit-appearance: none; appearance: none; }

/* ══ ZIG-ZAG & LAYOUT FIXES ══ */
/* Ensure no grid item causes overflow */
.blog-grid, .services-grid, .products-grid, .pricing-grid,
.process-grid, .values-grid, .steps-grid, .footer-links-wrap {
  width: 100%;
  max-width: 100%;
}
/* Blog grid specific */
.blog-grid { contain: layout; }
.blog-card { display: flex; flex-direction: column; width: 100%; }
.blog-featured { width: 100%; }
/* Sidebar widget overflow */
.sidebar-widget h5 { overflow-wrap: break-word; }
.sidebar-post h5 { overflow-wrap: break-word; word-wrap: break-word; }
/* Tag cloud no overflow */
.tag-cloud { overflow: hidden; }
/* Pagination no overflow */
.blog-pagination { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.blog-pagination::-webkit-scrollbar { display: none; }
/* Post modal content */
.post-box { max-width: min(760px, calc(100vw - 40px)); }
.post-body p, .post-body li { overflow-wrap: break-word; word-wrap: break-word; }
/* Footer top inner overflow */
.footer-top-inner { overflow: hidden; }
/* CTA buttons no overflow */
.cta-btns { flex-wrap: wrap; }
/* Store tab overflow fix */
.prod-detail-bar { overflow: hidden; }
.pdb-tags { gap: 6px; }
/* Pricing card popular no overflow */
.pricing-grid { overflow: visible; padding-top: 16px; }
