/* ============================================================
   DEEPREVEAL.AI :: Main Stylesheet
   ============================================================ */

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deep:        #060A13;
  --bg-card:        rgba(10, 15, 30, 0.65);
  --bg-card-hover:  rgba(15, 23, 42, 0.80);
  --indigo:         #4F46E5;
  --indigo-light:   #818CF8;
  --indigo-pale:    rgba(79, 70, 229, 0.15);
  --blue:           #3B82F6;
  --purple:         #7C3AED;
  --white:          #F8FAFC;
  --text-muted:     #94A3B8;
  --text-dim:       #64748B;
  --border:         rgba(79, 70, 229, 0.22);
  --border-hover:   rgba(79, 70, 229, 0.55);
  --glow:           rgba(79, 70, 229, 0.18);
  --nav-h:          72px;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --transition:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   BACKGROUND :: "Abyss Reveal" Effect
   ============================================================ */

/* Base dark layer */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(ellipse 100% 80% at 50% 100%, #0D1228 0%, #060A13 60%);
}

/* Floating aurora orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
}
.bg-orb-1 {
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(79,70,229,0.30) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orb-drift-1 28s ease-in-out infinite alternate;
}
.bg-orb-2 {
  width: 550px; height: 650px;
  background: radial-gradient(circle, rgba(59,130,246,0.22) 0%, transparent 70%);
  bottom: -180px; right: -100px;
  animation: orb-drift-2 32s ease-in-out infinite alternate;
}
.bg-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation: orb-drift-3 22s ease-in-out infinite alternate;
}
.bg-orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%);
  top: 20%; right: 15%;
  animation: orb-drift-4 18s ease-in-out infinite alternate;
}
@keyframes orb-drift-1 {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(80px,-60px) scale(1.08); }
  100% { transform: translate(40px,80px) scale(0.95); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-70px,-80px) scale(1.12); }
  100% { transform: translate(50px,40px) scale(0.92); }
}
@keyframes orb-drift-3 {
  0%   { transform: translate(0,0) scale(1); opacity: 0.8; }
  100% { transform: translate(-50px,60px) scale(1.15); opacity: 1; }
}
@keyframes orb-drift-4 {
  0%   { transform: translate(0,0); opacity: 0.7; }
  100% { transform: translate(30px,-50px); opacity: 1; }
}

/* Perspective depth grid */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(79,70,229,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(900px) rotateX(18deg) scale(1.25);
  transform-origin: 50% 0%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 25%, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 25%, black 65%, transparent 100%);
  pointer-events: none;
}

/* Horizontal scan sweep */
.bg-scan {
  position: fixed;
  left: 0; right: 0;
  height: 160px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(79,70,229,0.025) 20%,
    rgba(79,70,229,0.07)  50%,
    rgba(79,70,229,0.025) 80%,
    transparent 100%
  );
  animation: scan-sweep 12s linear infinite;
}
@keyframes scan-sweep {
  0%   { top: -160px; opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100vh; opacity: 0; }
}

/* Vertical data pulse lines */
.bg-pulse-line {
  position: fixed;
  width: 1px;
  top: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(79,70,229,0.15) 30%,
    rgba(79,70,229,0.35) 50%,
    rgba(79,70,229,0.15) 70%,
    transparent 100%
  );
  opacity: 0;
  animation: pulse-line 14s ease-in-out infinite;
}
.bg-pulse-line:nth-child(1) { left: 22%; animation-delay: 0s; }
.bg-pulse-line:nth-child(2) { left: 47%; animation-delay: 4s; }
.bg-pulse-line:nth-child(3) { left: 73%; animation-delay: 8s; }
@keyframes pulse-line {
  0%, 85%, 100% { opacity: 0; }
  40%, 60%      { opacity: 1; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 10, 19, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  position: relative;
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.nav-logo-mark .outer {
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 4px;
}
.nav-logo-mark .inner {
  position: absolute;
  left: 6px; top: 9px;
  width: 20px; height: 20px;
  border: 1.5px solid var(--indigo-light);
  border-radius: 4px;
}
.nav-logo-mark .corner-tr {
  position: absolute;
  left: 19px; top: 3px;
  width: 8px; height: 7px;
  border-top: 1.2px solid var(--indigo-light);
  border-right: 1.2px solid var(--indigo-light);
  opacity: 0.7;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #FFFFFF 0%, #C7D2FE 50%, var(--indigo-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nav-logo-text .dot-ai {
  font-weight: 700;
  color: var(--indigo-light);
  -webkit-text-fill-color: var(--indigo-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(79,70,229,0.12);
}
.nav-link.active { color: var(--indigo-light); }
.nav-cta {
  margin-left: 10px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  border-radius: 8px;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6, 10, 19, 0.97);
  backdrop-filter: blur(20px);
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 16px; padding: 12px 16px; }
.nav-mobile .nav-cta { text-align: center; margin-left: 0; padding: 14px; font-size: 16px; border-radius: 10px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.pt-nav { padding-top: var(--nav-h); }
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo-light);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}
h1, h2, h3, h4 { line-height: 1.2; }
.grad-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #C7D2FE 45%, var(--indigo-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.flex { display: flex; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(79,70,229,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,70,229,0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-indigo {
  background: transparent;
  color: var(--indigo-light);
  border: 1px solid var(--border);
}
.btn-outline-indigo:hover {
  background: var(--indigo-pale);
  border-color: var(--border-hover);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(79,70,229,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(79,70,229,0.15), 0 0 0 1px rgba(79,70,229,0.1);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-pale);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
  background: rgba(79,70,229,0.14);
  border: 1px solid rgba(79,70,229,0.3);
  color: var(--indigo-light);
  margin-bottom: 14px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-light);
  margin-bottom: 24px;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num .accent { color: var(--indigo-light); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
/* Hero visual side */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-ring-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(79,70,229,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-spin linear infinite;
}
.hero-ring:nth-child(1) { width: 90%;  height: 90%;  animation-duration: 60s;  border-color: rgba(79,70,229,0.35); border-style: dashed; }
.hero-ring:nth-child(2) { width: 70%;  height: 70%;  animation-duration: 45s;  animation-direction: reverse; }
.hero-ring:nth-child(3) { width: 50%;  height: 50%;  animation-duration: 30s;  border-color: rgba(59,130,246,0.3); }
.hero-ring:nth-child(4) { width: 30%;  height: 30%;  animation-duration: 20s;  animation-direction: reverse; border-color: rgba(124,58,237,0.4); }
.hero-ring-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo-light);
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px 3px var(--indigo);
}
.hero-ring-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(79,70,229,0.5) 0%, transparent 70%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring-core-inner {
  width: 40px; height: 40px;
  background: var(--indigo);
  border-radius: 50%;
  box-shadow: 0 0 30px 10px rgba(79,70,229,0.5);
}
@keyframes ring-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ============================================================
   FEATURES / PILLARS
   ============================================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--indigo-light);
  opacity: 0.6;
  margin-bottom: 16px;
}

/* ============================================================
   SOLUTIONS GRID & FILTER
   ============================================================ */
.sol-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sol-filter-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.sol-filter-btn:hover, .sol-filter-btn.active {
  background: var(--indigo-pale);
  border-color: var(--indigo);
  color: var(--indigo-light);
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sol-card { display: flex; flex-direction: column; }
.sol-card .card-body { flex: 1; }
.sol-card h3 { font-size: 16px; margin-bottom: 8px; }
.sol-card p  { font-size: 13.5px; }

/* ============================================================
   PARTNERSHIPS
   ============================================================ */
.partner-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.partner-type {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.partner-type:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}
.partner-type .pt-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.partner-type h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.partner-type p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.value-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.value-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.contact-info p  { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; line-height: 1.75; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.contact-item:hover { border-color: var(--border-hover); }
.contact-item-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo-pale);
  border-radius: 10px;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-text { font-size: 14px; }
.contact-item-label { font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-item-val   { color: var(--text-muted); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(6,10,19,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.form-group select option { background: #0A0F1E; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}
.alert-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86EFAC;
}
.alert-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #FCA5A5;
}

/* ============================================================
   MISSION BLOCK
   ============================================================ */
.mission-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--blue), var(--indigo), transparent);
}
.mission-quote {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ============================================================
   WHO WE SERVE SECTION
   ============================================================ */
.serve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.serve-item {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--bg-card);
  transition: all var(--transition);
}
.serve-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}
.serve-icon { font-size: 32px; margin-bottom: 14px; }
.serve-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.serve-item p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(79,70,229,0.18) 0%, rgba(59,130,246,0.12) 100%);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
}
.cta-banner h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-banner p  { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(6,10,19,0.95);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #FFFFFF, var(--indigo-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--indigo-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--indigo-light); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 18px; }
.page-hero p   { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-muted); max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ============================================================
   DIVIDERS
   ============================================================ */
.h-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  border: none;
}
.section-intro {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-intro h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.section-intro p { font-size: 16px; color: var(--text-muted); line-height: 1.75; }
.section-intro.center { margin: 0 auto 56px; text-align: center; }

/* ============================================================
   REVEAL ANIMATIONS (JS-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillar-grid, .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-types { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .hero-inner { gap: 40px; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .partner-types { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-block { padding: 36px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .cta-banner { padding: 48px 28px; }
}
@media (max-width: 480px) {
  .partner-types { grid-template-columns: 1fr; }
  .serve-grid    { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero h1       { letter-spacing: -1px; }
}
