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

:root {
  --blue: #1a56ff;
  --blue-mid: #4f75ff;
  --blue-light: #e8edff;
  --cyan: #00d4ff;
  --dark: #111320;
  --muted: #6b7280;
  --white: #ffffff;
  --off: #f7f8fc;
  --border: #e2e6f0;
  --live: #10b981;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', system-ui, sans-serif;
}

/* =========================
 HERO — MAIN HEAD
========================= */
.main-head {
  background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #0a1a3a 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.main-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.main-head::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 2rem clamp(4rem, 8vw, 7rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0;
}

.about-title span { color: var(--cyan); }

.about-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 300;
}

/* =========================
 VISION + STATS
========================= */
.second-head {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.second-card-details {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.our-vision {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vision-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue) !important;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.vision-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.vision-text {
  font-size: clamp(14px, 1.4vw, 16px);
  color: #6b7280 !important;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.vision-text:last-child { margin-bottom: 0; }

/* =========================
 STATS CARD
========================= */
.stats-card {
  flex: 0 0 auto;
  width: clamp(280px, 35vw, 380px);
  background: var(--dark);
  border: 1px solid rgba(26,86,255,0.2);
  border-radius: 20px;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(17,19,32,0.15);
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out both;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.stats-card::after {
  content: '';
  position: absolute;
  top: -100%; left: -100%;
  width: 60%; height: 300%;
  background: linear-gradient(90deg, transparent, rgba(26,86,255,0.06), transparent);
  transform: skewX(-20deg);
  animation: cardSweep 4s ease-in-out infinite;
}

.stat-item {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item:hover {
  background: rgba(26,86,255,0.12);
  border-color: rgba(26,86,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,86,255,0.2);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px 0;
  line-height: 1;
  animation: numberPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.stat-item:nth-child(1) .stat-number { animation-delay: 0.3s; }
.stat-item:nth-child(2) .stat-number { animation-delay: 0.5s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.7s; }

.stat-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255,255,255,0.55) !important;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* =========================
 CORE VALUES
========================= */
.core-values {
  background: var(--off);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.core-values-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.core-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.core-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #6b7280 !important;
  line-height: 1.75;
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,86,255,0.1);
}

.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}

.value-card:hover .value-icon { background: var(--blue); }

.value-icon i {
  font-size: 1.4rem;
  color: var(--blue) !important;
  transition: color 0.25s ease;
}

.value-card:hover .value-icon i { color: #fff !important; }

.value-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark) !important;
  margin: 0;
}

.value-description {
  font-size: 14px;
  color: #6b7280 !important;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* =========================
 PLATFORM CAPABILITIES
========================= */
.platform {
  background: var(--white);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.platform-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.platform-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.platfrom-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #6b7280 !important;
  line-height: 1.75;
  font-weight: 300;
}

.platfrom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.platfrom-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.platfrom-card:nth-child(1) { animation-delay: 0.1s; }
.platfrom-card:nth-child(2) { animation-delay: 0.2s; }
.platfrom-card:nth-child(3) { animation-delay: 0.3s; }

.platfrom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  opacity: 0;
  transition: opacity 0.25s;
}

.platfrom-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.platfrom-card:nth-child(2)::before { background: linear-gradient(90deg, var(--cyan), #00a8cc); }
.platfrom-card:nth-child(3)::before { background: linear-gradient(90deg, #f97316, #fb923c); }

.platfrom-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,86,255,0.1);
  background: var(--white);
}

.platfrom-card:hover::before { opacity: 1; }

.platfrom-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}

.platfrom-card:hover .platfrom-icon { background: var(--blue); }

.platfrom-icon i {
  font-size: 1.5rem;
  color: var(--blue) !important;
  transition: color 0.25s ease;
}

.platfrom-card:hover .platfrom-icon i { color: #fff !important; }

.platfrom-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark) !important;
  margin: 0;
}

.platfrom-card .platfrom-description {
  font-size: 14px;
  color: #6b7280 !important;
  line-height: 1.75;
  margin: 0;
  font-weight: 300;
}

/* =========================
 MEET OUR AGENTS
========================= */
.meet {
  background: var(--off);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.meet-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.meet-our-agents {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.meet-our-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #6b7280 !important;
  line-height: 1.75;
  font-weight: 300;
}

.agents-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.card-link { text-decoration: none; display: block; height: 100%; }
.card-link:hover { text-decoration: none; }

.agent-list-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
}

.agent-list-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity 0.25s;
}

.agent-list-section:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,86,255,0.1);
}

.agent-list-section:hover::before { opacity: 1; }

/* Agent badges */
.agent-list-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 4px;
}

.live-badge {
  background: rgba(16,185,129,0.08);
  color: var(--live) !important;
  border: 1px solid rgba(16,185,129,0.25);
}

.soon-badge {
  background: var(--off);
  color: var(--muted) !important;
  border: 1px solid var(--border);
}

.live-dot-small {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

.agent-list-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
  color: var(--dark) !important;
  margin: 0;
  transition: color 0.25s ease;
  line-height: 1.3;
}

.agent-list-section p {
  font-size: 13px;
  color: var(--muted) !important;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

.agent-list-section:hover h3 { color: var(--blue) !important; }

.explore {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.explore-btn {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(26,86,255,0.3);
}

.explore-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,86,255,0.4);
}

/* =========================
 EXPERIENCE / CTA
========================= */
.experience {
  background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #061030 100%);
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw); height: 500px;
  background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.experience-automation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 760px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.experience-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -2px;
  line-height: 1.05;
  margin: 0;
}

.experience-title span { color: var(--cyan) !important; }

.experience-description {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.6) !important;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
  font-weight: 300;
}

.view-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-view-agents {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  background: var(--blue);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(26,86,255,0.35);
}

.btn-view-agents:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-view-analytics {
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s ease;
}

.btn-view-analytics:hover {
  border-color: var(--cyan);
  color: var(--cyan) !important;
  transform: translateY(-2px);
}

.btn-view-agents i,
.btn-view-analytics i { font-size: 14px; transition: transform 0.2s ease; }

.btn-view-agents:hover i,
.btn-view-analytics:hover i { transform: translateX(3px); }

/* =========================
 KEYFRAMES
========================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes numberPop {
  0%   { opacity: 0; transform: scale(0.5); }
  70%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes cardSweep {
  0%   { left: -100%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

/* =========================
 RESPONSIVE — 1024px
========================= */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .platfrom-grid { grid-template-columns: repeat(2, 1fr); }
  .agents-list { grid-template-columns: repeat(2, 1fr); }
  .second-card-details { flex-direction: column; }
  .stats-card {
      width: 100%;
      max-width: 480px;
      flex-direction: row;
      gap: 1rem;
  }
  .stat-item { flex: 1; }
}

/* =========================
 RESPONSIVE — 768px
========================= */
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .platfrom-grid { grid-template-columns: 1fr; }
  .agents-list { grid-template-columns: 1fr; }
  .stats-card { flex-direction: column; max-width: 100%; }
  .view-buttons { flex-direction: column; width: 100%; }
  .btn-view-agents, .btn-view-analytics {
      width: 100%;
      justify-content: center;
  }
  .about-title { letter-spacing: -1.5px; }
}

/* =========================
 RESPONSIVE — 480px
========================= */
@media (max-width: 480px) {
  .about-title { letter-spacing: -1px; }
  .core-title,
  .platform-title,
  .meet-our-agents,
  .vision-title,
  .experience-title { letter-spacing: -0.5px; }
  .about-section { padding: 4rem 1.25rem 3rem; }
}

/* =========================
 ULTRA WIDE — 1600px+
========================= */
@media (min-width: 1600px) {
  .second-card-details,
  .values-grid,
  .platfrom-grid,
  .agents-list { max-width: 1400px; }
}