/* ===================================================
   EduLabs Design System — V2 Visual Uplift
   Fonts: DM Sans (headings) + Inter (body)
   BEM prefix: el-
   =================================================== */

/* --- CSS Custom Properties --- */
:root {
  --el-deep-blue: #1a365d;
  --el-blue-dark: #122745;
  --el-blue-light: #234e82;
  --el-orange: #e8740c;
  --el-orange-dark: #cc6300;
  --el-orange-light: #ff8c2a;
  --el-teal: #0d9488;
  --el-teal-light: #14b8a6;
  --el-white: #ffffff;
  --el-cream: #fef8f0;
  --el-slate: #334155;
  --el-near-black: #0f172a;
  --el-gray: #f7f8fa;
  --el-gray-200: #e2e8f0;
  --el-gray-400: #94a3b8;
  --el-gray-600: #64748b;
  --el-gray-800: #1e293b;
  --el-gray-900: #0f172a;
  --el-font-heading: 'DM Sans', sans-serif;
  --el-font-body: 'Inter', sans-serif;
  --el-radius: 12px;
  --el-radius-sm: 8px;
  --el-radius-lg: 20px;
  --el-radius-xl: 24px;
  --el-shadow: 0 4px 24px rgba(26, 54, 93, 0.08);
  --el-shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.12);
  --el-shadow-blue: 0 8px 30px rgba(26, 54, 93, 0.18);
  --el-shadow-orange: 0 8px 30px rgba(232, 116, 12, 0.2);
  --el-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --el-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CSS @property for counter animation --- */
@property --num-items {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

@property --num-years {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

@property --num-institutions {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

@property --num-platforms {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--el-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--el-slate);
  background-color: var(--el-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--el-font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  color: var(--el-gray-800);
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--el-transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Top Brand Bar --- */
.el-topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--el-orange), var(--el-orange-light), var(--el-orange));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1060;
}

/* --- Scroll Reveal --- */
.el-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.el-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.el-reveal--d1 { transition-delay: 0.1s; }
.el-reveal--d2 { transition-delay: 0.2s; }
.el-reveal--d3 { transition-delay: 0.3s; }
.el-reveal--d4 { transition-delay: 0.4s; }
.el-reveal--d5 { transition-delay: 0.5s; }
.el-reveal--d6 { transition-delay: 0.6s; }

/* --- Section Shared --- */
.el-section {
  padding: 100px 0;
  position: relative;
}

.el-section--gray {
  background-color: var(--el-gray);
}

.el-section--cream {
  background-color: var(--el-cream);
}

.el-section__label {
  font-family: var(--el-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--el-orange);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.el-section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--el-orange);
  border-radius: 1px;
}

.el-section__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.el-section__subtitle {
  font-size: 18px;
  color: var(--el-gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Buttons --- */
.el-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--el-font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--el-transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.el-btn--orange {
  background-color: var(--el-orange);
  color: var(--el-white);
  border-color: var(--el-orange);
}

.el-btn--orange:hover {
  background-color: var(--el-orange-dark);
  border-color: var(--el-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--el-shadow-orange);
  color: var(--el-white);
}

.el-btn--outline-white {
  background-color: transparent;
  color: var(--el-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.el-btn--outline-white:hover {
  background-color: var(--el-white);
  color: var(--el-deep-blue);
  border-color: var(--el-white);
  transform: translateY(-2px);
}

.el-btn--white {
  background-color: var(--el-white);
  color: var(--el-orange);
  border-color: var(--el-white);
}

.el-btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--el-orange);
}

.el-btn--blue {
  background-color: var(--el-deep-blue);
  color: var(--el-white);
  border-color: var(--el-deep-blue);
}

.el-btn--blue:hover {
  background-color: var(--el-blue-light);
  border-color: var(--el-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--el-shadow-blue);
  color: var(--el-white);
}

.el-btn--outline-blue {
  background-color: transparent;
  color: var(--el-deep-blue);
  border-color: var(--el-deep-blue);
}

.el-btn--outline-blue:hover {
  background-color: var(--el-deep-blue);
  color: var(--el-white);
  transform: translateY(-2px);
  box-shadow: var(--el-shadow-blue);
}

.el-btn--sm {
  padding: 10px 24px;
  font-size: 14px;
}

.el-btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}

/* ===================================================
   1. NAVBAR
   =================================================== */
.el-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  z-index: 1050;
  transition: all var(--el-transition);
  border-bottom: 1px solid transparent;
  top: 3px;
}

.el-navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--el-gray-200);
  box-shadow: 0 2px 20px rgba(26, 54, 93, 0.06);
}

.el-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.el-navbar__logo img {
  height: 40px;
  width: auto;
  transition: height var(--el-transition);
}

.el-navbar.scrolled .el-navbar__logo img {
  height: 34px;
}

.el-navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.el-navbar__link {
  font-family: var(--el-font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--el-slate);
  position: relative;
  padding: 4px 0;
}

.el-navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--el-orange), var(--el-orange-light));
  transition: width var(--el-transition);
  border-radius: 1px;
}

.el-navbar__link:hover,
.el-navbar__link--active {
  color: var(--el-deep-blue);
}

.el-navbar__link:hover::after,
.el-navbar__link--active::after {
  width: 100%;
}

.el-navbar__cta .el-btn {
  padding: 10px 28px;
}

/* Mobile toggle */
.el-navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.el-navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--el-deep-blue);
  border-radius: 2px;
  transition: all var(--el-transition);
}

/* ===================================================
   2. HERO
   =================================================== */
.el-hero {
  position: relative;
  background: linear-gradient(135deg, var(--el-near-black) 0%, var(--el-deep-blue) 40%, var(--el-blue-light) 100%);
  padding: 160px 0 120px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Grid pattern background */
.el-hero::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;
}

/* Radial gradient overlay */
.el-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 116, 12, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.el-hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.el-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 116, 12, 0.15);
  border: 1px solid rgba(232, 116, 12, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--el-font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--el-orange-light);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.el-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--el-orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.el-hero__heading {
  font-size: 60px;
  font-weight: 700;
  color: var(--el-white);
  margin-bottom: 24px;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.el-hero__heading span {
  background: linear-gradient(135deg, var(--el-orange), var(--el-orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.el-hero__subtitle {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 480px;
}

.el-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero illustration container */
.el-hero__illustration {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.el-hero__illustration svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* Decorative floating shapes */
.el-hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--el-white);
  pointer-events: none;
}

.el-hero__shape--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.el-hero__shape--2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: 25%;
}

.el-hero__shape--3 {
  width: 140px;
  height: 140px;
  top: 25%;
  right: 10%;
  border-radius: 28px;
  transform: rotate(45deg);
  background: var(--el-orange);
  opacity: 0.07;
}

/* ===================================================
   3. STATS BAR
   =================================================== */
.el-stats {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  padding-bottom: 40px;
}

.el-stats__inner {
  background: var(--el-white);
  border-radius: var(--el-radius-xl);
  padding: 0;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  overflow: hidden;
}

/* Animated gradient top border */
.el-stats__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--el-orange),
    var(--el-orange-light),
    var(--el-teal),
    var(--el-orange-light),
    var(--el-orange));
  background-size: 200% 100%;
  animation: shimmer-border 3s ease-in-out infinite;
}

@keyframes shimmer-border {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.el-stats__item {
  text-align: center;
  position: relative;
  padding: 48px 32px;
}

.el-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--el-gray-200);
}

.el-stats__number {
  font-family: var(--el-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--el-orange);
  line-height: 1;
  margin-bottom: 8px;
}

.el-stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--el-gray-600);
  letter-spacing: 0.3px;
}

/* Counter animation for stats */
.el-stats__item--items .el-stats__number {
  --num-items: 0;
  transition: --num-items 2s ease-out;
}

.el-stats__item--items.is-counted .el-stats__number {
  --num-items: 60;
}

.el-stats__item--years .el-stats__number {
  --num-years: 0;
  transition: --num-years 2s ease-out;
}

.el-stats__item--years.is-counted .el-stats__number {
  --num-years: 10;
}

.el-stats__item--institutions .el-stats__number {
  --num-institutions: 0;
  transition: --num-institutions 2s ease-out;
}

.el-stats__item--institutions.is-counted .el-stats__number {
  --num-institutions: 500;
}

.el-stats__item--platforms .el-stats__number {
  --num-platforms: 0;
  transition: --num-platforms 2s ease-out;
}

.el-stats__item--platforms.is-counted .el-stats__number {
  --num-platforms: 3;
}

/* ===================================================
   4. USE CASES
   =================================================== */
.el-usecases {
  padding: 100px 0;
  background: var(--el-cream);
  position: relative;
  overflow: hidden;
}

/* Orange decorative dots */
.el-usecases::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 40px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--el-orange) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
  pointer-events: none;
}

.el-usecases::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, var(--el-deep-blue) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.1;
  pointer-events: none;
}

/* Featured card (first card, large) */
.el-usecase-card {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 40px 36px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--el-transition);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--el-orange);
}

.el-usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-shadow-lg);
  border-color: transparent;
  border-left-color: var(--el-orange);
}

.el-usecase-card--featured {
  background: linear-gradient(135deg, var(--el-deep-blue) 0%, var(--el-blue-light) 100%);
  border: none;
  border-left: 4px solid var(--el-orange);
  color: var(--el-white);
}

.el-usecase-card--featured:hover {
  border-left-color: var(--el-orange-light);
}

.el-usecase-card--featured .el-usecase-card__tag {
  background: rgba(232, 116, 12, 0.2);
  color: var(--el-orange-light);
}

.el-usecase-card--featured .el-usecase-card__title {
  color: var(--el-white);
}

.el-usecase-card--featured .el-usecase-card__text {
  color: rgba(255, 255, 255, 0.8);
}

.el-usecase-card--teal {
  border-left-color: var(--el-teal);
}

.el-usecase-card--teal .el-usecase-card__tag {
  background: rgba(13, 148, 136, 0.08);
  color: var(--el-teal);
}

.el-usecase-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(232, 116, 12, 0.12), rgba(232, 116, 12, 0.04));
  transition: all var(--el-transition);
}

.el-usecase-card:hover .el-usecase-card__icon-wrap {
  background: linear-gradient(135deg, var(--el-orange), var(--el-orange-light));
  transform: rotate(-5deg);
}

.el-usecase-card--featured .el-usecase-card__icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.el-usecase-card--featured:hover .el-usecase-card__icon-wrap {
  background: var(--el-orange);
}

.el-usecase-card__icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--el-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-usecase-card:hover .el-usecase-card__icon-wrap svg {
  stroke: var(--el-white);
}

.el-usecase-card--featured .el-usecase-card__icon-wrap svg {
  stroke: var(--el-orange-light);
}

.el-usecase-card__tag {
  display: inline-block;
  font-family: var(--el-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--el-orange);
  background: rgba(232, 116, 12, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.el-usecase-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 16px;
}

.el-usecase-card__text {
  font-size: 15px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================================
   5. FEATURES — Card Grid
   =================================================== */
.el-features {
  padding: 100px 0;
  background: var(--el-gray);
  position: relative;
  overflow: hidden;
}

.el-features::before {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--el-orange) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.1;
  pointer-events: none;
}

/* Feature cards in a grid */
.el-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.el-feature-card-v2 {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--el-deep-blue);
  transition: all var(--el-transition);
  position: relative;
}

.el-feature-card-v2:nth-child(even) {
  border-top-color: var(--el-orange);
}

.el-feature-card-v2:nth-child(3n) {
  border-top-color: var(--el-teal);
}

.el-feature-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-shadow-lg);
}

.el-feature-card-v2__number {
  font-family: var(--el-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--el-gray-200);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--el-transition);
}

.el-feature-card-v2:hover .el-feature-card-v2__number {
  color: rgba(232, 116, 12, 0.2);
}

.el-feature-card-v2__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--el-deep-blue), var(--el-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--el-transition);
}

.el-feature-card-v2:nth-child(even) .el-feature-card-v2__icon {
  background: linear-gradient(135deg, var(--el-orange), var(--el-orange-light));
}

.el-feature-card-v2:nth-child(3n) .el-feature-card-v2__icon {
  background: linear-gradient(135deg, var(--el-teal), var(--el-teal-light));
}

.el-feature-card-v2:hover .el-feature-card-v2__icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.el-feature-card-v2__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--el-white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.el-feature-card-v2__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-feature-card-v2__text {
  font-size: 15px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Keep legacy row styles for backwards compatibility */
.el-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 48px 0;
  position: relative;
}

.el-feature-row:not(:last-child) {
  border-bottom: 1px solid var(--el-gray-200);
}

.el-feature-row--reverse {
  flex-direction: row-reverse;
}

.el-feature-row__content {
  flex: 1;
  min-width: 0;
}

.el-feature-row__watermark {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.el-feature-row__number {
  font-family: var(--el-font-heading);
  font-size: 140px;
  font-weight: 700;
  color: var(--el-gray-200);
  line-height: 1;
  user-select: none;
  transition: color var(--el-transition-slow);
}

.el-feature-row:hover .el-feature-row__number {
  color: rgba(232, 116, 12, 0.1);
}

.el-feature-row__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--el-deep-blue), var(--el-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--el-transition);
}

.el-feature-row:hover .el-feature-row__icon {
  background: linear-gradient(135deg, var(--el-orange), var(--el-orange-light));
  transform: rotate(-5deg);
  box-shadow: var(--el-shadow-orange);
}

.el-feature-row__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--el-white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.el-feature-row__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-feature-row__text {
  font-size: 16px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 480px;
}

/* Legacy feature card support for inner pages */
.el-feature-card {
  background: var(--el-white);
  border: 1px solid var(--el-gray-200);
  border-radius: var(--el-radius-lg);
  border-left: 4px solid var(--el-deep-blue);
  padding: 36px 28px;
  height: 100%;
  transition: all var(--el-transition);
}

.el-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-shadow-lg);
  border-color: transparent;
  border-left-color: var(--el-orange);
}

.el-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.08), rgba(26, 54, 93, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--el-transition);
}

.el-feature-card:hover .el-feature-card__icon {
  background: linear-gradient(135deg, var(--el-deep-blue), var(--el-blue-light));
  transform: rotate(-5deg);
}

.el-feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--el-deep-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-feature-card:hover .el-feature-card__icon svg {
  stroke: var(--el-white);
}

.el-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-feature-card__text {
  font-size: 14px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================================
   6. PARTNERS — Marquee Strip
   =================================================== */
.el-partners {
  padding: 80px 0;
  background: var(--el-white);
  overflow: hidden;
  position: relative;
}

.el-partners__heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--el-gray-600);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.el-partners__strip {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.el-partners__strip:hover {
  animation-play-state: paused;
}

.el-partners__logo {
  height: 56px;
  width: auto;
  filter: grayscale(30%) opacity(0.75);
  transition: all var(--el-transition);
  flex-shrink: 0;
}

.el-partners__logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* Fade edges */
.el-partners__track {
  position: relative;
  overflow: hidden;
}

.el-partners__track::before,
.el-partners__track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.el-partners__track::before {
  left: 0;
  background: linear-gradient(90deg, var(--el-white), transparent);
}

.el-partners__track::after {
  right: 0;
  background: linear-gradient(-90deg, var(--el-white), transparent);
}

/* Legacy logos layout for inner pages */
.el-partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===================================================
   7. HIGHLIGHT — LiveOlympiad Full Width
   =================================================== */
.el-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--el-near-black) 0%, var(--el-deep-blue) 60%, var(--el-blue-light) 100%);
  padding: 100px 0;
  overflow: hidden;
}

.el-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(232, 116, 12, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

/* Grid pattern */
.el-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.el-highlight__content {
  position: relative;
  z-index: 2;
}

.el-highlight__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--el-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--el-orange-light);
  margin-bottom: 20px;
}

.el-highlight__label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--el-orange);
  border-radius: 1px;
}

.el-highlight__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--el-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.el-highlight__text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.el-highlight__card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--el-radius-xl);
  padding: 48px;
  text-align: center;
  transition: all var(--el-transition);
}

.el-highlight__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.el-highlight__logo {
  max-width: 220px;
  border-radius: var(--el-radius);
  margin-bottom: 20px;
}

.el-highlight__card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===================================================
   8. CTA
   =================================================== */
.el-cta {
  position: relative;
  background: linear-gradient(135deg, var(--el-orange) 0%, var(--el-orange-light) 50%, #f59e0b 100%);
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

/* Pattern background */
.el-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.el-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.el-cta__content {
  position: relative;
  z-index: 2;
}

.el-cta__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--el-white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.el-cta__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===================================================
   9. FOOTER
   =================================================== */
.el-footer {
  background-color: var(--el-near-black);
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

/* Top gradient accent bar */
.el-footer__accent {
  height: 4px;
  background: linear-gradient(90deg,
    var(--el-orange),
    var(--el-orange-light),
    rgba(232, 116, 12, 0.3),
    transparent);
}

.el-footer__inner {
  padding: 80px 0 0;
}

.el-footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.el-footer__tagline {
  font-family: var(--el-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--el-white);
  margin-bottom: 16px;
}

.el-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 300px;
  margin-bottom: 24px;
}

/* Social icons */
.el-footer__social {
  display: flex;
  gap: 12px;
}

.el-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--el-transition);
}

.el-footer__social-link:hover {
  background: var(--el-orange);
  transform: translateY(-2px);
}

.el-footer__social-link svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255, 255, 255, 0.6);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-footer__social-link:hover svg {
  stroke: var(--el-white);
}

.el-footer__heading {
  font-family: var(--el-font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--el-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.el-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.el-footer__links li {
  margin-bottom: 14px;
}

.el-footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--el-transition);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.el-footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--el-orange);
  transition: width var(--el-transition), margin var(--el-transition);
  display: inline-block;
}

.el-footer__links a:hover {
  color: var(--el-orange);
}

.el-footer__links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

/* Newsletter input */
.el-footer__newsletter {
  margin-top: 24px;
}

.el-footer__newsletter-wrap {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.el-footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--el-white);
  font-family: var(--el-font-body);
  font-size: 14px;
  outline: none;
}

.el-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.el-footer__newsletter-btn {
  padding: 12px 20px;
  background: var(--el-orange);
  border: none;
  color: var(--el-white);
  font-family: var(--el-font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--el-transition);
  white-space: nowrap;
}

.el-footer__newsletter-btn:hover {
  background: var(--el-orange-dark);
}

.el-footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  align-items: flex-start;
}

.el-footer__contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--el-orange);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.el-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 48px 0 0;
}

.el-footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.el-footer__bottom-links {
  display: flex;
  gap: 24px;
}

.el-footer__bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--el-transition);
}

.el-footer__bottom-links a:hover {
  color: var(--el-orange);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Large screens down */
@media (max-width: 1199.98px) {
  .el-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .el-hero__heading {
    font-size: 48px;
  }
  .el-section__title {
    font-size: 36px;
  }
  .el-feature-row__number {
    font-size: 110px;
  }
  .el-feature-row__watermark {
    flex: 0 0 160px;
  }
  .el-feature-row {
    gap: 40px;
  }
  .el-cta__title {
    font-size: 40px;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  .el-navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--el-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--el-shadow);
    border-top: 1px solid var(--el-gray-200);
  }

  .el-navbar__links.is-open {
    display: flex;
  }

  .el-navbar__toggle {
    display: flex;
  }

  .el-navbar__cta {
    display: none;
  }

  .el-hero {
    padding: 120px 0 100px;
    min-height: auto;
  }

  .el-hero__heading {
    font-size: 40px;
  }

  .el-hero__subtitle {
    font-size: 17px;
  }

  .el-hero__illustration {
    margin-top: 48px;
  }

  .el-hero__illustration svg {
    max-width: 400px;
  }

  .el-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .el-stats__item:nth-child(2)::after {
    display: none;
  }

  .el-highlight__title {
    font-size: 32px;
  }

  .el-feature-row {
    flex-direction: column !important;
    gap: 24px;
    padding: 36px 0;
  }

  .el-feature-row__watermark {
    flex: 0 0 auto;
    order: -1;
  }

  .el-feature-row__number {
    font-size: 80px;
  }

  .el-partners__logos {
    gap: 40px;
  }

  .el-cta__title {
    font-size: 32px;
  }

  .el-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .el-feature-grid {
    grid-template-columns: 1fr;
  }
  .el-section {
    padding: 64px 0;
  }

  .el-hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .el-hero__heading {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .el-hero__subtitle {
    font-size: 16px;
  }

  .el-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .el-hero__illustration svg {
    max-width: 300px;
  }

  .el-stats {
    margin-top: -40px;
  }

  .el-stats__inner {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--el-radius-lg);
  }

  .el-stats__item {
    padding: 28px 16px;
  }

  .el-stats__number {
    font-size: 36px;
  }

  .el-stats__item::after {
    display: none;
  }

  .el-section__title {
    font-size: 28px;
  }

  .el-cta {
    padding: 80px 0;
  }

  .el-cta__title {
    font-size: 28px;
  }

  .el-highlight {
    padding: 72px 0;
  }

  .el-highlight__title {
    font-size: 26px;
  }

  .el-highlight__card {
    padding: 32px 24px;
  }

  .el-partners__logos {
    gap: 32px;
  }

  .el-partners__logo {
    height: 40px;
  }

  .el-partners__strip {
    gap: 48px;
  }

  .el-feature-row__number {
    font-size: 60px;
  }

  .el-footer__inner {
    padding: 48px 0 0;
  }

  .el-footer__newsletter-wrap {
    flex-direction: column;
    border-radius: 8px;
  }

  .el-footer__newsletter-btn {
    padding: 14px 20px;
  }

  .el-usecases::before,
  .el-usecases::after,
  .el-features::before {
    display: none;
  }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .el-stats__inner {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .el-stats__item {
    padding: 24px 12px;
  }

  .el-hero__heading {
    font-size: 28px;
  }

  .el-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .el-btn--lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}


/* ===================================================
   INNER PAGE STYLES
   =================================================== */

/* --- Page Header --- */
.el-page-header {
  position: relative;
  background: linear-gradient(135deg, var(--el-near-black) 0%, var(--el-deep-blue) 50%, var(--el-blue-light) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
  color: var(--el-white);
}

.el-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.el-page-header::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232, 116, 12, 0.05);
  pointer-events: none;
}

.el-page-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--el-font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--el-orange-light);
  background: rgba(232, 116, 12, 0.12);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.el-page-header__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--el-white);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.el-page-header__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

/* --- Content Blocks --- */
.el-content {
  max-width: 780px;
}

.el-content--centered {
  margin-left: auto;
  margin-right: auto;
}

.el-content__text {
  font-size: 16px;
  color: var(--el-gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.el-content__text:last-child {
  margin-bottom: 0;
}

/* --- Platform Cards --- */
.el-platform {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 40px;
  box-shadow: var(--el-shadow);
  border: 1px solid var(--el-gray-200);
  border-left: 4px solid var(--el-deep-blue);
  height: 100%;
  transition: all var(--el-transition);
  position: relative;
  overflow: hidden;
}

.el-platform:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-shadow-blue);
  border-color: transparent;
  border-left-color: var(--el-orange);
}

.el-platform__badge {
  display: inline-block;
  font-family: var(--el-font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.el-platform__badge--blue {
  background: rgba(26, 54, 93, 0.08);
  color: var(--el-deep-blue);
}

.el-platform__badge--orange {
  background: rgba(232, 116, 12, 0.08);
  color: var(--el-orange);
}

.el-platform__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 16px;
}

.el-platform__text {
  font-size: 15px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}

.el-platform__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.el-platform__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--el-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--el-slate);
}

.el-platform__feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--el-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Inner Feature Cards (Assessment Tools) --- */
.el-tool-card {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--el-gray-200);
  border-left: 4px solid var(--el-deep-blue);
  transition: all var(--el-transition);
  position: relative;
  overflow: hidden;
}

.el-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-shadow-blue);
  border-color: transparent;
  border-left-color: var(--el-orange);
}

.el-tool-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.08), rgba(26, 54, 93, 0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--el-transition);
}

.el-tool-card:hover .el-tool-card__icon {
  background: linear-gradient(135deg, var(--el-deep-blue), var(--el-blue-light));
  transform: rotate(-5deg);
}

.el-tool-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--el-deep-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-tool-card:hover .el-tool-card__icon svg {
  stroke: var(--el-white);
}

.el-tool-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-tool-card__text {
  font-size: 14px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Badge Cards (Experience Section) --- */
.el-badge-card {
  background: var(--el-white);
  border-radius: var(--el-radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--el-shadow);
  border: 1px solid var(--el-gray-200);
  border-bottom: 3px solid var(--el-orange);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--el-transition);
}

.el-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--el-shadow-orange);
}

.el-badge-card__name {
  font-family: var(--el-font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--el-slate);
  margin: 0;
}

/* --- Product / Service Cards --- */
.el-product-card {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--el-gray-200);
  border-left: 4px solid var(--el-orange);
  transition: all var(--el-transition);
  position: relative;
  overflow: hidden;
}

.el-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--el-shadow-orange);
  border-color: transparent;
  border-left-color: var(--el-orange);
}

.el-product-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 116, 12, 0.1), rgba(232, 116, 12, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--el-transition);
}

.el-product-card:hover .el-product-card__icon {
  background: linear-gradient(135deg, var(--el-orange), var(--el-orange-light));
  transform: rotate(-5deg);
}

.el-product-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--el-orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-product-card:hover .el-product-card__icon svg {
  stroke: var(--el-white);
}

.el-product-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-product-card__text {
  font-size: 15px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Initiative Card --- */
.el-initiative {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 48px;
  box-shadow: var(--el-shadow);
  border: 1px solid var(--el-gray-200);
  border-left: 4px solid var(--el-orange);
}

.el-initiative__logo {
  height: 60px;
  margin-bottom: 24px;
}

.el-initiative__text {
  font-size: 16px;
  color: var(--el-gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- Contact Cards --- */
.el-contact-card {
  background: var(--el-white);
  border-radius: var(--el-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--el-shadow);
  border: 1px solid var(--el-gray-200);
  border-top: 4px solid var(--el-deep-blue);
  height: 100%;
  transition: all var(--el-transition);
}

.el-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-shadow-blue);
  border-top-color: var(--el-orange);
}

.el-contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.08), rgba(26, 54, 93, 0.03));
  transition: all var(--el-transition);
}

.el-contact-card:hover .el-contact-card__icon {
  background: linear-gradient(135deg, var(--el-deep-blue), var(--el-blue-light));
  transform: rotate(-5deg);
}

.el-contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--el-deep-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--el-transition);
}

.el-contact-card:hover .el-contact-card__icon svg {
  stroke: var(--el-white);
}

.el-contact-card__title {
  font-family: var(--el-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--el-deep-blue);
  margin-bottom: 12px;
}

.el-contact-card__text {
  font-size: 15px;
  color: var(--el-gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.el-contact-card__text a {
  color: var(--el-deep-blue);
  font-weight: 500;
  transition: color var(--el-transition);
}

.el-contact-card__text a:hover {
  color: var(--el-orange);
}

/* --- Map --- */
.el-map {
  width: 100%;
  border: 0;
  border-radius: var(--el-radius-lg);
  min-height: 400px;
  box-shadow: var(--el-shadow);
}

/* --- Contact Form --- */
.el-form__group {
  margin-bottom: 20px;
}

.el-form__label {
  display: block;
  font-family: var(--el-font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--el-slate);
  margin-bottom: 6px;
}

.el-form__input,
.el-form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--el-font-body);
  font-size: 15px;
  color: var(--el-slate);
  background: var(--el-cream);
  border: 2px solid var(--el-gray-200);
  border-radius: var(--el-radius-sm);
  transition: border-color var(--el-transition), box-shadow var(--el-transition), background var(--el-transition);
}

.el-form__input:focus,
.el-form__textarea:focus {
  outline: none;
  border-color: var(--el-deep-blue);
  box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.08);
  background: var(--el-white);
}

.el-form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Inner Page Responsive --- */
@media (max-width: 991.98px) {
  .el-page-header {
    padding: 80px 0 64px;
  }

  .el-page-header__title {
    font-size: 38px;
  }

  .el-platform {
    padding: 32px;
  }

  .el-initiative {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .el-page-header {
    padding: 64px 0 48px;
  }

  .el-page-header__title {
    font-size: 30px;
  }

  .el-page-header__subtitle {
    font-size: 16px;
  }

  .el-platform__features {
    grid-template-columns: 1fr;
  }

  .el-map {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .el-page-header__title {
    font-size: 26px;
  }

  .el-platform {
    padding: 24px;
  }

  .el-initiative {
    padding: 24px;
  }

  .el-contact-card {
    padding: 28px 20px;
  }
}
