 /* ROOT VARIABLES — BLUE / WHITE / BLACK */
:root {
  --blue:        #1338BE;
  --blue-dark:   #0D2990;
  --blue-mid:    #1A4ED8;
  --blue-light:  #E8EEFF;
  --blue-faint:  #F0F3FF;
  --black:       #080C1A;
  --white:       #FFFFFF;
  --off-white:   #F5F7FF;
  --text-dark:   #080C1A;
  --text-mid:    #344074;
  --text-muted:  #6B80C4;
  --border:      rgba(19,56,190,0.12);
  --border-mid:  rgba(19,56,190,0.22);
  --font-h:      'Barlow Condensed', sans-serif;
  --font-b:      'Barlow', sans-serif;
  --ease:        cubic-bezier(0.23,1,0.32,1);
  --r:           10px;
  --r-lg:        18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }

/*
   LOGO SVG (megaphone style from card) */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
}
.logo-text span { color: var(--black); }
/* White variant for dark backgrounds */
.logo-white .logo-text { color: #fff; }
.logo-white .logo-text span { color: rgba(255,255,255,0.7); }

/*
   NAV */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(19,56,190,0.12);
  box-shadow: 0 2px 16px rgba(19,56,190,0.07);
  transition: all .4s var(--ease);
  padding: 4px 0;
}
#nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(19,56,190,0.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--font-h);
  font-size: .92rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Buttons — no icons, pure text/shape */
.btn {
  display: inline-flex; align-items: center;
  font-family: var(--font-h);
  font-size: .9rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 11px 24px; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: all .28s var(--ease);
  text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(19,56,190,0.28); }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #fff; font-family: var(--font-h); font-size: .9rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 12px 24px; border-radius: var(--r); transition: all .28s; display: inline-flex; align-items: center; gap: 0; }
.btn-wa:hover { background: #1DB954; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #1a1f35; transform: translateY(-2px); }

#hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
#hamburger span { display: block; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; transition: .3s; }
#mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; border-bottom: 2px solid var(--blue);
  padding: 24px 28px; flex-direction: column; gap: 18px; z-index: 999;
  box-shadow: 0 12px 40px rgba(19,56,190,0.12);
}
#mobile-menu a {
  font-family: var(--font-h); font-size: 1.5rem; font-weight: 800;
  text-transform: uppercase; color: var(--text-dark); letter-spacing: .04em;
}
#mobile-menu.open { display: flex; }

/*
   HERO — BLUE BG + 3D ROTATING CUBE */
#hero {
  background: var(--blue);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 88px;
}
/* subtle grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* radial glow */
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
  padding: 80px 0;
  width: 100%;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-h);
  font-size: .82rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.01em; text-transform: uppercase;
  color: #fff; margin-bottom: 26px;
}
.hero-h1 em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.55);
}
.hero-sub {
  font-size: clamp(.95rem,1.8vw,1.1rem);
  color: rgba(255,255,255,0.68);
  max-width: 480px; font-weight: 300;
  margin-bottom: 40px; line-height: 1.72;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg); overflow: hidden;
  max-width: 460px;
}
.hstat {
  flex: 1; padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.hstat:last-child { border-right: none; }
.hstat strong {
  display: block; font-family: var(--font-h);
  font-size: 2rem; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 3px;
}
.hstat span {
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-weight: 500;
}

/* ── 3D SCENE ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  min-height: 440px;
}
.scene-3d {
  width: 380px; height: 380px;
  perspective: 900px;
  position: relative;
}
/* Floating metric cards around cube */
.metric-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 16px 48px rgba(8,12,26,0.22);
  z-index: 10;
  animation: floatCard 5s ease-in-out infinite;
}
.metric-float.mf1 { top: 20px; left: -20px; animation-delay: 0s; }
.metric-float.mf2 { bottom: 40px; right: -20px; animation-delay: 1.5s; }
.metric-float.mf3 { bottom: 20px; left: 20px; animation-delay: 3s; }
.metric-float strong {
  display: block; font-family: var(--font-h);
  font-size: 1.7rem; font-weight: 900; color: var(--blue); line-height: 1;
}
.metric-float span { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }
@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* The CSS 3D cube */
.cube-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.cube {
  width: 180px; height: 180px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
}
@keyframes rotateCube {
  0%   { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}
.face {
  position: absolute; width: 180px; height: 180px;
  border: 2px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 900; font-size: 1rem; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
  border-radius: 8px;
}
.face-front  { transform: translateZ(90px);  background: rgba(255,255,255,0.12); }
.face-back   { transform: rotateY(180deg) translateZ(90px); background: rgba(255,255,255,0.06); }
.face-left   { transform: rotateY(-90deg) translateZ(90px); background: rgba(255,255,255,0.09); }
.face-right  { transform: rotateY(90deg)  translateZ(90px); background: rgba(255,255,255,0.09); }
.face-top    { transform: rotateX(90deg)  translateZ(90px); background: rgba(255,255,255,0.05); }
.face-bottom { transform: rotateX(-90deg) translateZ(90px); background: rgba(255,255,255,0.05); }

/* vertical label inside faces */
.face-label {
  font-family: var(--font-h);
  font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: horizontal-tb;
  text-align: center;
  line-height: 1.2;
}
.face-big {
  font-family: var(--font-h);
  font-size: 1.6rem; font-weight: 900;
  color: #fff; text-align: center; line-height: 1;
}

/*
   MARQUEE */
.marquee-wrap {
  background: var(--black);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 72px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-h);
  font-size: .8rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35); white-space: nowrap;
}
.marquee-item b { color: rgba(255,255,255,0.8); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/*
   SECTION LABELS & HEADINGS */
.sec-label {
  display: inline-block;
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  padding-left: 18px; position: relative;
}
.sec-label::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 10px; height: 2px; background: var(--blue);
}
.sec-h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 900; line-height: 1.0;
  text-transform: uppercase; color: var(--text-dark);
  letter-spacing: -.01em; margin-bottom: 16px;
}
.sec-h2 span { color: var(--blue); }
.sec-h2-white { color: #fff; }
.sec-h2-white span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.4); }

/*
   ABOUT */
#about { background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* 3D GROWTH VISUAL for about section */
.about-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.about-3d-card {
  background: var(--blue);
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* 3D bar chart inside about card */
.chart-3d {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; gap: 12px;
  height: 140px; padding: 0 20px;
}
.bar-3d {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  position: relative;
}
.bar-face-front {
  width: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.bar-face-side {
  position: absolute; right: -10px; top: 0; bottom: 0;
  width: 10px;
  background: rgba(255,255,255,0.45);
  transform: skewY(-45deg);
  transform-origin: top right;
}
.bar-face-top {
  position: absolute; top: -8px; left: 0; right: -10px;
  height: 8px;
  background: rgba(255,255,255,0.65);
  transform: skewX(-45deg);
  transform-origin: bottom left;
}
.bar-label {
  font-family: var(--font-h); font-size: .6rem; font-weight: 700;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  letter-spacing: .05em; margin-top: 8px;
}
/* Growth line on top */
.growth-line {
  position: absolute; bottom: 40px; left: 20px; right: 20px;
  height: 2px;
}

/* Floating stat cards */
.stat-pill {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 12px 36px rgba(8,12,26,0.18);
  z-index: 3;
}
.stat-pill.sp1 { bottom: -18px; left: -24px; }
.stat-pill.sp2 { top: -18px; right: -24px; }
.stat-pill strong {
  display: block; font-family: var(--font-h);
  font-size: 1.5rem; font-weight: 900; color: var(--blue); line-height: 1;
}
.stat-pill span { font-size: .67rem; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); }

.about-vals { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.about-val {
  padding: 16px 20px;
  border-left: 3px solid var(--blue);
  background: #fff;
  border-radius: 0 var(--r) var(--r) 0;
  transition: .28s;
}
.about-val:hover { background: var(--blue-light); border-left-color: var(--blue-dark); }
.about-val h4 {
  font-family: var(--font-h); font-size: .98rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-dark); margin-bottom: 3px;
}
.about-val p { font-size: .85rem; color: var(--text-mid); }

/*
   SERVICES */
#services { background: #fff; }
.services-intro { text-align: center; max-width: 580px; margin: 0 auto 52px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
}
.service-card {
  background: #fff; padding: 34px 28px;
  position: relative; overflow: hidden;
  transition: .38s var(--ease); cursor: default;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: .38s var(--ease);
}
.service-card:hover {
  background: var(--blue); transform: translateY(-3px); z-index: 2;
  box-shadow: 0 16px 48px rgba(19,56,190,0.3);
}
.service-card:hover::after { display: none; }
.service-card:hover .s-num,
.service-card:hover h3,
.service-card:hover p { color: #fff; }
.service-card:hover .stag { background: rgba(255,255,255,0.15); color: #fff; }
.s-num {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px; transition: .3s;
}
.service-card h3 {
  font-family: var(--font-h); font-size: 1.38rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--text-dark); margin-bottom: 10px; transition: .3s;
}
.service-card p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; transition: .3s; }
.stag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: var(--blue-light); color: var(--blue); transition: .3s;
  margin: 3px 2px 0 0;
}

/*
   RESULTS — BLUE BG */
#results { background: var(--blue); }
.results-top { text-align: center; margin-bottom: 56px; }
.results-top .sec-label { color: rgba(255,255,255,0.55); }
.results-top .sec-label::before { background: rgba(255,255,255,0.5); }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(255,255,255,0.1);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 40px;
}
.stat-card {
  background: rgba(255,255,255,0.07);
  padding: 40px 24px; text-align: center; transition: .3s;
}
.stat-card:hover { background: rgba(255,255,255,0.12); }
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.2rem,4.5vw,3.5rem);
  font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* Case cards */
.cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.case-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg); overflow: hidden;
  transition: .38s var(--ease);
}
.case-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.case-head { padding: 26px 26px 18px; }
.case-industry {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px;
}
.case-card h3 {
  font-family: var(--font-h); font-size: 1.32rem; font-weight: 800;
  text-transform: uppercase; color: #fff; margin-bottom: 8px;
}
.case-card .case-desc { font-size: .85rem; color: rgba(255,255,255,0.58); }
.case-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.cmetric { background: rgba(255,255,255,0.05); padding: 16px; text-align: center; }
.cmetric strong {
  display: block; font-family: var(--font-h);
  font-size: 1.45rem; font-weight: 900; color: #fff; margin-bottom: 2px;
}
.cmetric span { font-size: .68rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: .07em; }

/*
   PROCESS */
#process { background: var(--off-white); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border); margin-top: 52px;
}
.process-step { background: var(--off-white); padding: 34px 26px; }
.step-num {
  font-family: var(--font-h); font-size: 4.5rem; font-weight: 900;
  color: var(--blue); opacity: 1; line-height: 1; margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--font-h); font-size: 1.18rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--text-dark); margin-bottom: 8px;
}
.process-step p { font-size: .85rem; color: var(--text-mid); line-height: 1.7; }

/*
   TESTIMONIALS */
#testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card {
  background: var(--off-white); border-radius: var(--r-lg);
  padding: 28px; transition: .3s;
  border: 1px solid var(--border);
}
.testi-card:hover {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 8px 32px rgba(19,56,190,0.08);
}
.testi-stars { color: var(--blue); font-size: .85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 20px;
  font-style: normal; quotes: none;
}
.testi-name {
  font-family: var(--font-h); font-size: 1rem; font-weight: 800;
  text-transform: uppercase; color: var(--text-dark);
}
.testi-role { font-size: .78rem; color: var(--text-muted); }
.big-quote {
  font-family: var(--font-h); font-size: 56px; font-weight: 900;
  color: var(--blue); opacity: .14; line-height: .8;
  display: block; margin-bottom: 8px;
}

/*
   AI STRATEGY TOOL — BLUE */
#ai-tool { background: var(--blue); }
.ai-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 52px;
}
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ai-grid .sec-label { color: rgba(255,255,255,.55); }
.ai-grid .sec-label::before { background: rgba(255,255,255,.5); }
.ai-desc { font-size: .95rem; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 8px; }
.ai-form { display: flex; flex-direction: column; gap: 14px; }
.ai-field label {
  display: block; font-family: var(--font-h);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.58); margin-bottom: 5px;
}
.ai-field input, .ai-field select {
  width: 100%; padding: 12px 15px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r); color: #fff;
  font-family: var(--font-b); font-size: .9rem; outline: none; transition: .3s;
}
.ai-field input::placeholder { color: rgba(255,255,255,.38); }
.ai-field input:focus, .ai-field select:focus {
  border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12);
}
.ai-field select option { background: var(--blue-dark); color: #fff; }
.ai-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#strategy-loading { text-align: center; color: rgba(255,255,255,.65); padding: 24px; display: none; }
.ldot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.6); margin: 0 3px;
  animation: ldotan 1.2s ease-in-out infinite;
}
.ldot:nth-child(2){animation-delay:.2s} .ldot:nth-child(3){animation-delay:.4s}
@keyframes ldotan{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
#strategy-result {
  display: none; margin-top: 18px;
  background: rgba(255,255,255,.08); border-radius: var(--r); padding: 22px;
}
#strategy-result h4 {
  font-family: var(--font-h); font-size: .95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 12px;
}
#strategy-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
#strategy-list li {
  font-size: .875rem; color: rgba(255,255,255,.78); line-height: 1.65;
  padding-left: 15px; position: relative;
}
#strategy-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: .4;
}

/*
   CONTACT */
#contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-left h3 {
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 900;
  text-transform: uppercase; color: var(--text-dark); margin-bottom: 12px;
}
.contact-left p { color: var(--text-mid); font-size: .95rem; margin-bottom: 28px; }
.cdetail {
  padding: 15px 18px; background: #fff; border-radius: var(--r);
  border-left: 3px solid var(--blue); margin-bottom: 10px; transition: .28s;
}
.cdetail:hover { border-left-color: var(--blue-dark); background: var(--blue-light); }
.cdetail h5 {
  font-family: var(--font-h); font-size: .9rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--text-dark); margin-bottom: 2px;
}
.cdetail span { font-size: .86rem; color: var(--text-mid); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

/* contact form */
.contact-form {
  background: #fff; border-radius: var(--r-lg);
  padding: 34px; border: 1px solid var(--border);
}
.contact-form h4 {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 900;
  text-transform: uppercase; color: var(--text-dark); margin-bottom: 22px;
}
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-family: var(--font-h);
  font-size: .73rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 11px 14px;
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--r); color: var(--text-dark);
  font-family: var(--font-b); font-size: .9rem; outline: none; transition: .3s; resize: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(19,56,190,0.09);
}
.fg select option { background: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg {
  display: none; margin-top: 10px; padding: 10px 14px;
  border-radius: var(--r); font-size: .84rem;
}
.form-msg.success { background: rgba(0,180,70,.1); border: 1px solid rgba(0,180,70,.3); color: #007a30; display: block; }
.form-msg.error { background: rgba(200,30,30,.1); border: 1px solid rgba(200,30,30,.3); color: #b00; display: block; }

/*
   CTA STRIP — BLACK */
.cta-strip {
  background: var(--black); padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.cta-strip h2 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem,6vw,4.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.01em; color: #fff; margin-bottom: 14px;
}
.cta-strip p {
  font-size: 1.05rem; color: rgba(255,255,255,.55);
  margin-bottom: 34px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/*
   FOOTER */
footer {
  background: var(--blue-dark); padding: 58px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; margin-bottom: 44px;
}
.footer-brand p {
  font-size: .875rem; color: rgba(255,255,255,.45);
  max-width: 280px; line-height: 1.72; margin: 14px 0 22px;
}
.footer-tagline {
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.footer-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0; }
.flink {
  font-family: var(--font-h); font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.55); transition: .28s;
}
.flink:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.footer-col h4 {
  font-family: var(--font-h); font-size: .95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .875rem; color: rgba(255,255,255,.45); transition: .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/*
   CHATBOT */
#chat-bubble { position: fixed; bottom: 26px; right: 26px; z-index: 9000; }
.chat-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 900;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(19,56,190,0.38); transition: .28s;
}
.chat-toggle:hover { transform: scale(1.08); background: var(--blue-dark); }
.chat-win {
  position: absolute; bottom: 62px; right: 0;
  width: 316px; background: #fff; border-radius: var(--r-lg);
  box-shadow: 0 8px 48px rgba(8,12,26,0.18);
  display: none; flex-direction: column;
  border: 1px solid var(--border); overflow: hidden;
}
.chat-win.open { display: flex; }
.chat-hd {
  background: var(--blue); padding: 16px 18px; color: #fff;
}
.chat-hd h4 {
  font-family: var(--font-h); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px;
}
.chat-hd p { font-size: .75rem; color: rgba(255,255,255,.65); }
.chat-msgs {
  flex: 1; padding: 14px; height: 230px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 9px;
}
.cmsg {
  max-width: 84%; padding: 9px 13px;
  border-radius: 12px; font-size: .84rem; line-height: 1.5;
}
.cmsg.bot { background: var(--off-white); color: var(--text-dark); border-radius: 12px 12px 12px 2px; }
.cmsg.user { background: var(--blue); color: #fff; border-radius: 12px 12px 2px 12px; align-self: flex-end; }
.chat-typing {
  display: flex; gap: 4px; padding: 9px 12px;
  background: var(--off-white); border-radius: 12px 12px 12px 2px; width: fit-content;
}
.chat-typing span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--text-muted); animation: tdot .9s ease-in-out infinite;
}
.chat-typing span:nth-child(2){animation-delay:.15s} .chat-typing span:nth-child(3){animation-delay:.3s}
@keyframes tdot{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-5px)}}
#cquick { display: flex; flex-wrap: wrap; gap: 5px; padding: 9px 14px; border-top: 1px solid var(--border); }
.cq {
  font-size: .73rem; padding: 4px 9px; border-radius: 100px;
  border: 1px solid var(--border); background: #fff;
  cursor: pointer; color: var(--text-mid); transition: .2s; font-family: var(--font-b);
}
.cq:hover { border-color: var(--blue); color: var(--blue); }
.chat-inp-row {
  display: flex; gap: 7px; padding: 11px 12px; border-top: 1px solid var(--border);
}
.chat-inp-row input {
  flex: 1; padding: 8px 12px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-b);
  font-size: .84rem; color: var(--text-dark); outline: none;
}
.chat-inp-row input:focus { border-color: var(--blue); }
.chat-snd {
  padding: 8px 14px; background: var(--blue); color: #fff;
  border: none; border-radius: var(--r); cursor: pointer;
  font-family: var(--font-h); font-size: .82rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; transition: .2s;
}
.chat-snd:hover { background: var(--blue-dark); }

/*
   WHATSAPP FIXED */
#wa-fixed {
  position: fixed; bottom: 84px; right: 26px; z-index: 8999;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38); transition: .28s;
}
#wa-fixed:hover { transform: scale(1.1); background: #1DB954; }

/*
   REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: .1s; } .rd2 { transition-delay: .2s; } .rd3 { transition-delay: .3s; }

/*
   RESPONSIVE */
@media(max-width:960px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .scene-3d { width: 280px; height: 280px; }
  .cube { width: 130px; height: 130px; }
  .face { width: 130px; height: 130px; }
  .face-front  { transform: translateZ(65px); }
  .face-back   { transform: rotateY(180deg) translateZ(65px); }
  .face-left   { transform: rotateY(-90deg) translateZ(65px); }
  .face-right  { transform: rotateY(90deg)  translateZ(65px); }
  .face-top    { transform: rotateX(90deg)  translateZ(65px); }
  .face-bottom { transform: rotateX(-90deg) translateZ(65px); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-box { padding: 30px 22px; }
}
@media(max-width:640px){
  .nav-links, .nav-right > .btn { display: none; }
  #hamburger { display: flex; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hstat { flex: 1 1 45%; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .ai-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

 @media(max-width:768px){
        #video-reviews .container > div:last-child {
          grid-template-columns: 1fr !important;
        }
      }