/* ============================================================
   READMIND STRATEGIES – MASTER STYLESHEET
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { max-width: 100%; overflow-x: hidden; }

:root {
  --navy:       #081A3A;
  --navy2:      #0D2B5C;
  --navy3:      #1E3A5F;
  --gold:       #F4B63D;
  --gold-dk:    #D99B28;
  --white:      #FFFFFF;
  --text-dark:  #1E293B;
  --text-muted: #94A3B8;
  --bg-light:   #F8FAFC;
  --blue-mid:   #3B82F6;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Outfit', sans-serif;
  --radius:     12px;
  --shadow:     0 8px 32px rgba(8,26,58,.18);
  --shadow-lg:  0 20px 60px rgba(8,26,58,.28);
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.gold { color: var(--gold); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244,182,61,.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-desc { color: #475569; line-height: 1.7; max-width: 520px; }
.section-center-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--navy);
  margin-bottom: 3rem;
}

/* ── Animate on scroll ────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease calc(var(--delay, 0s)), transform .7s ease calc(var(--delay, 0s));
}
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px);  }
[data-animate].in-view { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: relative;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-wrap { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.logo-icon  { flex-shrink: 0; }
.brand-logo-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: #fff;
}
.logo-text  { display: flex; flex-direction: column; line-height: 1; }
.logo-name  { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: .05em; }
.logo-name2  { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: .05em; }
.logo-sub   { font-size: .6rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: .2rem; margin: 0 auto; }
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: 4px;
  transition: color var(--trans), background var(--trans);
}
.main-nav a:hover { color: var(--gold); background: rgba(244,182,61,.1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--trans);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 0 0 0 0;
}
.hero-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.subtitle {
  font-family: var(--font-head);
  font-size: clamp(2rem, 1vw, 2.2rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 1rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* India map & widgets */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }

.dw-chart  { display: flex; align-items: flex-end; gap: 3px; height: 40px; margin-bottom: .3rem; }
.dw-bar    { width: 12px; border-radius: 2px 2px 0 0; }
.dw-value  { color: var(--gold); font-weight: 700; font-size: 1.1rem; }
.dw-donut  { display: flex; justify-content: center; }
.dw-trend  { color: #22C55E; font-weight: 700; font-size: .9rem; }

/* Stats bar */
.stats-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: rgba(3, 2, 24, 0.334);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background var(--trans), transform var(--trans);
}
.stat-card:hover { background: rgba(244,182,61,.1); transform: translateY(-3px); }
.stat-icon { font-size: 1.8rem; }
.stat-info { display: flex; flex-direction: column; }
.stat-num  { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-suf  { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.stat-label { color: rgba(255,255,255,.6); font-size: .78rem; margin-top: .2rem; }

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-we-are { background: var(--bg-light); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wwa-image { position: relative; border-radius: var(--radius); overflow: visible; }
.wwa-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
/* WHO WE ARE */
.who-we-are { background: #fff; }

.wwa-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.wwa-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  display: block;
}

.wwa-title {
  color: var(--navy) !important;
}

.wwa-title .gold {
  color: var(--navy) !important;
}

.section-desc {
  color: #475569;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Feature cards – icon only style */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.feat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 0.8rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  background: #fff;
  gap: 0.7rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feat-card:hover {
  box-shadow: 0 6px 24px rgba(8,26,58,0.10);
  transform: translateY(-3px);
}

.feat-icon {
  font-size: 1.8rem;
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-card strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.feat-card p { display: none; }

/* ============================================================
   EVOLUTION
   ============================================================ */

.evolution { background: #fff; }

/* Title with lines */
.evo-title-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}
.evo-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, transparent, #CBD5E1);
}
.evo-title-wrap .evo-line:last-child {
  background: linear-gradient(to left, transparent, #CBD5E1);
}
.evo-heading {
  margin-bottom: 0;
  white-space: nowrap;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--navy);
}
.evo-heading span { color: var(--navy); }

/* Cards row */
.evo-cards {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.evo-card {
  flex: 1;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(8,26,58,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.evo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(8,26,58,0.13);
}

/* Inner: text left, image right */
.evo-card-inner {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.evo-card-left {
  flex: 1.2;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.evo-card-right {
  flex: 0 0 120px;
  overflow: hidden;
}
.evo-card-right {
  flex: 0 0 140px;
  position: relative;
  overflow: hidden;
}

.evo-card-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #fff 0%,
    rgba(255,255,255,0.6) 25%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.evo-card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 12px 12px 0;
}

/* Era tag */
.evo-era-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  width: fit-content;
}
.evo-era-tag.trad {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
}
.evo-era-tag.digi {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}
.evo-era-tag.ai {
  background: #F5F3FF;
  color: #7C3AED;
  border: 1px solid #DDD6FE;
}

/* List */
.evo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.evo-list li {
  font-size: 0.84rem;
  color: #334155;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}
.evo-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #94A3B8;
  font-size: 0.9rem;
}

/* Arrow */
.evo-arrow {
  font-size: 1.8rem;
  color: #1E293B;
  font-weight: 900;
  flex-shrink: 0;
  padding: 0 0.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .evo-cards { flex-direction: column; gap: 1rem; }
  .evo-arrow { transform: rotate(90deg); }
  .evo-title-wrap { flex-direction: column; gap: 0.5rem; }
  .evo-line { width: 80px; flex: none; }
  .evo-heading { white-space: normal; text-align: center; }
  .evo-card-right { flex: 0 0 100px; }
}

.evo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.evo-img-wrap { height: 180px; overflow: hidden; }
.evo-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.evo-card:hover .evo-img-wrap img { transform: scale(1.05); }
.evo-body { padding: 1.4rem; }

.trad { background: rgba(8,26,58,.1); color: var(--navy); }
.digi { background: rgba(59,130,246,.12); color: var(--blue-mid); }
.futu { background: rgba(244,182,61,.15); color: var(--gold-dk); }

.evo-body ul li {
  font-size: .85rem;
  color: #475569;
  padding: .3rem 0;
  border-bottom: 1px dashed #E2E8F0;
  display: flex; align-items: center; gap: .5rem;
}
.evo-body ul li::before { content: '•'; color: var(--gold); font-size: 1rem; }


/* ============================================================
   OUR EXPERTISE
   ============================================================ */
.expertise { background: var(--bg-light); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: pointer;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(8,26,58,.18), 0 0 0 2px var(--gold);
  border-color: var(--gold);
}
.exp-icon { font-size: 2.2rem; }
.exp-card h3 { font-size: .88rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.exp-card p  { font-size: .78rem; color: #64748B; line-height: 1.5; flex: 1; }
.exp-learn   { font-size: .78rem; color: var(--blue-mid); font-weight: 600; margin-top: auto; }
.exp-card:hover .exp-learn { color: var(--gold); }

/* ============================================================
   ELECTION INTELLIGENCE CENTER
   ============================================================ */
.intel-center {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 4rem 0;
}

.intel-title { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.intel-desc  { color: rgba(255,255,255,.7); line-height: 1.7; font-size: .95rem; }

.intel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem 0.8rem;
  border: 2px solid #db9302;
  border-radius: 10px;
  background: #F4B63D;
  gap: 0.7rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
/* ============================================================
   ELECTION INTELLIGENCE CENTER
   ============================================================ */
.intel-section {
  background: #07122b;
  padding: 2.5rem 2rem;
  overflow-x: auto;
}

.intel-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

/* Left text block */
.intel-left {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding-right: 1.5rem;
}

.intel-title {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.intel-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.intel-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.1rem;
  width: fit-content;
}

/* Dashboard panels */
.dash-panel {
  flex: 1;
  min-width: 140px;
  background: #0d1f3c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dp-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.3rem;
}

/* Heat map image */
.dp-map {
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  min-height: 120px;
}
.heatmap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Sentiment legend */
.dp-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.dp-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dp-legend i {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dp-sentiment {
  font-size: 1.3rem;
  font-weight: 800;
  color: #F4B63D;
  margin-top: 4px;
}
.dp-sentiment span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  display: block;
}

/* Demographic */
.dp-demo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.demo-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
}
.demo-legend div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.demo-legend span {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 8px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.demo-stats b { color: white; margin-left: 3px; }

/* Big number */
.dp-big-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #22C55E;
  line-height: 1;
  margin-top: 4px;
}
.dp-sub-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .intel-inner {
    flex-wrap: wrap;
  }
  .intel-left { flex: 0 0 100%; padding-right: 0; }
  .dash-panel { flex: 0 0 calc(50% - 0.5rem); }
}

@media (max-width: 600px) {
  .dash-panel { flex: 0 0 100%; }
}

.dash-panel:hover { background: rgba(255,255,255,.12); }
.dp-title { font-size: .72rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .7rem; }

/* Heat map */
.heat-map { display: flex; gap: .5rem; align-items: flex-start; }
.hm-india { flex: 1; max-width: 80px; }
.hm-legend { display: flex; flex-direction: column; gap: .4rem; font-size: .68rem; }
.hm-legend span { display: flex; align-items: center; gap: .3rem; }
.hm-legend span::before { content:''; display:inline-block; width:10px; height:10px; border-radius:2px; background: var(--c); }

/* Demographic */
.demo-row { display: flex; align-items: center; gap: .8rem; }
.demo-legend { font-size: .7rem; display: flex; flex-direction: column; gap: .35rem; }
.demo-legend div { display: flex; align-items: center; gap: .4rem; }
.demo-legend span { display:inline-block; width:10px; height:10px; border-radius:50%; background: var(--c); }

/* News monitoring */
.news-count { text-align: center; margin-bottom: .5rem; }
.nc-num   { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--gold); display: block; }
.nc-label { font-size: .68rem; color: var(--text-muted); }
.news-bars { display: flex; align-items: flex-end; gap: 3px; height: 45px; }
.nb { flex: 1; border-radius: 2px 2px 0 0; }

/* Campaign performance */
.perf-big   { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: #22C55E; }
.perf-label { font-size: .7rem; color: var(--text-muted); margin-bottom: .5rem; }
.perf-bar-wrap { background: rgba(255,255,255,.15); border-radius: 20px; height: 6px; margin-bottom: .4rem; overflow: hidden; }
.perf-bar { height: 100%; background: linear-gradient(90deg, #22C55E, #86EFAC); border-radius: 20px; }

/* ============================================================
   OUR PROVEN PROCESS
   ============================================================ */
/* ============================================================
   OUR PROVEN PROCESS
   ============================================================ */
.process { background: #fff; }

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  gap: 0;
  padding-top: 1rem;
}

/* Horizontal center line */


/* Each step */
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
  max-width: 140px;
}

/* Icon circle */
.proc-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c);
  position: relative;
  margin-bottom: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.proc-icon-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Number badge */
.proc-num-badge {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Step text */
.proc-step h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.proc-step p {
  font-size: 0.72rem;
  color: #64748B;
  line-height: 1.5;
}

/* Arrow */
.proc-arrow {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1E293B;
  flex-shrink: 0;
  margin-top: 20px;
  padding: 0 0.1rem;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .process-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .process-timeline::before { display: none; }
  .proc-arrow { display: none; }
  .proc-step { max-width: 120px; }
}

@media (max-width: 480px) {
  .proc-step { max-width: 100px; }
}
.proc-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }


.proc-step h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.proc-step p  { font-size: .75rem; color: #64748B; line-height: 1.5; }


/* ============================================================
   ACHIEVEMENT COUNTER
   ============================================================ */
.achievement {
  background: #07122b;
  padding: 2rem 2rem;
}

.ach-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}

.ach-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2.5rem;
  flex: 1;
  justify-content: center;
}

.ach-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.ach-icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.9;
}

.ach-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ach-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.ach-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .ach-grid { flex-wrap: wrap; gap: 1rem; }
  .ach-divider { display: none; }
  .ach-item {
    flex: 0 0 calc(50% - 1rem);
    justify-content: flex-start;
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .ach-item { flex: 0 0 100%; }
  .ach-num  { font-size: 1.7rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-light); }
.contact-grid {
  display: flex;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
.contact-info h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.ci-item { display: flex; gap: .8rem; margin-bottom: 1rem; }
.ci-item span { font-size: 1.1rem; flex-shrink: 0; }
.ci-item p { font-size: .87rem; color: #475569; line-height: 1.6; }
.social-links { display: flex; gap: .6rem; margin-top: 1.5rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
  transition: background var(--trans), transform var(--trans);
}
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cf-input {
  font-family: var(--font-body);
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.cf-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,182,61,.2); }
.cf-input.full  { width: 100%; display: block; margin-bottom: 1rem; }
.cf-textarea    { height: 110px; resize: vertical; }
.full-btn       { width: 100%; padding: 1rem; font-size: 1rem; }

.contact-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.cb-logo { justify-content: flex-start; }
.cb-tagline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 1.4rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-links { display: flex; gap: .8rem; align-items: center; }
.footer-links a { color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1280px ──────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-inner { grid-template-columns: 1fr; }
  .intel-left { max-width: 600px; }
}

/* ── 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3.5rem 1.5rem 2rem;
  }
  .merged-hero-img {
    width: 100%;
    opacity: 0.3;
  }
  .hero-dashboard-img {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero::before {
    background: rgba(4,12,31,0.78);
  }
  .hero-left { max-width: 100%; }
  .stats-bar {
    grid-template-columns: repeat(2,1fr);
    padding: 0 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .hero-inner { padding: 2.5rem 1.2rem 1.5rem; }
  .hero-title { font-size: 1.6rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 0 1rem 1.5rem; gap: .8rem; }
  .stat-card { padding: .9rem 1rem; }
}

/* ── 768px ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-inner { padding: 3rem 1.5rem 2rem; }
  .stats-bar { padding: 0 1.5rem 2rem; gap: 1rem; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .evo-cards { flex-direction: column; }
  .evo-arrow { transform: rotate(90deg); padding: .5rem 0; font-size: 1.5rem; }
  .feature-cards { grid-template-columns: 1fr; }
  .process-timeline { flex-wrap: wrap; justify-content: center; }
  .proc-step { min-width: 140px; max-width: 160px; }
  .dash-grid { grid-template-columns: 1fr; }
}

/* ── 480px ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .ach-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
}

/* ── 375px ───────────────────────────────────────────────── */
@media (max-width: 375px) {
  .container { padding: 0 1rem; }
  .header-inner { padding: .7rem 1rem; }
  .stats-bar { padding: 0 1rem 2rem; }
  .ach-grid { grid-template-columns: 1fr; }
}

.stat-icon i,
.feat-icon i,
.exp-icon i,
.proc-icon i,
.ach-icon i,
.ci-item i {
    font-size: 1.8rem;
    color: #F4B63D;
}

/* ====================================
   MERGED HERO – FINAL PERFECT
==================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: #040c1f;
  min-height: 520px;
}

/* Background image – right side only */
.merged-hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 100%;
  z-index: 0;
}

.hero-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.3) 12%,
    rgba(0,0,0,0.75) 28%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,1) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.3) 12%,
    rgba(0,0,0,0.75) 28%,
    rgba(0,0,0,1) 55%,
    rgba(0,0,0,1) 100%
  );
}

/* Left dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #040c1f 0%,
    #040c1f 22%,
    rgba(4,12,31,0.82) 38%,
    rgba(4,12,31,0.30) 58%,
    transparent 100%
  );
  z-index: 1;
}

/* Blue glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 62% 38%,
    rgba(30,100,220,0.18),
    transparent 50%
  );
  z-index: 1;
}

/* Hero inner layout */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: 480px;
}

/* Left text */
.hero-left {
  max-width: 540px;
}

.hero-eyebrow {
  display: none; /* hidden like reference */
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}

.hero-desc {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right side empty (image is bg) */
.hero-right {
  display: block;
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem;
    gap: .3rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem 1rem; border-radius: 6px; font-size: .9rem; }
  .hamburger { display: flex; }
  .header-inner .btn-gold { display: none; }
  .header-inner { position: relative; }

  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .wwa-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .ach-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { gap: .3rem; }
  .proc-arrow { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3rem 0; }
  .container { padding: 0 1.2rem; }
  .hero-inner { padding: 3rem 1.2rem 2rem; }
  .stats-bar { padding: 0 1.2rem 2rem; gap: 1rem; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .evo-cards { flex-direction: column; align-items: stretch; }
  .evo-arrow { transform: rotate(90deg); padding: .5rem 0; font-size: 1.5rem; text-align: center; }
  .evo-card { width: 100%; }
  .evo-card-inner { flex-direction: column; }
  .evo-card-right { width: 100%; height: 180px; }
  .evo-card-right img { height: 180px; width: 100%; object-fit: cover; border-radius: 0 0 8px 8px; }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .proc-step { min-width: 130px; max-width: 150px; }
  .proc-arrow { display: none; }
  .dash-grid { grid-template-columns: 1fr; }
  .section-center-title { font-size: 1.5rem; margin-bottom: 2rem; }
  .contact-info h3 { font-size: 1.4rem; }
  .ach-grid { gap: .8rem; }
  .ach-divider { display: none; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .ach-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .cf-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; word-wrap: break-word; }
  .hero-desc { font-size: .9rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; width: 100%; }
  .stat-card { padding: 1rem; gap: .7rem; }
  .stat-num { font-size: 1.4rem; }
  .feat-card { padding: .9rem; }
  .section-title { font-size: 1.5rem; }
  .evo-card-left { padding: 1rem; }
  .evo-list li { font-size: .85rem; }
  .proc-step { min-width: 120px; max-width: 130px; }
  .hero-inner { padding: 2rem 1rem 1.5rem; }
  .hero-left { max-width: 100%; padding: 0 .25rem; }
  .hero-title, .subtitle, .hero-desc, .hero-btns { max-width: 100%; }
}

/* ============================================
   425px STRICT MOBILE FIX
============================================ */
@media (max-width: 425px) {
  .hero-inner {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: hidden;
  }
  .hero-left {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
  }
  .hero-title {
    font-size: 2.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .subtitle {
    font-size: 1rem;
    word-break: break-word;
    max-width: 100%;
  }
  .hero-desc {
    font-size: .85rem;
    max-width: 100%;
  }
  .merged-hero-img {
    width: 100%;
    left: 0;
    right: 0;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: 0 1rem 1.5rem;
    gap: .6rem;
  }
  .stat-card {
    width: 100%;
    box-sizing: border-box;
  }
  .container {
    width: 100%;
    padding: 0 1rem;
  }
}