*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #F5A623;
  --primary-d: #D4890A;
  --red:    #E63329;
  --orange: #F07030;
  --green:  #34A853;
  --blue:   #4285F4;
  --bg:     #080808;
  --bg2:    #0e0e0e;
  --bg3:    #141414;
  --bg4:    #1a1a1a;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(255,255,255,0.12);
  --white:  #ffffff;
  --gray:   rgba(255,255,255,0.55);
  --gray2:  rgba(255,255,255,0.30);
  --font:   'Inter', sans-serif;
  --display:'Barlow Condensed', sans-serif;
  --sh:     0 8px 40px rgba(0,0,0,0.5);
  --sh-g:   0 0 40px rgba(245,166,35,0.18);
  --grad:   linear-gradient(90deg,#E63329,#F07030,#F5C518,#34A853,#4285F4);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── COLOR BAR ── */
.color-bar { display: flex; height: 3px; }
.color-bar span { flex: 1; }
.cb-r{background:#E63329}.cb-o{background:#F07030}.cb-y{background:#F5C518}.cb-g{background:#34A853}.cb-b{background:#4285F4}

/* ══════════════════
   NAV
══════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-bottom-color: rgba(0,0,0,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.nav-inner { display: flex; align-items: center; gap: 8px; height: 72px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; }

.nav-links { display: flex; list-style: none; gap: 2px; margin-left: auto; }
.nav-links a {
  color: rgba(0,0,0,0.6); text-decoration: none;
  font-size: 0.875rem; font-weight: 600;
  padding: 7px 14px; border-radius: 8px;
  transition: all 0.2s; letter-spacing: 0.2px;
}
.nav-links a:hover { color: #080808; background: rgba(0,0,0,0.05); }

.burger { display: none; background: none; border: none; color: #080808; font-size: 1.4rem; cursor: pointer; margin-left: auto; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 14px 24px 20px; gap: 4px;
  border-top: 1px solid rgba(0,0,0,0.08); background: #ffffff;
}
.mobile-menu a { color: rgba(0,0,0,0.65); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 9px 12px; border-radius: 8px; }
.mobile-menu a:hover { color: #080808; background: rgba(0,0,0,0.05); }
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.93rem;
  text-decoration: none; cursor: pointer;
  transition: all 0.22s; border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover {
  background: var(--primary-d); border-color: var(--primary-d);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,0.4);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-nav {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  padding: 9px 22px; font-size: 0.85rem; border-radius: 8px; flex-shrink: 0;
}
.btn-nav:hover { background: var(--primary-d); box-shadow: 0 4px 18px rgba(245,166,35,0.4); }
.btn-white { background: var(--white); color: var(--bg); border-color: var(--white); font-weight: 800; }
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.15); }
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }

/* ══════════════════
   HERO
══════════════════ */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; padding: 120px 0 80px; overflow: hidden;
  background: var(--bg);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}
.hero-noise::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(245,166,35,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(66,133,244,0.05) 0%, transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { max-width: 620px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.25);
  color: var(--primary); padding: 7px 18px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 28px; letter-spacing: 0.5px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(245,166,35,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(245,166,35,0.06); }
}

#hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900; line-height: 1.0;
  text-transform: uppercase; letter-spacing: -1px;
  margin-bottom: 22px;
}
.line-white  { display: block; color: var(--white); white-space: nowrap; }
.line-accent { display: block; color: var(--primary); white-space: nowrap; }
.line-outline {
  display: block;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
}

.hero-tagline {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
  margin-bottom: 14px; text-transform: uppercase;
  background: linear-gradient(90deg, #E63329, #F07030, #F5C518, #34A853, #4285F4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}
.hero-sub {
  font-size: 1.05rem; color: var(--gray);
  max-width: 500px; margin-bottom: 36px; line-height: 1.78;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border2); border-radius: 14px;
  overflow: hidden; width: fit-content;
}
.stat { padding: 18px 28px; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat span { display: inline; font-family: var(--display); font-size: 1.9rem; font-weight: 900; line-height: 1; }
.stat:nth-child(1) span { color: var(--primary); }
.stat:nth-child(2) span { color: var(--orange); }
.stat:nth-child(3) span { color: var(--blue); }
.stat:nth-child(4) span { color: var(--primary); }
.stat-plus { font-family: var(--display); font-size: 1.9rem; font-weight: 900; }
.stat p { font-size: 0.68rem; color: var(--gray2); font-weight: 700; letter-spacing: 1px; margin-top: 4px; text-transform: uppercase; }

/* ── HERO VISUAL / LOGO ANIMATION ── */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; height: 520px;
}
.logo-orbit-wrap {
  position: relative; width: 430px; height: 430px;
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.08s ease-out;
}

/* Radial glow backdrop */
.logo-glow-bg {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, rgba(230,51,41,0.06) 40%, transparent 70%);
  animation: glow-breathe 4s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
@keyframes glow-breathe {
  0%,100% { transform: scale(1);   opacity: 0.7; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* Premium rotating dashed rings */
.dash-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.dash-ring-1 {
  width: 300px; height: 300px;
  border: 1.5px dashed rgba(245,166,35,0.35);
  animation: spin-cw 12s linear infinite;
}
.dash-ring-2 {
  width: 370px; height: 370px;
  border: 1px dashed rgba(66,133,244,0.25);
  animation: spin-ccw 20s linear infinite;
}
.dash-ring-3 {
  width: 430px; height: 430px;
  border: 1px dashed rgba(230,51,41,0.15);
  animation: spin-cw 30s linear infinite;
}
@keyframes spin-cw  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes spin-ccw { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

/* Sweep scanner line */
.sweep-ring {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 75%, rgba(245,166,35,0.18) 90%, rgba(245,166,35,0.5) 100%);
  animation: spin-cw 4s linear infinite;
  pointer-events: none; z-index: 1;
}

/* Sparkle particles */
.sparkle {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 2;
}
.s1 { width: 12px; height: 12px; background: #E63329; top: 8%;    left: 20%;  }
.s2 { width: 10px; height: 10px; background: #F07030; top: 18%;   right: 12%; }
.s3 { width: 11px; height: 11px; background: #34A853; bottom: 18%; left: 10%; }
.s4 { width: 10px; height: 10px; background: #4285F4; bottom: 14%; right: 12%; }
.s5 { width: 9px;  height: 9px;  background: #F07030; top: 48%;   left: 3%;   }
.s6 { width: 9px;  height: 9px;  background: #E63329; top: 30%;   right: 3%;  }

/* Floating logo */
.logo-float {
  position: relative; z-index: 5;
  animation: logo-float 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.logo-float img {
  width: 300px; height: auto; display: block;
  filter: drop-shadow(0 0 40px rgba(245,166,35,0.25));
  transition: opacity 0.4s ease;
  cursor: pointer;
}
#heroBgLogo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  object-fit: contain; border-radius: 50%;
  opacity: 0; transition: opacity 0.5s ease;
  z-index: 5; pointer-events: none;
}
#heroPhoto {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px; height: 260px;
  object-fit: cover; border-radius: 50%;
  opacity: 0; transition: opacity 0.5s ease 0.15s;
  z-index: 6; pointer-events: none;
  border: 3px solid rgba(245,166,35,0.5);
  mix-blend-mode: normal;
}
#heroCaption {
  position: absolute; bottom: -70px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; transition: opacity 0.5s ease 0.2s;
  z-index: 7; pointer-events: none; white-space: nowrap;
}
#captionLogo {
  height: 36px; width: auto; opacity: 0.45;
  filter: grayscale(20%);
}
.caption-role {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--primary);
}
@keyframes logo-float {
  0%,100% { transform: translateY(0px)   scale(1);    }
  33%      { transform: translateY(-18px) scale(1.03); }
  66%      { transform: translateY(-9px)  scale(1.01); }
}

/* Metric chips */
.metric-chip {
  position: absolute; z-index: 10;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 100px; padding: 8px 16px;
  font-size: 0.78rem; font-weight: 700; color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.chip-1 { top: 60px;  right: -10px; animation: chip-float 3.5s ease-in-out infinite; }
.chip-2 { bottom: 80px; left: -20px;  animation: chip-float 3.5s ease-in-out infinite 1.2s; }
.chip-3 { bottom: 40px; right: 10px;  animation: chip-float 3.5s ease-in-out infinite 2.1s; }
@keyframes chip-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; color: var(--gray2); letter-spacing: 2.5px; text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════
   CLIENT LOGOS
══════════════════ */
.clients-strip {
  background: var(--bg2); padding: 36px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.clients-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray2); margin-bottom: 22px;
}
.clients-track-wrap { overflow: hidden; position: relative; }
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.clients-track-wrap::before { left: 0;  background: linear-gradient(90deg, var(--bg2), transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.clients-track { display: flex; gap: 14px; animation: clients-scroll 28s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
@keyframes clients-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 24px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; font-size: 0.78rem; font-weight: 700;
  color: var(--gray2); letter-spacing: 0.5px; white-space: nowrap;
  flex-shrink: 0; transition: all 0.2s;
}
.client-logo:hover { border-color: var(--primary); color: var(--primary); background: rgba(245,166,35,0.06); }

/* ══════════════════
   TICKER
══════════════════ */
.ticker-wrap { overflow: hidden; white-space: nowrap; background: var(--bg3); border-bottom: 1px solid var(--border); }
.ticker-inner { padding: 13px 0; overflow: hidden; }
.ticker { display: inline-flex; gap: 36px; animation: ticker 24s linear infinite; }
.ticker span { font-weight: 700; font-size: 0.82rem; color: var(--gray2); letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0; }
.ticker span.dot { color: var(--primary); font-size: 0.6rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════
   SECTIONS COMMON
══════════════════ */
section { padding: 100px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px; color: var(--primary);
}
.section-tag::before { content: ''; width: 18px; height: 2px; background: currentColor; display: inline-block; }
section h2 {
  font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; text-transform: uppercase; line-height: 0.97;
  margin-bottom: 18px; color: var(--white);
}
section h2 span { color: var(--primary); }
.section-sub { color: var(--gray); font-size: 1rem; max-width: 520px; margin-bottom: 56px; line-height: 1.75; }

/* ══════════════════
   ABOUT
══════════════════ */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-lead {
  font-size: 1.05rem; color: var(--white); font-weight: 600; line-height: 1.8;
  margin-bottom: 18px; padding: 20px 22px; border-radius: 12px;
  background: rgba(245,166,35,0.06); border-left: 4px solid var(--primary);
}
.about-body { font-size: 0.93rem; color: var(--gray); line-height: 1.82; margin-bottom: 14px; }
.about-body strong { color: var(--white); font-weight: 700; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.av-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--gray);
  background: var(--bg3); border-radius: 8px; padding: 11px 14px;
  border: 1px solid var(--border);
}
.av-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.about-card-wrap { display: flex; flex-direction: column; gap: 16px; }
.about-founder-card {
  display: flex; align-items: center; gap: 22px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 18px; padding: 28px 30px;
  position: relative; overflow: hidden;
}
.about-founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad);
}
.founder-avatar {
  width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.fa-initials { font-family: var(--display); font-size: 1.5rem; font-weight: 900; color: var(--white); }
.founder-info h4 { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.founder-info > p { font-size: 0.8rem; color: var(--gray2); margin-bottom: 12px; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.founder-tags span {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  color: var(--gray); font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ab-stat {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 18px; text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.ab-stat:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.ab-stat:nth-child(1) { border-top: 3px solid var(--primary); }
.ab-stat:nth-child(2) { border-top: 3px solid var(--orange); }
.ab-stat:nth-child(3) { border-top: 3px solid var(--green); }
.ab-stat:nth-child(4) { border-top: 3px solid var(--blue); }
.ab-stat span { display: block; font-family: var(--display); font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.ab-stat:nth-child(1) span { color: var(--primary); }
.ab-stat:nth-child(2) span { color: var(--orange); }
.ab-stat:nth-child(3) span { color: var(--green); }
.ab-stat:nth-child(4) span { color: var(--blue); }
.ab-stat p { font-size: 0.73rem; color: var(--gray2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.about-locations { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; }
.loc-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.875rem; }
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.loc-item strong { color: var(--white); font-weight: 700; display: block; margin-bottom: 1px; }
.loc-item span { color: var(--gray); }

/* ══════════════════
   SERVICES
══════════════════ */
#services { background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; margin-top: 52px; }
.service-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px; position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--border2); }
.service-card:nth-child(1) { border-top: 3px solid var(--primary); }
.service-card:nth-child(2) { border-top: 3px solid var(--blue); }
.service-card:nth-child(3) { border-top: 3px solid var(--green); }
.service-card:nth-child(3) .service-icon { background: rgba(52,168,83,0.1); }
.service-card:nth-child(3) .service-features li::before { background: var(--green); }
.service-card:nth-child(3) .btn-service { color: var(--green); border-color: var(--green); }
.service-card:nth-child(3) .btn-service:hover { background: var(--green); color: var(--white); }
.featured-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--primary); color: var(--white);
  font-size: 0.7rem; font-weight: 800; padding: 4px 14px; border-radius: 100px;
}
.service-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--green); color: var(--white);
  font-size: 0.7rem; font-weight: 800; padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.5px;
}
.service-icon {
  width: 54px; height: 54px; margin-bottom: 24px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 13px;
}
.service-card:nth-child(1) .service-icon { background: rgba(245,166,35,0.1); }
.service-card:nth-child(2) .service-icon { background: rgba(66,133,244,0.1); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--display); font-size: 2rem; font-weight: 900;
  text-transform: uppercase; margin-bottom: 12px; color: var(--white);
}
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.75; margin-bottom: 24px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 30px; }
.service-features li {
  font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500;
  display: flex; align-items: center; gap: 9px;
}
.service-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.service-card:nth-child(1) .service-features li::before { background: var(--primary); }
.service-card:nth-child(2) .service-features li::before { background: var(--blue); }
.btn-service { background: transparent; font-weight: 700; padding: 11px 24px; border-radius: 9px; text-decoration: none; display: inline-block; transition: all 0.2s; border: 1.5px solid; cursor: pointer; font-size: 0.93rem; }
.service-card:nth-child(1) .btn-service { color: var(--primary); border-color: var(--primary); }
.service-card:nth-child(1) .btn-service:hover { background: var(--primary); color: var(--white); }
.service-card:nth-child(2) .btn-service { color: var(--blue); border-color: var(--blue); }
.service-card:nth-child(2) .btn-service:hover { background: var(--blue); color: var(--white); }

/* ══════════════════
   PROCESS
══════════════════ */
#process { background: var(--bg); border-top: 1px solid var(--border); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.process-step {
  background: var(--bg); padding: 36px 26px; position: relative;
  border-right: 1px solid var(--border); transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg3); }
.ps-num {
  font-family: var(--display); font-size: 4rem; font-weight: 900;
  line-height: 1; position: absolute; top: 18px; right: 18px;
}
.process-step:nth-child(1) .ps-num { color: rgba(245,166,35,0.12); }
.process-step:nth-child(2) .ps-num { color: rgba(66,133,244,0.12); }
.process-step:nth-child(3) .ps-num { color: rgba(240,112,48,0.12); }
.process-step:nth-child(4) .ps-num { color: rgba(230,51,41,0.12); }
.ps-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; padding: 12px; margin-bottom: 20px;
}
.ps-icon svg { width: 100%; height: 100%; }
.process-step h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.process-step p { font-size: 0.84rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.ps-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ps-tags span { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.process-step:nth-child(1) .ps-tags span { background: rgba(245,166,35,0.1);  color: #F5A623; border: 1px solid rgba(245,166,35,0.2); }
.process-step:nth-child(2) .ps-tags span { background: rgba(66,133,244,0.1); color: #7ab4ff; border: 1px solid rgba(66,133,244,0.2); }
.process-step:nth-child(3) .ps-tags span { background: rgba(240,112,48,0.1); color: #ffaa6b; border: 1px solid rgba(240,112,48,0.2); }
.process-step:nth-child(4) .ps-tags span { background: rgba(230,51,41,0.1);  color: #ff8a83; border: 1px solid rgba(230,51,41,0.2); }

/* ══════════════════
   WHY US
══════════════════ */
#why { background: var(--bg2); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.why-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 30px 26px;
  transition: transform 0.28s, border-color 0.28s; position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.why-card:nth-child(1)::after,.why-card:nth-child(5)::after { background: var(--primary); }
.why-card:nth-child(2)::after,.why-card:nth-child(6)::after { background: var(--orange); }
.why-card:nth-child(3)::after { background: var(--blue); }
.why-card:nth-child(4)::after { background: var(--red); }
.why-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.why-card:hover::after { transform: scaleX(1); }
.why-num { font-family: var(--display); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 14px; }
.why-card:nth-child(1) .why-num,.why-card:nth-child(5) .why-num { color: rgba(245,166,35,0.12); }
.why-card:nth-child(2) .why-num,.why-card:nth-child(6) .why-num { color: rgba(240,112,48,0.12); }
.why-card:nth-child(3) .why-num { color: rgba(66,133,244,0.12); }
.why-card:nth-child(4) .why-num { color: rgba(230,51,41,0.12); }
.why-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.why-card p { color: var(--gray); font-size: 0.875rem; line-height: 1.68; }

/* ══════════════════
   CASE STUDIES
══════════════════ */
#cases { background: var(--bg); border-top: 1px solid var(--border); }
.cases-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; flex-wrap: wrap; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 18px;
  padding: 34px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.3s, border-color 0.3s; position: relative; overflow: hidden;
}
.case-card:hover { transform: translateY(-6px); border-color: var(--border2); }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.case-card:nth-child(1)::before { background: var(--primary); }
.case-card:nth-child(2)::before { background: var(--blue); }
.case-card:nth-child(3)::before { background: var(--green); }
.case-tag { display: inline-block; font-size: 0.72rem; font-weight: 800; padding: 4px 12px; border-radius: 100px; width: fit-content; }
.case-industry { font-size: 0.75rem; color: var(--gray2); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.case-card h3 { font-family: var(--display); font-size: 1.55rem; font-weight: 900; text-transform: uppercase; line-height: 1.08; color: var(--white); }
.case-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.72; flex: 1; }
.case-metrics { display: flex; border: 1px solid var(--border); border-radius: 11px; overflow: hidden; }
.cm { flex: 1; text-align: center; padding: 12px 8px; border-right: 1px solid var(--border); }
.cm:last-child { border-right: none; }
.cm span { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 900; line-height: 1; }
.case-card:nth-child(1) .cm span { color: #F5A623; }
.case-card:nth-child(2) .cm span { color: #7ab4ff; }
.case-card:nth-child(3) .cm span { color: #F5A623; }
.cm p { font-size: 0.68rem; color: var(--gray2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.case-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.case-bar-fill { height: 100%; border-radius: 2px; }

/* ══════════════════
   RESULTS
══════════════════ */
#results { background: var(--bg2); border-top: 1px solid var(--border); }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.result-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 16px;
  padding: 34px 22px; text-align: center; transition: transform 0.28s, box-shadow 0.28s;
}
.result-card:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.result-card:nth-child(1) { border-top: 3px solid var(--primary); }
.result-card:nth-child(2) { border-top: 3px solid var(--orange); }
.result-card:nth-child(3) { border-top: 3px solid var(--green); }
.result-card:nth-child(4) { border-top: 3px solid var(--blue); }
.result-num { display: block; font-family: var(--display); font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 10px; }
.result-card:nth-child(1) .result-num { color: var(--primary); }
.result-card:nth-child(2) .result-num { color: var(--orange); }
.result-card:nth-child(3) .result-num { color: var(--green); }
.result-card:nth-child(4) .result-num { color: var(--blue); }
.result-card p { color: var(--gray); font-size: 0.84rem; line-height: 1.55; }

/* ══════════════════
   CTA BANNER
══════════════════ */
#cta-banner {
  background: var(--bg); padding: 90px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
#cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,166,35,0.07) 0%, transparent 65%);
}
#cta-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.cta-inner { text-align: center; max-width: 680px; position: relative; }
#cta-banner h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 14px; }
#cta-banner h2 span { color: var(--gray2); }
#cta-banner p { color: var(--gray); font-size: 1rem; margin-bottom: 36px; line-height: 1.75; }

/* ══════════════════
   CONTACT
══════════════════ */
#contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; align-items: start; }
.contact-form-wrap {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 20px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
input, select, textarea {
  width: 100%; background: var(--bg4); border: 1px solid var(--border); border-radius: 9px;
  padding: 13px 16px; color: var(--white); font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
select { appearance: none; cursor: pointer; margin-bottom: 12px; }
select option { background: var(--bg3); }
textarea { resize: vertical; margin-bottom: 12px; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.72rem; color: var(--gray2); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px; }
.contact-detail a { color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 700; transition: color 0.2s; }
.contact-detail a:hover { color: var(--primary); }
.branch {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 13px;
  padding: 20px 22px; position: relative; overflow: hidden;
}
.branch::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.branch:nth-of-type(1)::before { background: linear-gradient(180deg, var(--primary), var(--blue)); }
.branch:nth-of-type(2)::before { background: linear-gradient(180deg, var(--orange), var(--red)); }
.branch-label { font-size: 0.72rem; color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.branch p { color: var(--gray); font-size: 0.875rem; line-height: 1.65; }
.social-links-wrap { background: var(--bg3); border: 1px solid var(--border); border-radius: 13px; padding: 20px 22px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg4); border: 1px solid var(--border); border-radius: 9px;
  padding: 8px 14px; color: var(--gray); text-decoration: none;
  font-size: 0.82rem; font-weight: 700; transition: all 0.22s;
}
.social-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ══════════════════
   FOOTER
══════════════════ */
footer { background: #ffffff; padding: 52px 0 28px; text-align: center; border-top: 3px solid var(--primary); }
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer-logo-img { height: 72px; width: auto; object-fit: contain; margin-bottom: 10px; }
.footer-tagline { color: rgba(0,0,0,0.45); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
.footer-links a { color: rgba(0,0,0,0.55); text-decoration: none; font-size: 0.83rem; font-weight: 600; padding: 5px 12px; border-radius: 6px; transition: all 0.2s; }
.footer-links a:hover { color: #080808; background: rgba(0,0,0,0.06); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: #f5f5f5; border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%; color: rgba(0,0,0,0.5); text-decoration: none; transition: all 0.22s;
}
.footer-social a svg { width: 17px; height: 17px; }
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(245,166,35,0.35); }
.footer-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.08); margin-bottom: 20px; }
.footer-copy { color: rgba(0,0,0,0.35); font-size: 0.75rem; margin-bottom: 8px; }
.footer-powered { font-size: 0.75rem; color: rgba(0,0,0,0.3); }
.footer-powered a { color: rgba(0,0,0,0.5); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.footer-powered a:hover { color: var(--primary); }

/* ══════════════════
   RESPONSIVE
══════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-visual { height: 420px; }
  .logo-orbit-wrap { width: 340px; height: 340px; }
  .dash-ring-3 { width: 340px; height: 340px; }
  .sweep-ring { width: 280px; height: 280px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { gap: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile landscape / large phones */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: block; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-ctas .btn { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { text-align: center; }
  .ab-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; border-radius: 12px; }
  .stat { flex: 1 1 40%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { text-align: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; gap: 12px; }
  .cta-banner .btn { width: 100%; max-width: 300px; }
}

/* Mobile portrait */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }

  /* Nav */
  .logo-img { height: 42px; }
  .mobile-menu a { font-size: 1rem; padding: 12px 16px; }

  /* Hero */
  #hero { padding-top: 100px; padding-bottom: 40px; }
  #hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.9rem; }
  .badge { font-size: 0.72rem; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat { flex: 1 1 100%; padding: 14px 20px; border-bottom: 1px solid var(--border); border-right: none; text-align: left; display: flex; align-items: center; gap: 16px; }
  .stat-val { font-size: 1.6rem; }

  /* About */
  .ab-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-values { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .process-step:last-child { border-bottom: none; }
  .ps-num { font-size: 4rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Case Studies */
  .case-card { padding: 24px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .result-card { padding: 20px 16px; }
  .result-num { font-size: 2rem; }

  /* CTA Banner */
  .cta-banner { padding: 48px 20px; }
  .cta-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Contact */
  .contact-info { gap: 16px; }
  .contact-form-wrap { padding: 20px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group textarea, .form-group select { font-size: 16px; }

  /* Footer */
  .footer-logo-img { height: 56px; }
  .footer-links { gap: 4px; }
  .footer-links a { font-size: 0.78rem; padding: 4px 8px; }
  .footer-social { gap: 10px; }
}

/* ── SEO Hidden H1 ── */
.h1-seo {
  display: block; font-size: 0 !important; line-height: 0;
  height: 0; overflow: hidden; visibility: hidden; margin: 0; padding: 0;
}

/* ── Sticky CTA Stack (WhatsApp + Call) ── */
.sticky-cta-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.whatsapp-float, .sticky-call {
  background: #25D366; color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; position: static;
}
.sticky-call { background: var(--primary); box-shadow: 0 4px 24px rgba(245,166,35,0.5); }
.whatsapp-float:hover, .sticky-call:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
.sticky-call:hover { box-shadow: 0 6px 32px rgba(245,166,35,0.65); }
@media (max-width: 600px) {
  .sticky-cta-stack { bottom: 20px; right: 16px; gap: 10px; }
  .whatsapp-float, .sticky-call { width: 50px; height: 50px; }
}

/* ── Mission / Vision / Values ── */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.mvv-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.mvv-card h5 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 8px; }
.mvv-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; }

/* ── Trust Badges ── */
.trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.trust-badge {
  background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25);
  color: var(--primary); font-size: 0.78rem; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
}

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

/* ── Pricing Cards ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 48px; }
.price-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 22px; display: flex; flex-direction: column; position: relative;
}
.featured-price { border-color: var(--primary); box-shadow: 0 8px 32px rgba(245,166,35,0.15); transform: translateY(-8px); }
.price-card-tag { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 10px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 18px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amount { font-size: 2rem; font-weight: 900; font-family: var(--display); color: var(--white); }
.price-period { color: var(--gray); font-size: 0.85rem; }
.price-note { font-size: 0.78rem; color: var(--gray2); margin-bottom: 22px; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 26px; flex: 1; }
.price-features li { font-size: 0.85rem; color: var(--gray); padding: 7px 0; border-bottom: 1px solid var(--border); }
.price-features li:last-child { border-bottom: none; }

@media (max-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } .featured-price { transform: none; } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── Case Study Detail Cards ── */
.case-detail-list { display: flex; flex-direction: column; gap: 28px; }
.case-detail-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 18px; padding: 32px; }
.case-detail-card h2 { font-size: 1.4rem; margin: 12px 0 22px; }
.cd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
.cd-grid h5 { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 8px; }
.cd-grid p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

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

/* ── Blog ── */
.blog-controls { display: flex; flex-direction: column; gap: 16px; margin: 40px 0 36px; }
#blogSearch {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 18px; color: var(--white); font-family: var(--font); font-size: 0.95rem;
  max-width: 420px; width: 100%;
}
#blogSearch:focus { outline: none; border-image: var(--lg) 1; }
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-cat-btn {
  background: var(--bg3); border: 1px solid var(--border); color: var(--gray);
  font-size: 0.8rem; font-weight: 600; padding: 8px 16px; border-radius: 100px;
  cursor: pointer; transition: all 0.2s;
}
.blog-cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.blog-cat-btn.active { background: var(--lg); color: #fff; border-color: transparent; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.blog-card-tag { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 12px; }
.blog-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.blog-read-more { font-size: 0.8rem; font-weight: 700; color: var(--primary); }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Blog Article Page ── */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.article-body p { color: var(--gray); line-height: 1.8; margin-bottom: 18px; font-size: 1rem; }
.article-body ul { margin: 0 0 18px 22px; color: var(--gray); line-height: 1.8; }
.article-meta { display: flex; gap: 16px; align-items: center; color: var(--gray2); font-size: 0.85rem; margin-bottom: 32px; flex-wrap: wrap; }
.article-meta .blog-card-tag { margin-bottom: 0; }
.related-posts { max-width: 720px; margin: 60px auto 0; border-top: 1px solid var(--border); padding-top: 36px; }
.related-posts h4 { font-size: 1.1rem; margin-bottom: 18px; }
.related-list { display: flex; flex-direction: column; gap: 10px; }
.related-list a { color: var(--primary); font-size: 0.95rem; font-weight: 600; text-decoration: none; }
.related-list a:hover { text-decoration: underline; }

/* ── Floating Lead Tab + Panel ── */
.floating-lead-tab {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  background: var(--lg, var(--primary)); color: #fff; border: none; outline: none;
  font-family: var(--font); font-size: 0.78rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; writing-mode: vertical-rl; text-orientation: mixed;
  padding: 18px 10px; border-radius: 0 10px 10px 0; cursor: pointer; z-index: 9998;
  box-shadow: 2px 0 16px rgba(0,0,0,0.25); line-height: 1; white-space: nowrap;
}
.floating-lead-tab span { display: inline-block; transform: rotate(180deg); }
.floating-lead-panel {
  position: fixed; left: -360px; top: 50%; transform: translateY(-50%);
  width: 320px; background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 0 18px 18px 0; padding: 28px 24px; z-index: 9999;
  transition: left 0.35s ease; box-shadow: 6px 0 32px rgba(0,0,0,0.4);
}
.floating-lead-panel.open { left: 0; }
.flp-close { position: absolute; top: 10px; right: 14px; background: none; border: none; color: var(--gray); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.floating-lead-panel h4 { font-size: 1.1rem; margin-bottom: 6px; }
.floating-lead-panel p { font-size: 0.82rem; color: var(--gray); margin-bottom: 18px; }
.floating-lead-panel input {
  width: 100%; background: var(--bg4); border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; color: var(--white); font-family: var(--font); font-size: 0.9rem;
  margin-bottom: 10px;
}
@media (max-width: 900px) { .floating-lead-tab, .floating-lead-panel { display: none; } }

/* ── Exit Intent Popup ── */
.exit-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.exit-popup-overlay.open { opacity: 1; pointer-events: auto; }
.exit-popup-card {
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 20px;
  padding: 40px 36px; max-width: 420px; text-align: center; position: relative;
  transform: scale(0.9); transition: transform 0.3s ease;
}
.exit-popup-overlay.open .exit-popup-card { transform: scale(1); }
.exit-popup-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: var(--gray); font-size: 1.6rem; cursor: pointer; }
.exit-popup-tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.exit-popup-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.exit-popup-card p { color: var(--gray); font-size: 0.92rem; margin-bottom: 24px; line-height: 1.6; }
.exit-popup-call { display: block; margin-top: 14px; font-size: 0.85rem; color: var(--gray); text-decoration: none; }
.exit-popup-call:hover { color: var(--primary); }

/* ── Comparison Table ── */
.compare-table-wrap { overflow-x: auto; margin-top: 40px; border-radius: 16px; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.compare-table th { background: var(--bg3); font-weight: 800; color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.compare-table td { color: var(--gray); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .compare-yes { color: #34A853; font-weight: 700; }
.compare-table .compare-no { color: #E63329; font-weight: 700; }
.compare-table .compare-highlight { background: rgba(245,166,35,0.06); }
.compare-table .compare-highlight td:first-child, .compare-table .compare-highlight th:first-child { font-weight: 800; color: var(--white); }

/* ── Internal Linking Cluster ── */
.link-cluster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.link-cluster-col h5 { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 16px; }
.link-cluster-col { display: flex; flex-direction: column; }
.link-cluster-col a { color: var(--gray); font-size: 0.88rem; text-decoration: none; padding: 6px 0; border-bottom: 1px solid var(--border); }
.link-cluster-col a:hover { color: var(--primary); }
.link-cluster-col a:last-child { border-bottom: none; }
@media (max-width: 768px) { .link-cluster { grid-template-columns: 1fr; gap: 28px; } }

/* ── Blog Article Table of Contents ── */
.article-toc {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 24px; margin-bottom: 32px;
}
.article-toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 12px; }
.article-toc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.article-toc a { color: var(--gray); font-size: 0.9rem; text-decoration: none; }
.article-toc a:hover { color: var(--primary); text-decoration: underline; }

/* ── Calendly Booking Section ── */
.calendly-section { background: var(--bg3); border: 1px solid var(--border); border-radius: 18px; padding: 36px; text-align: center; margin-top: 48px; }
.calendly-section h3 { font-size: 1.3rem; margin-bottom: 10px; }
.calendly-section p { color: var(--gray); font-size: 0.92rem; margin-bottom: 22px; }
.calendly-placeholder {
  background: var(--bg4); border: 2px dashed var(--border2); border-radius: 12px;
  padding: 48px 24px; color: var(--gray2); font-size: 0.85rem;
}

/* ── Industries Hub ── */
.industry-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.industry-hub-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.industry-hub-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.industry-hub-card a { display: block; color: var(--primary); font-size: 0.85rem; font-weight: 600; text-decoration: none; padding: 5px 0; }
.industry-hub-card a:hover { text-decoration: underline; }
@media (max-width: 900px) { .industry-hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .industry-hub-grid { grid-template-columns: 1fr; } }

/* ── FAQ Section ── */
#faq { padding: 80px 0; background: var(--bg2); }
#faq h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 48px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-item summary {
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  cursor: pointer; list-style: none; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  flex-shrink: 0; color: var(--primary); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.95rem; line-height: 1.7; color: var(--gray); margin: 0; }
.faq-answer strong { color: var(--white); }
@media (max-width: 600px) {
  .faq-item summary { font-size: 0.9rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 16px; }
}

/* ══════════════════
   LOGO GRADIENT THEME — replaces gold everywhere
══════════════════ */
:root { --lg: linear-gradient(90deg, #E63329, #F07030, #F5C518, #34A853, #4285F4); }

/* Gradient text utility */
.grad-text {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline-block;
}

/* Buttons */
.btn-primary, .btn-nav,
.btn-service, .btn-outline-white {
  background: #34A853 !important; border-color: #34A853 !important; color: #fff !important;
}
.btn-primary:hover, .btn-nav:hover,
.btn-service:hover, .btn-outline-white:hover {
  background: #2d9147 !important; border-color: #2d9147 !important;
  box-shadow: 0 6px 28px rgba(52,168,83,0.4) !important; filter: none;
}

/* Hero h1 accent line */
.line-accent {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block;
}

/* Hero badge dot */
.badge-dot { background: var(--lg); }

/* Section tags */
.section-tag {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section h2 accent spans */
section h2 span {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline;
}

/* Service card 1 top border */
.service-card:nth-child(1) { border-top: none; position: relative; }
.service-card:nth-child(1)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--lg); border-radius: 12px 12px 0 0;
}
.service-card:nth-child(1) .btn-service { border-image: var(--lg) 1; color: #E63329; }
.service-card:nth-child(1) .btn-service:hover { background: var(--lg); border-color: transparent; color: #fff; }

/* Caption "Co Founder" */
.caption-role {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer top border → gradient bar */
footer { border-top: none; position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--lg);
}

/* FAQ open accent */
.faq-item[open] summary {
  background: var(--lg);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-item summary::after { background: var(--lg); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Social/footer hover */
.social-btn:hover, .footer-social a:hover {
  background: var(--lg); border-color: transparent; color: #fff;
}

/* Input focus ring */
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-image: var(--lg) 1; box-shadow: 0 0 0 3px rgba(230,51,41,0.08);
}

/* ══════════════════
   BEFORE / AFTER PROOF SECTION
══════════════════ */
#proof { padding: 90px 0; background: var(--bg); }
#proof h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-sub { color: var(--gray); font-size: 1rem; margin-bottom: 52px; max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

/* Grid */
.ba-grid {
  display: flex; align-items: center; gap: 24px;
  justify-content: center; margin-bottom: 64px; flex-wrap: wrap;
}
.ba-arrow {
  font-size: 2.8rem; color: var(--primary); font-weight: 900;
  flex-shrink: 0;
  background: var(--lg); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* Cards */
.ba-card {
  flex: 1; min-width: 280px; max-width: 380px;
  background: var(--bg3); border-radius: 20px;
  padding: 32px 28px; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.ba-before { border-top: 3px solid #E63329; }
.ba-after  { border-top: 3px solid #34A853; }
.ba-after::after {
  content: '🏆 Best Results';
  position: absolute; top: 14px; right: 14px;
  background: rgba(52,168,83,0.12); color: #34A853;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}

.ba-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.ba-before .ba-label { color: #E63329; }
.ba-after  .ba-label { color: #34A853; }

.ba-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.ba-metric { display: flex; flex-direction: column; gap: 4px; }
.ba-val { font-size: 1.9rem; font-weight: 900; line-height: 1; font-family: var(--display); }
.ba-val.bad  { color: #E63329; }
.ba-val.good { color: #34A853; }
.ba-key { font-size: 0.72rem; color: var(--gray); font-weight: 500; }

.ba-tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ba-tag-bad, .ba-tag-good {
  font-size: 0.68rem; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; letter-spacing: 0.5px;
}
.ba-tag-bad  { background: rgba(230,51,41,0.1);  color: #E63329; }
.ba-tag-good { background: rgba(52,168,83,0.1);   color: #34A853; }

/* Screenshot Gallery */
.proof-gallery { text-align: center; }
.proof-gallery-title {
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 28px;
}
.proof-gallery-title span { color: var(--primary); }
.proof-shots {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 20px;
}
.proof-shot {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg3);
  aspect-ratio: 16/10;
}
.proof-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-shot.placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  border: 2px dashed var(--border2);
}
.ps-icon { font-size: 2rem; }
.proof-shot.placeholder p {
  font-size: 0.82rem; color: var(--gray); line-height: 1.5; text-align: center;
}
.proof-shot.placeholder small { color: var(--gray2); font-size: 0.72rem; }
.proof-note {
  font-size: 0.75rem; color: var(--gray2); margin-top: 16px;
  background: var(--bg3); padding: 12px 20px; border-radius: 10px;
  display: inline-block; text-align: left; max-width: 620px;
}
.proof-note code {
  background: var(--bg4); color: var(--primary);
  padding: 2px 6px; border-radius: 4px; font-size: 0.72rem;
}

@media (max-width: 768px) {
  .ba-arrow { transform: rotate(90deg); }
  .ba-card { max-width: 100%; width: 100%; }
  .proof-shots { grid-template-columns: 1fr; }
}

/* ── Google Ads Dashboard Mockups ── */
.mock-dash {
  background: #1a1f2e; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 18px; text-align: left;
  display: flex; flex-direction: column; gap: 14px;
  aspect-ratio: auto; min-height: 280px;
}
.mock-header {
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 10px;
}
.mock-logo {
  background: #4285F4; color: #fff; font-size: 0.65rem;
  font-weight: 900; padding: 3px 7px; border-radius: 4px; flex-shrink: 0;
}
.mock-title { font-size: 0.72rem; color: rgba(255,255,255,0.7); flex: 1; }
.mock-date  { font-size: 0.65rem; color: rgba(255,255,255,0.35); flex-shrink: 0; }

.mock-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-kpi  { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px 12px; }
.mk-val    { display: block; font-size: 1.25rem; font-weight: 900; line-height: 1; margin-bottom: 3px; }
.mk-val.green { color: #34A853; }
.mk-val.red   { color: #E63329; }
.mk-label  { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.mk-delta  { display: inline-block; font-size: 0.62rem; font-weight: 700; padding: 2px 6px; border-radius: 100px; }
.mk-delta.up { background: rgba(52,168,83,0.15); color: #34A853; }
.mk-delta.dn { background: rgba(230,51,41,0.12); color: #E63329; }

.mock-bar-chart {
  display: flex; align-items: flex-end; gap: 5px; height: 56px;
  background: rgba(255,255,255,0.03); border-radius: 8px;
  padding: 8px 10px;
}
.mock-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #34A853, #2d9147);
  min-height: 4px; transition: height 0.3s;
}
.mock-bar.bad { background: linear-gradient(180deg, #E63329, #b52820); }

.mock-badge {
  font-size: 0.65rem; font-weight: 700; color: #34A853;
  background: rgba(52,168,83,0.1); padding: 5px 10px;
  border-radius: 100px; align-self: flex-start;
  border: 1px solid rgba(52,168,83,0.2);
}
